1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* Copyright (c) The Exim Maintainers 2020 */
7 /* See the file NOTICE for conditions of use and distribution. */
10 #include "lf_functions.h"
13 /*************************************************
15 *************************************************/
17 /* See local README for interface description */
20 dbmdb_open(const uschar * filename, uschar ** errmsg)
22 uschar * dirname = string_copy(filename);
24 EXIM_DB *yield = NULL;
26 if ((s = Ustrrchr(dirname, '/'))) *s = '\0';
27 EXIM_DBOPEN(filename, dirname, O_RDONLY, 0, &yield);
30 int save_errno = errno;
31 *errmsg = string_open_failed(errno, "%s as a %s file", filename, EXIM_DBTYPE);
39 /*************************************************
41 *************************************************/
43 /* This needs to know more about the underlying files than is good for it!
44 We need to know what the real file names are in order to check the owners and
45 modes. If USE_DB is set, we know it is Berkeley DB, which uses an unmodified
46 file name. If USE_TDB or USE_GDBM is set, we know it is tdb or gdbm, which do
47 the same. Otherwise, for safety, we have to check for x.db or x.dir and x.pag.
51 dbmdb_check(void *handle, const uschar *filename, int modemask, uid_t *owners,
52 gid_t *owngroups, uschar **errmsg)
55 handle = handle; /* Keep picky compilers happy */
57 #if defined(USE_DB) || defined(USE_TDB) || defined(USE_GDBM)
58 rc = lf_check_file(-1, filename, S_IFREG, modemask, owners, owngroups,
62 uschar filebuffer[256];
63 (void)sprintf(CS filebuffer, "%.250s.db", filename);
64 rc = lf_check_file(-1, filebuffer, S_IFREG, modemask, owners, owngroups,
66 if (rc < 0) /* stat() failed */
68 (void)sprintf(CS filebuffer, "%.250s.dir", filename);
69 rc = lf_check_file(-1, filebuffer, S_IFREG, modemask, owners, owngroups,
71 if (rc == 0) /* x.dir was OK */
73 (void)sprintf(CS filebuffer, "%.250s.pag", filename);
74 rc = lf_check_file(-1, filebuffer, S_IFREG, modemask, owners, owngroups,
86 /*************************************************
88 *************************************************/
90 /* See local README for interface description. This function adds 1 to
91 the keylength in order to include the terminating zero. */
94 dbmdb_find(void * handle, const uschar * filename, const uschar * keystring,
95 int length, uschar ** result, uschar ** errmsg, uint * do_cache,
98 EXIM_DB *d = (EXIM_DB *)handle;
101 filename = filename; /* Keep picky compilers happy */
105 EXIM_DATUM_INIT(key); /* Some DBM libraries require datums to */
106 EXIM_DATUM_INIT(data); /* be cleared before use. */
107 EXIM_DATUM_DATA(key) = CS keystring;
108 EXIM_DATUM_SIZE(key) = length + 1;
110 if (EXIM_DBGET(d, key, data))
112 *result = string_copyn(US EXIM_DATUM_DATA(data), EXIM_DATUM_SIZE(data));
113 EXIM_DATUM_FREE(data); /* Some DBM libraries need a free() call */
121 /*************************************************
122 * Find entry point - no zero on key *
123 *************************************************/
125 /* See local README for interface description */
128 dbmnz_find(void * handle, const uschar * filename, const uschar * keystring,
129 int length, uschar ** result, uschar ** errmsg, uint * do_cache,
132 return dbmdb_find(handle, filename, keystring, length-1, result, errmsg,
138 /*************************************************
139 * Find entry point - zero-joined list key *
140 *************************************************/
143 * The parameter passed as a key is a list in normal Exim list syntax.
144 * The elements of that list are joined together on NUL, with no trailing
145 * NUL, to form the key.
149 dbmjz_find(void * handle, const uschar * filename, const uschar * keystring,
150 int length, uschar ** result, uschar ** errmsg, uint * do_cache,
153 uschar *key_item, *key_buffer, *key_p;
154 const uschar *key_elems = keystring;
155 int buflen, bufleft, key_item_len, sep = 0;
157 /* To a first approximation, the size of the lookup key needs to be about,
158 or less than, the length of the delimited list passed in + 1. */
161 key_buffer = store_get(buflen, is_tainted(keystring));
163 key_buffer[0] = '\0';
168 /* In all cases of an empty list item, we can set 1 and advance by 1 and then
169 pick up the trailing NUL from the previous list item, EXCEPT when at the
170 beginning of the output string, in which case we need to supply that NUL
172 while ((key_item = string_nextinlist(&key_elems, &sep, key_p, bufleft)) != NULL)
174 key_item_len = Ustrlen(key_item) + 1;
175 if (key_item_len == 1)
178 if (key_p == key_buffer)
185 bufleft -= key_item_len;
188 /* The string_nextinlist() will stop at buffer size, but we should always
189 have at least 1 character extra, so some assumption has failed. */
190 *errmsg = string_copy(US"Ran out of buffer space for joining elements");
193 key_p += key_item_len;
196 if (key_p == key_buffer)
198 *errmsg = string_copy(US"empty list key");
202 /* We do not pass in the final NULL; if needed, the list should include an
203 empty element to put one in. Boundary: key length 1, is a NULL */
204 key_item_len = key_p - key_buffer - 1;
206 DEBUG(D_lookup) debug_printf_indent("NUL-joined key length: %d\n", key_item_len);
208 /* beware that dbmdb_find() adds 1 to length to get back terminating NUL, so
209 because we've calculated the real length, we need to subtract one more here */
211 return dbmdb_find(handle, filename, key_buffer, key_item_len - 1,
212 result, errmsg, do_cache, opts);
217 /*************************************************
218 * Close entry point *
219 *************************************************/
221 /* See local README for interface description */
224 static dbmdb_close(void *handle)
226 EXIM_DBCLOSE((EXIM_DB *)handle);
231 /*************************************************
232 * Version reporting entry point *
233 *************************************************/
235 /* See local README for interface description. */
237 #include "../version.h"
240 dbm_version_report(FILE *f)
243 fprintf(f, "Library version: DBM: Exim version %s\n", EXIM_VERSION_STR);
248 lookup_info dbm_lookup_info = {
249 .name = US"dbm", /* lookup name */
250 .type = lookup_absfile, /* uses absolute file name */
251 .open = dbmdb_open, /* open function */
252 .check = dbmdb_check, /* check function */
253 .find = dbmdb_find, /* find function */
254 .close = dbmdb_close, /* close function */
255 .tidy = NULL, /* no tidy function */
256 .quote = NULL, /* no quoting function */
257 .version_report = dbm_version_report /* version reporting */
260 lookup_info dbmz_lookup_info = {
261 .name = US"dbmnz", /* lookup name */
262 .type = lookup_absfile, /* uses absolute file name */
263 .open = dbmdb_open, /* sic */ /* open function */
264 .check = dbmdb_check, /* sic */ /* check function */
265 .find = dbmnz_find, /* find function */
266 .close = dbmdb_close, /* sic */ /* close function */
267 .tidy = NULL, /* no tidy function */
268 .quote = NULL, /* no quoting function */
269 .version_report = NULL /* no version reporting (redundant) */
272 lookup_info dbmjz_lookup_info = {
273 .name = US"dbmjz", /* lookup name */
274 .type = lookup_absfile, /* uses absolute file name */
275 .open = dbmdb_open, /* sic */ /* open function */
276 .check = dbmdb_check, /* sic */ /* check function */
277 .find = dbmjz_find, /* find function */
278 .close = dbmdb_close, /* sic */ /* close function */
279 .tidy = NULL, /* no tidy function */
280 .quote = NULL, /* no quoting function */
281 .version_report = NULL /* no version reporting (redundant) */
285 #define dbmdb_lookup_module_info _lookup_module_info
288 static lookup_info *_lookup_list[] = { &dbm_lookup_info, &dbmz_lookup_info, &dbmjz_lookup_info };
289 lookup_module_info dbmdb_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 3 };
291 /* End of lookups/dbmdb.c */