4 Copyright (C) Derrell Lipman 2005
5 Copyright (C) Simo Sorce 2005-2009
7 ** NOTE! The following LGPL license applies to the ldb
8 ** library. This does NOT imply that all of Samba is released
11 This library is free software; you can redistribute it and/or
12 modify it under the terms of the GNU Lesser General Public
13 License as published by the Free Software Foundation; either
14 version 3 of the License, or (at your option) any later version.
16 This library is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
21 You should have received a copy of the GNU Lesser General Public
22 License along with this library; if not, see <http://www.gnu.org/licenses/>.
28 * Component: ldb sqlite3 backend
30 * Description: core files for SQLITE3 backend
32 * Author: Derrell Lipman (based on Andrew Tridgell's LDAP backend)
35 #include "ldb_module.h"
39 struct lsqlite3_private
{
46 struct ldb_module
*module
;
47 struct ldb_request
*req
;
50 long long current_eid
;
51 const char * const * attrs
;
52 struct ldb_reply
*ares
;
55 struct tevent_timer
*timeout_event
;
59 * Macros used throughout
64 # define TRUE (! FALSE)
67 #define RESULT_ATTR_TABLE "temp_result_attrs"
70 /* for testing, define to nothing, (create non-temporary table) */
71 #define TEMPTAB "TEMPORARY"
76 sqlite3_stmt
* stmtGetEID
= NULL
;
78 static char *lsqlite3_tprintf(TALLOC_CTX
*mem_ctx
, const char *fmt
, ...)
84 str
= sqlite3_vmprintf(fmt
, ap
);
87 if (str
== NULL
) return NULL
;
89 ret
= talloc_strdup(mem_ctx
, str
);
99 static char base160tab
[161] = {
100 48 ,49 ,50 ,51 ,52 ,53 ,54 ,55 ,56 ,57 , /* 0-9 */
101 58 ,59 ,65 ,66 ,67 ,68 ,69 ,70 ,71 ,72 , /* : ; A-H */
102 73 ,74 ,75 ,76 ,77 ,78 ,79 ,80 ,81 ,82 , /* I-R */
103 83 ,84 ,85 ,86 ,87 ,88 ,89 ,90 ,97 ,98 , /* S-Z , a-b */
104 99 ,100,101,102,103,104,105,106,107,108, /* c-l */
105 109,110,111,112,113,114,115,116,117,118, /* m-v */
106 119,120,121,122,160,161,162,163,164,165, /* w-z, latin1 */
107 166,167,168,169,170,171,172,173,174,175, /* latin1 */
108 176,177,178,179,180,181,182,183,184,185, /* latin1 */
109 186,187,188,189,190,191,192,193,194,195, /* latin1 */
110 196,197,198,199,200,201,202,203,204,205, /* latin1 */
111 206,207,208,209,210,211,212,213,214,215, /* latin1 */
112 216,217,218,219,220,221,222,223,224,225, /* latin1 */
113 226,227,228,229,230,231,232,233,234,235, /* latin1 */
114 236,237,238,239,240,241,242,243,244,245, /* latin1 */
115 246,247,248,249,250,251,252,253,254,255, /* latin1 */
123 * Convert an unsigned long integer into a base160 representation of the
128 * value to be converted
131 * character array, 5 bytes long, into which the base160 representation
132 * will be placed. The result will be a four-digit representation of the
133 * number (with leading zeros prepended as necessary), and null
140 base160_sql(sqlite3_context
* hContext
,
142 sqlite3_value
** argv
)
148 val
= sqlite3_value_int64(argv
[0]);
150 for (i
= 3; i
>= 0; i
--) {
152 result
[i
] = base160tab
[val
% 160];
158 sqlite3_result_text(hContext
, result
, -1, SQLITE_TRANSIENT
);
165 * This function enhances sqlite by adding a "base160_next()" function which is
166 * accessible via queries.
168 * Retrieve the next-greater number in the base160 sequence for the terminal
169 * tree node (the last four digits). Only one tree level (four digits) is
173 * A character string: either an empty string (in which case no operation is
174 * performed), or a string of base160 digits with a length of a multiple of
178 * Upon return, the trailing four digits (one tree level) will have been
182 base160next_sql(sqlite3_context
* hContext
,
184 sqlite3_value
** argv
)
189 char * pBase160
= strdup((const char *)sqlite3_value_text(argv
[0]));
190 char * pStart
= pBase160
;
193 * We need a minimum of four digits, and we will always get a multiple
196 if (pBase160
!= NULL
&&
197 (len
= strlen(pBase160
)) >= 4 &&
200 if (pBase160
== NULL
) {
202 sqlite3_result_null(hContext
);
206 pBase160
+= strlen(pBase160
) - 1;
208 /* We only carry through four digits: one level in the tree */
209 for (i
= 0; i
< 4; i
++) {
211 /* What base160 value does this digit have? */
212 pTab
= strchr(base160tab
, *pBase160
);
214 /* Is there a carry? */
215 if (pTab
< base160tab
+ sizeof(base160tab
) - 1) {
218 * Nope. Just increment this value and we're
226 * There's a carry. This value gets
227 * base160tab[0], we decrement the buffer
228 * pointer to get the next higher-order digit,
229 * and continue in the loop.
231 *pBase160
-- = base160tab
[0];
235 sqlite3_result_text(hContext
,
240 sqlite3_result_value(hContext
, argv
[0]);
241 if (pBase160
!= NULL
) {
247 static char *parsetree_to_sql(struct ldb_module
*module
,
249 const struct ldb_parse_tree
*t
)
251 struct ldb_context
*ldb
;
252 const struct ldb_schema_attribute
*a
;
253 struct ldb_val value
, subval
;
254 char *wild_card_string
;
260 ldb
= ldb_module_get_ctx(module
);
262 switch(t
->operation
) {
265 tmp
= parsetree_to_sql(module
, mem_ctx
, t
->u
.list
.elements
[0]);
266 if (tmp
== NULL
) return NULL
;
268 for (i
= 1; i
< t
->u
.list
.num_elements
; i
++) {
270 child
= parsetree_to_sql(module
, mem_ctx
, t
->u
.list
.elements
[i
]);
271 if (child
== NULL
) return NULL
;
273 tmp
= talloc_asprintf_append(tmp
, " INTERSECT %s ", child
);
274 if (tmp
== NULL
) return NULL
;
277 ret
= talloc_asprintf(mem_ctx
, "SELECT * FROM ( %s )\n", tmp
);
283 tmp
= parsetree_to_sql(module
, mem_ctx
, t
->u
.list
.elements
[0]);
284 if (tmp
== NULL
) return NULL
;
286 for (i
= 1; i
< t
->u
.list
.num_elements
; i
++) {
288 child
= parsetree_to_sql(module
, mem_ctx
, t
->u
.list
.elements
[i
]);
289 if (child
== NULL
) return NULL
;
291 tmp
= talloc_asprintf_append(tmp
, " UNION %s ", child
);
292 if (tmp
== NULL
) return NULL
;
295 return talloc_asprintf(mem_ctx
, "SELECT * FROM ( %s ) ", tmp
);
299 child
= parsetree_to_sql(module
, mem_ctx
, t
->u
.isnot
.child
);
300 if (child
== NULL
) return NULL
;
302 return talloc_asprintf(mem_ctx
,
303 "SELECT eid FROM ldb_entry "
304 "WHERE eid NOT IN ( %s ) ", child
);
306 case LDB_OP_EQUALITY
:
308 * For simple searches, we want to retrieve the list of EIDs that
309 * match the criteria.
311 attr
= ldb_attr_casefold(mem_ctx
, t
->u
.equality
.attr
);
312 if (attr
== NULL
) return NULL
;
313 a
= ldb_schema_attribute_by_name(ldb
, attr
);
315 /* Get a canonicalised copy of the data */
316 a
->syntax
->canonicalise_fn(ldb
, mem_ctx
, &(t
->u
.equality
.value
), &value
);
317 if (value
.data
== NULL
) {
321 if (strcasecmp(t
->u
.equality
.attr
, "dn") == 0) {
322 /* DN query is a special ldb case */
323 const char *cdn
= ldb_dn_get_casefold(
324 ldb_dn_new(mem_ctx
, ldb
,
325 (const char *)value
.data
));
327 return lsqlite3_tprintf(mem_ctx
,
328 "SELECT eid FROM ldb_entry "
329 "WHERE norm_dn = '%q'", cdn
);
332 /* A normal query. */
333 return lsqlite3_tprintf(mem_ctx
,
334 "SELECT eid FROM ldb_attribute_values "
335 "WHERE norm_attr_name = '%q' "
336 "AND norm_attr_value = '%q'",
342 case LDB_OP_SUBSTRING
:
344 wild_card_string
= talloc_strdup(mem_ctx
,
345 (t
->u
.substring
.start_with_wildcard
)?"*":"");
346 if (wild_card_string
== NULL
) return NULL
;
348 for (i
= 0; t
->u
.substring
.chunks
[i
]; i
++) {
349 wild_card_string
= talloc_asprintf_append(wild_card_string
, "%s*",
350 t
->u
.substring
.chunks
[i
]->data
);
351 if (wild_card_string
== NULL
) return NULL
;
354 if ( ! t
->u
.substring
.end_with_wildcard
) {
355 /* remove last wildcard */
356 wild_card_string
[strlen(wild_card_string
) - 1] = '\0';
359 attr
= ldb_attr_casefold(mem_ctx
, t
->u
.substring
.attr
);
360 if (attr
== NULL
) return NULL
;
361 a
= ldb_schema_attribute_by_name(ldb
, attr
);
363 subval
.data
= (void *)wild_card_string
;
364 subval
.length
= strlen(wild_card_string
) + 1;
366 /* Get a canonicalised copy of the data */
367 a
->syntax
->canonicalise_fn(ldb
, mem_ctx
, &(subval
), &value
);
368 if (value
.data
== NULL
) {
372 return lsqlite3_tprintf(mem_ctx
,
373 "SELECT eid FROM ldb_attribute_values "
374 "WHERE norm_attr_name = '%q' "
375 "AND norm_attr_value GLOB '%q'",
380 attr
= ldb_attr_casefold(mem_ctx
, t
->u
.equality
.attr
);
381 if (attr
== NULL
) return NULL
;
382 a
= ldb_schema_attribute_by_name(ldb
, attr
);
384 /* Get a canonicalised copy of the data */
385 a
->syntax
->canonicalise_fn(ldb
, mem_ctx
, &(t
->u
.equality
.value
), &value
);
386 if (value
.data
== NULL
) {
390 return lsqlite3_tprintf(mem_ctx
,
391 "SELECT eid FROM ldb_attribute_values "
392 "WHERE norm_attr_name = '%q' "
393 "AND ldap_compare(norm_attr_value, '>=', '%q', '%q') ",
399 attr
= ldb_attr_casefold(mem_ctx
, t
->u
.equality
.attr
);
400 if (attr
== NULL
) return NULL
;
401 a
= ldb_schema_attribute_by_name(ldb
, attr
);
403 /* Get a canonicalised copy of the data */
404 a
->syntax
->canonicalise_fn(ldb
, mem_ctx
, &(t
->u
.equality
.value
), &value
);
405 if (value
.data
== NULL
) {
409 return lsqlite3_tprintf(mem_ctx
,
410 "SELECT eid FROM ldb_attribute_values "
411 "WHERE norm_attr_name = '%q' "
412 "AND ldap_compare(norm_attr_value, '<=', '%q', '%q') ",
418 if (strcasecmp(t
->u
.present
.attr
, "dn") == 0) {
419 return talloc_strdup(mem_ctx
, "SELECT eid FROM ldb_entry");
422 attr
= ldb_attr_casefold(mem_ctx
, t
->u
.present
.attr
);
423 if (attr
== NULL
) return NULL
;
425 return lsqlite3_tprintf(mem_ctx
,
426 "SELECT eid FROM ldb_attribute_values "
427 "WHERE norm_attr_name = '%q' ",
431 attr
= ldb_attr_casefold(mem_ctx
, t
->u
.equality
.attr
);
432 if (attr
== NULL
) return NULL
;
433 a
= ldb_schema_attribute_by_name(ldb
, attr
);
435 /* Get a canonicalised copy of the data */
436 a
->syntax
->canonicalise_fn(ldb
, mem_ctx
, &(t
->u
.equality
.value
), &value
);
437 if (value
.data
== NULL
) {
441 return lsqlite3_tprintf(mem_ctx
,
442 "SELECT eid FROM ldb_attribute_values "
443 "WHERE norm_attr_name = '%q' "
444 "AND ldap_compare(norm_attr_value, '~%', 'q', '%q') ",
449 case LDB_OP_EXTENDED
:
450 #warning "work out how to handle bitops"
457 /* should never occur */
465 * This function is used for the common case of queries that return a single
468 * NOTE: If more than one value is returned by the query, all but the first
469 * one will be ignored.
472 query_int(const struct lsqlite3_private
* lsqlite3
,
480 sqlite3_stmt
* pStmt
;
483 /* Begin access to variable argument list */
484 va_start(args
, pSql
);
486 /* Format the query */
487 if ((p
= sqlite3_vmprintf(pSql
, args
)) == NULL
) {
493 * Prepare and execute the SQL statement. Loop allows retrying on
494 * certain errors, e.g. SQLITE_SCHEMA occurs if the schema changes,
495 * requiring retrying the operation.
497 for (bLoop
= TRUE
; bLoop
; ) {
499 /* Compile the SQL statement into sqlite virtual machine */
500 if ((ret
= sqlite3_prepare(lsqlite3
->sqlite
,
504 NULL
)) == SQLITE_SCHEMA
) {
505 if (stmtGetEID
!= NULL
) {
506 sqlite3_finalize(stmtGetEID
);
510 } else if (ret
!= SQLITE_OK
) {
514 /* One row expected */
515 if ((ret
= sqlite3_step(pStmt
)) == SQLITE_SCHEMA
) {
516 if (stmtGetEID
!= NULL
) {
517 sqlite3_finalize(stmtGetEID
);
520 (void) sqlite3_finalize(pStmt
);
522 } else if (ret
!= SQLITE_ROW
) {
523 (void) sqlite3_finalize(pStmt
);
527 /* Get the value to be returned */
528 *pRet
= sqlite3_column_int64(pStmt
, 0);
530 /* Free the virtual machine */
531 if ((ret
= sqlite3_finalize(pStmt
)) == SQLITE_SCHEMA
) {
532 if (stmtGetEID
!= NULL
) {
533 sqlite3_finalize(stmtGetEID
);
537 } else if (ret
!= SQLITE_OK
) {
538 (void) sqlite3_finalize(pStmt
);
543 * Normal condition is only one time through loop. Loop is
544 * rerun in error conditions, via "continue", above.
549 /* All done with variable argument list */
553 /* Free the memory we allocated for our query string */
560 * This is a bad hack to support ldap style comparisons within sqlite.
561 * val is the attribute in the row currently under test
562 * func is the desired test "<=" ">=" "~" ":"
563 * cmp is the value to compare against (eg: "test")
564 * attr is the attribute name the value of which we want to test
567 static void lsqlite3_compare(sqlite3_context
*ctx
, int argc
,
568 sqlite3_value
**argv
)
570 struct ldb_context
*ldb
= (struct ldb_context
*)sqlite3_user_data(ctx
);
571 const char *val
= (const char *)sqlite3_value_text(argv
[0]);
572 const char *func
= (const char *)sqlite3_value_text(argv
[1]);
573 const char *cmp
= (const char *)sqlite3_value_text(argv
[2]);
574 const char *attr
= (const char *)sqlite3_value_text(argv
[3]);
575 const struct ldb_schema_attribute
*a
;
583 a
= ldb_schema_attribute_by_name(ldb
, attr
);
584 valX
.data
= (uint8_t *)cmp
;
585 valX
.length
= strlen(cmp
);
586 valY
.data
= (uint8_t *)val
;
587 valY
.length
= strlen(val
);
588 ret
= a
->syntax
->comparison_fn(ldb
, ldb
, &valY
, &valX
);
590 sqlite3_result_int(ctx
, 1);
592 sqlite3_result_int(ctx
, 0);
597 a
= ldb_schema_attribute_by_name(ldb
, attr
);
598 valX
.data
= (uint8_t *)cmp
;
599 valX
.length
= strlen(cmp
);
600 valY
.data
= (uint8_t *)val
;
601 valY
.length
= strlen(val
);
602 ret
= a
->syntax
->comparison_fn(ldb
, ldb
, &valY
, &valX
);
604 sqlite3_result_int(ctx
, 1);
606 sqlite3_result_int(ctx
, 0);
612 sqlite3_result_int(ctx
, 0);
618 sqlite3_result_int(ctx
, 0);
625 sqlite3_result_error(ctx
, "Value must start with a special operation char (<>~:)!", -1);
630 /* rename a record */
631 static int lsqlite3_safe_rollback(sqlite3
*sqlite
)
637 ret
= sqlite3_exec(sqlite
, "ROLLBACK;", NULL
, NULL
, &errmsg
);
638 if (ret
!= SQLITE_OK
) {
640 printf("lsqlite3_safe_rollback: Error: %s\n", errmsg
);
649 /* return an eid as result */
650 static int lsqlite3_eid_callback(void *result
, int col_num
, char **cols
, char **names
)
652 long long *eid
= (long long *)result
;
654 if (col_num
!= 1) return SQLITE_ABORT
;
655 if (strcasecmp(names
[0], "eid") != 0) return SQLITE_ABORT
;
657 *eid
= atoll(cols
[0]);
662 * add a single set of ldap message values to a ldb_message
664 static int lsqlite3_search_callback(void *result
, int col_num
, char **cols
, char **names
)
666 struct ldb_context
*ldb
;
667 struct lsql_context
*ac
;
668 struct ldb_message
*msg
;
673 ac
= talloc_get_type(result
, struct lsql_context
);
674 ldb
= ldb_module_get_ctx(ac
->module
);
676 /* eid, dn, attr_name, attr_value */
677 if (col_num
!= 4) return SQLITE_ABORT
;
679 eid
= atoll(cols
[0]);
682 msg
= ac
->ares
->message
;
685 if (eid
!= ac
->current_eid
) { /* here begin a new entry */
687 /* call the async callback for the last entry
688 * except the first time */
689 if (ac
->current_eid
!= 0) {
690 ret
= ldb_msg_normalize(ldb
, ac
->req
, msg
, &msg
);
691 if (ret
!= LDB_SUCCESS
) {
695 ret
= ldb_module_send_entry(ac
->req
, msg
, NULL
);
696 if (ret
!= LDB_SUCCESS
) {
697 ac
->callback_failed
= true;
698 /* free msg object */
703 /* free msg object */
708 ac
->ares
= talloc_zero(ac
, struct ldb_reply
);
709 if (!ac
->ares
) return SQLITE_ABORT
;
711 msg
= ldb_msg_new(ac
->ares
);
712 if (!msg
) return SQLITE_ABORT
;
714 ac
->ares
->type
= LDB_REPLY_ENTRY
;
715 ac
->current_eid
= eid
;
718 if (msg
->dn
== NULL
) {
719 msg
->dn
= ldb_dn_new(msg
, ldb
, cols
[1]);
726 for (i
= 0; ac
->attrs
[i
]; i
++) {
727 if (strcasecmp(cols
[2], ac
->attrs
[i
]) == 0) {
732 if (!found
) goto done
;
735 if (ldb_msg_add_string(msg
, cols
[2], cols
[3]) != 0) {
740 ac
->ares
->message
= msg
;
747 * lsqlite3_get_eid_ndn()
749 * These functions are used for the very common case of retrieving an EID value
750 * given a (normalized) DN.
753 static long long lsqlite3_get_eid_ndn(sqlite3
*sqlite
, void *mem_ctx
, const char *norm_dn
)
761 query
= lsqlite3_tprintf(mem_ctx
, "SELECT eid "
763 "WHERE norm_dn = '%q';", norm_dn
);
764 if (query
== NULL
) return -1;
766 ret
= sqlite3_exec(sqlite
, query
, lsqlite3_eid_callback
, &eid
, &errmsg
);
767 if (ret
!= SQLITE_OK
) {
769 printf("lsqlite3_get_eid: Fatal Error: %s\n", errmsg
);
778 static long long lsqlite3_get_eid(struct lsqlite3_private
*lsqlite3
,
781 TALLOC_CTX
*local_ctx
;
785 /* ignore ltdb specials */
786 if (ldb_dn_is_special(dn
)) {
790 /* create a local ctx */
791 local_ctx
= talloc_named(lsqlite3
, 0, "lsqlite3_get_eid local context");
792 if (local_ctx
== NULL
) {
796 cdn
= ldb_dn_alloc_casefold(local_ctx
, dn
);
799 eid
= lsqlite3_get_eid_ndn(lsqlite3
->sqlite
, local_ctx
, cdn
);
802 talloc_free(local_ctx
);
807 * Interface functions referenced by lsqlite3_ops
810 /* search for matching records, by tree */
811 int lsql_search(struct lsql_context
*ctx
)
813 struct ldb_module
*module
= ctx
->module
;
814 struct ldb_request
*req
= ctx
->req
;
815 struct lsqlite3_private
*lsqlite3
;
816 struct ldb_context
*ldb
;
823 ldb
= ldb_module_get_ctx(module
);
824 lsqlite3
= talloc_get_type(ldb_module_get_private(module
),
825 struct lsqlite3_private
);
827 if ((( ! ldb_dn_is_valid(req
->op
.search
.base
)) ||
828 ldb_dn_is_null(req
->op
.search
.base
)) &&
829 (req
->op
.search
.scope
== LDB_SCOPE_BASE
||
830 req
->op
.search
.scope
== LDB_SCOPE_ONELEVEL
)) {
831 return LDB_ERR_OPERATIONS_ERROR
;
834 if (req
->op
.search
.base
) {
835 norm_basedn
= ldb_dn_alloc_casefold(ctx
, req
->op
.search
.base
);
836 if (norm_basedn
== NULL
) {
837 return LDB_ERR_OPERATIONS_ERROR
;
839 } else norm_basedn
= talloc_strdup(ctx
, "");
841 /* Convert filter into a series of SQL conditions (constraints) */
842 sqlfilter
= parsetree_to_sql(module
, ctx
, req
->op
.search
.tree
);
844 switch(req
->op
.search
.scope
) {
845 case LDB_SCOPE_DEFAULT
:
846 case LDB_SCOPE_SUBTREE
:
847 if (*norm_basedn
!= '\0') {
848 query
= lsqlite3_tprintf(ctx
,
849 "SELECT entry.eid,\n"
853 " FROM ldb_entry AS entry\n"
855 " LEFT OUTER JOIN ldb_attribute_values AS av\n"
856 " ON av.eid = entry.eid\n"
858 " WHERE entry.eid IN\n"
859 " (SELECT DISTINCT ldb_entry.eid\n"
861 " WHERE (ldb_entry.norm_dn GLOB('*,%q')\n"
862 " OR ldb_entry.norm_dn = '%q')\n"
863 " AND ldb_entry.eid IN\n"
867 " ORDER BY entry.eid ASC;",
872 query
= lsqlite3_tprintf(ctx
,
873 "SELECT entry.eid,\n"
877 " FROM ldb_entry AS entry\n"
879 " LEFT OUTER JOIN ldb_attribute_values AS av\n"
880 " ON av.eid = entry.eid\n"
882 " WHERE entry.eid IN\n"
883 " (SELECT DISTINCT ldb_entry.eid\n"
885 " WHERE ldb_entry.eid IN\n"
889 " ORDER BY entry.eid ASC;",
896 query
= lsqlite3_tprintf(ctx
,
897 "SELECT entry.eid,\n"
901 " FROM ldb_entry AS entry\n"
903 " LEFT OUTER JOIN ldb_attribute_values AS av\n"
904 " ON av.eid = entry.eid\n"
906 " WHERE entry.eid IN\n"
907 " (SELECT DISTINCT ldb_entry.eid\n"
909 " WHERE ldb_entry.norm_dn = '%q'\n"
910 " AND ldb_entry.eid IN\n"
914 " ORDER BY entry.eid ASC;",
919 case LDB_SCOPE_ONELEVEL
:
920 query
= lsqlite3_tprintf(ctx
,
921 "SELECT entry.eid,\n"
925 " FROM ldb_entry AS entry\n"
927 " LEFT OUTER JOIN ldb_attribute_values AS av\n"
928 " ON av.eid = entry.eid\n"
930 " WHERE entry.eid IN\n"
931 " (SELECT DISTINCT ldb_entry.eid\n"
933 " WHERE norm_dn GLOB('*,%q')\n"
934 " AND NOT norm_dn GLOB('*,*,%q')\n"
935 " AND ldb_entry.eid IN\n(%s)\n"
938 " ORDER BY entry.eid ASC;",
946 return LDB_ERR_OPERATIONS_ERROR
;
950 printf ("%s\n", query);
953 ctx
->current_eid
= 0;
954 ctx
->attrs
= req
->op
.search
.attrs
;
957 ldb_request_set_state(req
, LDB_ASYNC_PENDING
);
959 ret
= sqlite3_exec(lsqlite3
->sqlite
, query
, lsqlite3_search_callback
, ctx
, &errmsg
);
960 if (ret
!= SQLITE_OK
) {
962 ldb_set_errstring(ldb
, errmsg
);
965 return LDB_ERR_OPERATIONS_ERROR
;
968 /* complete the last message if any */
970 ret
= ldb_msg_normalize(ldb
, ctx
->ares
,
972 &ctx
->ares
->message
);
973 if (ret
!= LDB_SUCCESS
) {
974 return LDB_ERR_OPERATIONS_ERROR
;
977 ret
= ldb_module_send_entry(req
, ctx
->ares
->message
, NULL
);
978 if (ret
!= LDB_SUCCESS
) {
988 static int lsql_add(struct lsql_context
*ctx
)
990 struct ldb_module
*module
= ctx
->module
;
991 struct ldb_request
*req
= ctx
->req
;
992 struct lsqlite3_private
*lsqlite3
;
993 struct ldb_context
*ldb
;
994 struct ldb_message
*msg
= req
->op
.add
.message
;
1002 ldb
= ldb_module_get_ctx(module
);
1003 lsqlite3
= talloc_get_type(ldb_module_get_private(module
),
1004 struct lsqlite3_private
);
1006 /* See if this is an ltdb special */
1007 if (ldb_dn_is_special(msg
->dn
)) {
1010 c = ldb_dn_new(local_ctx, ldb, "@INDEXLIST");
1011 if (ldb_dn_compare(ldb, msg->dn, c) == 0) {
1012 #warning "should we handle indexes somehow ?"
1013 ret = LDB_ERR_UNWILLING_TO_PERFORM;
1017 /* Others return an error */
1018 return LDB_ERR_UNWILLING_TO_PERFORM
;
1021 /* create linearized and normalized dns */
1022 dn
= ldb_dn_alloc_linearized(ctx
, msg
->dn
);
1023 ndn
= ldb_dn_alloc_casefold(ctx
, msg
->dn
);
1024 if (dn
== NULL
|| ndn
== NULL
) {
1025 return LDB_ERR_OPERATIONS_ERROR
;
1028 query
= lsqlite3_tprintf(ctx
,
1030 "INSERT OR ABORT INTO ldb_entry "
1031 "('dn', 'norm_dn') "
1032 "VALUES ('%q', '%q');",
1034 if (query
== NULL
) {
1035 return LDB_ERR_OPERATIONS_ERROR
;
1038 ret
= sqlite3_exec(lsqlite3
->sqlite
, query
, NULL
, NULL
, &errmsg
);
1039 if (ret
!= SQLITE_OK
) {
1041 ldb_set_errstring(ldb
, errmsg
);
1044 return LDB_ERR_OPERATIONS_ERROR
;
1047 eid
= lsqlite3_get_eid_ndn(lsqlite3
->sqlite
, ctx
, ndn
);
1049 return LDB_ERR_OPERATIONS_ERROR
;
1052 for (i
= 0; i
< msg
->num_elements
; i
++) {
1053 const struct ldb_message_element
*el
= &msg
->elements
[i
];
1054 const struct ldb_schema_attribute
*a
;
1058 /* Get a case-folded copy of the attribute name */
1059 attr
= ldb_attr_casefold(ctx
, el
->name
);
1061 return LDB_ERR_OPERATIONS_ERROR
;
1064 a
= ldb_schema_attribute_by_name(ldb
, el
->name
);
1066 if (el
->num_value
== 0) {
1067 ldb_asprintf_errstring(ldb
, "attribute %s on %s specified, but with 0 values (illegal)",
1068 el
->name
, ldb_dn_get_linearized(msg
->dn
));
1069 return LDB_ERR_CONSTRAINT_VIOLATION
;
1072 /* For each value of the specified attribute name... */
1073 for (j
= 0; j
< el
->num_values
; j
++) {
1074 struct ldb_val value
;
1077 /* Get a canonicalised copy of the data */
1078 a
->syntax
->canonicalise_fn(ldb
, ctx
, &(el
->values
[j
]), &value
);
1079 if (value
.data
== NULL
) {
1080 return LDB_ERR_OPERATIONS_ERROR
;
1083 insert
= lsqlite3_tprintf(ctx
,
1084 "INSERT OR ROLLBACK INTO ldb_attribute_values "
1085 "('eid', 'attr_name', 'norm_attr_name',"
1086 " 'attr_value', 'norm_attr_value') "
1087 "VALUES ('%lld', '%q', '%q', '%q', '%q');",
1088 eid
, el
->name
, attr
,
1089 el
->values
[j
].data
, value
.data
);
1090 if (insert
== NULL
) {
1091 return LDB_ERR_OPERATIONS_ERROR
;
1094 ret
= sqlite3_exec(lsqlite3
->sqlite
, insert
, NULL
, NULL
, &errmsg
);
1095 if (ret
!= SQLITE_OK
) {
1097 ldb_set_errstring(ldb
, errmsg
);
1100 return LDB_ERR_OPERATIONS_ERROR
;
1108 /* modify a record */
1109 static int lsql_modify(struct lsql_context
*ctx
)
1111 struct ldb_module
*module
= ctx
->module
;
1112 struct ldb_request
*req
= ctx
->req
;
1113 struct lsqlite3_private
*lsqlite3
;
1114 struct ldb_context
*ldb
;
1115 struct ldb_message
*msg
= req
->op
.mod
.message
;
1121 ldb
= ldb_module_get_ctx(module
);
1122 lsqlite3
= talloc_get_type(ldb_module_get_private(module
),
1123 struct lsqlite3_private
);
1125 /* See if this is an ltdb special */
1126 if (ldb_dn_is_special(msg
->dn
)) {
1127 /* Others return an error */
1128 return LDB_ERR_UNWILLING_TO_PERFORM
;
1131 eid
= lsqlite3_get_eid(lsqlite3
, msg
->dn
);
1133 return LDB_ERR_OPERATIONS_ERROR
;
1136 for (i
= 0; i
< msg
->num_elements
; i
++) {
1137 const struct ldb_message_element
*el
= &msg
->elements
[i
];
1138 const struct ldb_schema_attribute
*a
;
1139 unsigned int flags
= el
->flags
& LDB_FLAG_MOD_MASK
;
1144 /* Get a case-folded copy of the attribute name */
1145 attr
= ldb_attr_casefold(ctx
, el
->name
);
1147 return LDB_ERR_OPERATIONS_ERROR
;
1150 a
= ldb_schema_attribute_by_name(ldb
, el
->name
);
1154 case LDB_FLAG_MOD_REPLACE
:
1156 for (j
=0; j
<el
->num_values
; j
++) {
1157 if (ldb_msg_find_val(el
, &el
->values
[j
]) != &el
->values
[j
]) {
1158 ldb_asprintf_errstring(ldb
, "%s: value #%d provided more than once", el
->name
, j
);
1159 return LDB_ERR_ATTRIBUTE_OR_VALUE_EXISTS
;
1163 /* remove all attributes before adding the replacements */
1164 mod
= lsqlite3_tprintf(ctx
,
1165 "DELETE FROM ldb_attribute_values "
1166 "WHERE eid = '%lld' "
1167 "AND norm_attr_name = '%q';",
1170 return LDB_ERR_OPERATIONS_ERROR
;
1173 ret
= sqlite3_exec(lsqlite3
->sqlite
, mod
, NULL
, NULL
, &errmsg
);
1174 if (ret
!= SQLITE_OK
) {
1176 ldb_set_errstring(ldb
, errmsg
);
1179 return LDB_ERR_OPERATIONS_ERROR
;
1182 /* MISSING break is INTENTIONAL */
1184 case LDB_FLAG_MOD_ADD
:
1186 if (el
->num_values
== 0) {
1187 ldb_asprintf_errstring(ldb
, "attribute %s on %s specified, but with 0 values (illigal)",
1188 el
->name
, ldb_dn_get_linearized(msg
->dn
));
1189 return LDB_ERR_CONSTRAINT_VIOLATION
;
1192 /* For each value of the specified attribute name... */
1193 for (j
= 0; j
< el
->num_values
; j
++) {
1194 struct ldb_val value
;
1196 /* Get a canonicalised copy of the data */
1197 a
->syntax
->canonicalise_fn(ldb
, ctx
, &(el
->values
[j
]), &value
);
1198 if (value
.data
== NULL
) {
1199 return LDB_ERR_OPERATIONS_ERROR
;
1202 mod
= lsqlite3_tprintf(ctx
,
1203 "INSERT OR ROLLBACK INTO ldb_attribute_values "
1204 "('eid', 'attr_name', 'norm_attr_name',"
1205 " 'attr_value', 'norm_attr_value') "
1206 "VALUES ('%lld', '%q', '%q', '%q', '%q');",
1207 eid
, el
->name
, attr
,
1208 el
->values
[j
].data
, value
.data
);
1211 return LDB_ERR_OPERATIONS_ERROR
;
1214 ret
= sqlite3_exec(lsqlite3
->sqlite
, mod
, NULL
, NULL
, &errmsg
);
1215 if (ret
!= SQLITE_OK
) {
1217 ldb_set_errstring(ldb
, errmsg
);
1220 return LDB_ERR_OPERATIONS_ERROR
;
1226 case LDB_FLAG_MOD_DELETE
:
1227 #warning "We should throw an error if the attribute we are trying to delete does not exist!"
1228 if (el
->num_values
== 0) {
1229 mod
= lsqlite3_tprintf(ctx
,
1230 "DELETE FROM ldb_attribute_values "
1231 "WHERE eid = '%lld' "
1232 "AND norm_attr_name = '%q';",
1235 return LDB_ERR_OPERATIONS_ERROR
;
1238 ret
= sqlite3_exec(lsqlite3
->sqlite
, mod
, NULL
, NULL
, &errmsg
);
1239 if (ret
!= SQLITE_OK
) {
1241 ldb_set_errstring(ldb
, errmsg
);
1244 return LDB_ERR_OPERATIONS_ERROR
;
1248 /* For each value of the specified attribute name... */
1249 for (j
= 0; j
< el
->num_values
; j
++) {
1250 struct ldb_val value
;
1252 /* Get a canonicalised copy of the data */
1253 a
->syntax
->canonicalise_fn(ldb
, ctx
, &(el
->values
[j
]), &value
);
1254 if (value
.data
== NULL
) {
1255 return LDB_ERR_OPERATIONS_ERROR
;
1258 mod
= lsqlite3_tprintf(ctx
,
1259 "DELETE FROM ldb_attribute_values "
1260 "WHERE eid = '%lld' "
1261 "AND norm_attr_name = '%q' "
1262 "AND norm_attr_value = '%q';",
1263 eid
, attr
, value
.data
);
1266 return LDB_ERR_OPERATIONS_ERROR
;
1269 ret
= sqlite3_exec(lsqlite3
->sqlite
, mod
, NULL
, NULL
, &errmsg
);
1270 if (ret
!= SQLITE_OK
) {
1272 ldb_set_errstring(ldb
, errmsg
);
1275 return LDB_ERR_OPERATIONS_ERROR
;
1286 /* delete a record */
1287 static int lsql_delete(struct lsql_context
*ctx
)
1289 struct ldb_module
*module
= ctx
->module
;
1290 struct ldb_request
*req
= ctx
->req
;
1291 struct lsqlite3_private
*lsqlite3
;
1292 struct ldb_context
*ldb
;
1298 ldb
= ldb_module_get_ctx(module
);
1299 lsqlite3
= talloc_get_type(ldb_module_get_private(module
),
1300 struct lsqlite3_private
);
1302 eid
= lsqlite3_get_eid(lsqlite3
, req
->op
.del
.dn
);
1304 return LDB_ERR_OPERATIONS_ERROR
;
1307 query
= lsqlite3_tprintf(ctx
,
1309 "DELETE FROM ldb_entry WHERE eid = %lld; "
1310 /* Delete attributes */
1311 "DELETE FROM ldb_attribute_values WHERE eid = %lld; ",
1313 if (query
== NULL
) {
1314 return LDB_ERR_OPERATIONS_ERROR
;
1317 ret
= sqlite3_exec(lsqlite3
->sqlite
, query
, NULL
, NULL
, &errmsg
);
1318 if (ret
!= SQLITE_OK
) {
1320 ldb_set_errstring(ldb
, errmsg
);
1323 return LDB_ERR_OPERATIONS_ERROR
;
1329 /* rename a record */
1330 static int lsql_rename(struct lsql_context
*ctx
)
1332 struct ldb_module
*module
= ctx
->module
;
1333 struct ldb_request
*req
= ctx
->req
;
1334 struct lsqlite3_private
*lsqlite3
;
1335 struct ldb_context
*ldb
;
1336 char *new_dn
, *new_cdn
, *old_cdn
;
1341 ldb
= ldb_module_get_ctx(module
);
1342 lsqlite3
= talloc_get_type(ldb_module_get_private(module
),
1343 struct lsqlite3_private
);
1345 /* create linearized and normalized dns */
1346 old_cdn
= ldb_dn_alloc_casefold(ctx
, req
->op
.rename
.olddn
);
1347 new_cdn
= ldb_dn_alloc_casefold(ctx
, req
->op
.rename
.newdn
);
1348 new_dn
= ldb_dn_alloc_linearized(ctx
, req
->op
.rename
.newdn
);
1349 if (old_cdn
== NULL
|| new_cdn
== NULL
|| new_dn
== NULL
) {
1350 return LDB_ERR_OPERATIONS_ERROR
;
1353 /* build the SQL query */
1354 query
= lsqlite3_tprintf(ctx
,
1355 "UPDATE ldb_entry SET dn = '%q', norm_dn = '%q' "
1356 "WHERE norm_dn = '%q';",
1357 new_dn
, new_cdn
, old_cdn
);
1358 if (query
== NULL
) {
1359 return LDB_ERR_OPERATIONS_ERROR
;
1363 ret
= sqlite3_exec(lsqlite3
->sqlite
, query
, NULL
, NULL
, &errmsg
);
1364 if (ret
!= SQLITE_OK
) {
1366 ldb_set_errstring(ldb
, errmsg
);
1369 return LDB_ERR_OPERATIONS_ERROR
;
1375 static int lsql_start_trans(struct ldb_module
* module
)
1379 struct lsqlite3_private
*lsqlite3
;
1381 lsqlite3
= talloc_get_type(ldb_module_get_private(module
),
1382 struct lsqlite3_private
);
1384 if (lsqlite3
->trans_count
== 0) {
1385 ret
= sqlite3_exec(lsqlite3
->sqlite
, "BEGIN IMMEDIATE;", NULL
, NULL
, &errmsg
);
1386 if (ret
!= SQLITE_OK
) {
1388 printf("lsqlite3_start_trans: error: %s\n", errmsg
);
1395 lsqlite3
->trans_count
++;
1400 static int lsql_end_trans(struct ldb_module
*module
)
1404 struct lsqlite3_private
*lsqlite3
;
1406 lsqlite3
= talloc_get_type(ldb_module_get_private(module
),
1407 struct lsqlite3_private
);
1409 if (lsqlite3
->trans_count
> 0) {
1410 lsqlite3
->trans_count
--;
1413 if (lsqlite3
->trans_count
== 0) {
1414 ret
= sqlite3_exec(lsqlite3
->sqlite
, "COMMIT;", NULL
, NULL
, &errmsg
);
1415 if (ret
!= SQLITE_OK
) {
1417 printf("lsqlite3_end_trans: error: %s\n", errmsg
);
1427 static int lsql_del_trans(struct ldb_module
*module
)
1429 struct lsqlite3_private
*lsqlite3
;
1431 lsqlite3
= talloc_get_type(ldb_module_get_private(module
),
1432 struct lsqlite3_private
);
1434 if (lsqlite3
->trans_count
> 0) {
1435 lsqlite3
->trans_count
--;
1438 if (lsqlite3
->trans_count
== 0) {
1439 return lsqlite3_safe_rollback(lsqlite3
->sqlite
);
1445 static int destructor(struct lsqlite3_private
*lsqlite3
)
1447 if (lsqlite3
->sqlite
) {
1448 sqlite3_close(lsqlite3
->sqlite
);
1453 static void lsql_request_done(struct lsql_context
*ctx
, int error
)
1455 struct ldb_context
*ldb
;
1456 struct ldb_request
*req
;
1457 struct ldb_reply
*ares
;
1459 ldb
= ldb_module_get_ctx(ctx
->module
);
1462 /* if we already returned an error just return */
1463 if (ldb_request_get_status(req
) != LDB_SUCCESS
) {
1467 ares
= talloc_zero(req
, struct ldb_reply
);
1470 req
->callback(req
, NULL
);
1473 ares
->type
= LDB_REPLY_DONE
;
1474 ares
->error
= error
;
1476 req
->callback(req
, ares
);
1479 static void lsql_timeout(struct tevent_context
*ev
,
1480 struct tevent_timer
*te
,
1484 struct lsql_context
*ctx
;
1485 ctx
= talloc_get_type(private_data
, struct lsql_context
);
1487 lsql_request_done(ctx
, LDB_ERR_TIME_LIMIT_EXCEEDED
);
1490 static void lsql_callback(struct tevent_context
*ev
,
1491 struct tevent_timer
*te
,
1495 struct lsql_context
*ctx
;
1498 ctx
= talloc_get_type(private_data
, struct lsql_context
);
1500 switch (ctx
->req
->operation
) {
1502 ret
= lsql_search(ctx
);
1505 ret
= lsql_add(ctx
);
1508 ret
= lsql_modify(ctx
);
1511 ret
= lsql_delete(ctx
);
1514 ret
= lsql_rename(ctx
);
1518 ret = lsql_extended(ctx);
1522 /* no other op supported */
1523 ret
= LDB_ERR_PROTOCOL_ERROR
;
1526 if (!ctx
->callback_failed
) {
1527 /* Once we are done, we do not need timeout events */
1528 talloc_free(ctx
->timeout_event
);
1529 lsql_request_done(ctx
, ret
);
1533 static int lsql_handle_request(struct ldb_module
*module
, struct ldb_request
*req
)
1535 struct ldb_context
*ldb
;
1536 struct tevent_context
*ev
;
1537 struct lsql_context
*ac
;
1538 struct tevent_timer
*te
;
1541 if (ldb_check_critical_controls(req
->controls
)) {
1542 return LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION
;
1545 if (req
->starttime
== 0 || req
->timeout
== 0) {
1546 ldb_set_errstring(ldb
, "Invalid timeout settings");
1547 return LDB_ERR_TIME_LIMIT_EXCEEDED
;
1550 ldb
= ldb_module_get_ctx(module
);
1551 ev
= ldb_get_event_context(ldb
);
1553 ac
= talloc_zero(req
, struct lsql_context
);
1555 ldb_set_errstring(ldb
, "Out of Memory");
1556 return LDB_ERR_OPERATIONS_ERROR
;
1559 ac
->module
= module
;
1564 te
= tevent_add_timer(ev
, ac
, tv
, lsql_callback
, ac
);
1566 return LDB_ERR_OPERATIONS_ERROR
;
1569 tv
.tv_sec
= req
->starttime
+ req
->timeout
;
1570 ac
->timeout_event
= tevent_add_timer(ev
, ac
, tv
, lsql_timeout
, ac
);
1571 if (NULL
== ac
->timeout_event
) {
1572 return LDB_ERR_OPERATIONS_ERROR
;
1579 * Table of operations for the sqlite3 backend
1581 static const struct ldb_module_ops lsqlite3_ops
= {
1583 .search
= lsql_handle_request
,
1584 .add
= lsql_handle_request
,
1585 .modify
= lsql_handle_request
,
1586 .del
= lsql_handle_request
,
1587 .rename
= lsql_handle_request
,
1588 .extended
= lsql_handle_request
,
1589 .start_transaction
= lsql_start_trans
,
1590 .end_transaction
= lsql_end_trans
,
1591 .del_transaction
= lsql_del_trans
,
1598 static int initialize(struct lsqlite3_private
*lsqlite3
,
1599 struct ldb_context
*ldb
, const char *url
,
1602 TALLOC_CTX
*local_ctx
;
1609 /* create a local ctx */
1610 local_ctx
= talloc_named(lsqlite3
, 0, "lsqlite3_rename local context");
1611 if (local_ctx
== NULL
) {
1615 schema
= lsqlite3_tprintf(local_ctx
,
1618 "CREATE TABLE ldb_info AS "
1619 " SELECT 'LDB' AS database_type,"
1620 " '1.0' AS version;"
1623 * The entry table holds the information about an entry.
1624 * This table is used to obtain the EID of the entry and to
1625 * support scope=one and scope=base. The parent and child
1626 * table is included in the entry table since all the other
1627 * attributes are dependent on EID.
1629 "CREATE TABLE ldb_entry "
1631 " eid INTEGER PRIMARY KEY AUTOINCREMENT,"
1632 " dn TEXT UNIQUE NOT NULL,"
1633 " norm_dn TEXT UNIQUE NOT NULL"
1637 "CREATE TABLE ldb_object_classes"
1639 " class_name TEXT PRIMARY KEY,"
1640 " parent_class_name TEXT,"
1641 " tree_key TEXT UNIQUE,"
1642 " max_child_num INTEGER DEFAULT 0"
1646 * We keep a full listing of attribute/value pairs here
1648 "CREATE TABLE ldb_attribute_values"
1650 " eid INTEGER REFERENCES ldb_entry,"
1652 " norm_attr_name TEXT,"
1654 " norm_attr_value TEXT "
1661 "CREATE INDEX ldb_attribute_values_eid_idx "
1662 " ON ldb_attribute_values (eid);"
1664 "CREATE INDEX ldb_attribute_values_name_value_idx "
1665 " ON ldb_attribute_values (attr_name, norm_attr_value);"
1673 "CREATE TRIGGER ldb_object_classes_insert_tr"
1675 " ON ldb_object_classes"
1678 " UPDATE ldb_object_classes"
1679 " SET tree_key = COALESCE(tree_key, "
1681 " SELECT tree_key || "
1682 " (SELECT base160(max_child_num + 1)"
1683 " FROM ldb_object_classes"
1684 " WHERE class_name = "
1685 " new.parent_class_name)"
1686 " FROM ldb_object_classes "
1687 " WHERE class_name = new.parent_class_name "
1689 " UPDATE ldb_object_classes "
1690 " SET max_child_num = max_child_num + 1"
1691 " WHERE class_name = new.parent_class_name;"
1695 * Table initialization
1698 "INSERT INTO ldb_object_classes "
1699 " (class_name, tree_key) "
1701 " ('TOP', '0001');");
1703 /* Skip protocol indicator of url */
1704 if (strncmp(url
, "sqlite3://", 10) != 0) {
1705 return SQLITE_MISUSE
;
1708 /* Update pointer to just after the protocol indicator */
1711 /* Try to open the (possibly empty/non-existent) database */
1712 if ((ret
= sqlite3_open(url
, &lsqlite3
->sqlite
)) != SQLITE_OK
) {
1716 /* In case this is a new database, enable auto_vacuum */
1717 ret
= sqlite3_exec(lsqlite3
->sqlite
, "PRAGMA auto_vacuum = 1;", NULL
, NULL
, &errmsg
);
1718 if (ret
!= SQLITE_OK
) {
1720 printf("lsqlite3 initializaion error: %s\n", errmsg
);
1726 if (flags
& LDB_FLG_NOSYNC
) {
1728 ret
= sqlite3_exec(lsqlite3
->sqlite
, "PRAGMA synchronous = OFF;", NULL
, NULL
, &errmsg
);
1729 if (ret
!= SQLITE_OK
) {
1731 printf("lsqlite3 initializaion error: %s\n", errmsg
);
1740 /* Establish a busy timeout of 30 seconds */
1741 if ((ret
= sqlite3_busy_timeout(lsqlite3
->sqlite
,
1742 30000)) != SQLITE_OK
) {
1746 /* Create a function, callable from sql, to increment a tree_key */
1748 sqlite3_create_function(lsqlite3
->sqlite
,/* handle */
1749 "base160_next", /* function name */
1750 1, /* number of args */
1751 SQLITE_ANY
, /* preferred text type */
1752 NULL
, /* user data */
1753 base160next_sql
, /* called func */
1754 NULL
, /* step func */
1755 NULL
/* final func */
1760 /* Create a function, callable from sql, to convert int to base160 */
1762 sqlite3_create_function(lsqlite3
->sqlite
,/* handle */
1763 "base160", /* function name */
1764 1, /* number of args */
1765 SQLITE_ANY
, /* preferred text type */
1766 NULL
, /* user data */
1767 base160_sql
, /* called func */
1768 NULL
, /* step func */
1769 NULL
/* final func */
1774 /* Create a function, callable from sql, to perform various comparisons */
1776 sqlite3_create_function(lsqlite3
->sqlite
, /* handle */
1777 "ldap_compare", /* function name */
1778 4, /* number of args */
1779 SQLITE_ANY
, /* preferred text type */
1780 ldb
, /* user data */
1781 lsqlite3_compare
, /* called func */
1782 NULL
, /* step func */
1783 NULL
/* final func */
1788 /* Begin a transaction */
1789 ret
= sqlite3_exec(lsqlite3
->sqlite
, "BEGIN EXCLUSIVE;", NULL
, NULL
, &errmsg
);
1790 if (ret
!= SQLITE_OK
) {
1792 printf("lsqlite3: initialization error: %s\n", errmsg
);
1799 /* Determine if this is a new database. No tables means it is. */
1800 if (query_int(lsqlite3
,
1803 " FROM sqlite_master\n"
1804 " WHERE type = 'table';") != 0) {
1808 if (queryInt
== 0) {
1810 * Create the database schema
1812 ret
= sqlite3_exec(lsqlite3
->sqlite
, schema
, NULL
, NULL
, &errmsg
);
1813 if (ret
!= SQLITE_OK
) {
1815 printf("lsqlite3 initializaion error: %s\n", errmsg
);
1822 * Ensure that the database we opened is one of ours
1824 if (query_int(lsqlite3
,
1827 " (SELECT COUNT(*) = 2"
1828 " FROM sqlite_master "
1829 " WHERE type = 'table' "
1833 " 'ldb_object_classes' "
1839 " WHERE database_type = 'LDB' "
1840 " AND version = '1.0'"
1844 /* It's not one that we created. See ya! */
1849 /* Commit the transaction */
1850 ret
= sqlite3_exec(lsqlite3
->sqlite
, "COMMIT;", NULL
, NULL
, &errmsg
);
1851 if (ret
!= SQLITE_OK
) {
1853 printf("lsqlite3: iniialization error: %s\n", errmsg
);
1862 if (rollback
) lsqlite3_safe_rollback(lsqlite3
->sqlite
);
1863 sqlite3_close(lsqlite3
->sqlite
);
1868 * connect to the database
1870 static int lsqlite3_connect(struct ldb_context
*ldb
,
1873 const char *options
[],
1874 struct ldb_module
**_module
)
1876 struct ldb_module
*module
;
1877 struct lsqlite3_private
*lsqlite3
;
1881 module
= ldb_module_new(ldb
, ldb
, "ldb_sqlite3 backend", &lsqlite3_ops
);
1882 if (!module
) return LDB_ERR_OPERATIONS_ERROR
;
1884 lsqlite3
= talloc(module
, struct lsqlite3_private
);
1889 lsqlite3
->sqlite
= NULL
;
1890 lsqlite3
->options
= NULL
;
1891 lsqlite3
->trans_count
= 0;
1893 ret
= initialize(lsqlite3
, ldb
, url
, flags
);
1894 if (ret
!= SQLITE_OK
) {
1898 talloc_set_destructor(lsqlite3
, destructor
);
1900 ldb_module_set_private(module
, lsqlite3
);
1904 * take a copy of the options array, so we don't have to rely
1905 * on the caller keeping it around (it might be dynamic)
1907 for (i
=0;options
[i
];i
++) ;
1909 lsqlite3
->options
= talloc_array(lsqlite3
, char *, i
+1);
1910 if (!lsqlite3
->options
) {
1914 for (i
=0;options
[i
];i
++) {
1916 lsqlite3
->options
[i
+1] = NULL
;
1917 lsqlite3
->options
[i
] =
1918 talloc_strdup(lsqlite3
->options
, options
[i
]);
1919 if (!lsqlite3
->options
[i
]) {
1929 if (lsqlite3
&& lsqlite3
->sqlite
!= NULL
) {
1930 (void) sqlite3_close(lsqlite3
->sqlite
);
1932 talloc_free(lsqlite3
);
1933 return LDB_ERR_OPERATIONS_ERROR
;
1936 int ldb_sqlite3_init(const char *version
)
1938 LDB_MODULE_CHECK_VERSION(version
);
1939 return ldb_register_backend("sqlite3", lsqlite3_connect
, false);