1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2015 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* The idea for this code came from Matthew Byng-Maddick, but his original has
9 been heavily reworked a lot for Exim 4 (and it now uses stat() (more precisely:
10 lstat()) rather than a directory scan). */
14 #include "lf_functions.h"
18 /*************************************************
20 *************************************************/
22 /* See local README for interface description. We open the directory to test
23 whether it exists and whether it is searchable. However, we don't need to keep
24 it open, because the "search" can be done by a call to lstat() rather than
25 actually scanning through the list of files. */
28 dsearch_open(uschar *dirname, uschar **errmsg)
30 DIR *dp = opendir(CS dirname);
33 int save_errno = errno;
34 *errmsg = string_open_failed(errno, "%s for directory search", dirname);
43 /*************************************************
45 *************************************************/
47 /* The handle will always be (void *)(-1), but don't try casting it to an
48 integer as this gives warnings on 64-bit systems. */
51 static dsearch_check(void *handle, uschar *filename, int modemask, uid_t *owners,
52 gid_t *owngroups, uschar **errmsg)
55 return lf_check_file(-1, filename, S_IFDIR, modemask, owners, owngroups,
56 "dsearch", errmsg) == 0;
60 /*************************************************
62 *************************************************/
64 /* See local README for interface description. We use lstat() instead of
65 scanning the directory, as it is hopefully faster to let the OS do the scanning
69 static dsearch_find(void *handle, uschar *dirname, const uschar *keystring, int length,
70 uschar **result, uschar **errmsg, uint *do_cache)
74 uschar filename[PATH_MAX];
76 handle = handle; /* Keep picky compilers happy */
80 if (Ustrchr(keystring, '/') != 0)
82 *errmsg = string_sprintf("key for dsearch lookup contains a slash: %s",
87 if (!string_format(filename, sizeof(filename), "%s/%s", dirname, keystring))
89 *errmsg = US"path name too long";
93 if (Ulstat(filename, &statbuf) >= 0)
95 *result = string_copy(keystring);
99 if (errno == ENOENT) return FAIL;
102 *errmsg = string_sprintf("%s: lstat failed", filename);
108 /*************************************************
109 * Close entry point *
110 *************************************************/
112 /* See local README for interface description */
115 static dsearch_close(void *handle)
117 handle = handle; /* Avoid compiler warning */
121 /*************************************************
122 * Version reporting entry point *
123 *************************************************/
125 /* See local README for interface description. */
127 #include "../version.h"
130 dsearch_version_report(FILE *f)
133 fprintf(f, "Library version: dsearch: Exim version %s\n", EXIM_VERSION_STR);
138 static lookup_info _lookup_info = {
139 US"dsearch", /* lookup name */
140 lookup_absfile, /* uses absolute file name */
141 dsearch_open, /* open function */
142 dsearch_check, /* check function */
143 dsearch_find, /* find function */
144 dsearch_close, /* close function */
145 NULL, /* no tidy function */
146 NULL, /* no quoting function */
147 dsearch_version_report /* version reporting */
151 #define dsearch_lookup_module_info _lookup_module_info
154 static lookup_info *_lookup_list[] = { &_lookup_info };
155 lookup_module_info dsearch_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 };
157 /* End of lookups/dsearch.c */