r10753: don't require every ldb module to implement both a search_bytree() and
[metze/samba/wip.git] / source4 / lib / ldb / ldb_sqlite3 / ldb_sqlite3.c
1 /* 
2    ldb database library
3    
4    Copyright (C) Derrell Lipman  2005
5    Copyright (C) Simo Sorce 2005
6    
7    ** NOTE! The following LGPL license applies to the ldb
8    ** library. This does NOT imply that all of Samba is released
9    ** under the LGPL
10    
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 2 of the License, or (at your option) any later version.
15    
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.
20    
21    You should have received a copy of the GNU Lesser General Public
22    License along with this library; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24 */
25
26 /*
27  *  Name: ldb
28  *
29  *  Component: ldb sqlite3 backend
30  *
31  *  Description: core files for SQLITE3 backend
32  *
33  *  Author: Derrell Lipman (based on Andrew Tridgell's LDAP backend)
34  */
35
36 #include <stdarg.h>
37 #include "includes.h"
38 #include "ldb/include/ldb.h"
39 #include "ldb/include/ldb_errors.h"
40 #include "ldb/include/ldb_private.h"
41 #include "ldb/ldb_sqlite3/ldb_sqlite3.h"
42
43 /*
44  * Macros used throughout
45  */
46
47 #ifndef FALSE
48 # define FALSE  (0)
49 # define TRUE   (! FALSE)
50 #endif
51
52 #define RESULT_ATTR_TABLE       "temp_result_attrs"
53
54 //#define TEMPTAB                 /* for testing, create non-temporary table */
55 #define TEMPTAB                 "TEMPORARY"
56
57 /*
58  * Static variables
59  */
60 sqlite3_stmt *  stmtGetEID = NULL;
61
62 static char *lsqlite3_tprintf(TALLOC_CTX *mem_ctx, const char *fmt, ...)
63 {
64         char *str, *ret;
65         va_list ap;
66
67         va_start(ap, fmt);
68         str = sqlite3_vmprintf(fmt, ap);
69         va_end(ap);
70
71         if (str == NULL) return NULL;
72
73         ret = talloc_strdup(mem_ctx, str);
74         if (ret == NULL) {
75                 sqlite3_free(str);
76                 return NULL;
77         }
78
79         sqlite3_free(str);
80         return ret;
81 }
82
83 static unsigned char        base160tab[161] = {
84         48 ,49 ,50 ,51 ,52 ,53 ,54 ,55 ,56 ,57 , /* 0-9 */
85         58 ,59 ,65 ,66 ,67 ,68 ,69 ,70 ,71 ,72 , /* : ; A-H */
86         73 ,74 ,75 ,76 ,77 ,78 ,79 ,80 ,81 ,82 , /* I-R */
87         83 ,84 ,85 ,86 ,87 ,88 ,89 ,90 ,97 ,98 , /* S-Z , a-b */
88         99 ,100,101,102,103,104,105,106,107,108, /* c-l */
89         109,110,111,112,113,114,115,116,117,118, /* m-v */
90         119,120,121,122,160,161,162,163,164,165, /* w-z, latin1 */
91         166,167,168,169,170,171,172,173,174,175, /* latin1 */
92         176,177,178,179,180,181,182,183,184,185, /* latin1 */
93         186,187,188,189,190,191,192,193,194,195, /* latin1 */
94         196,197,198,199,200,201,202,203,204,205, /* latin1 */
95         206,207,208,209,210,211,212,213,214,215, /* latin1 */
96         216,217,218,219,220,221,222,223,224,225, /* latin1 */
97         226,227,228,229,230,231,232,233,234,235, /* latin1 */
98         236,237,238,239,240,241,242,243,244,245, /* latin1 */
99         246,247,248,249,250,251,252,253,254,255, /* latin1 */
100         '\0'
101 };
102
103
104 /*
105  * base160()
106  *
107  * Convert an unsigned long integer into a base160 representation of the
108  * number.
109  *
110  * Parameters:
111  *   val --
112  *     value to be converted
113  *
114  *   result --
115  *     character array, 5 bytes long, into which the base160 representation
116  *     will be placed.  The result will be a four-digit representation of the
117  *     number (with leading zeros prepended as necessary), and null
118  *     terminated.
119  *
120  * Returns:
121  *   Nothing
122  */
123 static void
124 base160_sql(sqlite3_context * hContext,
125             int argc,
126             sqlite3_value ** argv)
127 {
128     int             i;
129     long long       val;
130     char            result[5];
131
132     val = sqlite3_value_int64(argv[0]);
133
134     for (i = 3; i >= 0; i--) {
135         
136         result[i] = base160tab[val % 160];
137         val /= 160;
138     }
139
140     result[4] = '\0';
141
142     sqlite3_result_text(hContext, result, -1, SQLITE_TRANSIENT);
143 }
144
145
146 /*
147  * base160next_sql()
148  *
149  * This function enhances sqlite by adding a "base160_next()" function which is
150  * accessible via queries.
151  *
152  * Retrieve the next-greater number in the base160 sequence for the terminal
153  * tree node (the last four digits).  Only one tree level (four digits) is
154  * operated on.
155  *
156  * Input:
157  *   A character string: either an empty string (in which case no operation is
158  *   performed), or a string of base160 digits with a length of a multiple of
159  *   four digits.
160  *
161  * Output:
162  *   Upon return, the trailing four digits (one tree level) will have been
163  *   incremented by 1.
164  */
165 static void
166 base160next_sql(sqlite3_context * hContext,
167                 int argc,
168                 sqlite3_value ** argv)
169 {
170         int                         i;
171         int                         len;
172         unsigned char *             pTab;
173         unsigned char *             pBase160 =
174                 strdup(sqlite3_value_text(argv[0]));
175         unsigned char *             pStart = pBase160;
176
177         /*
178          * We need a minimum of four digits, and we will always get a multiple
179          * of four digits.
180          */
181         if (pBase160 != NULL &&
182             (len = strlen(pBase160)) >= 4 &&
183             len % 4 == 0) {
184
185                 if (pBase160 == NULL) {
186
187                         sqlite3_result_null(hContext);
188                         return;
189                 }
190
191                 pBase160 += strlen(pBase160) - 1;
192
193                 /* We only carry through four digits: one level in the tree */
194                 for (i = 0; i < 4; i++) {
195
196                         /* What base160 value does this digit have? */
197                         pTab = strchr(base160tab, *pBase160);
198
199                         /* Is there a carry? */
200                         if (pTab < base160tab + sizeof(base160tab) - 1) {
201
202                                 /*
203                                  * Nope.  Just increment this value and we're
204                                  * done.
205                                  */
206                                 *pBase160 = *++pTab;
207                                 break;
208                         } else {
209
210                                 /*
211                                  * There's a carry.  This value gets
212                                  * base160tab[0], we decrement the buffer
213                                  * pointer to get the next higher-order digit,
214                                  * and continue in the loop.
215                                  */
216                                 *pBase160-- = base160tab[0];
217                         }
218                 }
219
220                 sqlite3_result_text(hContext,
221                                     pStart,
222                                     strlen(pStart),
223                                     free);
224         } else {
225                 sqlite3_result_value(hContext, argv[0]);
226                 if (pBase160 != NULL) {
227                         free(pBase160);
228                 }
229         }
230 }
231
232 static char *parsetree_to_sql(struct ldb_module *module,
233                               void *mem_ctx,
234                               const struct ldb_parse_tree *t)
235 {
236         const struct ldb_attrib_handler *h;
237         struct ldb_val value, subval;
238         char *wild_card_string;
239         char *child, *tmp;
240         char *ret = NULL;
241         char *attr;
242         int i;
243
244
245         switch(t->operation) {
246         case LDB_OP_AND:
247
248                 tmp = parsetree_to_sql(module, mem_ctx, t->u.list.elements[0]);
249                 if (tmp == NULL) return NULL;
250
251                 for (i = 1; i < t->u.list.num_elements; i++) {
252
253                         child = parsetree_to_sql(module, mem_ctx, t->u.list.elements[i]);
254                         if (child == NULL) return NULL;
255
256                         tmp = talloc_asprintf_append(tmp, " INTERSECT %s ", child);
257                         if (tmp == NULL) return NULL;
258                 }
259
260                 ret = talloc_asprintf(mem_ctx, "SELECT * FROM ( %s )\n", tmp);
261
262                 return ret;
263                 
264         case LDB_OP_OR:
265
266                 tmp = parsetree_to_sql(module, mem_ctx, t->u.list.elements[0]);
267                 if (tmp == NULL) return NULL;
268
269                 for (i = 1; i < t->u.list.num_elements; i++) {
270
271                         child = parsetree_to_sql(module, mem_ctx, t->u.list.elements[i]);
272                         if (child == NULL) return NULL;
273
274                         tmp = talloc_asprintf_append(tmp, " UNION %s ", child);
275                         if (tmp == NULL) return NULL;
276                 }
277
278                 return talloc_asprintf(mem_ctx, "SELECT * FROM ( %s ) ", tmp);
279
280         case LDB_OP_NOT:
281
282                 child = parsetree_to_sql(module, mem_ctx, t->u.isnot.child);
283                 if (child == NULL) return NULL;
284
285                 return talloc_asprintf(mem_ctx,
286                                         "SELECT eid FROM ldb_entry "
287                                         "WHERE eid NOT IN ( %s ) ", child);
288
289         case LDB_OP_EQUALITY:
290                 /*
291                  * For simple searches, we want to retrieve the list of EIDs that
292                  * match the criteria.
293                 */
294                 attr = ldb_casefold(mem_ctx, t->u.equality.attr);
295                 if (attr == NULL) return NULL;
296                 h = ldb_attrib_handler(module->ldb, attr);
297
298                 /* Get a canonicalised copy of the data */
299                 h->canonicalise_fn(module->ldb, mem_ctx, &(t->u.equality.value), &value);
300                 if (value.data == NULL) {
301                         return NULL;
302                 }
303
304                 if (strcasecmp(t->u.equality.attr, "objectclass") == 0) {
305                 /*
306                  * For object classes, we want to search for all objectclasses
307                  * that are subclasses as well.
308                 */
309                         return lsqlite3_tprintf(mem_ctx,
310                                         "SELECT eid  FROM ldb_attribute_values\n"
311                                         "WHERE norm_attr_name = 'OBJECTCLASS' "
312                                         "AND norm_attr_value IN\n"
313                                         "  (SELECT class_name FROM ldb_object_classes\n"
314                                         "   WHERE tree_key GLOB\n"
315                                         "     (SELECT tree_key FROM ldb_object_classes\n"
316                                         "      WHERE class_name = '%q'\n"
317                                         "     ) || '*'\n"
318                                         "  )\n", value.data);
319
320                 } else if (strcasecmp(t->u.equality.attr, "dn") == 0) {
321                         /* DN query is a special ldb case */
322                         char *cdn = ldb_dn_linearize_casefold(module->ldb,
323                                                               ldb_dn_explode(module->ldb,
324                                                               value.data));
325
326                         return lsqlite3_tprintf(mem_ctx,
327                                                 "SELECT eid FROM ldb_entry "
328                                                 "WHERE norm_dn = '%q'", cdn);
329
330                 } else {
331                         /* A normal query. */
332                         return lsqlite3_tprintf(mem_ctx,
333                                                 "SELECT eid FROM ldb_attribute_values "
334                                                 "WHERE norm_attr_name = '%q' "
335                                                 "AND norm_attr_value = '%q'",
336                                                 attr,
337                                                 value.data);
338
339                 }
340
341         case LDB_OP_SUBSTRING:
342
343                 wild_card_string = talloc_strdup(mem_ctx,
344                                         (t->u.substring.start_with_wildcard)?"*":"");
345                 if (wild_card_string == NULL) return NULL;
346
347                 for (i = 0; t->u.substring.chunks[i]; i++) {
348                         wild_card_string = talloc_asprintf_append(wild_card_string, "%s*",
349                                                         t->u.substring.chunks[i]->data);
350                         if (wild_card_string == NULL) return NULL;
351                 }
352
353                 if ( ! t->u.substring.end_with_wildcard ) {
354                         /* remove last wildcard */
355                         wild_card_string[strlen(wild_card_string) - 1] = '\0';
356                 }
357
358                 attr = ldb_casefold(mem_ctx, t->u.substring.attr);
359                 if (attr == NULL) return NULL;
360                 h = ldb_attrib_handler(module->ldb, attr);
361
362                 subval.data = wild_card_string;
363                 subval.length = strlen(wild_card_string) + 1;
364
365                 /* Get a canonicalised copy of the data */
366                 h->canonicalise_fn(module->ldb, mem_ctx, &(subval), &value);
367                 if (value.data == NULL) {
368                         return NULL;
369                 }
370
371                 return lsqlite3_tprintf(mem_ctx,
372                                         "SELECT eid FROM ldb_attribute_values "
373                                         "WHERE norm_attr_name = '%q' "
374                                         "AND norm_attr_value GLOB '%q'",
375                                         attr,
376                                         value.data);
377
378         case LDB_OP_GREATER:
379                 attr = ldb_casefold(mem_ctx, t->u.equality.attr);
380                 if (attr == NULL) return NULL;
381                 h = ldb_attrib_handler(module->ldb, attr);
382
383                 /* Get a canonicalised copy of the data */
384                 h->canonicalise_fn(module->ldb, mem_ctx, &(t->u.equality.value), &value);
385                 if (value.data == NULL) {
386                         return NULL;
387                 }
388
389                 return lsqlite3_tprintf(mem_ctx,
390                                         "SELECT eid FROM ldb_attribute_values "
391                                         "WHERE norm_attr_name = '%q' "
392                                         "AND ldap_compare(norm_attr_value, '>=', '%q', '%q') ",
393                                         attr,
394                                         value.data,
395                                         attr);
396
397         case LDB_OP_LESS:
398                 attr = ldb_casefold(mem_ctx, t->u.equality.attr);
399                 if (attr == NULL) return NULL;
400                 h = ldb_attrib_handler(module->ldb, attr);
401
402                 /* Get a canonicalised copy of the data */
403                 h->canonicalise_fn(module->ldb, mem_ctx, &(t->u.equality.value), &value);
404                 if (value.data == NULL) {
405                         return NULL;
406                 }
407
408                 return lsqlite3_tprintf(mem_ctx,
409                                         "SELECT eid FROM ldb_attribute_values "
410                                         "WHERE norm_attr_name = '%q' "
411                                         "AND ldap_compare(norm_attr_value, '<=', '%q', '%q') ",
412                                         attr,
413                                         value.data,
414                                         attr);
415
416         case LDB_OP_PRESENT:
417                 if (strcasecmp(t->u.present.attr, "dn") == 0) {
418                         return talloc_strdup(mem_ctx, "SELECT eid FROM ldb_entry");
419                 }
420
421                 attr = ldb_casefold(mem_ctx, t->u.present.attr);
422                 if (attr == NULL) return NULL;
423
424                 return lsqlite3_tprintf(mem_ctx,
425                                         "SELECT eid FROM ldb_attribute_values "
426                                         "WHERE norm_attr_name = '%q' ",
427                                         attr);
428
429         case LDB_OP_APPROX:
430                 attr = ldb_casefold(mem_ctx, t->u.equality.attr);
431                 if (attr == NULL) return NULL;
432                 h = ldb_attrib_handler(module->ldb, attr);
433
434                 /* Get a canonicalised copy of the data */
435                 h->canonicalise_fn(module->ldb, mem_ctx, &(t->u.equality.value), &value);
436                 if (value.data == NULL) {
437                         return NULL;
438                 }
439
440                 return lsqlite3_tprintf(mem_ctx,
441                                         "SELECT eid FROM ldb_attribute_values "
442                                         "WHERE norm_attr_name = '%q' "
443                                         "AND ldap_compare(norm_attr_value, '~%', 'q', '%q') ",
444                                         attr,
445                                         value.data,
446                                         attr);
447                 
448         case LDB_OP_EXTENDED:
449 #warning  "work out how to handle bitops"
450                 return NULL;
451
452         default:
453                 break;
454         };
455
456         /* should never occur */
457         abort();
458         return NULL;
459 }
460
461 /*
462  * query_int()
463  *
464  * This function is used for the common case of queries that return a single
465  * integer value.
466  *
467  * NOTE: If more than one value is returned by the query, all but the first
468  * one will be ignored.
469  */
470 static int
471 query_int(const struct lsqlite3_private * lsqlite3,
472           long long * pRet,
473           const char * pSql,
474           ...)
475 {
476         int             ret;
477         int             bLoop;
478         char *          p;
479         sqlite3_stmt *  pStmt;
480         va_list         args;
481         
482         /* Begin access to variable argument list */
483         va_start(args, pSql);
484         
485         /* Format the query */
486         if ((p = sqlite3_vmprintf(pSql, args)) == NULL) {
487                 return SQLITE_NOMEM;
488         }
489         
490         /*
491          * Prepare and execute the SQL statement.  Loop allows retrying on
492          * certain errors, e.g. SQLITE_SCHEMA occurs if the schema changes,
493          * requiring retrying the operation.
494          */
495         for (bLoop = TRUE; bLoop; ) {
496                 
497                 /* Compile the SQL statement into sqlite virtual machine */
498                 if ((ret = sqlite3_prepare(lsqlite3->sqlite,
499                                            p,
500                                            -1,
501                                            &pStmt,
502                                            NULL)) == SQLITE_SCHEMA) {
503                         if (stmtGetEID != NULL) {
504                                 sqlite3_finalize(stmtGetEID);
505                                 stmtGetEID = NULL;
506                         }
507                         continue;
508                 } else if (ret != SQLITE_OK) {
509                         break;
510                 }
511                 
512                 /* One row expected */
513                 if ((ret = sqlite3_step(pStmt)) == SQLITE_SCHEMA) {
514                         if (stmtGetEID != NULL) {
515                                 sqlite3_finalize(stmtGetEID);
516                                 stmtGetEID = NULL;
517                         }
518                         (void) sqlite3_finalize(pStmt);
519                         continue;
520                 } else if (ret != SQLITE_ROW) {
521                         (void) sqlite3_finalize(pStmt);
522                         break;
523                 }
524                 
525                 /* Get the value to be returned */
526                 *pRet = sqlite3_column_int64(pStmt, 0);
527                 
528                 /* Free the virtual machine */
529                 if ((ret = sqlite3_finalize(pStmt)) == SQLITE_SCHEMA) {
530                         if (stmtGetEID != NULL) {
531                                 sqlite3_finalize(stmtGetEID);
532                                 stmtGetEID = NULL;
533                         }
534                         continue;
535                 } else if (ret != SQLITE_OK) {
536                         (void) sqlite3_finalize(pStmt);
537                         break;
538                 }
539                 
540                 /*
541                  * Normal condition is only one time through loop.  Loop is
542                  * rerun in error conditions, via "continue", above.
543                  */
544                 bLoop = FALSE;
545         }
546         
547         /* All done with variable argument list */
548         va_end(args);
549         
550
551         /* Free the memory we allocated for our query string */
552         sqlite3_free(p);
553         
554         return ret;
555 }
556
557 /*
558  * This is a bad hack to support ldap style comparisons whithin sqlite.
559  * val is the attribute in the row currently under test
560  * func is the desired test "<=" ">=" "~" ":"
561  * cmp is the value to compare against (eg: "test")
562  * attr is the attribute name the value of which we want to test
563  */
564
565 static void lsqlite3_compare(sqlite3_context *ctx, int argc,
566                                         sqlite3_value **argv)
567 {
568         struct ldb_context *ldb = (struct ldb_context *)sqlite3_user_data(ctx);
569         const unsigned char *val = sqlite3_value_text(argv[0]);
570         const unsigned char *func = sqlite3_value_text(argv[1]);
571         const unsigned char *cmp = sqlite3_value_text(argv[2]);
572         const unsigned char *attr = sqlite3_value_text(argv[3]);
573         const struct ldb_attrib_handler *h;
574         struct ldb_val valX;
575         struct ldb_val valY;
576         int ret;
577
578         switch (func[0]) {
579         /* greater */
580         case '>': /* >= */
581                 h = ldb_attrib_handler(ldb, attr);
582                 valX.data = cmp;
583                 valX.length = strlen(cmp);
584                 valY.data = val;
585                 valY.length = strlen(val);
586                 ret = h->comparison_fn(ldb, ldb, &valY, &valX);
587                 if (ret >= 0)
588                         sqlite3_result_int(ctx, 1);
589                 else
590                         sqlite3_result_int(ctx, 0);
591                 return;
592
593         /* lesser */
594         case '<': /* <= */
595                 h = ldb_attrib_handler(ldb, attr);
596                 valX.data = cmp;
597                 valX.length = strlen(cmp);
598                 valY.data = val;
599                 valY.length = strlen(val);
600                 ret = h->comparison_fn(ldb, ldb, &valY, &valX);
601                 if (ret <= 0)
602                         sqlite3_result_int(ctx, 1);
603                 else
604                         sqlite3_result_int(ctx, 0);
605                 return;
606
607         /* approx */
608         case '~':
609                 /* TODO */
610                 sqlite3_result_int(ctx, 0);
611                 return;
612
613         /* bitops */
614         case ':':
615                 /* TODO */
616                 sqlite3_result_int(ctx, 0);
617                 return;
618
619         default:
620                 break;
621         }
622
623         sqlite3_result_error(ctx, "Value must start with a special operation char (<>~:)!", -1);
624         return;
625 }
626
627
628 /* rename a record */
629 static int lsqlite3_safe_rollback(sqlite3 *sqlite)
630 {
631         char *errmsg;
632         int ret;
633
634         /* execute */
635         ret = sqlite3_exec(sqlite, "ROLLBACK;", NULL, NULL, &errmsg);
636         if (ret != SQLITE_OK) {
637                 if (errmsg) {
638                         printf("lsqlite3_safe_rollback: Error: %s\n", errmsg);
639                         free(errmsg);
640                 }
641                 return -1;
642         }
643
644         return 0;
645 }
646
647 /* return an eid as result */
648 static int lsqlite3_eid_callback(void *result, int col_num, char **cols, char **names)
649 {
650         long long *eid = (long long *)result;
651
652         if (col_num != 1) return SQLITE_ABORT;
653         if (strcasecmp(names[0], "eid") != 0) return SQLITE_ABORT;
654
655         *eid = atoll(cols[0]);
656         return SQLITE_OK;
657 }
658
659 struct lsqlite3_msgs {
660         int count;
661         struct ldb_message **msgs;
662         long long current_eid;
663         const char * const * attrs;
664         TALLOC_CTX *mem_ctx;
665 };
666
667 /*
668  * add a single set of ldap message values to a ldb_message
669  */
670
671 static int lsqlite3_search_callback(void *result, int col_num, char **cols, char **names)
672 {
673         struct lsqlite3_msgs *msgs = (struct lsqlite3_msgs *)result;
674         struct ldb_message *msg;
675         long long eid;
676         int i;
677
678         /* eid, dn, attr_name, attr_value */
679         if (col_num != 4) return SQLITE_ABORT;
680
681         eid = atoll(cols[0]);
682
683         if (eid != msgs->current_eid) {
684                 msgs->msgs = talloc_realloc(msgs->mem_ctx,
685                                             msgs->msgs,
686                                             struct ldb_message *,
687                                             msgs->count + 2);
688                 if (msgs->msgs == NULL) return SQLITE_ABORT;
689
690                 msgs->msgs[msgs->count] = talloc(msgs->msgs, struct ldb_message);
691                 if (msgs->msgs[msgs->count] == NULL) return SQLITE_ABORT;
692
693                 msgs->msgs[msgs->count]->dn = NULL;
694                 msgs->msgs[msgs->count]->num_elements = 0;
695                 msgs->msgs[msgs->count]->elements = NULL;
696                 msgs->msgs[msgs->count]->private_data = NULL;
697
698                 msgs->count++;
699                 msgs->current_eid = eid;
700         }
701
702         msg = msgs->msgs[msgs->count -1];
703
704         if (msg->dn == NULL) {
705                 msg->dn = ldb_dn_explode(msg, cols[1]);
706                 if (msg->dn == NULL) return SQLITE_ABORT;
707         }
708
709         if (msgs->attrs) {
710                 int found = 0;
711                 for (i = 0; msgs->attrs[i]; i++) {
712                         if (strcasecmp(cols[2], msgs->attrs[i]) == 0) {
713                                 found = 1;
714                                 break;
715                         }
716                 }
717                 if (!found) return 0;
718         }
719
720         msg->elements = talloc_realloc(msg,
721                                        msg->elements,
722                                        struct ldb_message_element,
723                                        msg->num_elements + 1);
724         if (msg->elements == NULL) return SQLITE_ABORT;
725
726         msg->elements[msg->num_elements].flags = 0;
727         msg->elements[msg->num_elements].name = talloc_strdup(msg->elements, cols[2]);
728         if (msg->elements[msg->num_elements].name == NULL) return SQLITE_ABORT;
729
730         msg->elements[msg->num_elements].num_values = 1;
731         msg->elements[msg->num_elements].values = talloc_array(msg->elements,
732                                                                 struct ldb_val, 1);
733         if (msg->elements[msg->num_elements].values == NULL) return SQLITE_ABORT;
734
735         msg->elements[msg->num_elements].values[0].length = strlen(cols[3]);
736         msg->elements[msg->num_elements].values[0].data = talloc_strdup(msg->elements, cols[3]);
737         if (msg->elements[msg->num_elements].values[0].data == NULL) return SQLITE_ABORT;
738
739         msg->num_elements++;
740
741         return SQLITE_OK;
742 }
743
744
745 /*
746  * lsqlite3_get_eid()
747  * lsqlite3_get_eid_ndn()
748  *
749  * These functions are used for the very common case of retrieving an EID value
750  * given a (normalized) DN.
751  */
752
753 static long long lsqlite3_get_eid_ndn(sqlite3 *sqlite, void *mem_ctx, const char *norm_dn)
754 {
755         char *errmsg;
756         char *query;
757         long long eid = -1;
758         long long ret;
759
760         /* get object eid */
761         query = lsqlite3_tprintf(mem_ctx, "SELECT eid "
762                                           "FROM ldb_entry "
763                                           "WHERE norm_dn = '%q';", norm_dn);
764         if (query == NULL) return -1;
765
766         ret = sqlite3_exec(sqlite, query, lsqlite3_eid_callback, &eid, &errmsg);
767         if (ret != SQLITE_OK) {
768                 if (errmsg) {
769                         printf("lsqlite3_get_eid: Fatal Error: %s\n", errmsg);
770                         free(errmsg);
771                 }
772                 return -1;
773         }
774
775         return eid;
776 }
777
778 static long long lsqlite3_get_eid(struct ldb_module *module, const struct ldb_dn *dn)
779 {
780         TALLOC_CTX *local_ctx;
781         struct lsqlite3_private *lsqlite3 = module->private_data;
782         long long eid = -1;
783         char *cdn;
784
785         /* ignore ltdb specials */
786         if (ldb_dn_is_special(dn)) {
787                 return -1;
788         }
789
790         /* create a local ctx */
791         local_ctx = talloc_named(lsqlite3, 0, "lsqlite3_get_eid local context");
792         if (local_ctx == NULL) {
793                 return -1;
794         }
795
796         cdn = ldb_dn_linearize(local_ctx, ldb_dn_casefold(module->ldb, dn));
797         if (!cdn) goto done;
798
799         eid = lsqlite3_get_eid_ndn(lsqlite3->sqlite, local_ctx, cdn);
800
801 done:
802         talloc_free(local_ctx);
803         return eid;
804 }
805
806 /*
807  * Interface functions referenced by lsqlite3_ops
808  */
809
810 /* search for matching records, by tree */
811 static int lsqlite3_search_bytree(struct ldb_module * module, const struct ldb_dn* basedn,
812                                   enum ldb_scope scope, struct ldb_parse_tree * tree,
813                                   const char * const * attrs, struct ldb_message *** res)
814 {
815         TALLOC_CTX *local_ctx;
816         struct lsqlite3_private *lsqlite3 = module->private_data;
817         struct lsqlite3_msgs msgs;
818         char *norm_basedn;
819         char *sqlfilter;
820         char *errmsg;
821         char *query;
822         int ret, i;
823
824         /* create a local ctx */
825         local_ctx = talloc_named(lsqlite3, 0, "lsqlite3_search_bytree local context");
826         if (local_ctx == NULL) {
827                 return -1;
828         }
829
830         if (basedn) {
831                 norm_basedn = ldb_dn_linearize(local_ctx, ldb_dn_casefold(module->ldb, basedn));
832                 if (norm_basedn == NULL) {
833                         ret = LDB_ERR_INVALID_DN_SYNTAX;
834                         goto failed;
835                 }
836         } else norm_basedn = talloc_strdup(local_ctx, "");
837
838         if (*norm_basedn == '\0' &&
839                 (scope == LDB_SCOPE_BASE || scope == LDB_SCOPE_ONELEVEL)) {
840                         ret = LDB_ERR_UNWILLING_TO_PERFORM;
841                         goto failed;
842                 }
843
844         /* Convert filter into a series of SQL conditions (constraints) */
845         sqlfilter = parsetree_to_sql(module, local_ctx, tree);
846         
847         switch(scope) {
848         case LDB_SCOPE_DEFAULT:
849         case LDB_SCOPE_SUBTREE:
850                 if (*norm_basedn != '\0') {
851                         query = lsqlite3_tprintf(local_ctx,
852                                 "SELECT entry.eid,\n"
853                                 "       entry.dn,\n"
854                                 "       av.attr_name,\n"
855                                 "       av.attr_value\n"
856                                 "  FROM ldb_entry AS entry\n"
857
858                                 "  LEFT OUTER JOIN ldb_attribute_values AS av\n"
859                                 "    ON av.eid = entry.eid\n"
860
861                                 "  WHERE entry.eid IN\n"
862                                 "    (SELECT DISTINCT ldb_entry.eid\n"
863                                 "       FROM ldb_entry\n"
864                                 "       WHERE (ldb_entry.norm_dn GLOB('*,%q')\n"
865                                 "       OR ldb_entry.norm_dn = '%q')\n"
866                                 "       AND ldb_entry.eid IN\n"
867                                 "         (%s)\n"
868                                 "    )\n"
869
870                                 "  ORDER BY entry.eid ASC;",
871                                 norm_basedn,
872                                 norm_basedn,
873                                 sqlfilter);
874                 } else {
875                         query = lsqlite3_tprintf(local_ctx,
876                                 "SELECT entry.eid,\n"
877                                 "       entry.dn,\n"
878                                 "       av.attr_name,\n"
879                                 "       av.attr_value\n"
880                                 "  FROM ldb_entry AS entry\n"
881
882                                 "  LEFT OUTER JOIN ldb_attribute_values AS av\n"
883                                 "    ON av.eid = entry.eid\n"
884
885                                 "  WHERE entry.eid IN\n"
886                                 "    (SELECT DISTINCT ldb_entry.eid\n"
887                                 "       FROM ldb_entry\n"
888                                 "       WHERE ldb_entry.eid IN\n"
889                                 "         (%s)\n"
890                                 "    )\n"
891
892                                 "  ORDER BY entry.eid ASC;",
893                                 sqlfilter);
894                 }
895
896                 break;
897                 
898         case LDB_SCOPE_BASE:
899                 query = lsqlite3_tprintf(local_ctx,
900                         "SELECT entry.eid,\n"
901                         "       entry.dn,\n"
902                         "       av.attr_name,\n"
903                         "       av.attr_value\n"
904                         "  FROM ldb_entry AS entry\n"
905
906                         "  LEFT OUTER JOIN ldb_attribute_values AS av\n"
907                         "    ON av.eid = entry.eid\n"
908
909                         "  WHERE entry.eid IN\n"
910                         "    (SELECT DISTINCT ldb_entry.eid\n"
911                         "       FROM ldb_entry\n"
912                         "       WHERE ldb_entry.norm_dn = '%q'\n"
913                         "         AND ldb_entry.eid IN\n"
914                         "           (%s)\n"
915                         "    )\n"
916
917                         "  ORDER BY entry.eid ASC;",
918                         norm_basedn,
919                         sqlfilter);
920                 break;
921                 
922         case LDB_SCOPE_ONELEVEL:
923                 query = lsqlite3_tprintf(local_ctx,
924                         "SELECT entry.eid,\n"
925                         "       entry.dn,\n"
926                         "       av.attr_name,\n"
927                         "       av.attr_value\n"
928                         "  FROM ldb_entry AS entry\n"
929
930                         "  LEFT OUTER JOIN ldb_attribute_values AS av\n"
931                         "    ON av.eid = entry.eid\n"
932
933                         "  WHERE entry.eid IN\n"
934                         "    (SELECT DISTINCT ldb_entry.eid\n"
935                         "       FROM ldb_entry\n"
936                         "       WHERE norm_dn GLOB('*,%q')\n"
937                         "         AND NOT norm_dn GLOB('*,*,%q')\n"
938                         "         AND ldb_entry.eid IN\n(%s)\n"
939                         "    )\n"
940
941                         "  ORDER BY entry.eid ASC;",
942                         norm_basedn,
943                         norm_basedn,
944                         sqlfilter);
945                 break;
946         }
947
948         if (query == NULL) {
949                 ret = LDB_ERR_OTHER;
950                 goto failed;
951         }
952
953         /* * /
954         printf ("%s\n", query);
955         / * */
956
957         msgs.msgs = NULL;
958         msgs.count = 0;
959         msgs.current_eid = 0;
960         msgs.mem_ctx = local_ctx;
961         msgs.attrs = attrs;
962
963         ret = sqlite3_exec(lsqlite3->sqlite, query, lsqlite3_search_callback, &msgs, &errmsg);
964         if (ret != SQLITE_OK) {
965                 if (errmsg) {
966                         ldb_set_errstring(module, talloc_strdup(module, errmsg));
967                         free(errmsg);
968                 }
969                 ret = LDB_ERR_OTHER;
970                 goto failed;
971         }
972
973         for (i = 0; i < msgs.count; i++) {
974                 msgs.msgs[i] = ldb_msg_canonicalize(module->ldb, msgs.msgs[i]);
975                 if (msgs.msgs[i] ==  NULL) {
976                         ret = LDB_ERR_OTHER;
977                         goto failed;
978                 }
979         }
980
981         *res = talloc_steal(module, msgs.msgs);
982         ret = msgs.count;
983
984         talloc_free(local_ctx);
985         return ret;
986
987 /* If error, return error code; otherwise return number of results */
988 failed:
989         talloc_free(local_ctx);
990         return -1;
991 }
992
993
994 /* add a record */
995 static int lsqlite3_add(struct ldb_module *module, const struct ldb_message *msg)
996 {
997         TALLOC_CTX *local_ctx;
998         struct lsqlite3_private *lsqlite3 = module->private_data;
999         long long eid;
1000         char *dn, *ndn;
1001         char *errmsg;
1002         char *query;
1003         int ret;
1004         int i;
1005         
1006         /* create a local ctx */
1007         local_ctx = talloc_named(lsqlite3, 0, "lsqlite3_add local context");
1008         if (local_ctx == NULL) {
1009                 return LDB_ERR_OTHER;
1010         }
1011
1012         /* See if this is an ltdb special */
1013         if (ldb_dn_is_special(msg->dn)) {
1014                 struct ldb_dn *c;
1015
1016                 c = ldb_dn_explode(local_ctx, "@SUBCLASSES");
1017                 if (ldb_dn_compare(module->ldb, msg->dn, c) == 0) {
1018 #warning "insert subclasses into object class tree"
1019                         ret = LDB_ERR_UNWILLING_TO_PERFORM;
1020                         goto failed;
1021                 }
1022
1023 /*
1024                 c = ldb_dn_explode(local_ctx, "@INDEXLIST");
1025                 if (ldb_dn_compare(module->ldb, msg->dn, c) == 0) {
1026 #warning "should we handle indexes somehow ?"
1027                         goto failed;
1028                 }
1029 */
1030                 /* Others are implicitly ignored */
1031                 return LDB_SUCCESS;
1032         }
1033
1034         /* create linearized and normalized dns */
1035         dn = ldb_dn_linearize(local_ctx, msg->dn);
1036         ndn = ldb_dn_linearize(local_ctx, ldb_dn_casefold(module->ldb, msg->dn));
1037         if (dn == NULL || ndn == NULL) {
1038                 ret = LDB_ERR_OTHER;
1039                 goto failed;
1040         }
1041
1042         query = lsqlite3_tprintf(local_ctx,
1043                                    /* Add new entry */
1044                                    "INSERT OR ABORT INTO ldb_entry "
1045                                    "('dn', 'norm_dn') "
1046                                    "VALUES ('%q', '%q');",
1047                                 dn, ndn);
1048         if (query == NULL) {
1049                 ret = LDB_ERR_OTHER;
1050                 goto failed;
1051         }
1052
1053         ret = sqlite3_exec(lsqlite3->sqlite, query, NULL, NULL, &errmsg);
1054         if (ret != SQLITE_OK) {
1055                 if (errmsg) {
1056                         ldb_set_errstring(module, talloc_strdup(module, errmsg));
1057                         free(errmsg);
1058                 }
1059                 ret = LDB_ERR_OTHER;
1060                 goto failed;
1061         }
1062
1063         eid = lsqlite3_get_eid_ndn(lsqlite3->sqlite, local_ctx, ndn);
1064         if (eid == -1) {
1065                 ret = LDB_ERR_OTHER;
1066                 goto failed;
1067         }
1068
1069         for (i = 0; i < msg->num_elements; i++) {
1070                 const struct ldb_message_element *el = &msg->elements[i];
1071                 const struct ldb_attrib_handler *h;
1072                 char *attr;
1073                 int j;
1074
1075                 /* Get a case-folded copy of the attribute name */
1076                 attr = ldb_casefold(local_ctx, el->name);
1077                 if (attr == NULL) {
1078                         ret = LDB_ERR_OTHER;
1079                         goto failed;
1080                 }
1081
1082                 h = ldb_attrib_handler(module->ldb, el->name);
1083
1084                 /* For each value of the specified attribute name... */
1085                 for (j = 0; j < el->num_values; j++) {
1086                         struct ldb_val value;
1087                         char *insert;
1088
1089                         /* Get a canonicalised copy of the data */
1090                         h->canonicalise_fn(module->ldb, local_ctx, &(el->values[j]), &value);
1091                         if (value.data == NULL) {
1092                                 ret = LDB_ERR_OTHER;
1093                                 goto failed;
1094                         }
1095
1096                         insert = lsqlite3_tprintf(local_ctx,
1097                                         "INSERT OR ROLLBACK INTO ldb_attribute_values "
1098                                         "('eid', 'attr_name', 'norm_attr_name',"
1099                                         " 'attr_value', 'norm_attr_value') "
1100                                         "VALUES ('%lld', '%q', '%q', '%q', '%q');",
1101                                         eid, el->name, attr,
1102                                         el->values[j].data, value.data);
1103                         if (insert == NULL) {
1104                                 ret = LDB_ERR_OTHER;
1105                                 goto failed;
1106                         }
1107
1108                         ret = sqlite3_exec(lsqlite3->sqlite, insert, NULL, NULL, &errmsg);
1109                         if (ret != SQLITE_OK) {
1110                                 if (errmsg) {
1111                                         ldb_set_errstring(module, talloc_strdup(module, errmsg));
1112                                         free(errmsg);
1113                                 }
1114                                 ret = LDB_ERR_OTHER;
1115                                 goto failed;
1116                         }
1117                 }
1118         }
1119
1120         talloc_free(local_ctx);
1121         return LDB_SUCCESS;
1122
1123 failed:
1124         talloc_free(local_ctx);
1125         return ret;
1126 }
1127
1128
1129 /* modify a record */
1130 static int lsqlite3_modify(struct ldb_module *module, const struct ldb_message *msg)
1131 {
1132         TALLOC_CTX *local_ctx;
1133         struct lsqlite3_private *lsqlite3 = module->private_data;
1134         long long eid;
1135         char *errmsg;
1136         int ret;
1137         int i;
1138         
1139         /* create a local ctx */
1140         local_ctx = talloc_named(lsqlite3, 0, "lsqlite3_modify local context");
1141         if (local_ctx == NULL) {
1142                 return LDB_ERR_OTHER;
1143         }
1144
1145         /* See if this is an ltdb special */
1146         if (ldb_dn_is_special(msg->dn)) {
1147                 struct ldb_dn *c;
1148
1149                 c = ldb_dn_explode(local_ctx, "@SUBCLASSES");
1150                 if (ldb_dn_compare(module->ldb, msg->dn, c) == 0) {
1151 #warning "modify subclasses into object class tree"
1152                         ret = LDB_ERR_UNWILLING_TO_PERFORM;
1153                         goto failed;
1154                 }
1155
1156                 /* Others are implicitly ignored */
1157                 return LDB_SUCCESS;
1158         }
1159
1160         eid = lsqlite3_get_eid(module, msg->dn);
1161         if (eid == -1) {
1162                 ret = LDB_ERR_OTHER;
1163                 goto failed;
1164         }
1165
1166         for (i = 0; i < msg->num_elements; i++) {
1167                 const struct ldb_message_element *el = &msg->elements[i];
1168                 const struct ldb_attrib_handler *h;
1169                 int flags = el->flags & LDB_FLAG_MOD_MASK;
1170                 char *attr;
1171                 char *mod;
1172                 int j;
1173
1174                 /* Get a case-folded copy of the attribute name */
1175                 attr = ldb_casefold(local_ctx, el->name);
1176                 if (attr == NULL) {
1177                         ret = LDB_ERR_OTHER;
1178                         goto failed;
1179                 }
1180
1181                 h = ldb_attrib_handler(module->ldb, el->name);
1182
1183                 switch (flags) {
1184
1185                 case LDB_FLAG_MOD_REPLACE:
1186                         
1187                         /* remove all attributes before adding the replacements */
1188                         mod = lsqlite3_tprintf(local_ctx,
1189                                                 "DELETE FROM ldb_attribute_values "
1190                                                 "WHERE eid = '%lld' "
1191                                                 "AND norm_attr_name = '%q';",
1192                                                 eid, attr);
1193                         if (mod == NULL) {
1194                                 ret = LDB_ERR_OTHER;
1195                                 goto failed;
1196                         }
1197
1198                         ret = sqlite3_exec(lsqlite3->sqlite, mod, NULL, NULL, &errmsg);
1199                         if (ret != SQLITE_OK) {
1200                                 if (errmsg) {
1201                                         ldb_set_errstring(module, talloc_strdup(module, errmsg));
1202                                         free(errmsg);
1203                                 }
1204                                 ret = LDB_ERR_OTHER;
1205                                 goto failed;
1206                         }
1207
1208                         /* MISSING break is INTENTIONAL */
1209
1210                 case LDB_FLAG_MOD_ADD:
1211 #warning "We should throw an error if no value is provided!"
1212                         /* For each value of the specified attribute name... */
1213                         for (j = 0; j < el->num_values; j++) {
1214                                 struct ldb_val value;
1215
1216                                 /* Get a canonicalised copy of the data */
1217                                 h->canonicalise_fn(module->ldb, local_ctx, &(el->values[j]), &value);
1218                                 if (value.data == NULL) {
1219                                         ret = LDB_ERR_OTHER;
1220                                         goto failed;
1221                                 }
1222
1223                                 mod = lsqlite3_tprintf(local_ctx,
1224                                         "INSERT OR ROLLBACK INTO ldb_attribute_values "
1225                                         "('eid', 'attr_name', 'norm_attr_name',"
1226                                         " 'attr_value', 'norm_attr_value') "
1227                                         "VALUES ('%lld', '%q', '%q', '%q', '%q');",
1228                                         eid, el->name, attr,
1229                                         el->values[j].data, value.data);
1230
1231                                 if (mod == NULL) {
1232                                         ret = LDB_ERR_OTHER;
1233                                         goto failed;
1234                                 }
1235
1236                                 ret = sqlite3_exec(lsqlite3->sqlite, mod, NULL, NULL, &errmsg);
1237                                 if (ret != SQLITE_OK) {
1238                                         if (errmsg) {
1239                                                 ldb_set_errstring(module, talloc_strdup(module, errmsg));
1240                                                 free(errmsg);
1241                                         }
1242                                         ret = LDB_ERR_OTHER;
1243                                         goto failed;
1244                                 }
1245                         }
1246
1247                         break;
1248
1249                 case LDB_FLAG_MOD_DELETE:
1250 #warning "We should throw an error if the attribute we are trying to delete does not exist!"
1251                         if (el->num_values == 0) {
1252                                 mod = lsqlite3_tprintf(local_ctx,
1253                                                         "DELETE FROM ldb_attribute_values "
1254                                                         "WHERE eid = '%lld' "
1255                                                         "AND norm_attr_name = '%q';",
1256                                                         eid, attr);
1257                                 if (mod == NULL) {
1258                                         ret = LDB_ERR_OTHER;
1259                                         goto failed;
1260                                 }
1261
1262                                 ret = sqlite3_exec(lsqlite3->sqlite, mod, NULL, NULL, &errmsg);
1263                                 if (ret != SQLITE_OK) {
1264                                         if (errmsg) {
1265                                                 ldb_set_errstring(module, talloc_strdup(module, errmsg));
1266                                                 free(errmsg);
1267                                         }
1268                                         ret = LDB_ERR_OTHER;
1269                                         goto failed;
1270                                 }
1271                         }
1272
1273                         /* For each value of the specified attribute name... */
1274                         for (j = 0; j < el->num_values; j++) {
1275                                 struct ldb_val value;
1276
1277                                 /* Get a canonicalised copy of the data */
1278                                 h->canonicalise_fn(module->ldb, local_ctx, &(el->values[j]), &value);
1279                                 if (value.data == NULL) {
1280                                         ret = LDB_ERR_OTHER;
1281                                         goto failed;
1282                                 }
1283
1284                                 mod = lsqlite3_tprintf(local_ctx,
1285                                         "DELETE FROM ldb_attribute_values "
1286                                         "WHERE eid = '%lld' "
1287                                         "AND norm_attr_name = '%q' "
1288                                         "AND norm_attr_value = '%q';",
1289                                         eid, attr, value.data);
1290
1291                                 if (mod == NULL) {
1292                                         ret = LDB_ERR_OTHER;
1293                                         goto failed;
1294                                 }
1295
1296                                 ret = sqlite3_exec(lsqlite3->sqlite, mod, NULL, NULL, &errmsg);
1297                                 if (ret != SQLITE_OK) {
1298                                         if (errmsg) {
1299                                                 ldb_set_errstring(module, talloc_strdup(module, errmsg));
1300                                                 free(errmsg);
1301                                         }
1302                                         ret = LDB_ERR_OTHER;
1303                                         goto failed;
1304                                 }
1305                         }
1306
1307                         break;
1308                 }
1309         }
1310
1311         talloc_free(local_ctx);
1312         return LDB_SUCCESS;
1313
1314 failed:
1315         talloc_free(local_ctx);
1316         return ret;
1317 }
1318
1319 /* delete a record */
1320 static int lsqlite3_delete(struct ldb_module *module, const struct ldb_dn *dn)
1321 {
1322         TALLOC_CTX *local_ctx;
1323         struct lsqlite3_private *lsqlite3 = module->private_data;
1324         long long eid;
1325         char *errmsg;
1326         char *query;
1327         int ret;
1328
1329         /* ignore ltdb specials */
1330         if (ldb_dn_is_special(dn)) {
1331                 return LDB_SUCCESS;
1332         }
1333
1334         /* create a local ctx */
1335         local_ctx = talloc_named(lsqlite3, 0, "lsqlite3_delete local context");
1336         if (local_ctx == NULL) {
1337                 return LDB_ERR_OTHER;
1338         }
1339
1340         eid = lsqlite3_get_eid(module, dn);
1341         if (eid == -1) {
1342                 ret = LDB_ERR_OTHER;
1343                 goto failed;
1344         }
1345
1346         query = lsqlite3_tprintf(local_ctx,
1347                                    /* Delete entry */
1348                                    "DELETE FROM ldb_entry WHERE eid = %lld; "
1349                                    /* Delete attributes */
1350                                    "DELETE FROM ldb_attribute_values WHERE eid = %lld; ",
1351                                 eid, eid);
1352         if (query == NULL) {
1353                 ret = LDB_ERR_OTHER;
1354                 goto failed;
1355         }
1356
1357         ret = sqlite3_exec(lsqlite3->sqlite, query, NULL, NULL, &errmsg);
1358         if (ret != SQLITE_OK) {
1359                 if (errmsg) {
1360                         ldb_set_errstring(module, talloc_strdup(module, errmsg));
1361                         free(errmsg);
1362                 }
1363                 ret = LDB_ERR_OTHER;
1364                 goto failed;
1365         }
1366
1367         talloc_free(local_ctx);
1368         return LDB_SUCCESS;
1369
1370 failed:
1371         talloc_free(local_ctx);
1372         return ret;
1373 }
1374
1375 /* rename a record */
1376 static int lsqlite3_rename(struct ldb_module *module, const struct ldb_dn *olddn, const struct ldb_dn *newdn)
1377 {
1378         TALLOC_CTX *local_ctx;
1379         struct lsqlite3_private *lsqlite3 = module->private_data;
1380         char *new_dn, *new_cdn, *old_cdn;
1381         char *errmsg;
1382         char *query;
1383         int ret;
1384
1385         /* ignore ltdb specials */
1386         if (ldb_dn_is_special(olddn) || ldb_dn_is_special(newdn)) {
1387                 return LDB_SUCCESS;
1388         }
1389
1390         /* create a local ctx */
1391         local_ctx = talloc_named(lsqlite3, 0, "lsqlite3_rename local context");
1392         if (local_ctx == NULL) {
1393                 return LDB_ERR_OTHER;
1394         }
1395
1396         /* create linearized and normalized dns */
1397         old_cdn = ldb_dn_linearize(local_ctx, ldb_dn_casefold(module->ldb, olddn));
1398         new_cdn = ldb_dn_linearize(local_ctx, ldb_dn_casefold(module->ldb, newdn));
1399         new_dn = ldb_dn_linearize(local_ctx, newdn);
1400         if (old_cdn == NULL || new_cdn == NULL || new_dn == NULL) {
1401                 ret = LDB_ERR_OTHER;
1402                 goto failed;
1403         }
1404
1405         /* build the SQL query */
1406         query = lsqlite3_tprintf(local_ctx,
1407                                  "UPDATE ldb_entry SET dn = '%q', norm_dn = '%q' "
1408                                  "WHERE norm_dn = '%q';",
1409                                  new_dn, new_cdn, old_cdn);
1410         if (query == NULL) {
1411                 ret = LDB_ERR_OTHER;
1412                 goto failed;
1413         }
1414
1415         /* execute */
1416         ret = sqlite3_exec(lsqlite3->sqlite, query, NULL, NULL, &errmsg);
1417         if (ret != SQLITE_OK) {
1418                 if (errmsg) {
1419                         ldb_set_errstring(module, talloc_strdup(module, errmsg));
1420                         free(errmsg);
1421                 }
1422                 ret = LDB_ERR_OTHER;
1423                 goto failed;
1424         }
1425
1426         /* clean up and exit */
1427         talloc_free(local_ctx);
1428         return LDB_SUCCESS;
1429
1430 failed:
1431         talloc_free(local_ctx);
1432         return ret;
1433 }
1434
1435 static int lsqlite3_start_trans(struct ldb_module * module)
1436 {
1437         int ret;
1438         char *errmsg;
1439         struct lsqlite3_private *   lsqlite3 = module->private_data;
1440
1441         if (lsqlite3->trans_count == 0) {
1442                 ret = sqlite3_exec(lsqlite3->sqlite, "BEGIN IMMEDIATE;", NULL, NULL, &errmsg);
1443                 if (ret != SQLITE_OK) {
1444                         if (errmsg) {
1445                                 printf("lsqlite3_start_trans: error: %s\n", errmsg);
1446                                 free(errmsg);
1447                         }
1448                         return -1;
1449                 }
1450         };
1451
1452         lsqlite3->trans_count++;
1453
1454         return 0;
1455 }
1456
1457 static int lsqlite3_end_trans(struct ldb_module *module)
1458 {
1459         int ret;
1460         char *errmsg;
1461         struct lsqlite3_private *lsqlite3 = module->private_data;
1462
1463         if (lsqlite3->trans_count > 0) {
1464                 lsqlite3->trans_count--;
1465         } else return -1;
1466
1467         if (lsqlite3->trans_count == 0) {
1468                 ret = sqlite3_exec(lsqlite3->sqlite, "COMMIT;", NULL, NULL, &errmsg);
1469                 if (ret != SQLITE_OK) {
1470                         if (errmsg) {
1471                                 printf("lsqlite3_end_trans: error: %s\n", errmsg);
1472                                 free(errmsg);
1473                         }
1474                         return -1;
1475                 }
1476         }
1477
1478         return 0;
1479 }
1480
1481 static int lsqlite3_del_trans(struct ldb_module *module)
1482 {
1483         struct lsqlite3_private *lsqlite3 = module->private_data;
1484
1485         if (lsqlite3->trans_count > 0) {
1486                 lsqlite3->trans_count--;
1487         } else return -1;
1488
1489         if (lsqlite3->trans_count == 0) {
1490                 return lsqlite3_safe_rollback(lsqlite3->sqlite);
1491         }
1492
1493         return -1;
1494 }
1495
1496 /*
1497  * Static functions
1498  */
1499
1500 static int initialize(struct lsqlite3_private *lsqlite3,
1501                       struct ldb_context *ldb, const char *url, int flags)
1502 {
1503         TALLOC_CTX *local_ctx;
1504         long long queryInt;
1505         int rollback = 0;
1506         char *errmsg;
1507         char *schema;
1508         int ret;
1509
1510         /* create a local ctx */
1511         local_ctx = talloc_named(lsqlite3, 0, "lsqlite3_rename local context");
1512         if (local_ctx == NULL) {
1513                 return -1;
1514         }
1515
1516         schema = lsqlite3_tprintf(local_ctx,
1517                 
1518                 
1519                 "CREATE TABLE ldb_info AS "
1520                 "  SELECT 'LDB' AS database_type,"
1521                 "         '1.0' AS version;"
1522                 
1523                 /*
1524                  * The entry table holds the information about an entry. 
1525                  * This table is used to obtain the EID of the entry and to 
1526                  * support scope=one and scope=base.  The parent and child
1527                  * table is included in the entry table since all the other
1528                  * attributes are dependent on EID.
1529                  */
1530                 "CREATE TABLE ldb_entry "
1531                 "("
1532                 "  eid     INTEGER PRIMARY KEY AUTOINCREMENT,"
1533                 "  dn      TEXT UNIQUE NOT NULL,"
1534                 "  norm_dn TEXT UNIQUE NOT NULL"
1535                 ");"
1536                 
1537
1538                 "CREATE TABLE ldb_object_classes"
1539                 "("
1540                 "  class_name            TEXT PRIMARY KEY,"
1541                 "  parent_class_name     TEXT,"
1542                 "  tree_key              TEXT UNIQUE,"
1543                 "  max_child_num         INTEGER DEFAULT 0"
1544                 ");"
1545                 
1546                 /*
1547                  * We keep a full listing of attribute/value pairs here
1548                  */
1549                 "CREATE TABLE ldb_attribute_values"
1550                 "("
1551                 "  eid             INTEGER REFERENCES ldb_entry,"
1552                 "  attr_name       TEXT,"
1553                 "  norm_attr_name  TEXT,"
1554                 "  attr_value      TEXT,"
1555                 "  norm_attr_value TEXT "
1556                 ");"
1557                 
1558                
1559                 /*
1560                  * Indexes
1561                  */
1562                 "CREATE INDEX ldb_attribute_values_eid_idx "
1563                 "  ON ldb_attribute_values (eid);"
1564                 
1565                 "CREATE INDEX ldb_attribute_values_name_value_idx "
1566                 "  ON ldb_attribute_values (attr_name, norm_attr_value);"
1567                 
1568                 
1569
1570                 /*
1571                  * Triggers
1572                  */
1573  
1574                 "CREATE TRIGGER ldb_object_classes_insert_tr"
1575                 "  AFTER INSERT"
1576                 "  ON ldb_object_classes"
1577                 "  FOR EACH ROW"
1578                 "    BEGIN"
1579                 "      UPDATE ldb_object_classes"
1580                 "        SET tree_key = COALESCE(tree_key, "
1581                 "              ("
1582                 "                SELECT tree_key || "
1583                 "                       (SELECT base160(max_child_num + 1)"
1584                 "                                FROM ldb_object_classes"
1585                 "                                WHERE class_name = "
1586                 "                                      new.parent_class_name)"
1587                 "                  FROM ldb_object_classes "
1588                 "                  WHERE class_name = new.parent_class_name "
1589                 "              ));"
1590                 "      UPDATE ldb_object_classes "
1591                 "        SET max_child_num = max_child_num + 1"
1592                 "        WHERE class_name = new.parent_class_name;"
1593                 "    END;"
1594
1595                 /*
1596                  * Table initialization
1597                  */
1598
1599                 "INSERT INTO ldb_object_classes "
1600                 "    (class_name, tree_key) "
1601                 "  VALUES "
1602                 "    ('TOP', '0001');");
1603         
1604         /* Skip protocol indicator of url  */
1605         if (strncmp(url, "sqlite://", 9) != 0) {
1606                 return SQLITE_MISUSE;
1607         }
1608         
1609         /* Update pointer to just after the protocol indicator */
1610         url += 9;
1611         
1612         /* Try to open the (possibly empty/non-existent) database */
1613         if ((ret = sqlite3_open(url, &lsqlite3->sqlite)) != SQLITE_OK) {
1614                 return ret;
1615         }
1616         
1617         /* In case this is a new database, enable auto_vacuum */
1618         ret = sqlite3_exec(lsqlite3->sqlite, "PRAGMA auto_vacuum = 1;", NULL, NULL, &errmsg);
1619         if (ret != SQLITE_OK) {
1620                 if (errmsg) {
1621                         printf("lsqlite3 initializaion error: %s\n", errmsg);
1622                         free(errmsg);
1623                 }
1624                 goto failed;
1625         }
1626         
1627         if (flags & LDB_FLG_NOSYNC) {
1628                 /* DANGEROUS */
1629                 ret = sqlite3_exec(lsqlite3->sqlite, "PRAGMA synchronous = OFF;", NULL, NULL, &errmsg);
1630                 if (ret != SQLITE_OK) {
1631                         if (errmsg) {
1632                                 printf("lsqlite3 initializaion error: %s\n", errmsg);
1633                                 free(errmsg);
1634                         }
1635                         goto failed;
1636                 }
1637         }
1638         
1639         /* */
1640         
1641         /* Establish a busy timeout of 30 seconds */
1642         if ((ret = sqlite3_busy_timeout(lsqlite3->sqlite,
1643                                         30000)) != SQLITE_OK) {
1644                 return ret;
1645         }
1646
1647         /* Create a function, callable from sql, to increment a tree_key */
1648         if ((ret =
1649              sqlite3_create_function(lsqlite3->sqlite,/* handle */
1650                                      "base160_next",  /* function name */
1651                                      1,               /* number of args */
1652                                      SQLITE_ANY,      /* preferred text type */
1653                                      NULL,            /* user data */
1654                                      base160next_sql, /* called func */
1655                                      NULL,            /* step func */
1656                                      NULL             /* final func */
1657                      )) != SQLITE_OK) {
1658                 return ret;
1659         }
1660
1661         /* Create a function, callable from sql, to convert int to base160 */
1662         if ((ret =
1663              sqlite3_create_function(lsqlite3->sqlite,/* handle */
1664                                      "base160",       /* function name */
1665                                      1,               /* number of args */
1666                                      SQLITE_ANY,      /* preferred text type */
1667                                      NULL,            /* user data */
1668                                      base160_sql,     /* called func */
1669                                      NULL,            /* step func */
1670                                      NULL             /* final func */
1671                      )) != SQLITE_OK) {
1672                 return ret;
1673         }
1674
1675         /* Create a function, callable from sql, to perform various comparisons */
1676         if ((ret =
1677              sqlite3_create_function(lsqlite3->sqlite, /* handle */
1678                                      "ldap_compare",   /* function name */
1679                                      4,                /* number of args */
1680                                      SQLITE_ANY,       /* preferred text type */
1681                                      ldb  ,            /* user data */
1682                                      lsqlite3_compare, /* called func */
1683                                      NULL,             /* step func */
1684                                      NULL              /* final func */
1685                      )) != SQLITE_OK) {
1686                 return ret;
1687         }
1688
1689         /* Begin a transaction */
1690         ret = sqlite3_exec(lsqlite3->sqlite, "BEGIN EXCLUSIVE;", NULL, NULL, &errmsg);
1691         if (ret != SQLITE_OK) {
1692                 if (errmsg) {
1693                         printf("lsqlite3: initialization error: %s\n", errmsg);
1694                         free(errmsg);
1695                 }
1696                 goto failed;
1697         }
1698         rollback = 1;
1699  
1700         /* Determine if this is a new database.  No tables means it is. */
1701         if (query_int(lsqlite3,
1702                       &queryInt,
1703                       "SELECT COUNT(*)\n"
1704                       "  FROM sqlite_master\n"
1705                       "  WHERE type = 'table';") != 0) {
1706                 goto failed;
1707         }
1708         
1709         if (queryInt == 0) {
1710                 /*
1711                  * Create the database schema
1712                  */
1713                 ret = sqlite3_exec(lsqlite3->sqlite, schema, NULL, NULL, &errmsg);
1714                 if (ret != SQLITE_OK) {
1715                         if (errmsg) {
1716                                 printf("lsqlite3 initializaion error: %s\n", errmsg);
1717                                 free(errmsg);
1718                         }
1719                         goto failed;
1720                 }
1721         } else {
1722                 /*
1723                  * Ensure that the database we opened is one of ours
1724                  */
1725                 if (query_int(lsqlite3,
1726                               &queryInt,
1727                               "SELECT "
1728                               "  (SELECT COUNT(*) = 2"
1729                               "     FROM sqlite_master "
1730                               "     WHERE type = 'table' "
1731                               "       AND name IN "
1732                               "         ("
1733                               "           'ldb_entry', "
1734                               "           'ldb_object_classes' "
1735                               "         ) "
1736                               "  ) "
1737                               "  AND "
1738                               "  (SELECT 1 "
1739                               "     FROM ldb_info "
1740                               "     WHERE database_type = 'LDB' "
1741                               "       AND version = '1.0'"
1742                               "  );") != 0 ||
1743                     queryInt != 1) {
1744                         
1745                         /* It's not one that we created.  See ya! */
1746                         goto failed;
1747                 }
1748         }
1749         
1750         /* Commit the transaction */
1751         ret = sqlite3_exec(lsqlite3->sqlite, "COMMIT;", NULL, NULL, &errmsg);
1752         if (ret != SQLITE_OK) {
1753                 if (errmsg) {
1754                         printf("lsqlite3: iniialization error: %s\n", errmsg);
1755                         free(errmsg);
1756                 }
1757                 goto failed;
1758         }
1759  
1760         return SQLITE_OK;
1761
1762 failed:
1763         if (rollback) lsqlite3_safe_rollback(lsqlite3->sqlite); 
1764         sqlite3_close(lsqlite3->sqlite);
1765         return -1;
1766 }
1767
1768 static int
1769 destructor(void *p)
1770 {
1771         struct lsqlite3_private *lsqlite3 = p;
1772         
1773         if (lsqlite3->sqlite) {
1774                 sqlite3_close(lsqlite3->sqlite);
1775         }
1776         return 0;
1777 }
1778
1779
1780
1781 /*
1782  * Table of operations for the sqlite3 backend
1783  */
1784 static const struct ldb_module_ops lsqlite3_ops = {
1785         .name              = "sqlite",
1786         .search_bytree     = lsqlite3_search_bytree,
1787         .add_record        = lsqlite3_add,
1788         .modify_record     = lsqlite3_modify,
1789         .delete_record     = lsqlite3_delete,
1790         .rename_record     = lsqlite3_rename,
1791         .start_transaction = lsqlite3_start_trans,
1792         .end_transaction   = lsqlite3_end_trans,
1793         .del_transaction   = lsqlite3_del_trans
1794 };
1795
1796 /*
1797  * connect to the database
1798  */
1799 int lsqlite3_connect(struct ldb_context *ldb,
1800                      const char *url, 
1801                      unsigned int flags, 
1802                      const char *options[])
1803 {
1804         int                         i;
1805         int                         ret;
1806         struct lsqlite3_private *   lsqlite3 = NULL;
1807         
1808         lsqlite3 = talloc(ldb, struct lsqlite3_private);
1809         if (!lsqlite3) {
1810                 goto failed;
1811         }
1812         
1813         lsqlite3->sqlite = NULL;
1814         lsqlite3->options = NULL;
1815         lsqlite3->trans_count = 0;
1816         
1817         ret = initialize(lsqlite3, ldb, url, flags);
1818         if (ret != SQLITE_OK) {
1819                 goto failed;
1820         }
1821         
1822         talloc_set_destructor(lsqlite3, destructor);
1823         
1824         ldb->modules = talloc(ldb, struct ldb_module);
1825         if (!ldb->modules) {
1826                 goto failed;
1827         }
1828         ldb->modules->ldb = ldb;
1829         ldb->modules->prev = ldb->modules->next = NULL;
1830         ldb->modules->private_data = lsqlite3;
1831         ldb->modules->ops = &lsqlite3_ops;
1832         
1833         if (options) {
1834                 /*
1835                  * take a copy of the options array, so we don't have to rely
1836                  * on the caller keeping it around (it might be dynamic)
1837                  */
1838                 for (i=0;options[i];i++) ;
1839                 
1840                 lsqlite3->options = talloc_array(lsqlite3, char *, i+1);
1841                 if (!lsqlite3->options) {
1842                         goto failed;
1843                 }
1844                 
1845                 for (i=0;options[i];i++) {
1846                         
1847                         lsqlite3->options[i+1] = NULL;
1848                         lsqlite3->options[i] =
1849                                 talloc_strdup(lsqlite3->options, options[i]);
1850                         if (!lsqlite3->options[i]) {
1851                                 goto failed;
1852                         }
1853                 }
1854         }
1855         
1856         return 0;
1857         
1858 failed:
1859         if (lsqlite3->sqlite != NULL) {
1860                 (void) sqlite3_close(lsqlite3->sqlite);
1861         }
1862         talloc_free(lsqlite3);
1863         return -1;
1864 }
1865