Check query strings of query-style lookups for quoting. Bug 2850
[exim.git] / src / src / search.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2015 */
6 /* Copyright (c) The Exim Maintainers 2020 - 2021 */
7 /* See the file NOTICE for conditions of use and distribution. */
8
9 /* A set of functions to search databases in various formats. An open
10 database is represented by a void * value which is returned from a lookup-
11 specific "open" function. These are now all held in individual modules in the
12 lookups subdirectory and the functions here form a generic interface.
13
14 Caching is used to improve performance. Open files are cached until a tidyup
15 function is called, and for each file the result of the last lookup is cached.
16 However, if too many files are opened, some of those that are not in use have
17 to be closed. Those open items that use real files are kept on a LRU chain to
18 help with this.
19
20 All the data is held in permanent store so as to be independent of the stacking
21 pool that is reset from time to time. In fact, we use malloc'd store so that it
22 can be freed when the caches are tidied up. It isn't actually clear whether
23 this is a benefit or not, to be honest. */
24
25 #include "exim.h"
26
27
28 /* Tree in which to cache open files until tidyup called. */
29
30 static tree_node *search_tree = NULL;
31
32 /* Two-way chain of open databases that use real files. This is maintained in
33 recently-used order for the purposes of closing the least recently used when
34 too many files are open. */
35
36 static tree_node *open_top = NULL;
37 static tree_node *open_bot = NULL;
38
39 /* Count of open databases that use real files */
40
41 static int open_filecount = 0;
42
43 /* Allow us to reset store used for lookups and lookup caching */
44
45 static rmark search_reset_point = NULL;
46
47
48
49 /*************************************************
50 *      Validate a plain lookup type name         *
51 *************************************************/
52
53 /* Only those names that are recognized and whose code is included in the
54 binary give an OK response. Use a binary chop search now that the list has got
55 so long.
56
57 Arguments:
58   name       lookup type name - not necessarily zero terminated (e.g. dbm*)
59   len        length of the name
60
61 Returns:     +ve => valid lookup name; value is offset in lookup_list
62              -ve => invalid name; message in search_error_message.
63 */
64
65 int
66 search_findtype(const uschar * name, int len)
67 {
68 for (int bot = 0, top = lookup_list_count; top > bot; )
69   {
70   int mid = (top + bot)/2;
71   int c = Ustrncmp(name, lookup_list[mid]->name, len);
72
73   /* If c == 0 we have matched the incoming name with the start of the search
74   type name. However, some search types are substrings of others (e.g. nis and
75   nisplus) so we need to check that the lengths are the same. The length of the
76   type name cannot be shorter (else c would not be 0); if it is not equal it
77   must be longer, and in that case, the incoming name comes before the name we
78   are testing. By leaving c == 0 when the lengths are different, and doing a
79   > 0 test below, this all falls out correctly. */
80
81   if (c == 0 && Ustrlen(lookup_list[mid]->name) == len)
82     {
83     if (lookup_list[mid]->find != NULL) return mid;
84     search_error_message  = string_sprintf("lookup type \"%.*s\" is not "
85       "available (not in the binary - check buildtime LOOKUP configuration)",
86       len, name);
87     return -1;
88     }
89
90   if (c > 0) bot = mid + 1; else top = mid;
91   }
92
93 search_error_message = string_sprintf("unknown lookup type \"%.*s\"", len, name);
94 return -1;
95 }
96
97
98
99 /*************************************************
100 *       Validate a full lookup type name         *
101 *************************************************/
102
103 /* This function recognizes the "partial-" prefix and also terminating * and *@
104 suffixes.
105
106 Arguments:
107   name         the full lookup type name
108   ptypeptr     where to put the partial type
109                  after subtraction of 1024 or 2048:
110                    negative     => no partial matching
111                    non-negative => minimum number of non-wild components
112   ptypeaff     where to put a pointer to the affix
113                  the affix is within name if supplied therein
114                  otherwise it's a literal string
115   afflen       the length of the affix
116   starflags    where to put the SEARCH_STAR and SEARCH_STARAT flags
117   opts         where to put the options
118
119 Returns:     +ve => valid lookup name; value is offset in lookup_list
120              -ve => invalid name; message in search_error_message.
121 */
122
123 int
124 search_findtype_partial(const uschar *name, int *ptypeptr, const uschar **ptypeaff,
125   int *afflen, int *starflags, const uschar ** opts)
126 {
127 int len, stype;
128 int pv = -1;
129 const uschar *ss = name;
130 const uschar * t;
131
132 *starflags = 0;
133 *ptypeaff = NULL;
134
135 /* Check for a partial matching type. It must start with "partial", optionally
136 followed by a sequence of digits. If this is followed by "-", the affix is the
137 default "*." string. Otherwise we expect an affix in parentheses. Affixes are a
138 limited number of characters, not including parens. */
139
140 if (Ustrncmp(name, "partial", 7) == 0)
141   {
142   ss += 7;
143   if (isdigit (*ss))
144     {
145     pv = 0;
146     while (isdigit(*ss)) pv = pv*10 + *ss++ - '0';
147     }
148   else pv = 2;         /* Default number of wild components */
149
150   if (*ss == '(')
151     {
152     *ptypeaff = ++ss;
153     while (ispunct(*ss) && *ss != ')') ss++;
154     if (*ss != ')') goto BAD_TYPE;
155     *afflen = ss++ - *ptypeaff;
156     }
157   else if (*ss++ == '-')
158     {
159     *ptypeaff = US "*.";
160     *afflen = 2;
161     }
162   else
163     {
164     BAD_TYPE:
165     search_error_message = string_sprintf("format error in lookup type \"%s\"",
166       name);
167     return -1;
168     }
169   }
170
171 /* Now we are left with a lookup name, possibly followed by * or *@,
172 and then by options starting with a "," */
173
174 len = Ustrlen(ss);
175 if ((t = Ustrchr(ss, '*')))
176   {
177   len = t - ss;
178   *starflags |= (t[1] == '@' ? SEARCH_STARAT : SEARCH_STAR);
179   }
180 else
181   t = ss;
182
183 if ((t = Ustrchr(t, ',')))
184   {
185   int l = t - ss;
186   if (l < len) len = l;
187   *opts = string_copy(t+1);
188   }
189 else
190   *opts = NULL;
191
192 /* Check for the individual search type. Only those that are actually in the
193 binary are valid. For query-style types, "partial" and default types are
194 erroneous. */
195
196 stype = search_findtype(ss, len);
197 if (stype >= 0 && mac_islookup(stype, lookup_querystyle))
198   {
199   if (pv >= 0)
200     {
201     search_error_message = string_sprintf("\"partial\" is not permitted "
202       "for lookup type \"%s\"", ss);
203     return -1;
204     }
205   if ((*starflags & (SEARCH_STAR|SEARCH_STARAT)) != 0)
206     {
207     search_error_message = string_sprintf("defaults using \"*\" or \"*@\" are "
208       "not permitted for lookup type \"%s\"", ss);
209     return -1;
210     }
211   }
212
213 *ptypeptr = pv;
214 return stype;
215 }
216
217
218 /* Set the parameters for the three different kinds of lookup.
219 Arguments:
220  search_type    the search-type code
221  search         the search-type string
222  query          argument for the search; filename or query
223  fnamep         pointer to return filename
224  opts           options
225
226 Return: keyquery        the search-type (for single-key) or query (for query-type)
227  */
228 uschar *
229 search_args(int search_type, uschar * search, uschar * query, uschar ** fnamep,
230   const uschar * opts)
231 {
232 Uskip_whitespace(&query);
233 if (mac_islookup(search_type, lookup_absfilequery))
234   {                                     /* query-style but with file (sqlite) */
235   int sep = ',';
236
237   /* Check options first for new-style file spec */
238   if (opts) for (uschar * s; s = string_nextinlist(&opts, &sep, NULL, 0); )
239     if (Ustrncmp(s, "file=", 5) == 0)
240       {
241       *fnamep = s+5;
242       return query;
243       }
244
245   /* If no filename from options, use old-tyle space-sep prefix on query */
246   if (*query == '/')
247     {
248     uschar * s = query;
249     while (*query && !isspace(*query)) query++;
250     *fnamep = string_copyn(s, query - s);
251     Uskip_whitespace(&query);
252     }
253   else
254     *fnamep = NULL;
255   return query;         /* remainder after file skipped */
256   }
257 if (!mac_islookup(search_type, lookup_querystyle))
258   {                                     /* single-key */
259   *fnamep = query;
260   return search;        /* modifiers important so use "keyquery" for them */
261   }
262 *fnamep = NULL;                         /* else query-style */
263 return query;
264 }
265
266
267
268 /*************************************************
269 *               Release cached resources         *
270 *************************************************/
271
272 /* When search_open is called it caches the "file" that it opens in
273 search_tree. The name of the tree node is a concatenation of the search type
274 with the file name. For query-style lookups, the file name is empty. Real files
275 are normally closed only when this tidyup routine is called, typically at the
276 end of sections of code where a number of lookups might occur. However, if too
277 many files are open simultaneously, some get closed beforehand. They can't be
278 removed from the tree. There is also a general tidyup function which is called
279 for the lookup driver, if it exists.
280
281 First, there is an internal, recursive subroutine.
282
283 Argument:    a pointer to a search_openfile tree node
284 Returns:     nothing
285 */
286
287 static void
288 tidyup_subtree(tree_node *t)
289 {
290 search_cache * c = (search_cache *)(t->data.ptr);
291 if (t->left)  tidyup_subtree(t->left);
292 if (t->right) tidyup_subtree(t->right);
293 if (c && c->handle && lookup_list[c->search_type]->close)
294   lookup_list[c->search_type]->close(c->handle);
295 }
296
297
298 /* The external entry point
299
300 Argument: none
301 Returns:  nothing
302 */
303
304 void
305 search_tidyup(void)
306 {
307 int old_pool = store_pool;
308
309 DEBUG(D_lookup) debug_printf_indent("search_tidyup called\n");
310
311 /* Close individually each cached open file. */
312
313 store_pool = POOL_SEARCH;
314 if (search_tree)
315   {
316   tidyup_subtree(search_tree);
317   search_tree = NULL;
318   }
319 open_top = open_bot = NULL;
320 open_filecount = 0;
321
322 /* Call the general tidyup entry for any drivers that have one. */
323
324 for (int i = 0; i < lookup_list_count; i++) if (lookup_list[i]->tidy)
325   (lookup_list[i]->tidy)();
326
327 if (search_reset_point) search_reset_point = store_reset(search_reset_point);
328 store_pool = old_pool;
329 }
330
331
332
333
334 /*************************************************
335 *             Open search database               *
336 *************************************************/
337
338 /* A mode, and lists of owners and groups, are passed over for checking in
339 the cases where the database is one or more files. Return NULL, with a message
340 pointed to by message, in cases of error.
341
342 For search types that use a file or files, check up on the mode after
343 opening. It is tempting to do a stat before opening the file, and use it as
344 an existence check. However, doing that opens a small security loophole in
345 that the status could be changed before the file is opened. Can't quite see
346 what problems this might lead to, but you can't be too careful where security
347 is concerned. Fstat() on an open file can normally be expected to succeed,
348 but there are some NFS states where it does not.
349
350 There are two styles of query: (1) in the "single-key+file" style, a single
351 key string and a file name are given, for example, for linear searches, DBM
352 files, or for NIS. (2) In the "query" style, no "filename" is given; instead
353 just a single query string is passed. This applies to multiple-key lookup
354 types such as NIS+.
355
356 Before opening, scan the tree of cached files to see if this file is already
357 open for the correct search type. If so, return the saved handle. If not, put
358 the handle in the tree for possible subsequent use. See search_tidyup above for
359 closing all the cached files.
360
361 A count of open databases which use real files is maintained, and if this
362 gets too large, we have to close a cached file. Its entry remains in the tree,
363 but is marked closed.
364
365 Arguments:
366   filename       the name of the file for single-key+file style lookups,
367                  NULL for query-style lookups
368   search_type    the type of search required
369   modemask       if a real single file is used, this specifies mode bits that
370                  must not be set; otherwise it is ignored
371   owners         if a real single file is used, this specifies the possible
372                  owners of the file; otherwise it is ignored
373   owngroups      if a real single file is used, this specifies the possible
374                  group owners of the file; otherwise it is ignored
375
376 Returns:         an identifying handle for the open database;
377                  this is the pointer to the tree block in the
378                  cache of open files; return NULL on open failure, with
379                  a message in search_error_message
380 */
381
382 void *
383 search_open(const uschar * filename, int search_type, int modemask,
384   uid_t * owners, gid_t * owngroups)
385 {
386 void *handle;
387 tree_node *t;
388 search_cache *c;
389 lookup_info *lk = lookup_list[search_type];
390 uschar keybuffer[256];
391 int old_pool = store_pool;
392
393 if (filename && is_tainted(filename))
394   {
395   log_write(0, LOG_MAIN|LOG_PANIC,
396     "Tainted filename for search: '%s'", filename);
397   return NULL;
398   }
399
400 /* Change to the search store pool and remember our reset point */
401
402 store_pool = POOL_SEARCH;
403 if (!search_reset_point) search_reset_point = store_mark();
404
405 DEBUG(D_lookup) debug_printf_indent("search_open: %s \"%s\"\n", lk->name,
406   filename ? filename : US"NULL");
407
408 /* See if we already have this open for this type of search, and if so,
409 pass back the tree block as the handle. The key for the tree node is the search
410 type plus '0' concatenated with the file name. There may be entries in the tree
411 with closed files if a lot of files have been opened. */
412
413 sprintf(CS keybuffer, "%c%.254s", search_type + '0',
414   filename ? filename : US"");
415
416 if ((t = tree_search(search_tree, keybuffer)))
417   {
418   if ((c = (search_cache *)t->data.ptr)->handle)
419     {
420     DEBUG(D_lookup) debug_printf_indent("  cached open\n");
421     store_pool = old_pool;
422     return t;
423     }
424   DEBUG(D_lookup) debug_printf_indent("  cached closed\n");
425   }
426
427 /* Otherwise, we need to open the file or database - each search type has its
428 own code, which is now split off into separately compiled modules. Before doing
429 this, if the search type is one that uses real files, check on the number that
430 we are holding open in the cache. If the limit is reached, close the least
431 recently used one. */
432
433 if (lk->type == lookup_absfile && open_filecount >= lookup_open_max)
434   if (!open_bot)
435     log_write(0, LOG_MAIN|LOG_PANIC, "too many lookups open, but can't find "
436       "one to close");
437   else
438     {
439     search_cache *c = (search_cache *)(open_bot->data.ptr);
440     DEBUG(D_lookup) debug_printf_indent("Too many lookup files open\n  closing %s\n",
441       open_bot->name);
442     if ((open_bot = c->up))
443       ((search_cache *)(open_bot->data.ptr))->down = NULL;
444     else
445       open_top = NULL;
446     ((lookup_list[c->search_type])->close)(c->handle);
447     c->handle = NULL;
448     open_filecount--;
449     }
450
451 /* If opening is successful, call the file-checking function if there is one,
452 and if all is still well, enter the open database into the tree. */
453
454 if (!(handle = (lk->open)(filename, &search_error_message)))
455   {
456   store_pool = old_pool;
457   return NULL;
458   }
459
460 if (  lk->check
461    && !lk->check(handle, filename, modemask, owners, owngroups,
462          &search_error_message))
463   {
464   lk->close(handle);
465   store_pool = old_pool;
466   return NULL;
467   }
468
469 /* If this is a search type that uses real files, keep count. */
470
471 if (lk->type == lookup_absfile) open_filecount++;
472
473 /* If we found a previously opened entry in the tree, re-use it; otherwise
474 insert a new entry. On re-use, leave any cached lookup data and the lookup
475 count alone. */
476
477 if (!t)
478   {
479   t = store_get(sizeof(tree_node) + Ustrlen(keybuffer), GET_UNTAINTED);
480   t->data.ptr = c = store_get(sizeof(search_cache), GET_UNTAINTED);
481   c->item_cache = NULL;
482   Ustrcpy(t->name, keybuffer);
483   tree_insertnode(&search_tree, t);
484   }
485 else c = t->data.ptr;
486
487 c->handle = handle;
488 c->search_type = search_type;
489 c->up = c->down = NULL;
490
491 store_pool = old_pool;
492 return t;
493 }
494
495
496
497
498
499 /*************************************************
500 *  Internal function: Find one item in database  *
501 *************************************************/
502
503 /* The answer is always put into dynamic store. The last lookup for each handle
504 is cached.
505
506 Arguments:
507   handle       the handle from search_open; points to tree node
508   filename     the filename that was handed to search_open, or
509                NULL for query-style searches
510   keystring    the keystring for single-key+file lookups, or
511                the querystring for query-style lookups
512   cache_rd     FALSE to avoid lookup in cache layer
513   opts         type-specific options
514
515 Returns:       a pointer to a dynamic string containing the answer,
516                or NULL if the query failed or was deferred; in the
517                latter case, search_find_defer is set TRUE; after an unusual
518                failure, there may be a message in search_error_message.
519 */
520
521 static uschar *
522 internal_search_find(void * handle, const uschar * filename, uschar * keystring,
523   BOOL cache_rd, const uschar * opts)
524 {
525 tree_node * t = (tree_node *)handle;
526 search_cache * c = (search_cache *)(t->data.ptr);
527 expiring_data * e = NULL;       /* compiler quietening */
528 uschar * data = NULL;
529 int search_type = t->name[0] - '0';
530 int old_pool = store_pool;
531
532 /* Lookups that return DEFER may not always set an error message. So that
533 the callers don't have to test for NULL, set an empty string. */
534
535 search_error_message = US"";
536 f.search_find_defer = FALSE;
537
538 DEBUG(D_lookup) debug_printf_indent("internal_search_find: file=\"%s\"\n  "
539   "type=%s key=\"%s\" opts=%s%s%s\n", filename,
540   lookup_list[search_type]->name, keystring,
541   opts ? "\"" : "", opts, opts ? "\"" : "");
542
543 /* Insurance. If the keystring is empty, just fail. */
544
545 if (keystring[0] == 0) return NULL;
546
547 /* Use the special store pool for search data */
548
549 store_pool = POOL_SEARCH;
550
551 /* Look up the data for the key, unless it is already in the cache for this
552 file. No need to check c->item_cache for NULL, tree_search will do so. Check
553 whether we want to use the cache entry last so that we can always replace it. */
554
555 if (  (t = tree_search(c->item_cache, keystring))
556    && (!(e = t->data.ptr)->expiry || e->expiry > time(NULL))
557    && (!opts && !e->opts  ||  opts && e->opts && Ustrcmp(opts, e->opts) == 0)
558    && cache_rd
559    )
560   { /* Data was in the cache already; set the pointer from the tree node */
561   data = e->data.ptr;
562   DEBUG(D_lookup) debug_printf_indent("cached data used for lookup of %s%s%s\n",
563     keystring,
564     filename ? US"\n  in " : US"", filename ? filename : US"");
565   }
566 else
567   {
568   uint do_cache = UINT_MAX;
569   int keylength = Ustrlen(keystring);
570
571   DEBUG(D_lookup)
572     {
573     if (t)
574       debug_printf_indent("cached data found but %s; ",
575         e->expiry && e->expiry <= time(NULL) ? "out-of-date"
576         : cache_rd ? "wrong opts" : "no_rd option set");
577     debug_printf_indent("%s lookup required for %s%s%s\n",
578       filename ? US"file" : US"database",
579       keystring,
580       filename ? US"\n  in " : US"", filename ? filename : US"");
581     if (!filename && is_tainted(keystring))
582       {
583       debug_printf_indent("                             ");
584       debug_print_taint(keystring);
585       }
586     }
587
588   /* Check that the query, for query-style lookups,
589   is either untainted or properly quoted for the lookup type.
590
591   XXX Should we this move into lf_sqlperform() ?  The server-taint check is there.
592   */
593
594   if (  !filename && lookup_list[search_type]->quote
595      && is_tainted(keystring) && !is_quoted_like(keystring, search_type))
596     {
597     uschar * s = acl_current_verb();
598     if (!s) s = authenticator_current_name();   /* must be before transport */
599     if (!s) s = transport_current_name();       /* must be before router */
600     if (!s) s = router_current_name();  /* GCC ?: would be good, but not in clang */
601     if (!s) s = US"";
602 #ifdef enforce_quote_protection_notyet
603     search_error_message = string_sprintf(
604       "tainted search query is not properly quoted%s: %s%s",
605       s, keystring);
606     f.search_find_defer = TRUE;
607 #else
608      {
609       int q = quoter_for_address(keystring);
610       /* If we're called from a transport, no privs to open the paniclog;
611       the logging punts to using stderr - and that seems to stop the debug
612       stream. */
613       log_write(0,
614         transport_name ? LOG_MAIN : LOG_MAIN|LOG_PANIC,
615         "tainted search query is not properly quoted%s: %s", s, keystring);
616
617       DEBUG(D_lookup) debug_printf_indent("search_type %d (%s) quoting %d (%s)\n",
618         search_type, lookup_list[search_type]->name,
619         q, is_real_quoter(q) ? lookup_list[q]->name : US"none");
620      }
621 #endif
622     }
623
624   /* Call the code for the different kinds of search. DEFER is handled
625   like FAIL, except that search_find_defer is set so the caller can
626   distinguish if necessary. */
627
628   if (lookup_list[search_type]->find(c->handle, filename, keystring, keylength,
629           &data, &search_error_message, &do_cache, opts) == DEFER)
630     f.search_find_defer = TRUE;
631
632   /* A record that has been found is now in data, which is either NULL
633   or points to a bit of dynamic store. Cache the result of the lookup if
634   caching is permitted. Lookups can disable caching, when they did something
635   that changes their data. The mysql and pgsql lookups do this when an
636   UPDATE/INSERT query was executed.  Lookups can also set a TTL for the
637   cache entry; the dnsdb lookup does.
638   Finally, the caller can request no caching by setting an option. */
639
640   else if (do_cache)
641     {
642     DEBUG(D_lookup) debug_printf_indent("%s cache entry\n",
643       t ? "replacing old" : "creating new");
644     if (!t)     /* No existing entry.  Create new one. */
645       {
646       int len = keylength + 1;
647       /* The cache node value should never be expanded so use tainted mem */
648       e = store_get(sizeof(expiring_data) + sizeof(tree_node) + len, GET_TAINTED);
649       t = (tree_node *)(e+1);
650       memcpy(t->name, keystring, len);
651       t->data.ptr = e;
652       tree_insertnode(&c->item_cache, t);
653       }
654       /* Else previous, out-of-date cache entry.  Update with the */
655       /* new result and forget the old one */
656     e->expiry = do_cache == UINT_MAX ? 0 : time(NULL)+do_cache;
657     e->opts = opts ? string_copy(opts) : NULL;
658     e->data.ptr = data;
659     }
660
661 /* If caching was disabled, empty the cache tree. We just set the cache
662 pointer to NULL here, because we cannot release the store at this stage. */
663
664   else
665     {
666     DEBUG(D_lookup) debug_printf_indent("lookup forced cache cleanup\n");
667     c->item_cache = NULL;       /* forget all lookups on this connection */
668     }
669   }
670
671 DEBUG(D_lookup)
672   {
673   if (data)
674     debug_printf_indent("lookup yielded: %s\n", data);
675   else if (f.search_find_defer)
676     debug_printf_indent("lookup deferred: %s\n", search_error_message);
677   else debug_printf_indent("lookup failed\n");
678   }
679
680 /* Return it in new dynamic store in the regular pool */
681
682 store_pool = old_pool;
683 return data ? string_copy(data) : NULL;
684 }
685
686
687
688
689 /*************************************************
690 * Find one item in database, possibly wildcarded *
691 *************************************************/
692
693 /* This function calls the internal function above; once only if there
694 is no partial matching, but repeatedly when partial matching is requested.
695
696 Arguments:
697   handle         the handle from search_open
698   filename       the filename that was handed to search_open, or
699                    NULL for query-style searches
700   keystring      the keystring for single-key+file lookups, or
701                    the querystring for query-style lookups
702   partial        -1 means no partial matching;
703                    otherwise it's the minimum number of components;
704   affix          the affix string for partial matching
705   affixlen       the length of the affix string
706   starflags      SEARCH_STAR and SEARCH_STARAT flags
707   expand_setup   pointer to offset for setting up expansion strings;
708                  don't do any if < 0
709   opts           type-specific options
710
711 Returns:         a pointer to a dynamic string containing the answer,
712                  or NULL if the query failed or was deferred; in the
713                  latter case, search_find_defer is set TRUE
714 */
715
716 uschar *
717 search_find(void * handle, const uschar * filename, uschar * keystring,
718   int partial, const uschar * affix, int affixlen, int starflags,
719   int * expand_setup, const uschar * opts)
720 {
721 tree_node * t = (tree_node *)handle;
722 BOOL set_null_wild = FALSE, cache_rd = TRUE, ret_key = FALSE;
723 uschar * yield;
724
725 DEBUG(D_lookup)
726   {
727   if (partial < 0) affixlen = 99;   /* So that "NULL" prints */
728   debug_printf_indent("search_find: file=\"%s\"\n  key=\"%s\" "
729     "partial=%d affix=%.*s starflags=%x opts=%s%s%s\n",
730     filename ? filename : US"NULL",
731     keystring, partial, affixlen, affix, starflags,
732     opts ? "\"" : "", opts, opts ? "\"" : "");
733
734   }
735
736 /* Parse global lookup options. Also, create a new options list with
737 the global options dropped so that the cache-modifiers are not
738 used in the cache key. */
739
740 if (opts)
741   {
742   int sep = ',';
743   gstring * g = NULL;
744
745   for (uschar * ele; ele = string_nextinlist(&opts, &sep, NULL, 0); )
746     if (Ustrcmp(ele, "ret=key") == 0) ret_key = TRUE;
747     else if (Ustrcmp(ele, "cache=no_rd") == 0) cache_rd = FALSE;
748     else g = string_append_listele(g, ',', ele);
749
750   opts = string_from_gstring(g);
751   }
752
753 /* Arrange to put this database at the top of the LRU chain if it is a type
754 that opens real files. */
755
756 if (  open_top != (tree_node *)handle 
757    && lookup_list[t->name[0]-'0']->type == lookup_absfile)
758   {
759   search_cache *c = (search_cache *)(t->data.ptr);
760   tree_node *up = c->up;
761   tree_node *down = c->down;
762
763   /* Cut it out of the list. A newly opened file will a NULL up pointer.
764   Otherwise there will be a non-NULL up pointer, since we checked above that
765   this block isn't already at the top of the list. */
766
767   if (up)
768     {
769     ((search_cache *)(up->data.ptr))->down = down;
770     if (down)
771       ((search_cache *)(down->data.ptr))->up = up;
772     else
773       open_bot = up;
774     }
775
776   /* Now put it at the head of the list. */
777
778   c->up = NULL;
779   c->down = open_top;
780   if (!open_top) open_bot = t;
781   else ((search_cache *)(open_top->data.ptr))->up = t;
782   open_top = t;
783   }
784
785 DEBUG(D_lookup)
786   {
787   debug_printf_indent("LRU list:\n");
788   for (tree_node *t = open_top; t; )
789     {
790     search_cache *c = (search_cache *)(t->data.ptr);
791     debug_printf_indent("  %s\n", t->name);
792     if (t == open_bot) debug_printf_indent("  End\n");
793     t = c->down;
794     }
795   }
796
797 /* First of all, try to match the key string verbatim. If matched a complete
798 entry but could have been partial, flag to set up variables. */
799
800 yield = internal_search_find(handle, filename, keystring, cache_rd, opts);
801 if (f.search_find_defer) return NULL;
802
803 if (yield) { if (partial >= 0) set_null_wild = TRUE; }
804
805 /* Not matched a complete entry; handle partial lookups, but only if the full
806 search didn't defer. Don't use string_sprintf() to construct the initial key,
807 just in case the original key is too long for the string_sprintf() buffer (it
808 *has* happened!). The case of a zero-length affix has to be treated specially.
809 */
810
811 else if (partial >= 0)
812   {
813   int len = Ustrlen(keystring);
814   uschar *keystring2;
815
816   /* Try with the affix on the front, except for a zero-length affix */
817
818   if (affixlen == 0) keystring2 = keystring; else
819     {
820     keystring2 = store_get(len + affixlen + 1,
821           is_tainted(keystring) || is_tainted(affix) ? GET_TAINTED : GET_UNTAINTED);
822     Ustrncpy(keystring2, affix, affixlen);
823     Ustrcpy(keystring2 + affixlen, keystring);
824     DEBUG(D_lookup) debug_printf_indent("trying partial match %s\n", keystring2);
825     yield = internal_search_find(handle, filename, keystring2, cache_rd, opts);
826     if (f.search_find_defer) return NULL;
827     }
828
829   /* The key in its entirety did not match a wild entry; try chopping off
830   leading components. */
831
832   if (!yield)
833     {
834     int dotcount = 0;
835     uschar *keystring3 = keystring2 + affixlen;
836     uschar *s = keystring3;
837     while (*s != 0) if (*s++ == '.') dotcount++;
838
839     while (dotcount-- >= partial)
840       {
841       while (*keystring3 != 0 && *keystring3 != '.') keystring3++;
842
843       /* If we get right to the end of the string (which will be the last time
844       through this loop), we've failed if the affix is null. Otherwise do one
845       last lookup for the affix itself, but if it is longer than 1 character,
846       remove the last character if it is ".". */
847
848       if (*keystring3 == 0)
849         {
850         if (affixlen < 1) break;
851         if (affixlen > 1 && affix[affixlen-1] == '.') affixlen--;
852         Ustrncpy(keystring2, affix, affixlen);
853         keystring2[affixlen] = 0;
854         keystring3 = keystring2;
855         }
856       else
857         {
858         keystring3 -= affixlen - 1;
859         if (affixlen > 0) Ustrncpy(keystring3, affix, affixlen);
860         }
861
862       DEBUG(D_lookup) debug_printf_indent("trying partial match %s\n", keystring3);
863       yield = internal_search_find(handle, filename, keystring3,
864                 cache_rd, opts);
865       if (f.search_find_defer) return NULL;
866       if (yield)
867         {
868         /* First variable is the wild part; second is the fixed part. Take care
869         to get it right when keystring3 is just "*". */
870
871         if (expand_setup && *expand_setup >= 0)
872           {
873           int fixedlength = Ustrlen(keystring3) - affixlen;
874           int wildlength = Ustrlen(keystring) - fixedlength - 1;
875           *expand_setup += 1;
876           expand_nstring[*expand_setup] = keystring;
877           expand_nlength[*expand_setup] = wildlength;
878           *expand_setup += 1;
879           expand_nstring[*expand_setup] = keystring + wildlength + 1;
880           expand_nlength[*expand_setup] = (fixedlength < 0)? 0 : fixedlength;
881           }
882         break;
883         }
884       keystring3 += affixlen;
885       }
886     }
887
888   else set_null_wild = TRUE; /* Matched a wild entry without any wild part */
889   }
890
891 /* If nothing has been matched, but the option to look for "*@" is set, try
892 replacing everything to the left of @ by *. After a match, the wild part
893 is set to the string to the left of the @. */
894
895 if (!yield  &&  starflags & SEARCH_STARAT)
896   {
897   uschar *atat = Ustrrchr(keystring, '@');
898   if (atat != NULL && atat > keystring)
899     {
900     int savechar;
901     savechar = *(--atat);
902     *atat = '*';
903
904     DEBUG(D_lookup) debug_printf_indent("trying default match %s\n", atat);
905     yield = internal_search_find(handle, filename, atat, cache_rd, opts);
906     *atat = savechar;
907     if (f.search_find_defer) return NULL;
908
909     if (yield && expand_setup && *expand_setup >= 0)
910       {
911       *expand_setup += 1;
912       expand_nstring[*expand_setup] = keystring;
913       expand_nlength[*expand_setup] = atat - keystring + 1;
914       *expand_setup += 1;
915       expand_nstring[*expand_setup] = keystring;
916       expand_nlength[*expand_setup] = 0;
917       }
918     }
919   }
920
921 /* If we still haven't matched anything, and the option to look for "*" is set,
922 try that. If we do match, the first variable (the wild part) is the whole key,
923 and the second is empty. */
924
925 if (!yield  &&  starflags & (SEARCH_STAR|SEARCH_STARAT))
926   {
927   DEBUG(D_lookup) debug_printf_indent("trying to match *\n");
928   yield = internal_search_find(handle, filename, US"*", cache_rd, opts);
929   if (yield && expand_setup && *expand_setup >= 0)
930     {
931     *expand_setup += 1;
932     expand_nstring[*expand_setup] = keystring;
933     expand_nlength[*expand_setup] = Ustrlen(keystring);
934     *expand_setup += 1;
935     expand_nstring[*expand_setup] = keystring;
936     expand_nlength[*expand_setup] = 0;
937     }
938   }
939
940 /* If this was a potentially partial lookup, and we matched either a
941 complete non-wild domain entry, or we matched a wild-carded entry without
942 chopping off any of the domain components, set up the expansion variables
943 (if required) so that the first one is empty, and the second one is the
944 fixed part of the domain. The set_null_wild flag is set only when yield is not
945 NULL. */
946
947 if (set_null_wild && expand_setup && *expand_setup >= 0)
948   {
949   *expand_setup += 1;
950   expand_nstring[*expand_setup] = keystring;
951   expand_nlength[*expand_setup] = 0;
952   *expand_setup += 1;
953   expand_nstring[*expand_setup] = keystring;
954   expand_nlength[*expand_setup] = Ustrlen(keystring);
955   }
956
957 /* If we have a result, check the options to see if the key was wanted rather
958 than the result.  Return a de-tainted version of the key on the grounds that
959 it have been validated by the lookup. */
960
961 if (yield && ret_key)
962   yield = string_copy_taint(keystring, FALSE);
963
964 return yield;
965 }
966
967 /* End of search.c */