X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/c988f1f4faa9f679f79beddf3c14676c5dcb8e28..e6d225ae6e6811d3c88dc201642a2127ff6c11bd:/src/src/lookups/dsearch.c diff --git a/src/src/lookups/dsearch.c b/src/src/lookups/dsearch.c index 55e411fba..575872c41 100644 --- a/src/src/lookups/dsearch.c +++ b/src/src/lookups/dsearch.c @@ -1,20 +1,19 @@ -/* $Cambridge: exim/src/src/lookups/dsearch.c,v 1.2 2005/01/04 10:00:44 ph10 Exp $ */ +/* $Cambridge: exim/src/src/lookups/dsearch.c,v 1.6 2009/11/16 19:50:38 nm4 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2005 */ +/* Copyright (c) University of Cambridge 1995 - 2009 */ /* See the file NOTICE for conditions of use and distribution. */ /* The idea for this code came from Matthew Byng-Maddick, but his original has -been heavily reworked a lot for Exim 4 (and it now uses stat() rather than a -directory scan). */ +been heavily reworked a lot for Exim 4 (and it now uses stat() (more precisely: +lstat()) rather than a directory scan). */ #include "../exim.h" #include "lf_functions.h" -#include "dsearch.h" @@ -24,10 +23,10 @@ directory scan). */ /* See local README for interface description. We open the directory to test whether it exists and whether it is searchable. However, we don't need to keep -it open, because the "search" can be done by a call to stat() rather than +it open, because the "search" can be done by a call to lstat() rather than actually scanning through the list of files. */ -void * +static void * dsearch_open(uschar *dirname, uschar **errmsg) { DIR *dp = opendir(CS dirname); @@ -51,7 +50,7 @@ return (void *)(-1); integer as this gives warnings on 64-bit systems. */ BOOL -dsearch_check(void *handle, uschar *filename, int modemask, uid_t *owners, +static dsearch_check(void *handle, uschar *filename, int modemask, uid_t *owners, gid_t *owngroups, uschar **errmsg) { handle = handle; @@ -64,12 +63,12 @@ return lf_check_file(-1, filename, S_IFDIR, modemask, owners, owngroups, * Find entry point * *************************************************/ -/* See local README for interface description. We use stat() instead of +/* See local README for interface description. We use lstat() instead of scanning the directory, as it is hopefully faster to let the OS do the scanning for us. */ int -dsearch_find(void *handle, uschar *dirname, uschar *keystring, int length, +static dsearch_find(void *handle, uschar *dirname, uschar *keystring, int length, uschar **result, uschar **errmsg, BOOL *do_cache) { struct stat statbuf; @@ -93,7 +92,7 @@ if (!string_format(filename, sizeof(filename), "%s/%s", dirname, keystring)) return DEFER; } -if (Ustat(filename, &statbuf) >= 0) +if (Ulstat(filename, &statbuf) >= 0) { *result = string_copy(keystring); return OK; @@ -102,7 +101,7 @@ if (Ustat(filename, &statbuf) >= 0) if (errno == ENOENT) return FAIL; save_errno = errno; -*errmsg = string_sprintf("%s: stat failed", filename); +*errmsg = string_sprintf("%s: lstat failed", filename); errno = save_errno; return DEFER; } @@ -115,9 +114,27 @@ return DEFER; /* See local README for interface description */ void -dsearch_close(void *handle) +static dsearch_close(void *handle) { handle = handle; /* Avoid compiler warning */ } +static lookup_info _lookup_info = { + US"dsearch", /* lookup name */ + lookup_absfile, /* uses absolute file name */ + dsearch_open, /* open function */ + dsearch_check, /* check function */ + dsearch_find, /* find function */ + dsearch_close, /* close function */ + NULL, /* no tidy function */ + NULL /* no quoting function */ +}; + +#ifdef DYNLOOKUP +#define dsearch_lookup_module_info _lookup_module_info +#endif + +static lookup_info *_lookup_list[] = { &_lookup_info }; +lookup_module_info dsearch_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 }; + /* End of lookups/dsearch.c */