Continue phase 2 of modules stuff.
[citadel.git] / citadel / database_sleepycat.c
1 /*
2  * $Id$
3  *
4  * Sleepycat (Berkeley) DB driver for Citadel
5  *
6  */
7
8 /*****************************************************************************
9        Tunable configuration parameters for the Sleepycat DB back end
10  *****************************************************************************/
11
12 /* Citadel will checkpoint the db at the end of every session, but only if
13  * the specified number of kilobytes has been written, or if the specified
14  * number of minutes has passed, since the last checkpoint.
15  */
16 #define MAX_CHECKPOINT_KBYTES   256
17 #define MAX_CHECKPOINT_MINUTES  15
18
19 /*****************************************************************************/
20
21 #include "sysdep.h"
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <stdio.h>
25 #include <ctype.h>
26 #include <string.h>
27 #include <errno.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <dirent.h>
31
32 #ifdef HAVE_DB_H
33 #include <db.h>
34 #elif defined(HAVE_DB4_DB_H)
35 #include <db4/db.h>
36 #else
37 #error Neither <db.h> nor <db4/db.h> was found by configure. Install db4-devel.
38 #endif
39
40
41 #if DB_VERSION_MAJOR < 4 || DB_VERSION_MINOR < 1
42 #error Citadel requires Berkeley DB v4.1 or newer.  Please upgrade.
43 #endif
44
45
46 #include <pthread.h>
47 #include "citadel.h"
48 #include "server.h"
49 #include "citserver.h"
50 #include "database.h"
51 #include "msgbase.h"
52 #include "sysdep_decls.h"
53 #include "config.h"
54
55 #include "ctdl_module.h"
56
57
58 static DB *dbp[MAXCDB];         /* One DB handle for each Citadel database */
59 static DB_ENV *dbenv;           /* The DB environment (global) */
60
61 struct cdbtsd {                 /* Thread-specific DB stuff */
62         DB_TXN *tid;            /* Transaction handle */
63         DBC *cursors[MAXCDB];   /* Cursors, for traversals... */
64 };
65
66 #ifdef HAVE_ZLIB
67 #include <zlib.h>
68 #endif
69
70 static pthread_key_t tsdkey;
71
72 #define MYCURSORS       (((struct cdbtsd*)pthread_getspecific(tsdkey))->cursors)
73 #define MYTID           (((struct cdbtsd*)pthread_getspecific(tsdkey))->tid)
74
75 /* Verbose logging callback */
76 void cdb_verbose_log(const DB_ENV *dbenv, const char *msg)
77 {
78         lprintf(CTDL_DEBUG, "BDB: %s\n", msg);
79 }
80
81
82 /* Verbose logging callback */
83 void cdb_verbose_err(const DB_ENV *dbenv, const char *errpfx, const char *msg)
84 {
85         lprintf(CTDL_ALERT, "BDB: %s\n", msg);
86 }
87
88
89 /* just a little helper function */
90 static void txabort(DB_TXN * tid)
91 {
92         int ret;
93
94         ret = tid->abort(tid);
95
96         if (ret) {
97                 lprintf(CTDL_EMERG, "cdb_*: txn_abort: %s\n",
98                         db_strerror(ret));
99                 abort();
100         }
101 }
102
103 /* this one is even more helpful than the last. */
104 static void txcommit(DB_TXN * tid)
105 {
106         int ret;
107
108         ret = tid->commit(tid, 0);
109
110         if (ret) {
111                 lprintf(CTDL_EMERG, "cdb_*: txn_commit: %s\n",
112                         db_strerror(ret));
113                 abort();
114         }
115 }
116
117 /* are you sensing a pattern yet? */
118 static void txbegin(DB_TXN ** tid)
119 {
120         int ret;
121
122         ret = dbenv->txn_begin(dbenv, NULL, tid, 0);
123
124         if (ret) {
125                 lprintf(CTDL_EMERG, "cdb_*: txn_begin: %s\n",
126                         db_strerror(ret));
127                 abort();
128         }
129 }
130
131 static void dbpanic(DB_ENV * env, int errval)
132 {
133         lprintf(CTDL_EMERG, "cdb_*: Berkeley DB panic: %d\n", errval);
134 }
135
136 static void cclose(DBC * cursor)
137 {
138         int ret;
139
140         if ((ret = cursor->c_close(cursor))) {
141                 lprintf(CTDL_EMERG, "cdb_*: c_close: %s\n",
142                         db_strerror(ret));
143                 abort();
144         }
145 }
146
147 static void bailIfCursor(DBC ** cursors, const char *msg)
148 {
149         int i;
150
151         for (i = 0; i < MAXCDB; i++)
152                 if (cursors[i] != NULL) {
153                         lprintf(CTDL_EMERG,
154                                 "cdb_*: cursor still in progress on cdb %d: %s\n",
155                                 i, msg);
156                         abort();
157                 }
158 }
159
160 static void check_handles(void *arg)
161 {
162         if (arg != NULL) {
163                 struct cdbtsd *tsd = (struct cdbtsd *) arg;
164
165                 bailIfCursor(tsd->cursors, "in check_handles");
166
167                 if (tsd->tid != NULL) {
168                         lprintf(CTDL_EMERG,
169                                 "cdb_*: transaction still in progress!");
170                         abort();
171                 }
172         }
173 }
174
175 static void dest_tsd(void *arg)
176 {
177         if (arg != NULL) {
178                 check_handles(arg);
179                 free(arg);
180         }
181 }
182
183 /*
184  * Ensure that we have a key for thread-specific data.  We don't
185  * put anything in here that Citadel cares about; this is just database
186  * related stuff like cursors and transactions.
187  *
188  * This should be called immediately after startup by any thread which wants
189  * to use database calls, except for whatever thread calls open_databases.
190  */
191 void cdb_allocate_tsd(void)
192 {
193         struct cdbtsd *tsd;
194
195         if (pthread_getspecific(tsdkey) != NULL)
196                 return;
197
198         tsd = malloc(sizeof(struct cdbtsd));
199
200         tsd->tid = NULL;
201
202         memset(tsd->cursors, 0, sizeof tsd->cursors);
203         pthread_setspecific(tsdkey, tsd);
204 }
205
206 void cdb_free_tsd(void)
207 {
208         dest_tsd(pthread_getspecific(tsdkey));
209         pthread_setspecific(tsdkey, NULL);
210 }
211
212 void cdb_check_handles(void)
213 {
214         check_handles(pthread_getspecific(tsdkey));
215 }
216
217
218 /*
219  * Reclaim unused space in the databases.  We need to do each one of
220  * these discretely, rather than in a loop.
221  *
222  * This is a stub function in the Sleepycat DB backend, because there is no
223  * such API call available.
224  */
225 void defrag_databases(void)
226 {
227         /* do nothing */
228 }
229
230
231 /*
232  * Cull the database logs
233  */
234 static void cdb_cull_logs(void)
235 {
236         u_int32_t flags;
237         int ret;
238         char **file, **list;
239         char errmsg[SIZ];
240
241         flags = DB_ARCH_ABS;
242
243         /* Get the list of names. */
244         if ((ret = dbenv->log_archive(dbenv, &list, flags)) != 0) {
245                 lprintf(CTDL_ERR, "cdb_cull_logs: %s\n", db_strerror(ret));
246                 return;
247         }
248
249         /* Print the list of names. */
250         if (list != NULL) {
251                 for (file = list; *file != NULL; ++file) {
252                         lprintf(CTDL_DEBUG, "Deleting log: %s\n", *file);
253                         ret = unlink(*file);
254                         if (ret != 0) {
255                                 snprintf(errmsg, sizeof(errmsg),
256                                          " ** ERROR **\n \n \n "
257                                          "Citadel was unable to delete the "
258                                          "database log file '%s' because of the "
259                                          "following error:\n \n %s\n \n"
260                                          " This log file is no longer in use "
261                                          "and may be safely deleted.\n",
262                                          *file, strerror(errno));
263                                 aide_message(errmsg, "Database Warning Message");
264                         }
265                 }
266                 free(list);
267         }
268 }
269
270 /*
271  * Manually initiate log file cull.
272  */
273 void cmd_cull(char *argbuf) {
274         if (CtdlAccessCheck(ac_internal)) return;
275         cdb_cull_logs();
276         cprintf("%d Database log file cull completed.\n", CIT_OK);
277 }
278
279
280 /*
281  * Request a checkpoint of the database.
282  */
283 static void cdb_checkpoint(void)
284 {
285         int ret;
286         static time_t last_run = 0L;
287
288         /* Only do a checkpoint once per minute. */
289         if ((time(NULL) - last_run) < 60L) {
290                 return;
291         }
292         last_run = time(NULL);
293
294         lprintf(CTDL_DEBUG, "-- db checkpoint --\n");
295         ret = dbenv->txn_checkpoint(dbenv,
296                                     MAX_CHECKPOINT_KBYTES,
297                                     MAX_CHECKPOINT_MINUTES, 0);
298
299         if (ret != 0) {
300                 lprintf(CTDL_EMERG, "cdb_checkpoint: txn_checkpoint: %s\n",
301                         db_strerror(ret));
302                 abort();
303         }
304
305         /* After a successful checkpoint, we can cull the unused logs */
306         if (config.c_auto_cull) {
307                 cdb_cull_logs();
308         }
309 }
310
311
312 /*
313  * Main loop for the checkpoint thread.
314  */
315 void *checkpoint_thread(void *arg) {
316         struct CitContext checkpointCC;
317
318         lprintf(CTDL_DEBUG, "checkpoint_thread() initializing\n");
319
320         memset(&checkpointCC, 0, sizeof(struct CitContext));
321         checkpointCC.internal_pgm = 1;
322         checkpointCC.cs_pid = 0;
323         pthread_setspecific(MyConKey, (void *)&checkpointCC );
324
325         cdb_allocate_tsd();
326
327         while (!time_to_die) {
328                 cdb_checkpoint();
329                 sleep(1);
330         }
331
332         lprintf(CTDL_DEBUG, "checkpoint_thread() exiting\n");
333         pthread_exit(NULL);
334 }
335
336 /*
337  * Open the various databases we'll be using.  Any database which
338  * does not exist should be created.  Note that we don't need a
339  * critical section here, because there aren't any active threads
340  * manipulating the database yet.
341  */
342 void open_databases(void)
343 {
344         int ret;
345         int i;
346         char dbfilename[SIZ];
347         u_int32_t flags = 0;
348
349         lprintf(CTDL_DEBUG, "cdb_*: open_databases() starting\n");
350         lprintf(CTDL_DEBUG, "Compiled db: %s\n", DB_VERSION_STRING);
351         lprintf(CTDL_INFO, "  Linked db: %s\n",
352                 db_version(NULL, NULL, NULL));
353 #ifdef HAVE_ZLIB
354         lprintf(CTDL_INFO, "Linked zlib: %s\n", zlibVersion());
355 #endif
356
357         /*
358          * Silently try to create the database subdirectory.  If it's
359          * already there, no problem.
360          */
361         mkdir(ctdl_data_dir, 0700);
362         chmod(ctdl_data_dir, 0700);
363         chown(ctdl_data_dir, CTDLUID, (-1));
364
365         lprintf(CTDL_DEBUG, "cdb_*: Setting up DB environment\n");
366         db_env_set_func_yield(sched_yield);
367         ret = db_env_create(&dbenv, 0);
368         if (ret) {
369                 lprintf(CTDL_EMERG, "cdb_*: db_env_create: %s\n",
370                         db_strerror(ret));
371                 exit(CTDLEXIT_DB);
372         }
373         dbenv->set_errpfx(dbenv, "citserver");
374         dbenv->set_paniccall(dbenv, dbpanic);
375         dbenv->set_errcall(dbenv, cdb_verbose_err);
376         dbenv->set_errpfx(dbenv, "ctdl");
377 #if (DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 3)
378         dbenv->set_msgcall(dbenv, cdb_verbose_log);
379 #endif
380         dbenv->set_verbose(dbenv, DB_VERB_DEADLOCK, 1);
381         dbenv->set_verbose(dbenv, DB_VERB_RECOVERY, 1);
382
383         /*
384          * We want to specify the shared memory buffer pool cachesize,
385          * but everything else is the default.
386          */
387         ret = dbenv->set_cachesize(dbenv, 0, 64 * 1024, 0);
388         if (ret) {
389                 lprintf(CTDL_EMERG, "cdb_*: set_cachesize: %s\n",
390                         db_strerror(ret));
391                 dbenv->close(dbenv, 0);
392                 exit(CTDLEXIT_DB);
393         }
394
395         if ((ret = dbenv->set_lk_detect(dbenv, DB_LOCK_DEFAULT))) {
396                 lprintf(CTDL_EMERG, "cdb_*: set_lk_detect: %s\n",
397                         db_strerror(ret));
398                 dbenv->close(dbenv, 0);
399                 exit(CTDLEXIT_DB);
400         }
401
402         flags =
403             DB_CREATE | DB_RECOVER | DB_INIT_MPOOL |
404             DB_PRIVATE | DB_INIT_TXN | DB_INIT_LOCK | DB_THREAD;
405         lprintf(CTDL_DEBUG, "dbenv->open(dbenv, %s, %d, 0)\n",
406                 ctdl_data_dir, flags);
407         ret = dbenv->open(dbenv, ctdl_data_dir, flags, 0);
408         if (ret) {
409                 lprintf(CTDL_DEBUG, "cdb_*: dbenv->open: %s\n",
410                         db_strerror(ret));
411                 dbenv->close(dbenv, 0);
412                 exit(CTDLEXIT_DB);
413         }
414
415         lprintf(CTDL_INFO, "cdb_*: Starting up DB\n");
416
417         for (i = 0; i < MAXCDB; ++i) {
418
419                 /* Create a database handle */
420                 ret = db_create(&dbp[i], dbenv, 0);
421                 if (ret) {
422                         lprintf(CTDL_DEBUG, "cdb_*: db_create: %s\n",
423                                 db_strerror(ret));
424                         exit(CTDLEXIT_DB);
425                 }
426
427
428                 /* Arbitrary names for our tables -- we reference them by
429                  * number, so we don't have string names for them.
430                  */
431                 snprintf(dbfilename, sizeof dbfilename, "cdb.%02x", i);
432
433                 ret = dbp[i]->open(dbp[i],
434                                    NULL,
435                                    dbfilename,
436                                    NULL,
437                                    DB_BTREE,
438                                    DB_CREATE | DB_AUTO_COMMIT | DB_THREAD,
439                                    0600);
440                 if (ret) {
441                         lprintf(CTDL_EMERG, "cdb_*: db_open[%d]: %s\n", i,
442                                 db_strerror(ret));
443                         exit(CTDLEXIT_DB);
444                 }
445         }
446
447         if ((ret = pthread_key_create(&tsdkey, dest_tsd))) {
448                 lprintf(CTDL_EMERG, "cdb_*: pthread_key_create: %s\n",
449                         strerror(ret));
450                 exit(CTDLEXIT_DB);
451         }
452
453         cdb_allocate_tsd();
454         
455         CtdlRegisterMaintenanceThread ("checkpoint", checkpoint_thread);
456 }
457
458
459 /* Make sure we own all the files, because in a few milliseconds
460  * we're going to drop root privs.
461  */
462 void cdb_chmod_data(void) {
463         DIR *dp;
464         struct dirent *d;
465         char filename[PATH_MAX];
466
467         dp = opendir(ctdl_data_dir);
468         if (dp != NULL) {
469                 while (d = readdir(dp), d != NULL) {
470                         if (d->d_name[0] != '.') {
471                                 snprintf(filename, sizeof filename,
472                                          "%s/%s", ctdl_data_dir, d->d_name);
473                                 lprintf(9, "chmod(%s, 0600) returned %d\n",
474                                         filename, chmod(filename, 0600)
475                                 );
476                                 lprintf(9, "chown(%s, CTDLUID, -1) returned %d\n",
477                                         filename, chown(filename, CTDLUID, (-1))
478                                 );
479                         }
480                 }
481                 closedir(dp);
482         }
483
484         lprintf(CTDL_DEBUG, "cdb_*: open_databases() finished\n");
485
486         CtdlRegisterProtoHook(cmd_cull, "CULL", "Cull database logs");
487 }
488
489
490 /*
491  * Close all of the db database files we've opened.  This can be done
492  * in a loop, since it's just a bunch of closes.
493  */
494 void close_databases(void)
495 {
496         int a;
497         int ret;
498
499         cdb_free_tsd();
500
501         if ((ret = dbenv->txn_checkpoint(dbenv, 0, 0, 0))) {
502                 lprintf(CTDL_EMERG,
503                         "cdb_*: txn_checkpoint: %s\n", db_strerror(ret));
504         }
505
506         /* print some statistics... */
507         dbenv->lock_stat_print(dbenv, DB_STAT_ALL);
508
509         /* close the tables */
510         for (a = 0; a < MAXCDB; ++a) {
511                 lprintf(CTDL_INFO, "cdb_*: Closing database %d\n", a);
512                 ret = dbp[a]->close(dbp[a], 0);
513                 if (ret) {
514                         lprintf(CTDL_EMERG,
515                                 "cdb_*: db_close: %s\n", db_strerror(ret));
516                 }
517
518         }
519
520         /* Close the handle. */
521         ret = dbenv->close(dbenv, 0);
522         if (ret) {
523                 lprintf(CTDL_EMERG,
524                         "cdb_*: DBENV->close: %s\n", db_strerror(ret));
525         }
526 }
527
528
529 /*
530  * Compression functions only used if we have zlib
531  */
532 #ifdef HAVE_ZLIB
533
534 void cdb_decompress_if_necessary(struct cdbdata *cdb)
535 {
536         static int magic = COMPRESS_MAGIC;
537         struct CtdlCompressHeader zheader;
538         char *uncompressed_data;
539         char *compressed_data;
540         uLongf destLen, sourceLen;
541
542         if (cdb == NULL)
543                 return;
544         if (cdb->ptr == NULL)
545                 return;
546         if (memcmp(cdb->ptr, &magic, sizeof(magic)))
547                 return;
548
549         /* At this point we know we're looking at a compressed item. */
550         memcpy(&zheader, cdb->ptr, sizeof(struct CtdlCompressHeader));
551
552         compressed_data = cdb->ptr;
553         compressed_data += sizeof(struct CtdlCompressHeader);
554
555         sourceLen = (uLongf) zheader.compressed_len;
556         destLen = (uLongf) zheader.uncompressed_len;
557         uncompressed_data = malloc(zheader.uncompressed_len);
558
559         if (uncompress((Bytef *) uncompressed_data,
560                        (uLongf *) & destLen,
561                        (const Bytef *) compressed_data,
562                        (uLong) sourceLen) != Z_OK) {
563                 lprintf(CTDL_EMERG, "uncompress() error\n");
564                 abort();
565         }
566
567         free(cdb->ptr);
568         cdb->len = (size_t) destLen;
569         cdb->ptr = uncompressed_data;
570 }
571
572 #endif                          /* HAVE_ZLIB */
573
574
575 /*
576  * Store a piece of data.  Returns 0 if the operation was successful.  If a
577  * key already exists it should be overwritten.
578  */
579 int cdb_store(int cdb, void *ckey, int ckeylen, void *cdata, int cdatalen)
580 {
581
582         DBT dkey, ddata;
583         DB_TXN *tid;
584         int ret = 0;
585
586 #ifdef HAVE_ZLIB
587         struct CtdlCompressHeader zheader;
588         char *compressed_data = NULL;
589         int compressing = 0;
590         size_t buffer_len = 0;
591         uLongf destLen = 0;
592 #endif
593
594         memset(&dkey, 0, sizeof(DBT));
595         memset(&ddata, 0, sizeof(DBT));
596         dkey.size = ckeylen;
597         dkey.data = ckey;
598         ddata.size = cdatalen;
599         ddata.data = cdata;
600
601 #ifdef HAVE_ZLIB
602         /* Only compress Visit records.  Everything else is uncompressed. */
603         if (cdb == CDB_VISIT) {
604                 compressing = 1;
605                 zheader.magic = COMPRESS_MAGIC;
606                 zheader.uncompressed_len = cdatalen;
607                 buffer_len = ((cdatalen * 101) / 100) + 100
608                     + sizeof(struct CtdlCompressHeader);
609                 destLen = (uLongf) buffer_len;
610                 compressed_data = malloc(buffer_len);
611                 if (compress2((Bytef *) (compressed_data +
612                                          sizeof(struct
613                                                 CtdlCompressHeader)),
614                               &destLen, (Bytef *) cdata, (uLongf) cdatalen,
615                               1) != Z_OK) {
616                         lprintf(CTDL_EMERG, "compress2() error\n");
617                         abort();
618                 }
619                 zheader.compressed_len = (size_t) destLen;
620                 memcpy(compressed_data, &zheader,
621                        sizeof(struct CtdlCompressHeader));
622                 ddata.size = (size_t) (sizeof(struct CtdlCompressHeader) +
623                                        zheader.compressed_len);
624                 ddata.data = compressed_data;
625         }
626 #endif
627
628         if (MYTID != NULL) {
629                 ret = dbp[cdb]->put(dbp[cdb],   /* db */
630                                     MYTID,      /* transaction ID */
631                                     &dkey,      /* key */
632                                     &ddata,     /* data */
633                                     0); /* flags */
634                 if (ret) {
635                         lprintf(CTDL_EMERG, "cdb_store(%d): %s\n", cdb,
636                                 db_strerror(ret));
637                         abort();
638                 }
639 #ifdef HAVE_ZLIB
640                 if (compressing)
641                         free(compressed_data);
642 #endif
643                 return ret;
644
645         } else {
646                 bailIfCursor(MYCURSORS,
647                              "attempt to write during r/o cursor");
648
649               retry:
650                 txbegin(&tid);
651
652                 if ((ret = dbp[cdb]->put(dbp[cdb],      /* db */
653                                          tid,   /* transaction ID */
654                                          &dkey, /* key */
655                                          &ddata,        /* data */
656                                          0))) { /* flags */
657                         if (ret == DB_LOCK_DEADLOCK) {
658                                 txabort(tid);
659                                 goto retry;
660                         } else {
661                                 lprintf(CTDL_EMERG, "cdb_store(%d): %s\n",
662                                         cdb, db_strerror(ret));
663                                 abort();
664                         }
665                 } else {
666                         txcommit(tid);
667 #ifdef HAVE_ZLIB
668                         if (compressing)
669                                 free(compressed_data);
670 #endif
671                         return ret;
672                 }
673         }
674 }
675
676
677 /*
678  * Delete a piece of data.  Returns 0 if the operation was successful.
679  */
680 int cdb_delete(int cdb, void *key, int keylen)
681 {
682
683         DBT dkey;
684         DB_TXN *tid;
685         int ret;
686
687         memset(&dkey, 0, sizeof dkey);
688         dkey.size = keylen;
689         dkey.data = key;
690
691         if (MYTID != NULL) {
692                 ret = dbp[cdb]->del(dbp[cdb], MYTID, &dkey, 0);
693                 if (ret) {
694                         lprintf(CTDL_EMERG, "cdb_delete(%d): %s\n", cdb,
695                                 db_strerror(ret));
696                         if (ret != DB_NOTFOUND)
697                                 abort();
698                 }
699         } else {
700                 bailIfCursor(MYCURSORS,
701                              "attempt to delete during r/o cursor");
702
703               retry:
704                 txbegin(&tid);
705
706                 if ((ret = dbp[cdb]->del(dbp[cdb], tid, &dkey, 0))
707                     && ret != DB_NOTFOUND) {
708                         if (ret == DB_LOCK_DEADLOCK) {
709                                 txabort(tid);
710                                 goto retry;
711                         } else {
712                                 lprintf(CTDL_EMERG, "cdb_delete(%d): %s\n",
713                                         cdb, db_strerror(ret));
714                                 abort();
715                         }
716                 } else {
717                         txcommit(tid);
718                 }
719         }
720         return ret;
721 }
722
723 static DBC *localcursor(int cdb)
724 {
725         int ret;
726         DBC *curs;
727
728         if (MYCURSORS[cdb] == NULL)
729                 ret = dbp[cdb]->cursor(dbp[cdb], MYTID, &curs, 0);
730         else
731                 ret =
732                     MYCURSORS[cdb]->c_dup(MYCURSORS[cdb], &curs,
733                                           DB_POSITION);
734
735         if (ret) {
736                 lprintf(CTDL_EMERG, "localcursor: %s\n", db_strerror(ret));
737                 abort();
738         }
739
740         return curs;
741 }
742
743
744 /*
745  * Fetch a piece of data.  If not found, returns NULL.  Otherwise, it returns
746  * a struct cdbdata which it is the caller's responsibility to free later on
747  * using the cdb_free() routine.
748  */
749 struct cdbdata *cdb_fetch(int cdb, void *key, int keylen)
750 {
751
752         struct cdbdata *tempcdb;
753         DBT dkey, dret;
754         int ret;
755
756         memset(&dkey, 0, sizeof(DBT));
757         dkey.size = keylen;
758         dkey.data = key;
759
760         if (MYTID != NULL) {
761                 memset(&dret, 0, sizeof(DBT));
762                 dret.flags = DB_DBT_MALLOC;
763                 ret = dbp[cdb]->get(dbp[cdb], MYTID, &dkey, &dret, 0);
764         } else {
765                 DBC *curs;
766
767                 do {
768                         memset(&dret, 0, sizeof(DBT));
769                         dret.flags = DB_DBT_MALLOC;
770
771                         curs = localcursor(cdb);
772
773                         ret = curs->c_get(curs, &dkey, &dret, DB_SET);
774                         cclose(curs);
775                 }
776                 while (ret == DB_LOCK_DEADLOCK);
777
778         }
779
780         if ((ret != 0) && (ret != DB_NOTFOUND)) {
781                 lprintf(CTDL_EMERG, "cdb_fetch(%d): %s\n", cdb,
782                         db_strerror(ret));
783                 abort();
784         }
785
786         if (ret != 0)
787                 return NULL;
788         tempcdb = (struct cdbdata *) malloc(sizeof(struct cdbdata));
789
790         if (tempcdb == NULL) {
791                 lprintf(CTDL_EMERG,
792                         "cdb_fetch: Cannot allocate memory for tempcdb\n");
793                 abort();
794         }
795
796         tempcdb->len = dret.size;
797         tempcdb->ptr = dret.data;
798 #ifdef HAVE_ZLIB
799         cdb_decompress_if_necessary(tempcdb);
800 #endif
801         return (tempcdb);
802 }
803
804
805 /*
806  * Free a cdbdata item.
807  *
808  * Note that we only free the 'ptr' portion if it is not NULL.  This allows
809  * other code to assume ownership of that memory simply by storing the
810  * pointer elsewhere and then setting 'ptr' to NULL.  cdb_free() will then
811  * avoid freeing it.
812  */
813 void cdb_free(struct cdbdata *cdb)
814 {
815         if (cdb->ptr) {
816                 free(cdb->ptr);
817         }
818         free(cdb);
819 }
820
821 void cdb_close_cursor(int cdb)
822 {
823         if (MYCURSORS[cdb] != NULL)
824                 cclose(MYCURSORS[cdb]);
825
826         MYCURSORS[cdb] = NULL;
827 }
828
829 /* 
830  * Prepare for a sequential search of an entire database.
831  * (There is guaranteed to be no more than one traversal in
832  * progress per thread at any given time.)
833  */
834 void cdb_rewind(int cdb)
835 {
836         int ret = 0;
837
838         if (MYCURSORS[cdb] != NULL) {
839                 lprintf(CTDL_EMERG,
840                         "cdb_rewind: must close cursor on database %d before reopening.\n",
841                         cdb);
842                 abort();
843                 /* cclose(MYCURSORS[cdb]); */
844         }
845
846         /*
847          * Now initialize the cursor
848          */
849         ret = dbp[cdb]->cursor(dbp[cdb], MYTID, &MYCURSORS[cdb], 0);
850         if (ret) {
851                 lprintf(CTDL_EMERG, "cdb_rewind: db_cursor: %s\n",
852                         db_strerror(ret));
853                 abort();
854         }
855 }
856
857
858 /*
859  * Fetch the next item in a sequential search.  Returns a pointer to a 
860  * cdbdata structure, or NULL if we've hit the end.
861  */
862 struct cdbdata *cdb_next_item(int cdb)
863 {
864         DBT key, data;
865         struct cdbdata *cdbret;
866         int ret = 0;
867
868         /* Initialize the key/data pair so the flags aren't set. */
869         memset(&key, 0, sizeof(key));
870         memset(&data, 0, sizeof(data));
871         data.flags = DB_DBT_MALLOC;
872
873         ret = MYCURSORS[cdb]->c_get(MYCURSORS[cdb], &key, &data, DB_NEXT);
874
875         if (ret) {
876                 if (ret != DB_NOTFOUND) {
877                         lprintf(CTDL_EMERG, "cdb_next_item(%d): %s\n",
878                                 cdb, db_strerror(ret));
879                         abort();
880                 }
881                 cclose(MYCURSORS[cdb]);
882                 MYCURSORS[cdb] = NULL;
883                 return NULL;    /* presumably, end of file */
884         }
885
886         cdbret = (struct cdbdata *) malloc(sizeof(struct cdbdata));
887         cdbret->len = data.size;
888         cdbret->ptr = data.data;
889 #ifdef HAVE_ZLIB
890         cdb_decompress_if_necessary(cdbret);
891 #endif
892
893         return (cdbret);
894 }
895
896
897
898 /*
899  * Transaction-based stuff.  I'm writing this as I bake cookies...
900  */
901
902 void cdb_begin_transaction(void)
903 {
904
905         bailIfCursor(MYCURSORS,
906                      "can't begin transaction during r/o cursor");
907
908         if (MYTID != NULL) {
909                 lprintf(CTDL_EMERG,
910                         "cdb_begin_transaction: ERROR: nested transaction\n");
911                 abort();
912         }
913
914         txbegin(&MYTID);
915 }
916
917 void cdb_end_transaction(void)
918 {
919         int i;
920
921         for (i = 0; i < MAXCDB; i++)
922                 if (MYCURSORS[i] != NULL) {
923                         lprintf(CTDL_WARNING,
924                                 "cdb_end_transaction: WARNING: cursor %d still open at transaction end\n",
925                                 i);
926                         cclose(MYCURSORS[i]);
927                         MYCURSORS[i] = NULL;
928                 }
929
930         if (MYTID == NULL) {
931                 lprintf(CTDL_EMERG,
932                         "cdb_end_transaction: ERROR: txcommit(NULL) !!\n");
933                 abort();
934         } else
935                 txcommit(MYTID);
936
937         MYTID = NULL;
938 }
939
940 /*
941  * Truncate (delete every record)
942  */
943 void cdb_trunc(int cdb)
944 {
945         /* DB_TXN *tid; */
946         int ret;
947         u_int32_t count;
948
949         if (MYTID != NULL) {
950                 lprintf(CTDL_EMERG,
951                         "cdb_trunc must not be called in a transaction.\n");
952                 abort();
953         } else {
954                 bailIfCursor(MYCURSORS,
955                              "attempt to write during r/o cursor");
956
957               retry:
958                 /* txbegin(&tid); */
959
960                 if ((ret = dbp[cdb]->truncate(dbp[cdb], /* db */
961                                               NULL,     /* transaction ID */
962                                               &count,   /* #rows deleted */
963                                               0))) {    /* flags */
964                         if (ret == DB_LOCK_DEADLOCK) {
965                                 /* txabort(tid); */
966                                 goto retry;
967                         } else {
968                                 lprintf(CTDL_EMERG,
969                                         "cdb_truncate(%d): %s\n", cdb,
970                                         db_strerror(ret));
971                                 abort();
972                         }
973                 } else {
974                         /* txcommit(tid); */
975                 }
976         }
977 }