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