Fix bug in new code for more ACL variables - even before release!
[exim.git] / src / src / dbfn.c
CommitLineData
f1e894f3 1/* $Cambridge: exim/src/src/dbfn.c,v 1.6 2005/06/27 14:29:43 ph10 Exp $ */
059ec3d9
PH
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
c988f1f4 7/* Copyright (c) University of Cambridge 1995 - 2005 */
059ec3d9
PH
8/* See the file NOTICE for conditions of use and distribution. */
9
10
11#include "exim.h"
12
13
14/* Functions for accessing Exim's hints database, which consists of a number of
15different DBM files. This module does not contain code for reading DBM files
16for (e.g.) alias expansion. That is all contained within the general search
17functions. As Exim now has support for several DBM interfaces, all the relevant
18functions are called as macros.
19
20All the data in Exim's database is in the nature of *hints*. Therefore it
21doesn't matter if it gets destroyed by accident. These functions are not
22supposed to implement a "safe" database.
23
24Keys are passed in as C strings, and the terminating zero *is* used when
25building the dbm files. This just makes life easier when scanning the files
26sequentially.
27
28Synchronization is required on the database files, and this is achieved by
29means of locking on independent lock files. (Earlier attempts to lock on the
30DBM files themselves were never completely successful.) Since callers may in
31general want to do more than one read or write while holding the lock, there
32are separate open and close functions. However, the calling modules should
33arrange to hold the locks for the bare minimum of time. */
34
35
36
37/*************************************************
38* Berkeley DB error callback *
39*************************************************/
40
41/* For Berkeley DB >= 2, we can define a function to be called in case of DB
42errors. This should help with debugging strange DB problems, e.g. getting "File
1f922db1
PH
43exists" when you try to open a db file. The API for this function was changed
44at DB release 4.3. */
059ec3d9
PH
45
46#if defined(USE_DB) && defined(DB_VERSION_STRING)
47void
1f922db1
PH
48#if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3)
49dbfn_bdb_error_callback(const DB_ENV *dbenv, const char *pfx, const char *msg)
50{
51dbenv = dbenv;
52#else
059ec3d9
PH
53dbfn_bdb_error_callback(const char *pfx, char *msg)
54{
1f922db1 55#endif
059ec3d9
PH
56pfx = pfx;
57log_write(0, LOG_MAIN, "Berkeley DB error: %s", msg);
58}
59#endif
60
61
62
63
64/*************************************************
65* Open and lock a database file *
66*************************************************/
67
68/* Used for accessing Exim's hints databases.
69
70Arguments:
71 name The single-component name of one of Exim's database files.
72 flags Either O_RDONLY or O_RDWR, indicating the type of open required;
73 O_RDWR implies "create if necessary"
74 dbblock Points to an open_db block to be filled in.
75 lof If TRUE, write to the log for actual open failures (locking failures
76 are always logged).
77
78Returns: NULL if the open failed, or the locking failed. After locking
79 failures, errno is zero.
80
81 On success, dbblock is returned. This contains the dbm pointer and
82 the fd of the locked lock file.
83*/
84
85open_db *
86dbfn_open(uschar *name, int flags, open_db *dbblock, BOOL lof)
87{
88int rc, save_errno;
89BOOL read_only = flags == O_RDONLY;
90BOOL created = FALSE;
91flock_t lock_data;
92uschar buffer[256];
93
94/* The first thing to do is to open a separate file on which to lock. This
95ensures that Exim has exclusive use of the database before it even tries to
96open it. Early versions tried to lock on the open database itself, but that
97gave rise to mysterious problems from time to time - it was suspected that some
98DB libraries "do things" on their open() calls which break the interlocking.
99The lock file is never written to, but we open it for writing so we can get a
100write lock if required. If it does not exist, we create it. This is done
101separately so we know when we have done it, because when running as root we
102need to change the ownership - see the bottom of this function. We also try to
103make the directory as well, just in case. We won't be doing this many times
104unnecessarily, because usually the lock file will be there. If the directory
105exists, there is no error. */
106
107sprintf(CS buffer, "%s/db/%s.lockfile", spool_directory, name);
108
109if ((dbblock->lockfd = Uopen(buffer, O_RDWR, EXIMDB_LOCKFILE_MODE)) < 0)
110 {
111 created = TRUE;
112 (void)directory_make(spool_directory, US"db", EXIMDB_DIRECTORY_MODE, TRUE);
113 dbblock->lockfd = Uopen(buffer, O_RDWR|O_CREAT, EXIMDB_LOCKFILE_MODE);
114 }
115
116if (dbblock->lockfd < 0)
117 {
118 log_write(0, LOG_MAIN, "%s",
119 string_open_failed(errno, "database lock file %s", buffer));
120 errno = 0; /* Indicates locking failure */
121 return NULL;
122 }
123
124/* Now we must get a lock on the opened lock file; do this with a blocking
125lock that times out. */
126
127lock_data.l_type = read_only? F_RDLCK : F_WRLCK;
128lock_data.l_whence = lock_data.l_start = lock_data.l_len = 0;
129
130DEBUG(D_hints_lookup|D_retry|D_route|D_deliver)
131 debug_printf("locking %s\n", buffer);
132
133sigalrm_seen = FALSE;
134alarm(EXIMDB_LOCK_TIMEOUT);
135rc = fcntl(dbblock->lockfd, F_SETLKW, &lock_data);
136alarm(0);
137
138if (sigalrm_seen) errno = ETIMEDOUT;
139if (rc < 0)
140 {
141 log_write(0, LOG_MAIN, "Failed to get %s lock for %s: %s",
142 ((flags & O_RDONLY) != 0)? "read" : "write", buffer,
143 (errno == ETIMEDOUT)? "timed out" : strerror(errno));
f1e894f3 144 (void)close(dbblock->lockfd);
059ec3d9
PH
145 errno = 0; /* Indicates locking failure */
146 return NULL;
147 }
148
149DEBUG(D_hints_lookup) debug_printf("locked %s\n", buffer);
150
151/* At this point we have an opened and locked separate lock file, that is,
152exclusive access to the database, so we can go ahead and open it. If we are
153expected to create it, don't do so at first, again so that we can detect
154whether we need to change its ownership (see comments about the lock file
8187c3f3
PH
155above.) There have been regular reports of crashes while opening hints
156databases - often this is caused by non-matching db.h and the library. To make
157it easy to pin this down, there are now debug statements on either side of the
158open call. */
059ec3d9
PH
159
160sprintf(CS buffer, "%s/db/%s", spool_directory, name);
8187c3f3 161DEBUG(D_hints_lookup) debug_printf("EXIM_DBOPEN(%s)\n", buffer);
059ec3d9 162EXIM_DBOPEN(buffer, flags, EXIMDB_MODE, &(dbblock->dbptr));
8187c3f3 163DEBUG(D_hints_lookup) debug_printf("returned from EXIM_DBOPEN\n");
059ec3d9
PH
164
165if (dbblock->dbptr == NULL && errno == ENOENT && flags == O_RDWR)
166 {
167 DEBUG(D_hints_lookup)
168 debug_printf("%s appears not to exist: trying to create\n", buffer);
169 created = TRUE;
170 EXIM_DBOPEN(buffer, flags|O_CREAT, EXIMDB_MODE, &(dbblock->dbptr));
8187c3f3 171 DEBUG(D_hints_lookup) debug_printf("returned from EXIM_DBOPEN\n");
059ec3d9
PH
172 }
173
174save_errno = errno;
175
176/* If we are running as root and this is the first access to the database, its
177files will be owned by root. We want them to be owned by exim. We detect this
178situation by noting above when we had to create the lock file or the database
179itself. Because the different dbm libraries use different extensions for their
180files, I don't know of any easier way of arranging this than scanning the
181directory for files with the appropriate base name. At least this deals with
182the lock file at the same time. Also, the directory will typically have only
183half a dozen files, so the scan will be quick.
184
185This code is placed here, before the test for successful opening, because there
186was a case when a file was created, but the DBM library still returned NULL
187because of some problem. It also sorts out the lock file if that was created
188but creation of the database file failed. */
189
190if (created && geteuid() == root_uid)
191 {
192 DIR *dd;
193 struct dirent *ent;
194 uschar *lastname = Ustrrchr(buffer, '/') + 1;
195 int namelen = Ustrlen(name);
196
197 *lastname = 0;
198 dd = opendir(CS buffer);
199
200 while ((ent = readdir(dd)) != NULL)
201 {
202 if (Ustrncmp(ent->d_name, name, namelen) == 0)
203 {
204 struct stat statbuf;
205 Ustrcpy(lastname, ent->d_name);
206 if (Ustat(buffer, &statbuf) >= 0 && statbuf.st_uid != exim_uid)
207 {
208 DEBUG(D_hints_lookup) debug_printf("ensuring %s is owned by exim\n", buffer);
ff790e47 209 (void)Uchown(buffer, exim_uid, exim_gid);
059ec3d9
PH
210 }
211 }
212 }
213
214 closedir(dd);
215 }
216
217/* If the open has failed, return NULL, leaving errno set. If lof is TRUE,
218log the event - also for debugging - but not if the file just doesn't exist. */
219
220if (dbblock->dbptr == NULL)
221 {
222 if (save_errno != ENOENT)
223 {
224 if (lof)
225 log_write(0, LOG_MAIN, "%s", string_open_failed(save_errno, "DB file %s",
226 buffer));
227 else
228 DEBUG(D_hints_lookup)
229 debug_printf("%s", CS string_open_failed(save_errno, "DB file %s\n",
230 buffer));
231 }
f1e894f3 232 (void)close(dbblock->lockfd);
059ec3d9
PH
233 errno = save_errno;
234 return NULL;
235 }
236
237DEBUG(D_hints_lookup)
238 debug_printf("opened hints database %s: flags=%x\n", buffer, flags);
239
240/* Pass back the block containing the opened database handle and the open fd
241for the lock. */
242
243return dbblock;
244}
245
246
247
248
249/*************************************************
250* Unlock and close a database file *
251*************************************************/
252
253/* Closing a file automatically unlocks it, so after closing the database, just
254close the lock file.
255
256Argument: a pointer to an open database block
257Returns: nothing
258*/
259
260void
261dbfn_close(open_db *dbblock)
262{
263EXIM_DBCLOSE(dbblock->dbptr);
f1e894f3 264(void)close(dbblock->lockfd);
059ec3d9
PH
265}
266
267
268
269
270/*************************************************
271* Read from database file *
272*************************************************/
273
274/* Passing back the pointer unchanged is useless, because there is
275no guarantee of alignment. Since all the records used by Exim need
276to be properly aligned to pick out the timestamps, etc., we might as
277well do the copying centrally here.
278
279Most calls don't need the length, so there is a macro called dbfn_read which
280has two arguments; it calls this function adding NULL as the third.
281
282Arguments:
283 dbblock a pointer to an open database block
284 key the key of the record to be read
285 length a pointer to an int into which to return the length, if not NULL
286
287Returns: a pointer to the retrieved record, or
288 NULL if the record is not found
289*/
290
291void *
292dbfn_read_with_length(open_db *dbblock, uschar *key, int *length)
293{
294void *yield;
295EXIM_DATUM key_datum, result_datum;
296
297DEBUG(D_hints_lookup) debug_printf("dbfn_read: key=%s\n", key);
298
299EXIM_DATUM_INIT(key_datum); /* Some DBM libraries require the datum */
300EXIM_DATUM_INIT(result_datum); /* to be cleared before use. */
301EXIM_DATUM_DATA(key_datum) = CS key;
302EXIM_DATUM_SIZE(key_datum) = Ustrlen(key) + 1;
303
304if (!EXIM_DBGET(dbblock->dbptr, key_datum, result_datum)) return NULL;
305
306yield = store_get(EXIM_DATUM_SIZE(result_datum));
307memcpy(yield, EXIM_DATUM_DATA(result_datum), EXIM_DATUM_SIZE(result_datum));
308if (length != NULL) *length = EXIM_DATUM_SIZE(result_datum);
309
310EXIM_DATUM_FREE(result_datum); /* Some DBM libs require freeing */
311return yield;
312}
313
314
315
316/*************************************************
317* Write to database file *
318*************************************************/
319
320/*
321Arguments:
322 dbblock a pointer to an open database block
323 key the key of the record to be written
324 ptr a pointer to the record to be written
325 length the length of the record to be written
326
327Returns: the yield of the underlying dbm or db "write" function. If this
328 is dbm, the value is zero for OK.
329*/
330
331int
332dbfn_write(open_db *dbblock, uschar *key, void *ptr, int length)
333{
334EXIM_DATUM key_datum, value_datum;
335dbdata_generic *gptr = (dbdata_generic *)ptr;
336gptr->time_stamp = time(NULL);
337
338DEBUG(D_hints_lookup) debug_printf("dbfn_write: key=%s\n", key);
339
340EXIM_DATUM_INIT(key_datum); /* Some DBM libraries require the datum */
341EXIM_DATUM_INIT(value_datum); /* to be cleared before use. */
342EXIM_DATUM_DATA(key_datum) = CS key;
343EXIM_DATUM_SIZE(key_datum) = Ustrlen(key) + 1;
344EXIM_DATUM_DATA(value_datum) = CS ptr;
345EXIM_DATUM_SIZE(value_datum) = length;
346return EXIM_DBPUT(dbblock->dbptr, key_datum, value_datum);
347}
348
349
350
351/*************************************************
352* Delete record from database file *
353*************************************************/
354
355/*
356Arguments:
357 dbblock a pointer to an open database block
358 key the key of the record to be deleted
359
360Returns: the yield of the underlying dbm or db "delete" function.
361*/
362
363int
364dbfn_delete(open_db *dbblock, uschar *key)
365{
366EXIM_DATUM key_datum;
367EXIM_DATUM_INIT(key_datum); /* Some DBM libraries require clearing */
368EXIM_DATUM_DATA(key_datum) = CS key;
369EXIM_DATUM_SIZE(key_datum) = Ustrlen(key) + 1;
370return EXIM_DBDEL(dbblock->dbptr, key_datum);
371}
372
373
374
375/*************************************************
376* Scan the keys of a database file *
377*************************************************/
378
379/*
380Arguments:
381 dbblock a pointer to an open database block
382 start TRUE if starting a new scan
383 FALSE if continuing with the current scan
384 cursor a pointer to a pointer to a cursor anchor, for those dbm libraries
385 that use the notion of a cursor
386
387Returns: the next record from the file, or
388 NULL if there are no more
389*/
390
391uschar *
392dbfn_scan(open_db *dbblock, BOOL start, EXIM_CURSOR **cursor)
393{
394EXIM_DATUM key_datum, value_datum;
395uschar *yield;
396value_datum = value_datum; /* dummy; not all db libraries use this */
397
398/* Some dbm require an initialization */
399
400if (start) EXIM_DBCREATE_CURSOR(dbblock->dbptr, cursor);
401
402EXIM_DATUM_INIT(key_datum); /* Some DBM libraries require the datum */
403EXIM_DATUM_INIT(value_datum); /* to be cleared before use. */
404
405yield = (EXIM_DBSCAN(dbblock->dbptr, key_datum, value_datum, start, *cursor))?
406 US EXIM_DATUM_DATA(key_datum) : NULL;
407
408/* Some dbm require a termination */
409
410if (!yield) EXIM_DBDELETE_CURSOR(*cursor);
411return yield;
412}
413
414
415
416/*************************************************
417**************************************************
418* Stand-alone test program *
419**************************************************
420*************************************************/
421
422#ifdef STAND_ALONE
423
424int
425main(int argc, char **cargv)
426{
427open_db dbblock[8];
428int max_db = sizeof(dbblock)/sizeof(open_db);
429int current = -1;
430int showtime = 0;
431int i;
432dbdata_wait *dbwait = NULL;
433uschar **argv = USS cargv;
434uschar buffer[256];
435uschar structbuffer[1024];
436
437if (argc != 2)
438 {
439 printf("Usage: test_dbfn directory\n");
440 printf("The subdirectory called \"db\" in the given directory is used for\n");
441 printf("the files used in this test program.\n");
442 return 1;
443 }
444
445/* Initialize */
446
447spool_directory = argv[1];
448debug_selector = D_all - D_memory;
449debug_file = stderr;
450big_buffer = malloc(big_buffer_size);
451
452for (i = 0; i < max_db; i++) dbblock[i].dbptr = NULL;
453
454printf("\nExim's db functions tester: interface type is %s\n", EXIM_DBTYPE);
455printf("DBM library: ");
456
457#ifdef DB_VERSION_STRING
458printf("Berkeley DB: %s\n", DB_VERSION_STRING);
459#elif defined(BTREEVERSION) && defined(HASHVERSION)
460 #ifdef USE_DB
461 printf("probably Berkeley DB version 1.8x (native mode)\n");
462 #else
463 printf("probably Berkeley DB version 1.8x (compatibility mode)\n");
464 #endif
465#elif defined(_DBM_RDONLY) || defined(dbm_dirfno)
466printf("probably ndbm\n");
467#elif defined(USE_TDB)
468printf("using tdb\n");
469#else
470 #ifdef USE_GDBM
471 printf("probably GDBM (native mode)\n");
472 #else
473 printf("probably GDBM (compatibility mode)\n");
474 #endif
475#endif
476
477/* Test the functions */
478
479printf("\nTest the functions\n> ");
480
481while (Ufgets(buffer, 256, stdin) != NULL)
482 {
483 int len = Ustrlen(buffer);
484 int count = 1;
485 clock_t start = 1;
486 clock_t stop = 0;
487 uschar *cmd = buffer;
488 while (len > 0 && isspace((uschar)buffer[len-1])) len--;
489 buffer[len] = 0;
490
491 if (isdigit((uschar)*cmd))
492 {
493 count = Uatoi(cmd);
494 while (isdigit((uschar)*cmd)) cmd++;
495 while (isspace((uschar)*cmd)) cmd++;
496 }
497
498 if (Ustrncmp(cmd, "open", 4) == 0)
499 {
500 int i;
501 open_db *odb;
502 uschar *s = cmd + 4;
503 while (isspace((uschar)*s)) s++;
504
505 for (i = 0; i < max_db; i++)
506 if (dbblock[i].dbptr == NULL) break;
507
508 if (i >= max_db)
509 {
510 printf("Too many open databases\n> ");
511 continue;
512 }
513
514 start = clock();
515 odb = dbfn_open(s, O_RDWR, dbblock + i, TRUE);
516 stop = clock();
517
518 if (odb != NULL)
519 {
520 current = i;
521 printf("opened %d\n", current);
522 }
523 /* Other error cases will have written messages */
524 else if (errno == ENOENT)
525 {
526 printf("open failed: %s%s\n", strerror(errno),
527 #ifdef USE_DB
528 " (or other Berkeley DB error)"
529 #else
530 ""
531 #endif
532 );
533 }
534 }
535
536 else if (Ustrncmp(cmd, "write", 5) == 0)
537 {
538 int rc = 0;
539 uschar *key = cmd + 5;
540 uschar *data;
541
542 if (current < 0)
543 {
544 printf("No current database\n");
545 continue;
546 }
547
548 while (isspace((uschar)*key)) key++;
549 data = key;
550 while (*data != 0 && !isspace((uschar)*data)) data++;
551 *data++ = 0;
552 while (isspace((uschar)*data)) data++;
553
554 dbwait = (dbdata_wait *)(&structbuffer);
555 Ustrcpy(dbwait->text, data);
556
557 start = clock();
558 while (count-- > 0)
559 rc = dbfn_write(dbblock + current, key, dbwait,
560 Ustrlen(data) + sizeof(dbdata_wait));
561 stop = clock();
562 if (rc != 0) printf("Failed: %s\n", strerror(errno));
563 }
564
565 else if (Ustrncmp(cmd, "read", 4) == 0)
566 {
567 uschar *key = cmd + 4;
568 if (current < 0)
569 {
570 printf("No current database\n");
571 continue;
572 }
573 while (isspace((uschar)*key)) key++;
574 start = clock();
575 while (count-- > 0)
576 dbwait = (dbdata_wait *)dbfn_read_with_length(dbblock+ current, key, NULL);
577 stop = clock();
578 printf("%s\n", (dbwait == NULL)? "<not found>" : CS dbwait->text);
579 }
580
581 else if (Ustrncmp(cmd, "delete", 6) == 0)
582 {
583 uschar *key = cmd + 6;
584 if (current < 0)
585 {
586 printf("No current database\n");
587 continue;
588 }
589 while (isspace((uschar)*key)) key++;
590 dbfn_delete(dbblock + current, key);
591 }
592
593 else if (Ustrncmp(cmd, "scan", 4) == 0)
594 {
595 EXIM_CURSOR *cursor;
596 BOOL startflag = TRUE;
597 uschar *key;
598 uschar keybuffer[256];
599 if (current < 0)
600 {
601 printf("No current database\n");
602 continue;
603 }
604 start = clock();
605 while ((key = dbfn_scan(dbblock + current, startflag, &cursor)) != NULL)
606 {
607 startflag = FALSE;
608 Ustrcpy(keybuffer, key);
609 dbwait = (dbdata_wait *)dbfn_read_with_length(dbblock + current,
610 keybuffer, NULL);
611 printf("%s: %s\n", keybuffer, dbwait->text);
612 }
613 stop = clock();
614 printf("End of scan\n");
615 }
616
617 else if (Ustrncmp(cmd, "close", 5) == 0)
618 {
619 uschar *s = cmd + 5;
620 while (isspace((uschar)*s)) s++;
621 i = Uatoi(s);
622 if (i >= max_db || dbblock[i].dbptr == NULL) printf("Not open\n"); else
623 {
624 start = clock();
625 dbfn_close(dbblock + i);
626 stop = clock();
627 dbblock[i].dbptr = NULL;
628 if (i == current) current = -1;
629 }
630 }
631
632 else if (Ustrncmp(cmd, "file", 4) == 0)
633 {
634 uschar *s = cmd + 4;
635 while (isspace((uschar)*s)) s++;
636 i = Uatoi(s);
637 if (i >= max_db || dbblock[i].dbptr == NULL) printf("Not open\n");
638 else current = i;
639 }
640
641 else if (Ustrncmp(cmd, "time", 4) == 0)
642 {
643 showtime = ~showtime;
644 printf("Timing %s\n", showtime? "on" : "off");
645 }
646
647 else if (Ustrcmp(cmd, "q") == 0 || Ustrncmp(cmd, "quit", 4) == 0) break;
648
649 else if (Ustrncmp(cmd, "help", 4) == 0)
650 {
651 printf("close [<number>] close file [<number>]\n");
652 printf("delete <key> remove record from current file\n");
653 printf("file <number> make file <number> current\n");
654 printf("open <name> open db file\n");
655 printf("q[uit] exit program\n");
656 printf("read <key> read record from current file\n");
657 printf("scan scan current file\n");
658 printf("time time display on/off\n");
659 printf("write <key> <rest-of-line> write record to current file\n");
660 }
661
662 else printf("Eh?\n");
663
664 if (showtime && stop >= start)
665 printf("start=%d stop=%d difference=%d\n", (int)start, (int)stop,
666 (int)(stop - start));
667
668 printf("> ");
669 }
670
671for (i = 0; i < max_db; i++)
672 {
673 if (dbblock[i].dbptr != NULL)
674 {
675 printf("\nClosing %d", i);
676 dbfn_close(dbblock + i);
677 }
678 }
679
680printf("\n");
681return 0;
682}
683
684#endif
685
686/* End of dbfn.c */