Add ${acl {name}{arg}} expansion item.
[exim.git] / src / src / expand.c
CommitLineData
059ec3d9
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
c4ceed07 5/* Copyright (c) University of Cambridge 1995 - 2012 */
059ec3d9
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8
9/* Functions for handling string expansion. */
10
11
12#include "exim.h"
13
96c065cb
PH
14/* Recursively called function */
15
da6dbe26 16static uschar *expand_string_internal(uschar *, BOOL, uschar **, BOOL, BOOL);
96c065cb 17
059ec3d9
PH
18#ifdef STAND_ALONE
19#ifndef SUPPORT_CRYPTEQ
20#define SUPPORT_CRYPTEQ
21#endif
22#endif
23
96c065cb
PH
24#ifdef LOOKUP_LDAP
25#include "lookups/ldap.h"
26#endif
27
059ec3d9
PH
28#ifdef SUPPORT_CRYPTEQ
29#ifdef CRYPT_H
30#include <crypt.h>
31#endif
32#ifndef HAVE_CRYPT16
33extern char* crypt16(char*, char*);
34#endif
35#endif
36
96c065cb
PH
37/* The handling of crypt16() is a mess. I will record below the analysis of the
38mess that was sent to me. We decided, however, to make changing this very low
39priority, because in practice people are moving away from the crypt()
40algorithms nowadays, so it doesn't seem worth it.
41
42<quote>
43There is an algorithm named "crypt16" in Ultrix and Tru64. It crypts
44the first 8 characters of the password using a 20-round version of crypt
45(standard crypt does 25 rounds). It then crypts the next 8 characters,
46or an empty block if the password is less than 9 characters, using a
4720-round version of crypt and the same salt as was used for the first
48block. Charaters after the first 16 are ignored. It always generates
49a 16-byte hash, which is expressed together with the salt as a string
50of 24 base 64 digits. Here are some links to peruse:
51
52 http://cvs.pld.org.pl/pam/pamcrypt/crypt16.c?rev=1.2
53 http://seclists.org/bugtraq/1999/Mar/0076.html
54
55There's a different algorithm named "bigcrypt" in HP-UX, Digital Unix,
56and OSF/1. This is the same as the standard crypt if given a password
57of 8 characters or less. If given more, it first does the same as crypt
58using the first 8 characters, then crypts the next 8 (the 9th to 16th)
59using as salt the first two base 64 digits from the first hash block.
60If the password is more than 16 characters then it crypts the 17th to 24th
61characters using as salt the first two base 64 digits from the second hash
62block. And so on: I've seen references to it cutting off the password at
6340 characters (5 blocks), 80 (10 blocks), or 128 (16 blocks). Some links:
64
65 http://cvs.pld.org.pl/pam/pamcrypt/bigcrypt.c?rev=1.2
66 http://seclists.org/bugtraq/1999/Mar/0109.html
67 http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/HTML/AA-Q0R2D-
68 TET1_html/sec.c222.html#no_id_208
69
70Exim has something it calls "crypt16". It will either use a native
71crypt16 or its own implementation. A native crypt16 will presumably
72be the one that I called "crypt16" above. The internal "crypt16"
73function, however, is a two-block-maximum implementation of what I called
74"bigcrypt". The documentation matches the internal code.
75
76I suspect that whoever did the "crypt16" stuff for Exim didn't realise
77that crypt16 and bigcrypt were different things.
78
79Exim uses the LDAP-style scheme identifier "{crypt16}" to refer
80to whatever it is using under that name. This unfortunately sets a
81precedent for using "{crypt16}" to identify two incompatible algorithms
82whose output can't be distinguished. With "{crypt16}" thus rendered
83ambiguous, I suggest you deprecate it and invent two new identifiers
84for the two algorithms.
85
86Both crypt16 and bigcrypt are very poor algorithms, btw. Hashing parts
87of the password separately means they can be cracked separately, so
88the double-length hash only doubles the cracking effort instead of
89squaring it. I recommend salted SHA-1 ({SSHA}), or the Blowfish-based
90bcrypt ({CRYPT}$2a$).
91</quote>
92*/
059ec3d9
PH
93
94
059ec3d9
PH
95
96
97/*************************************************
98* Local statics and tables *
99*************************************************/
100
101/* Table of item names, and corresponding switch numbers. The names must be in
102alphabetical order. */
103
104static uschar *item_table[] = {
723c72e6 105 US"acl",
1a46a8c5 106 US"dlfunc",
059ec3d9 107 US"extract",
29f89cad 108 US"filter",
059ec3d9
PH
109 US"hash",
110 US"hmac",
111 US"if",
112 US"length",
113 US"lookup",
29f89cad 114 US"map",
059ec3d9 115 US"nhash",
1a46a8c5 116 US"perl",
fffda43a
TK
117 US"prvs",
118 US"prvscheck",
059ec3d9
PH
119 US"readfile",
120 US"readsocket",
29f89cad 121 US"reduce",
059ec3d9
PH
122 US"run",
123 US"sg",
124 US"substr",
125 US"tr" };
126
127enum {
723c72e6 128 EITEM_ACL,
1a46a8c5 129 EITEM_DLFUNC,
059ec3d9 130 EITEM_EXTRACT,
29f89cad 131 EITEM_FILTER,
059ec3d9
PH
132 EITEM_HASH,
133 EITEM_HMAC,
134 EITEM_IF,
135 EITEM_LENGTH,
136 EITEM_LOOKUP,
29f89cad 137 EITEM_MAP,
059ec3d9 138 EITEM_NHASH,
1a46a8c5 139 EITEM_PERL,
fffda43a
TK
140 EITEM_PRVS,
141 EITEM_PRVSCHECK,
059ec3d9
PH
142 EITEM_READFILE,
143 EITEM_READSOCK,
29f89cad 144 EITEM_REDUCE,
059ec3d9
PH
145 EITEM_RUN,
146 EITEM_SG,
147 EITEM_SUBSTR,
148 EITEM_TR };
149
150/* Tables of operator names, and corresponding switch numbers. The names must be
151in alphabetical order. There are two tables, because underscore is used in some
152cases to introduce arguments, whereas for other it is part of the name. This is
153an historical mis-design. */
154
155static uschar *op_table_underscore[] = {
156 US"from_utf8",
157 US"local_part",
158 US"quote_local_part",
83e029d5 159 US"reverse_ip",
f90d018c 160 US"time_eval",
059ec3d9
PH
161 US"time_interval"};
162
163enum {
164 EOP_FROM_UTF8,
165 EOP_LOCAL_PART,
166 EOP_QUOTE_LOCAL_PART,
83e029d5 167 EOP_REVERSE_IP,
f90d018c 168 EOP_TIME_EVAL,
059ec3d9
PH
169 EOP_TIME_INTERVAL };
170
171static uschar *op_table_main[] = {
172 US"address",
29f89cad 173 US"addresses",
059ec3d9
PH
174 US"base62",
175 US"base62d",
176 US"domain",
177 US"escape",
178 US"eval",
179 US"eval10",
180 US"expand",
181 US"h",
182 US"hash",
183 US"hex2b64",
184 US"l",
185 US"lc",
186 US"length",
a64a3dfa
JH
187 US"listcount",
188 US"listnamed",
059ec3d9
PH
189 US"mask",
190 US"md5",
191 US"nh",
192 US"nhash",
193 US"quote",
9e3331ea 194 US"randint",
059ec3d9 195 US"rfc2047",
9c57cbc0 196 US"rfc2047d",
059ec3d9
PH
197 US"rxquote",
198 US"s",
199 US"sha1",
200 US"stat",
201 US"str2b64",
202 US"strlen",
203 US"substr",
204 US"uc" };
205
206enum {
207 EOP_ADDRESS = sizeof(op_table_underscore)/sizeof(uschar *),
29f89cad 208 EOP_ADDRESSES,
059ec3d9
PH
209 EOP_BASE62,
210 EOP_BASE62D,
211 EOP_DOMAIN,
212 EOP_ESCAPE,
213 EOP_EVAL,
214 EOP_EVAL10,
215 EOP_EXPAND,
216 EOP_H,
217 EOP_HASH,
218 EOP_HEX2B64,
219 EOP_L,
220 EOP_LC,
221 EOP_LENGTH,
a64a3dfa
JH
222 EOP_LISTCOUNT,
223 EOP_LISTNAMED,
059ec3d9
PH
224 EOP_MASK,
225 EOP_MD5,
226 EOP_NH,
227 EOP_NHASH,
228 EOP_QUOTE,
9e3331ea 229 EOP_RANDINT,
059ec3d9 230 EOP_RFC2047,
9c57cbc0 231 EOP_RFC2047D,
059ec3d9
PH
232 EOP_RXQUOTE,
233 EOP_S,
234 EOP_SHA1,
235 EOP_STAT,
236 EOP_STR2B64,
237 EOP_STRLEN,
238 EOP_SUBSTR,
239 EOP_UC };
240
241
242/* Table of condition names, and corresponding switch numbers. The names must
243be in alphabetical order. */
244
245static uschar *cond_table[] = {
246 US"<",
247 US"<=",
248 US"=",
249 US"==", /* Backward compatibility */
250 US">",
251 US">=",
252 US"and",
f3766eb5 253 US"bool",
6a8de854 254 US"bool_lax",
059ec3d9
PH
255 US"crypteq",
256 US"def",
257 US"eq",
258 US"eqi",
259 US"exists",
260 US"first_delivery",
0ce9abe6
PH
261 US"forall",
262 US"forany",
059ec3d9
PH
263 US"ge",
264 US"gei",
265 US"gt",
266 US"gti",
76dca828
PP
267 US"inlist",
268 US"inlisti",
059ec3d9
PH
269 US"isip",
270 US"isip4",
271 US"isip6",
272 US"ldapauth",
273 US"le",
274 US"lei",
275 US"lt",
276 US"lti",
277 US"match",
278 US"match_address",
279 US"match_domain",
32d668a5 280 US"match_ip",
059ec3d9
PH
281 US"match_local_part",
282 US"or",
283 US"pam",
284 US"pwcheck",
285 US"queue_running",
286 US"radius",
287 US"saslauthd"
288};
289
290enum {
291 ECOND_NUM_L,
292 ECOND_NUM_LE,
293 ECOND_NUM_E,
294 ECOND_NUM_EE,
295 ECOND_NUM_G,
296 ECOND_NUM_GE,
297 ECOND_AND,
f3766eb5 298 ECOND_BOOL,
6a8de854 299 ECOND_BOOL_LAX,
059ec3d9
PH
300 ECOND_CRYPTEQ,
301 ECOND_DEF,
302 ECOND_STR_EQ,
303 ECOND_STR_EQI,
304 ECOND_EXISTS,
305 ECOND_FIRST_DELIVERY,
0ce9abe6
PH
306 ECOND_FORALL,
307 ECOND_FORANY,
059ec3d9
PH
308 ECOND_STR_GE,
309 ECOND_STR_GEI,
310 ECOND_STR_GT,
311 ECOND_STR_GTI,
76dca828
PP
312 ECOND_INLIST,
313 ECOND_INLISTI,
059ec3d9
PH
314 ECOND_ISIP,
315 ECOND_ISIP4,
316 ECOND_ISIP6,
317 ECOND_LDAPAUTH,
318 ECOND_STR_LE,
319 ECOND_STR_LEI,
320 ECOND_STR_LT,
321 ECOND_STR_LTI,
322 ECOND_MATCH,
323 ECOND_MATCH_ADDRESS,
324 ECOND_MATCH_DOMAIN,
32d668a5 325 ECOND_MATCH_IP,
059ec3d9
PH
326 ECOND_MATCH_LOCAL_PART,
327 ECOND_OR,
328 ECOND_PAM,
329 ECOND_PWCHECK,
330 ECOND_QUEUE_RUNNING,
331 ECOND_RADIUS,
332 ECOND_SASLAUTHD
333};
334
335
336/* Type for main variable table */
337
338typedef struct {
1ba28e2b
PP
339 const char *name;
340 int type;
341 void *value;
059ec3d9
PH
342} var_entry;
343
344/* Type for entries pointing to address/length pairs. Not currently
345in use. */
346
347typedef struct {
348 uschar **address;
349 int *length;
350} alblock;
351
352/* Types of table entry */
353
354enum {
355 vtype_int, /* value is address of int */
356 vtype_filter_int, /* ditto, but recognized only when filtering */
357 vtype_ino, /* value is address of ino_t (not always an int) */
358 vtype_uid, /* value is address of uid_t (not always an int) */
359 vtype_gid, /* value is address of gid_t (not always an int) */
11d7e4fa 360 vtype_bool, /* value is address of bool */
059ec3d9
PH
361 vtype_stringptr, /* value is address of pointer to string */
362 vtype_msgbody, /* as stringptr, but read when first required */
363 vtype_msgbody_end, /* ditto, the end of the message */
ff75a1f7
PH
364 vtype_msgheaders, /* the message's headers, processed */
365 vtype_msgheaders_raw, /* the message's headers, unprocessed */
059ec3d9
PH
366 vtype_localpart, /* extract local part from string */
367 vtype_domain, /* extract domain from string */
368 vtype_recipients, /* extract recipients from recipients list */
0e20aff9
MH
369 /* (available only in system filters, ACLs, and */
370 /* local_scan()) */
059ec3d9
PH
371 vtype_todbsdin, /* value not used; generate BSD inbox tod */
372 vtype_tode, /* value not used; generate tod in epoch format */
f5787926 373 vtype_todel, /* value not used; generate tod in epoch/usec format */
059ec3d9
PH
374 vtype_todf, /* value not used; generate full tod */
375 vtype_todl, /* value not used; generate log tod */
376 vtype_todlf, /* value not used; generate log file datestamp tod */
377 vtype_todzone, /* value not used; generate time zone only */
378 vtype_todzulu, /* value not used; generate zulu tod */
379 vtype_reply, /* value not used; get reply from headers */
380 vtype_pid, /* value not used; result is pid */
381 vtype_host_lookup, /* value not used; get host name */
5cb8cbc6
PH
382 vtype_load_avg, /* value not used; result is int from os_getloadavg */
383 vtype_pspace, /* partition space; value is T/F for spool/log */
8e669ac1 384 vtype_pinodes /* partition inodes; value is T/F for spool/log */
80a47a2c
TK
385 #ifndef DISABLE_DKIM
386 ,vtype_dkim /* Lookup of value in DKIM signature */
387 #endif
059ec3d9
PH
388 };
389
390/* This table must be kept in alphabetical order. */
391
392static var_entry var_table[] = {
38a0a95f
PH
393 /* WARNING: Do not invent variables whose names start acl_c or acl_m because
394 they will be confused with user-creatable ACL variables. */
059ec3d9
PH
395 { "acl_verify_message", vtype_stringptr, &acl_verify_message },
396 { "address_data", vtype_stringptr, &deliver_address_data },
397 { "address_file", vtype_stringptr, &address_file },
398 { "address_pipe", vtype_stringptr, &address_pipe },
399 { "authenticated_id", vtype_stringptr, &authenticated_id },
400 { "authenticated_sender",vtype_stringptr, &authenticated_sender },
401 { "authentication_failed",vtype_int, &authentication_failed },
9e949f00
PP
402#ifdef WITH_CONTENT_SCAN
403 { "av_failed", vtype_int, &av_failed },
404#endif
8523533c
TK
405#ifdef EXPERIMENTAL_BRIGHTMAIL
406 { "bmi_alt_location", vtype_stringptr, &bmi_alt_location },
407 { "bmi_base64_tracker_verdict", vtype_stringptr, &bmi_base64_tracker_verdict },
408 { "bmi_base64_verdict", vtype_stringptr, &bmi_base64_verdict },
409 { "bmi_deliver", vtype_int, &bmi_deliver },
410#endif
059ec3d9
PH
411 { "body_linecount", vtype_int, &body_linecount },
412 { "body_zerocount", vtype_int, &body_zerocount },
413 { "bounce_recipient", vtype_stringptr, &bounce_recipient },
414 { "bounce_return_size_limit", vtype_int, &bounce_return_size_limit },
415 { "caller_gid", vtype_gid, &real_gid },
416 { "caller_uid", vtype_uid, &real_uid },
417 { "compile_date", vtype_stringptr, &version_date },
418 { "compile_number", vtype_stringptr, &version_cnumber },
e5a9dba6 419 { "csa_status", vtype_stringptr, &csa_status },
6a8f9482
TK
420#ifdef EXPERIMENTAL_DCC
421 { "dcc_header", vtype_stringptr, &dcc_header },
422 { "dcc_result", vtype_stringptr, &dcc_result },
423#endif
8523533c
TK
424#ifdef WITH_OLD_DEMIME
425 { "demime_errorlevel", vtype_int, &demime_errorlevel },
426 { "demime_reason", vtype_stringptr, &demime_reason },
fb2274d4 427#endif
80a47a2c
TK
428#ifndef DISABLE_DKIM
429 { "dkim_algo", vtype_dkim, (void *)DKIM_ALGO },
430 { "dkim_bodylength", vtype_dkim, (void *)DKIM_BODYLENGTH },
431 { "dkim_canon_body", vtype_dkim, (void *)DKIM_CANON_BODY },
432 { "dkim_canon_headers", vtype_dkim, (void *)DKIM_CANON_HEADERS },
433 { "dkim_copiedheaders", vtype_dkim, (void *)DKIM_COPIEDHEADERS },
434 { "dkim_created", vtype_dkim, (void *)DKIM_CREATED },
2df588c9 435 { "dkim_cur_signer", vtype_stringptr, &dkim_cur_signer },
e08d09e5 436 { "dkim_domain", vtype_stringptr, &dkim_signing_domain },
80a47a2c
TK
437 { "dkim_expires", vtype_dkim, (void *)DKIM_EXPIRES },
438 { "dkim_headernames", vtype_dkim, (void *)DKIM_HEADERNAMES },
439 { "dkim_identity", vtype_dkim, (void *)DKIM_IDENTITY },
440 { "dkim_key_granularity",vtype_dkim, (void *)DKIM_KEY_GRANULARITY },
441 { "dkim_key_nosubdomains",vtype_dkim, (void *)DKIM_NOSUBDOMAINS },
442 { "dkim_key_notes", vtype_dkim, (void *)DKIM_KEY_NOTES },
443 { "dkim_key_srvtype", vtype_dkim, (void *)DKIM_KEY_SRVTYPE },
444 { "dkim_key_testing", vtype_dkim, (void *)DKIM_KEY_TESTING },
e08d09e5 445 { "dkim_selector", vtype_stringptr, &dkim_signing_selector },
9e5d6b55 446 { "dkim_signers", vtype_stringptr, &dkim_signers },
80a47a2c
TK
447 { "dkim_verify_reason", vtype_dkim, (void *)DKIM_VERIFY_REASON },
448 { "dkim_verify_status", vtype_dkim, (void *)DKIM_VERIFY_STATUS},
8523533c 449#endif
059ec3d9 450 { "dnslist_domain", vtype_stringptr, &dnslist_domain },
93655c46 451 { "dnslist_matched", vtype_stringptr, &dnslist_matched },
059ec3d9
PH
452 { "dnslist_text", vtype_stringptr, &dnslist_text },
453 { "dnslist_value", vtype_stringptr, &dnslist_value },
454 { "domain", vtype_stringptr, &deliver_domain },
455 { "domain_data", vtype_stringptr, &deliver_domain_data },
456 { "exim_gid", vtype_gid, &exim_gid },
457 { "exim_path", vtype_stringptr, &exim_path },
458 { "exim_uid", vtype_uid, &exim_uid },
8523533c
TK
459#ifdef WITH_OLD_DEMIME
460 { "found_extension", vtype_stringptr, &found_extension },
8e669ac1 461#endif
059ec3d9
PH
462 { "home", vtype_stringptr, &deliver_home },
463 { "host", vtype_stringptr, &deliver_host },
464 { "host_address", vtype_stringptr, &deliver_host_address },
465 { "host_data", vtype_stringptr, &host_data },
b08b24c8 466 { "host_lookup_deferred",vtype_int, &host_lookup_deferred },
059ec3d9
PH
467 { "host_lookup_failed", vtype_int, &host_lookup_failed },
468 { "inode", vtype_ino, &deliver_inode },
469 { "interface_address", vtype_stringptr, &interface_address },
470 { "interface_port", vtype_int, &interface_port },
0ce9abe6 471 { "item", vtype_stringptr, &iterate_item },
059ec3d9
PH
472 #ifdef LOOKUP_LDAP
473 { "ldap_dn", vtype_stringptr, &eldap_dn },
474 #endif
475 { "load_average", vtype_load_avg, NULL },
476 { "local_part", vtype_stringptr, &deliver_localpart },
477 { "local_part_data", vtype_stringptr, &deliver_localpart_data },
478 { "local_part_prefix", vtype_stringptr, &deliver_localpart_prefix },
479 { "local_part_suffix", vtype_stringptr, &deliver_localpart_suffix },
480 { "local_scan_data", vtype_stringptr, &local_scan_data },
481 { "local_user_gid", vtype_gid, &local_user_gid },
482 { "local_user_uid", vtype_uid, &local_user_uid },
483 { "localhost_number", vtype_int, &host_number },
5cb8cbc6 484 { "log_inodes", vtype_pinodes, (void *)FALSE },
8e669ac1 485 { "log_space", vtype_pspace, (void *)FALSE },
059ec3d9 486 { "mailstore_basename", vtype_stringptr, &mailstore_basename },
8523533c
TK
487#ifdef WITH_CONTENT_SCAN
488 { "malware_name", vtype_stringptr, &malware_name },
489#endif
d677b2f2 490 { "max_received_linelength", vtype_int, &max_received_linelength },
059ec3d9
PH
491 { "message_age", vtype_int, &message_age },
492 { "message_body", vtype_msgbody, &message_body },
493 { "message_body_end", vtype_msgbody_end, &message_body_end },
494 { "message_body_size", vtype_int, &message_body_size },
1ab52c69 495 { "message_exim_id", vtype_stringptr, &message_id },
059ec3d9 496 { "message_headers", vtype_msgheaders, NULL },
ff75a1f7 497 { "message_headers_raw", vtype_msgheaders_raw, NULL },
059ec3d9 498 { "message_id", vtype_stringptr, &message_id },
2e0c1448 499 { "message_linecount", vtype_int, &message_linecount },
059ec3d9 500 { "message_size", vtype_int, &message_size },
8523533c
TK
501#ifdef WITH_CONTENT_SCAN
502 { "mime_anomaly_level", vtype_int, &mime_anomaly_level },
503 { "mime_anomaly_text", vtype_stringptr, &mime_anomaly_text },
504 { "mime_boundary", vtype_stringptr, &mime_boundary },
505 { "mime_charset", vtype_stringptr, &mime_charset },
506 { "mime_content_description", vtype_stringptr, &mime_content_description },
507 { "mime_content_disposition", vtype_stringptr, &mime_content_disposition },
508 { "mime_content_id", vtype_stringptr, &mime_content_id },
509 { "mime_content_size", vtype_int, &mime_content_size },
510 { "mime_content_transfer_encoding",vtype_stringptr, &mime_content_transfer_encoding },
511 { "mime_content_type", vtype_stringptr, &mime_content_type },
512 { "mime_decoded_filename", vtype_stringptr, &mime_decoded_filename },
513 { "mime_filename", vtype_stringptr, &mime_filename },
514 { "mime_is_coverletter", vtype_int, &mime_is_coverletter },
515 { "mime_is_multipart", vtype_int, &mime_is_multipart },
516 { "mime_is_rfc822", vtype_int, &mime_is_rfc822 },
517 { "mime_part_count", vtype_int, &mime_part_count },
518#endif
059ec3d9
PH
519 { "n0", vtype_filter_int, &filter_n[0] },
520 { "n1", vtype_filter_int, &filter_n[1] },
521 { "n2", vtype_filter_int, &filter_n[2] },
522 { "n3", vtype_filter_int, &filter_n[3] },
523 { "n4", vtype_filter_int, &filter_n[4] },
524 { "n5", vtype_filter_int, &filter_n[5] },
525 { "n6", vtype_filter_int, &filter_n[6] },
526 { "n7", vtype_filter_int, &filter_n[7] },
527 { "n8", vtype_filter_int, &filter_n[8] },
528 { "n9", vtype_filter_int, &filter_n[9] },
529 { "original_domain", vtype_stringptr, &deliver_domain_orig },
530 { "original_local_part", vtype_stringptr, &deliver_localpart_orig },
531 { "originator_gid", vtype_gid, &originator_gid },
532 { "originator_uid", vtype_uid, &originator_uid },
533 { "parent_domain", vtype_stringptr, &deliver_domain_parent },
534 { "parent_local_part", vtype_stringptr, &deliver_localpart_parent },
535 { "pid", vtype_pid, NULL },
536 { "primary_hostname", vtype_stringptr, &primary_hostname },
fffda43a
TK
537 { "prvscheck_address", vtype_stringptr, &prvscheck_address },
538 { "prvscheck_keynum", vtype_stringptr, &prvscheck_keynum },
539 { "prvscheck_result", vtype_stringptr, &prvscheck_result },
059ec3d9
PH
540 { "qualify_domain", vtype_stringptr, &qualify_domain_sender },
541 { "qualify_recipient", vtype_stringptr, &qualify_domain_recipient },
542 { "rcpt_count", vtype_int, &rcpt_count },
543 { "rcpt_defer_count", vtype_int, &rcpt_defer_count },
544 { "rcpt_fail_count", vtype_int, &rcpt_fail_count },
545 { "received_count", vtype_int, &received_count },
546 { "received_for", vtype_stringptr, &received_for },
194cc0e4
PH
547 { "received_ip_address", vtype_stringptr, &interface_address },
548 { "received_port", vtype_int, &interface_port },
059ec3d9 549 { "received_protocol", vtype_stringptr, &received_protocol },
7dbf77c9 550 { "received_time", vtype_int, &received_time },
059ec3d9 551 { "recipient_data", vtype_stringptr, &recipient_data },
8e669ac1 552 { "recipient_verify_failure",vtype_stringptr,&recipient_verify_failure },
059ec3d9
PH
553 { "recipients", vtype_recipients, NULL },
554 { "recipients_count", vtype_int, &recipients_count },
8523533c
TK
555#ifdef WITH_CONTENT_SCAN
556 { "regex_match_string", vtype_stringptr, &regex_match_string },
557#endif
059ec3d9
PH
558 { "reply_address", vtype_reply, NULL },
559 { "return_path", vtype_stringptr, &return_path },
560 { "return_size_limit", vtype_int, &bounce_return_size_limit },
561 { "runrc", vtype_int, &runrc },
562 { "self_hostname", vtype_stringptr, &self_hostname },
563 { "sender_address", vtype_stringptr, &sender_address },
2a3eea10 564 { "sender_address_data", vtype_stringptr, &sender_address_data },
059ec3d9
PH
565 { "sender_address_domain", vtype_domain, &sender_address },
566 { "sender_address_local_part", vtype_localpart, &sender_address },
567 { "sender_data", vtype_stringptr, &sender_data },
568 { "sender_fullhost", vtype_stringptr, &sender_fullhost },
569 { "sender_helo_name", vtype_stringptr, &sender_helo_name },
570 { "sender_host_address", vtype_stringptr, &sender_host_address },
571 { "sender_host_authenticated",vtype_stringptr, &sender_host_authenticated },
11d7e4fa 572 { "sender_host_dnssec", vtype_bool, &sender_host_dnssec },
059ec3d9
PH
573 { "sender_host_name", vtype_host_lookup, NULL },
574 { "sender_host_port", vtype_int, &sender_host_port },
575 { "sender_ident", vtype_stringptr, &sender_ident },
870f6ba8
TF
576 { "sender_rate", vtype_stringptr, &sender_rate },
577 { "sender_rate_limit", vtype_stringptr, &sender_rate_limit },
578 { "sender_rate_period", vtype_stringptr, &sender_rate_period },
059ec3d9 579 { "sender_rcvhost", vtype_stringptr, &sender_rcvhost },
8e669ac1 580 { "sender_verify_failure",vtype_stringptr, &sender_verify_failure },
41c7c167
PH
581 { "sending_ip_address", vtype_stringptr, &sending_ip_address },
582 { "sending_port", vtype_int, &sending_port },
8e669ac1 583 { "smtp_active_hostname", vtype_stringptr, &smtp_active_hostname },
3ee512ff
PH
584 { "smtp_command", vtype_stringptr, &smtp_cmd_buffer },
585 { "smtp_command_argument", vtype_stringptr, &smtp_cmd_argument },
b01dd148 586 { "smtp_count_at_connection_start", vtype_int, &smtp_accept_count },
8f128379 587 { "smtp_notquit_reason", vtype_stringptr, &smtp_notquit_reason },
059ec3d9
PH
588 { "sn0", vtype_filter_int, &filter_sn[0] },
589 { "sn1", vtype_filter_int, &filter_sn[1] },
590 { "sn2", vtype_filter_int, &filter_sn[2] },
591 { "sn3", vtype_filter_int, &filter_sn[3] },
592 { "sn4", vtype_filter_int, &filter_sn[4] },
593 { "sn5", vtype_filter_int, &filter_sn[5] },
594 { "sn6", vtype_filter_int, &filter_sn[6] },
595 { "sn7", vtype_filter_int, &filter_sn[7] },
596 { "sn8", vtype_filter_int, &filter_sn[8] },
597 { "sn9", vtype_filter_int, &filter_sn[9] },
8523533c
TK
598#ifdef WITH_CONTENT_SCAN
599 { "spam_bar", vtype_stringptr, &spam_bar },
600 { "spam_report", vtype_stringptr, &spam_report },
601 { "spam_score", vtype_stringptr, &spam_score },
602 { "spam_score_int", vtype_stringptr, &spam_score_int },
603#endif
604#ifdef EXPERIMENTAL_SPF
65a7d8c3 605 { "spf_guess", vtype_stringptr, &spf_guess },
8523533c
TK
606 { "spf_header_comment", vtype_stringptr, &spf_header_comment },
607 { "spf_received", vtype_stringptr, &spf_received },
608 { "spf_result", vtype_stringptr, &spf_result },
609 { "spf_smtp_comment", vtype_stringptr, &spf_smtp_comment },
610#endif
059ec3d9 611 { "spool_directory", vtype_stringptr, &spool_directory },
5cb8cbc6 612 { "spool_inodes", vtype_pinodes, (void *)TRUE },
8e669ac1 613 { "spool_space", vtype_pspace, (void *)TRUE },
8523533c
TK
614#ifdef EXPERIMENTAL_SRS
615 { "srs_db_address", vtype_stringptr, &srs_db_address },
616 { "srs_db_key", vtype_stringptr, &srs_db_key },
617 { "srs_orig_recipient", vtype_stringptr, &srs_orig_recipient },
618 { "srs_orig_sender", vtype_stringptr, &srs_orig_sender },
619 { "srs_recipient", vtype_stringptr, &srs_recipient },
620 { "srs_status", vtype_stringptr, &srs_status },
621#endif
059ec3d9 622 { "thisaddress", vtype_stringptr, &filter_thisaddress },
817d9f57 623
d9b2312b 624 /* The non-(in,out) variables are now deprecated */
817d9f57
JH
625 { "tls_bits", vtype_int, &tls_in.bits },
626 { "tls_certificate_verified", vtype_int, &tls_in.certificate_verified },
627 { "tls_cipher", vtype_stringptr, &tls_in.cipher },
d9b2312b
JH
628
629 { "tls_in_bits", vtype_int, &tls_in.bits },
630 { "tls_in_certificate_verified", vtype_int, &tls_in.certificate_verified },
631 { "tls_in_cipher", vtype_stringptr, &tls_in.cipher },
632 { "tls_in_peerdn", vtype_stringptr, &tls_in.peerdn },
633#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS)
634 { "tls_in_sni", vtype_stringptr, &tls_in.sni },
635#endif
817d9f57 636 { "tls_out_bits", vtype_int, &tls_out.bits },
cb9d95ae 637 { "tls_out_certificate_verified", vtype_int,&tls_out.certificate_verified },
817d9f57
JH
638 { "tls_out_cipher", vtype_stringptr, &tls_out.cipher },
639 { "tls_out_peerdn", vtype_stringptr, &tls_out.peerdn },
640#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS)
641 { "tls_out_sni", vtype_stringptr, &tls_out.sni },
7be682ca 642#endif
d9b2312b 643
613dd4ae
JH
644 { "tls_peerdn", vtype_stringptr, &tls_in.peerdn }, /* mind the alphabetical order! */
645#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS)
646 { "tls_sni", vtype_stringptr, &tls_in.sni }, /* mind the alphabetical order! */
647#endif
817d9f57 648
059ec3d9
PH
649 { "tod_bsdinbox", vtype_todbsdin, NULL },
650 { "tod_epoch", vtype_tode, NULL },
f5787926 651 { "tod_epoch_l", vtype_todel, NULL },
059ec3d9
PH
652 { "tod_full", vtype_todf, NULL },
653 { "tod_log", vtype_todl, NULL },
654 { "tod_logfile", vtype_todlf, NULL },
655 { "tod_zone", vtype_todzone, NULL },
656 { "tod_zulu", vtype_todzulu, NULL },
657 { "value", vtype_stringptr, &lookup_value },
658 { "version_number", vtype_stringptr, &version_string },
659 { "warn_message_delay", vtype_stringptr, &warnmsg_delay },
660 { "warn_message_recipient",vtype_stringptr, &warnmsg_recipients },
661 { "warn_message_recipients",vtype_stringptr,&warnmsg_recipients },
662 { "warnmsg_delay", vtype_stringptr, &warnmsg_delay },
663 { "warnmsg_recipient", vtype_stringptr, &warnmsg_recipients },
664 { "warnmsg_recipients", vtype_stringptr, &warnmsg_recipients }
665};
666
667static int var_table_size = sizeof(var_table)/sizeof(var_entry);
668static uschar var_buffer[256];
669static BOOL malformed_header;
670
671/* For textual hashes */
672
1ba28e2b
PP
673static const char *hashcodes = "abcdefghijklmnopqrtsuvwxyz"
674 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
675 "0123456789";
059ec3d9
PH
676
677enum { HMAC_MD5, HMAC_SHA1 };
678
679/* For numeric hashes */
680
681static unsigned int prime[] = {
682 2, 3, 5, 7, 11, 13, 17, 19, 23, 29,
683 31, 37, 41, 43, 47, 53, 59, 61, 67, 71,
684 73, 79, 83, 89, 97, 101, 103, 107, 109, 113};
685
686/* For printing modes in symbolic form */
687
688static uschar *mtable_normal[] =
689 { US"---", US"--x", US"-w-", US"-wx", US"r--", US"r-x", US"rw-", US"rwx" };
690
691static uschar *mtable_setid[] =
692 { US"--S", US"--s", US"-wS", US"-ws", US"r-S", US"r-s", US"rwS", US"rws" };
693
694static uschar *mtable_sticky[] =
695 { US"--T", US"--t", US"-wT", US"-wt", US"r-T", US"r-t", US"rwT", US"rwt" };
696
697
698
699/*************************************************
700* Tables for UTF-8 support *
701*************************************************/
702
703/* Table of the number of extra characters, indexed by the first character
704masked with 0x3f. The highest number for a valid UTF-8 character is in fact
7050x3d. */
706
707static uschar utf8_table1[] = {
708 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
709 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
710 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
711 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };
712
713/* These are the masks for the data bits in the first byte of a character,
714indexed by the number of additional bytes. */
715
716static int utf8_table2[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};
717
718/* Get the next UTF-8 character, advancing the pointer. */
719
720#define GETUTF8INC(c, ptr) \
721 c = *ptr++; \
722 if ((c & 0xc0) == 0xc0) \
723 { \
724 int a = utf8_table1[c & 0x3f]; /* Number of additional bytes */ \
725 int s = 6*a; \
726 c = (c & utf8_table2[a]) << s; \
727 while (a-- > 0) \
728 { \
729 s -= 6; \
730 c |= (*ptr++ & 0x3f) << s; \
731 } \
732 }
733
734
735/*************************************************
736* Binary chop search on a table *
737*************************************************/
738
739/* This is used for matching expansion items and operators.
740
741Arguments:
742 name the name that is being sought
743 table the table to search
744 table_size the number of items in the table
745
746Returns: the offset in the table, or -1
747*/
748
749static int
750chop_match(uschar *name, uschar **table, int table_size)
751{
752uschar **bot = table;
753uschar **top = table + table_size;
754
755while (top > bot)
756 {
757 uschar **mid = bot + (top - bot)/2;
758 int c = Ustrcmp(name, *mid);
759 if (c == 0) return mid - table;
760 if (c > 0) bot = mid + 1; else top = mid;
761 }
762
763return -1;
764}
765
766
767
768/*************************************************
769* Check a condition string *
770*************************************************/
771
772/* This function is called to expand a string, and test the result for a "true"
773or "false" value. Failure of the expansion yields FALSE; logged unless it was a
774forced fail or lookup defer. All store used by the function can be released on
775exit.
776
6a8de854
PP
777The actual false-value tests should be replicated for ECOND_BOOL_LAX.
778
059ec3d9
PH
779Arguments:
780 condition the condition string
781 m1 text to be incorporated in panic error
782 m2 ditto
783
784Returns: TRUE if condition is met, FALSE if not
785*/
786
787BOOL
788expand_check_condition(uschar *condition, uschar *m1, uschar *m2)
789{
790int rc;
791void *reset_point = store_get(0);
792uschar *ss = expand_string(condition);
793if (ss == NULL)
794 {
795 if (!expand_string_forcedfail && !search_find_defer)
796 log_write(0, LOG_MAIN|LOG_PANIC, "failed to expand condition \"%s\" "
797 "for %s %s: %s", condition, m1, m2, expand_string_message);
798 return FALSE;
799 }
800rc = ss[0] != 0 && Ustrcmp(ss, "0") != 0 && strcmpic(ss, US"no") != 0 &&
801 strcmpic(ss, US"false") != 0;
802store_reset(reset_point);
803return rc;
804}
805
806
807
17c76198 808
9e3331ea
TK
809/*************************************************
810* Pseudo-random number generation *
811*************************************************/
812
813/* Pseudo-random number generation. The result is not "expected" to be
814cryptographically strong but not so weak that someone will shoot themselves
815in the foot using it as a nonce in some email header scheme or whatever
816weirdness they'll twist this into. The result should ideally handle fork().
817
818However, if we're stuck unable to provide this, then we'll fall back to
819appallingly bad randomness.
820
17c76198
PP
821If SUPPORT_TLS is defined then this will not be used except as an emergency
822fallback.
9e3331ea
TK
823
824Arguments:
825 max range maximum
826Returns a random number in range [0, max-1]
827*/
828
17c76198
PP
829#ifdef SUPPORT_TLS
830# define vaguely_random_number vaguely_random_number_fallback
831#endif
9e3331ea 832int
17c76198 833vaguely_random_number(int max)
9e3331ea 834{
17c76198
PP
835#ifdef SUPPORT_TLS
836# undef vaguely_random_number
837#endif
9e3331ea
TK
838 static pid_t pid = 0;
839 pid_t p2;
840#if defined(HAVE_SRANDOM) && !defined(HAVE_SRANDOMDEV)
841 struct timeval tv;
842#endif
843
844 p2 = getpid();
845 if (p2 != pid)
846 {
847 if (pid != 0)
848 {
849
850#ifdef HAVE_ARC4RANDOM
851 /* cryptographically strong randomness, common on *BSD platforms, not
852 so much elsewhere. Alas. */
853 arc4random_stir();
854#elif defined(HAVE_SRANDOM) || defined(HAVE_SRANDOMDEV)
855#ifdef HAVE_SRANDOMDEV
856 /* uses random(4) for seeding */
857 srandomdev();
858#else
859 gettimeofday(&tv, NULL);
860 srandom(tv.tv_sec | tv.tv_usec | getpid());
861#endif
862#else
863 /* Poor randomness and no seeding here */
864#endif
865
866 }
867 pid = p2;
868 }
869
870#ifdef HAVE_ARC4RANDOM
871 return arc4random() % max;
872#elif defined(HAVE_SRANDOM) || defined(HAVE_SRANDOMDEV)
873 return random() % max;
874#else
875 /* This one returns a 16-bit number, definitely not crypto-strong */
876 return random_number(max);
877#endif
878}
879
17c76198
PP
880
881
9e3331ea 882
059ec3d9
PH
883/*************************************************
884* Pick out a name from a string *
885*************************************************/
886
887/* If the name is too long, it is silently truncated.
888
889Arguments:
890 name points to a buffer into which to put the name
891 max is the length of the buffer
892 s points to the first alphabetic character of the name
893 extras chars other than alphanumerics to permit
894
895Returns: pointer to the first character after the name
896
897Note: The test for *s != 0 in the while loop is necessary because
898Ustrchr() yields non-NULL if the character is zero (which is not something
899I expected). */
900
901static uschar *
902read_name(uschar *name, int max, uschar *s, uschar *extras)
903{
904int ptr = 0;
905while (*s != 0 && (isalnum(*s) || Ustrchr(extras, *s) != NULL))
906 {
907 if (ptr < max-1) name[ptr++] = *s;
908 s++;
909 }
910name[ptr] = 0;
911return s;
912}
913
914
915
916/*************************************************
917* Pick out the rest of a header name *
918*************************************************/
919
920/* A variable name starting $header_ (or just $h_ for those who like
921abbreviations) might not be the complete header name because headers can
922contain any printing characters in their names, except ':'. This function is
923called to read the rest of the name, chop h[eader]_ off the front, and put ':'
924on the end, if the name was terminated by white space.
925
926Arguments:
927 name points to a buffer in which the name read so far exists
928 max is the length of the buffer
929 s points to the first character after the name so far, i.e. the
930 first non-alphameric character after $header_xxxxx
931
932Returns: a pointer to the first character after the header name
933*/
934
935static uschar *
936read_header_name(uschar *name, int max, uschar *s)
937{
938int prelen = Ustrchr(name, '_') - name + 1;
939int ptr = Ustrlen(name) - prelen;
940if (ptr > 0) memmove(name, name+prelen, ptr);
941while (mac_isgraph(*s) && *s != ':')
942 {
943 if (ptr < max-1) name[ptr++] = *s;
944 s++;
945 }
946if (*s == ':') s++;
947name[ptr++] = ':';
948name[ptr] = 0;
949return s;
950}
951
952
953
954/*************************************************
955* Pick out a number from a string *
956*************************************************/
957
958/* Arguments:
959 n points to an integer into which to put the number
960 s points to the first digit of the number
961
962Returns: a pointer to the character after the last digit
963*/
964
965static uschar *
966read_number(int *n, uschar *s)
967{
968*n = 0;
969while (isdigit(*s)) *n = *n * 10 + (*s++ - '0');
970return s;
971}
972
973
974
975/*************************************************
976* Extract keyed subfield from a string *
977*************************************************/
978
979/* The yield is in dynamic store; NULL means that the key was not found.
980
981Arguments:
982 key points to the name of the key
983 s points to the string from which to extract the subfield
984
985Returns: NULL if the subfield was not found, or
986 a pointer to the subfield's data
987*/
988
989static uschar *
990expand_getkeyed(uschar *key, uschar *s)
991{
992int length = Ustrlen(key);
993while (isspace(*s)) s++;
994
995/* Loop to search for the key */
996
997while (*s != 0)
998 {
999 int dkeylength;
1000 uschar *data;
1001 uschar *dkey = s;
1002
1003 while (*s != 0 && *s != '=' && !isspace(*s)) s++;
1004 dkeylength = s - dkey;
1005 while (isspace(*s)) s++;
1006 if (*s == '=') while (isspace((*(++s))));
1007
1008 data = string_dequote(&s);
1009 if (length == dkeylength && strncmpic(key, dkey, length) == 0)
1010 return data;
1011
1012 while (isspace(*s)) s++;
1013 }
1014
1015return NULL;
1016}
1017
1018
1019
1020
1021/*************************************************
1022* Extract numbered subfield from string *
1023*************************************************/
1024
1025/* Extracts a numbered field from a string that is divided by tokens - for
1026example a line from /etc/passwd is divided by colon characters. First field is
1027numbered one. Negative arguments count from the right. Zero returns the whole
1028string. Returns NULL if there are insufficient tokens in the string
1029
1030***WARNING***
1031Modifies final argument - this is a dynamically generated string, so that's OK.
1032
1033Arguments:
1034 field number of field to be extracted,
1035 first field = 1, whole string = 0, last field = -1
1036 separators characters that are used to break string into tokens
1037 s points to the string from which to extract the subfield
1038
1039Returns: NULL if the field was not found,
1040 a pointer to the field's data inside s (modified to add 0)
1041*/
1042
1043static uschar *
1044expand_gettokened (int field, uschar *separators, uschar *s)
1045{
1046int sep = 1;
1047int count;
1048uschar *ss = s;
1049uschar *fieldtext = NULL;
1050
1051if (field == 0) return s;
1052
1053/* Break the line up into fields in place; for field > 0 we stop when we have
1054done the number of fields we want. For field < 0 we continue till the end of
1055the string, counting the number of fields. */
1056
1057count = (field > 0)? field : INT_MAX;
1058
1059while (count-- > 0)
1060 {
1061 size_t len;
1062
1063 /* Previous field was the last one in the string. For a positive field
1064 number, this means there are not enough fields. For a negative field number,
1065 check that there are enough, and scan back to find the one that is wanted. */
1066
1067 if (sep == 0)
1068 {
1069 if (field > 0 || (-field) > (INT_MAX - count - 1)) return NULL;
1070 if ((-field) == (INT_MAX - count - 1)) return s;
1071 while (field++ < 0)
1072 {
1073 ss--;
1074 while (ss[-1] != 0) ss--;
1075 }
1076 fieldtext = ss;
1077 break;
1078 }
1079
1080 /* Previous field was not last in the string; save its start and put a
1081 zero at its end. */
1082
1083 fieldtext = ss;
1084 len = Ustrcspn(ss, separators);
1085 sep = ss[len];
1086 ss[len] = 0;
1087 ss += len + 1;
1088 }
1089
1090return fieldtext;
1091}
1092
1093
1094
1095/*************************************************
1096* Extract a substring from a string *
1097*************************************************/
1098
1099/* Perform the ${substr or ${length expansion operations.
1100
1101Arguments:
1102 subject the input string
1103 value1 the offset from the start of the input string to the start of
1104 the output string; if negative, count from the right.
1105 value2 the length of the output string, or negative (-1) for unset
1106 if value1 is positive, unset means "all after"
1107 if value1 is negative, unset means "all before"
1108 len set to the length of the returned string
1109
1110Returns: pointer to the output string, or NULL if there is an error
1111*/
1112
1113static uschar *
1114extract_substr(uschar *subject, int value1, int value2, int *len)
1115{
1116int sublen = Ustrlen(subject);
1117
1118if (value1 < 0) /* count from right */
1119 {
1120 value1 += sublen;
1121
1122 /* If the position is before the start, skip to the start, and adjust the
1123 length. If the length ends up negative, the substring is null because nothing
1124 can precede. This falls out naturally when the length is unset, meaning "all
1125 to the left". */
1126
1127 if (value1 < 0)
1128 {
1129 value2 += value1;
1130 if (value2 < 0) value2 = 0;
1131 value1 = 0;
1132 }
1133
1134 /* Otherwise an unset length => characters before value1 */
1135
1136 else if (value2 < 0)
1137 {
1138 value2 = value1;
1139 value1 = 0;
1140 }
1141 }
1142
1143/* For a non-negative offset, if the starting position is past the end of the
1144string, the result will be the null string. Otherwise, an unset length means
1145"rest"; just set it to the maximum - it will be cut down below if necessary. */
1146
1147else
1148 {
1149 if (value1 > sublen)
1150 {
1151 value1 = sublen;
1152 value2 = 0;
1153 }
1154 else if (value2 < 0) value2 = sublen;
1155 }
1156
1157/* Cut the length down to the maximum possible for the offset value, and get
1158the required characters. */
1159
1160if (value1 + value2 > sublen) value2 = sublen - value1;
1161*len = value2;
1162return subject + value1;
1163}
1164
1165
1166
1167
1168/*************************************************
1169* Old-style hash of a string *
1170*************************************************/
1171
1172/* Perform the ${hash expansion operation.
1173
1174Arguments:
1175 subject the input string (an expanded substring)
1176 value1 the length of the output string; if greater or equal to the
1177 length of the input string, the input string is returned
1178 value2 the number of hash characters to use, or 26 if negative
1179 len set to the length of the returned string
1180
1181Returns: pointer to the output string, or NULL if there is an error
1182*/
1183
1184static uschar *
1185compute_hash(uschar *subject, int value1, int value2, int *len)
1186{
1187int sublen = Ustrlen(subject);
1188
1189if (value2 < 0) value2 = 26;
1190else if (value2 > Ustrlen(hashcodes))
1191 {
1192 expand_string_message =
1193 string_sprintf("hash count \"%d\" too big", value2);
1194 return NULL;
1195 }
1196
1197/* Calculate the hash text. We know it is shorter than the original string, so
1198can safely place it in subject[] (we know that subject is always itself an
1199expanded substring). */
1200
1201if (value1 < sublen)
1202 {
1203 int c;
1204 int i = 0;
1205 int j = value1;
1206 while ((c = (subject[j])) != 0)
1207 {
1208 int shift = (c + j++) & 7;
1209 subject[i] ^= (c << shift) | (c >> (8-shift));
1210 if (++i >= value1) i = 0;
1211 }
1212 for (i = 0; i < value1; i++)
1213 subject[i] = hashcodes[(subject[i]) % value2];
1214 }
1215else value1 = sublen;
1216
1217*len = value1;
1218return subject;
1219}
1220
1221
1222
1223
1224/*************************************************
1225* Numeric hash of a string *
1226*************************************************/
1227
1228/* Perform the ${nhash expansion operation. The first characters of the
1229string are treated as most important, and get the highest prime numbers.
1230
1231Arguments:
1232 subject the input string
1233 value1 the maximum value of the first part of the result
1234 value2 the maximum value of the second part of the result,
1235 or negative to produce only a one-part result
1236 len set to the length of the returned string
1237
1238Returns: pointer to the output string, or NULL if there is an error.
1239*/
1240
1241static uschar *
1242compute_nhash (uschar *subject, int value1, int value2, int *len)
1243{
1244uschar *s = subject;
1245int i = 0;
1246unsigned long int total = 0; /* no overflow */
1247
1248while (*s != 0)
1249 {
1250 if (i == 0) i = sizeof(prime)/sizeof(int) - 1;
1251 total += prime[i--] * (unsigned int)(*s++);
1252 }
1253
1254/* If value2 is unset, just compute one number */
1255
1256if (value2 < 0)
1257 {
1258 s = string_sprintf("%d", total % value1);
1259 }
1260
1261/* Otherwise do a div/mod hash */
1262
1263else
1264 {
1265 total = total % (value1 * value2);
1266 s = string_sprintf("%d/%d", total/value2, total % value2);
1267 }
1268
1269*len = Ustrlen(s);
1270return s;
1271}
1272
1273
1274
1275
1276
1277/*************************************************
1278* Find the value of a header or headers *
1279*************************************************/
1280
1281/* Multiple instances of the same header get concatenated, and this function
1282can also return a concatenation of all the header lines. When concatenating
1283specific headers that contain lists of addresses, a comma is inserted between
1284them. Otherwise we use a straight concatenation. Because some messages can have
1285pathologically large number of lines, there is a limit on the length that is
1286returned. Also, to avoid massive store use which would result from using
1287string_cat() as it copies and extends strings, we do a preliminary pass to find
1288out exactly how much store will be needed. On "normal" messages this will be
1289pretty trivial.
1290
1291Arguments:
1292 name the name of the header, without the leading $header_ or $h_,
1293 or NULL if a concatenation of all headers is required
1294 exists_only TRUE if called from a def: test; don't need to build a string;
1295 just return a string that is not "" and not "0" if the header
1296 exists
1297 newsize return the size of memory block that was obtained; may be NULL
1298 if exists_only is TRUE
1299 want_raw TRUE if called for $rh_ or $rheader_ variables; no processing,
ff75a1f7
PH
1300 other than concatenating, will be done on the header. Also used
1301 for $message_headers_raw.
059ec3d9
PH
1302 charset name of charset to translate MIME words to; used only if
1303 want_raw is false; if NULL, no translation is done (this is
1304 used for $bh_ and $bheader_)
1305
1306Returns: NULL if the header does not exist, else a pointer to a new
1307 store block
1308*/
1309
1310static uschar *
1311find_header(uschar *name, BOOL exists_only, int *newsize, BOOL want_raw,
1312 uschar *charset)
1313{
1314BOOL found = name == NULL;
1315int comma = 0;
1316int len = found? 0 : Ustrlen(name);
1317int i;
1318uschar *yield = NULL;
1319uschar *ptr = NULL;
1320
1321/* Loop for two passes - saves code repetition */
1322
1323for (i = 0; i < 2; i++)
1324 {
1325 int size = 0;
1326 header_line *h;
1327
1328 for (h = header_list; size < header_insert_maxlen && h != NULL; h = h->next)
1329 {
1330 if (h->type != htype_old && h->text != NULL) /* NULL => Received: placeholder */
1331 {
1332 if (name == NULL || (len <= h->slen && strncmpic(name, h->text, len) == 0))
1333 {
1334 int ilen;
1335 uschar *t;
1336
1337 if (exists_only) return US"1"; /* don't need actual string */
1338 found = TRUE;
1339 t = h->text + len; /* text to insert */
1340 if (!want_raw) /* unless wanted raw, */
1341 while (isspace(*t)) t++; /* remove leading white space */
1342 ilen = h->slen - (t - h->text); /* length to insert */
1343
fd700877
PH
1344 /* Unless wanted raw, remove trailing whitespace, including the
1345 newline. */
1346
1347 if (!want_raw)
1348 while (ilen > 0 && isspace(t[ilen-1])) ilen--;
1349
059ec3d9
PH
1350 /* Set comma = 1 if handling a single header and it's one of those
1351 that contains an address list, except when asked for raw headers. Only
1352 need to do this once. */
1353
1354 if (!want_raw && name != NULL && comma == 0 &&
1355 Ustrchr("BCFRST", h->type) != NULL)
1356 comma = 1;
1357
1358 /* First pass - compute total store needed; second pass - compute
1359 total store used, including this header. */
1360
fd700877 1361 size += ilen + comma + 1; /* +1 for the newline */
059ec3d9
PH
1362
1363 /* Second pass - concatentate the data, up to a maximum. Note that
1364 the loop stops when size hits the limit. */
1365
1366 if (i != 0)
1367 {
1368 if (size > header_insert_maxlen)
1369 {
fd700877 1370 ilen -= size - header_insert_maxlen - 1;
059ec3d9
PH
1371 comma = 0;
1372 }
1373 Ustrncpy(ptr, t, ilen);
1374 ptr += ilen;
fd700877
PH
1375
1376 /* For a non-raw header, put in the comma if needed, then add
3168332a
PH
1377 back the newline we removed above, provided there was some text in
1378 the header. */
fd700877 1379
3168332a 1380 if (!want_raw && ilen > 0)
059ec3d9 1381 {
3168332a 1382 if (comma != 0) *ptr++ = ',';
059ec3d9
PH
1383 *ptr++ = '\n';
1384 }
1385 }
1386 }
1387 }
1388 }
1389
fd700877
PH
1390 /* At end of first pass, return NULL if no header found. Then truncate size
1391 if necessary, and get the buffer to hold the data, returning the buffer size.
1392 */
059ec3d9
PH
1393
1394 if (i == 0)
1395 {
1396 if (!found) return NULL;
1397 if (size > header_insert_maxlen) size = header_insert_maxlen;
1398 *newsize = size + 1;
1399 ptr = yield = store_get(*newsize);
1400 }
1401 }
1402
059ec3d9
PH
1403/* That's all we do for raw header expansion. */
1404
1405if (want_raw)
1406 {
1407 *ptr = 0;
1408 }
1409
fd700877
PH
1410/* Otherwise, remove a final newline and a redundant added comma. Then we do
1411RFC 2047 decoding, translating the charset if requested. The rfc2047_decode2()
059ec3d9
PH
1412function can return an error with decoded data if the charset translation
1413fails. If decoding fails, it returns NULL. */
1414
1415else
1416 {
1417 uschar *decoded, *error;
3168332a 1418 if (ptr > yield && ptr[-1] == '\n') ptr--;
fd700877 1419 if (ptr > yield && comma != 0 && ptr[-1] == ',') ptr--;
059ec3d9 1420 *ptr = 0;
a0d6ba8a
PH
1421 decoded = rfc2047_decode2(yield, check_rfc2047_length, charset, '?', NULL,
1422 newsize, &error);
059ec3d9
PH
1423 if (error != NULL)
1424 {
1425 DEBUG(D_any) debug_printf("*** error in RFC 2047 decoding: %s\n"
1426 " input was: %s\n", error, yield);
1427 }
1428 if (decoded != NULL) yield = decoded;
1429 }
1430
1431return yield;
1432}
1433
1434
1435
1436
1437/*************************************************
1438* Find value of a variable *
1439*************************************************/
1440
1441/* The table of variables is kept in alphabetic order, so we can search it
1442using a binary chop. The "choplen" variable is nothing to do with the binary
1443chop.
1444
1445Arguments:
1446 name the name of the variable being sought
1447 exists_only TRUE if this is a def: test; passed on to find_header()
1448 skipping TRUE => skip any processing evaluation; this is not the same as
1449 exists_only because def: may test for values that are first
1450 evaluated here
1451 newsize pointer to an int which is initially zero; if the answer is in
1452 a new memory buffer, *newsize is set to its size
1453
1454Returns: NULL if the variable does not exist, or
1455 a pointer to the variable's contents, or
1456 something non-NULL if exists_only is TRUE
1457*/
1458
1459static uschar *
1460find_variable(uschar *name, BOOL exists_only, BOOL skipping, int *newsize)
1461{
1462int first = 0;
1463int last = var_table_size;
1464
38a0a95f
PH
1465/* Handle ACL variables, whose names are of the form acl_cxxx or acl_mxxx.
1466Originally, xxx had to be a number in the range 0-9 (later 0-19), but from
1467release 4.64 onwards arbitrary names are permitted, as long as the first 5
641cb756
PH
1468characters are acl_c or acl_m and the sixth is either a digit or an underscore
1469(this gave backwards compatibility at the changeover). There may be built-in
1470variables whose names start acl_ but they should never start in this way. This
1471slightly messy specification is a consequence of the history, needless to say.
47ca6d6c 1472
38a0a95f
PH
1473If an ACL variable does not exist, treat it as empty, unless strict_acl_vars is
1474set, in which case give an error. */
47ca6d6c 1475
641cb756
PH
1476if ((Ustrncmp(name, "acl_c", 5) == 0 || Ustrncmp(name, "acl_m", 5) == 0) &&
1477 !isalpha(name[5]))
38a0a95f
PH
1478 {
1479 tree_node *node =
1480 tree_search((name[4] == 'c')? acl_var_c : acl_var_m, name + 4);
1481 return (node == NULL)? (strict_acl_vars? NULL : US"") : node->data.ptr;
47ca6d6c
PH
1482 }
1483
38a0a95f 1484/* Handle $auth<n> variables. */
f78eb7c6
PH
1485
1486if (Ustrncmp(name, "auth", 4) == 0)
1487 {
1488 uschar *endptr;
1489 int n = Ustrtoul(name + 4, &endptr, 10);
1490 if (*endptr == 0 && n != 0 && n <= AUTH_VARS)
1491 return (auth_vars[n-1] == NULL)? US"" : auth_vars[n-1];
1492 }
1493
47ca6d6c
PH
1494/* For all other variables, search the table */
1495
059ec3d9
PH
1496while (last > first)
1497 {
1498 uschar *s, *domain;
1499 uschar **ss;
1500 int middle = (first + last)/2;
1501 int c = Ustrcmp(name, var_table[middle].name);
1502
1503 if (c > 0) { first = middle + 1; continue; }
1504 if (c < 0) { last = middle; continue; }
1505
1506 /* Found an existing variable. If in skipping state, the value isn't needed,
47ca6d6c 1507 and we want to avoid processing (such as looking up the host name). */
059ec3d9
PH
1508
1509 if (skipping) return US"";
1510
1511 switch (var_table[middle].type)
1512 {
9a26b6b2
PH
1513 case vtype_filter_int:
1514 if (!filter_running) return NULL;
1515 /* Fall through */
1516 /* VVVVVVVVVVVV */
059ec3d9
PH
1517 case vtype_int:
1518 sprintf(CS var_buffer, "%d", *(int *)(var_table[middle].value)); /* Integer */
1519 return var_buffer;
1520
1521 case vtype_ino:
1522 sprintf(CS var_buffer, "%ld", (long int)(*(ino_t *)(var_table[middle].value))); /* Inode */
1523 return var_buffer;
1524
1525 case vtype_gid:
1526 sprintf(CS var_buffer, "%ld", (long int)(*(gid_t *)(var_table[middle].value))); /* gid */
1527 return var_buffer;
1528
1529 case vtype_uid:
1530 sprintf(CS var_buffer, "%ld", (long int)(*(uid_t *)(var_table[middle].value))); /* uid */
1531 return var_buffer;
1532
11d7e4fa
PP
1533 case vtype_bool:
1534 sprintf(CS var_buffer, "%s", *(BOOL *)(var_table[middle].value) ? "yes" : "no"); /* bool */
1535 return var_buffer;
1536
059ec3d9
PH
1537 case vtype_stringptr: /* Pointer to string */
1538 s = *((uschar **)(var_table[middle].value));
1539 return (s == NULL)? US"" : s;
1540
1541 case vtype_pid:
1542 sprintf(CS var_buffer, "%d", (int)getpid()); /* pid */
1543 return var_buffer;
1544
1545 case vtype_load_avg:
8669f003 1546 sprintf(CS var_buffer, "%d", OS_GETLOADAVG()); /* load_average */
059ec3d9
PH
1547 return var_buffer;
1548
1549 case vtype_host_lookup: /* Lookup if not done so */
1550 if (sender_host_name == NULL && sender_host_address != NULL &&
1551 !host_lookup_failed && host_name_lookup() == OK)
1552 host_build_sender_fullhost();
1553 return (sender_host_name == NULL)? US"" : sender_host_name;
1554
1555 case vtype_localpart: /* Get local part from address */
1556 s = *((uschar **)(var_table[middle].value));
1557 if (s == NULL) return US"";
1558 domain = Ustrrchr(s, '@');
1559 if (domain == NULL) return s;
1560 if (domain - s > sizeof(var_buffer) - 1)
81f91683
PP
1561 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "local part longer than " SIZE_T_FMT
1562 " in string expansion", sizeof(var_buffer));
059ec3d9
PH
1563 Ustrncpy(var_buffer, s, domain - s);
1564 var_buffer[domain - s] = 0;
1565 return var_buffer;
1566
1567 case vtype_domain: /* Get domain from address */
1568 s = *((uschar **)(var_table[middle].value));
1569 if (s == NULL) return US"";
1570 domain = Ustrrchr(s, '@');
1571 return (domain == NULL)? US"" : domain + 1;
1572
1573 case vtype_msgheaders:
1574 return find_header(NULL, exists_only, newsize, FALSE, NULL);
1575
ff75a1f7
PH
1576 case vtype_msgheaders_raw:
1577 return find_header(NULL, exists_only, newsize, TRUE, NULL);
1578
059ec3d9
PH
1579 case vtype_msgbody: /* Pointer to msgbody string */
1580 case vtype_msgbody_end: /* Ditto, the end of the msg */
1581 ss = (uschar **)(var_table[middle].value);
1582 if (*ss == NULL && deliver_datafile >= 0) /* Read body when needed */
1583 {
1584 uschar *body;
0d7eb84a 1585 off_t start_offset = SPOOL_DATA_START_OFFSET;
059ec3d9
PH
1586 int len = message_body_visible;
1587 if (len > message_size) len = message_size;
1588 *ss = body = store_malloc(len+1);
1589 body[0] = 0;
1590 if (var_table[middle].type == vtype_msgbody_end)
1591 {
1592 struct stat statbuf;
1593 if (fstat(deliver_datafile, &statbuf) == 0)
1594 {
1595 start_offset = statbuf.st_size - len;
1596 if (start_offset < SPOOL_DATA_START_OFFSET)
1597 start_offset = SPOOL_DATA_START_OFFSET;
1598 }
1599 }
1600 lseek(deliver_datafile, start_offset, SEEK_SET);
1601 len = read(deliver_datafile, body, len);
1602 if (len > 0)
1603 {
1604 body[len] = 0;
ddea74fa 1605 if (message_body_newlines) /* Separate loops for efficiency */
059ec3d9 1606 {
ddea74fa
PH
1607 while (len > 0)
1608 { if (body[--len] == 0) body[len] = ' '; }
1609 }
1610 else
1611 {
1612 while (len > 0)
1613 { if (body[--len] == '\n' || body[len] == 0) body[len] = ' '; }
059ec3d9
PH
1614 }
1615 }
1616 }
1617 return (*ss == NULL)? US"" : *ss;
1618
1619 case vtype_todbsdin: /* BSD inbox time of day */
1620 return tod_stamp(tod_bsdin);
1621
1622 case vtype_tode: /* Unix epoch time of day */
1623 return tod_stamp(tod_epoch);
1624
f5787926
JH
1625 case vtype_todel: /* Unix epoch/usec time of day */
1626 return tod_stamp(tod_epoch_l);
1627
059ec3d9
PH
1628 case vtype_todf: /* Full time of day */
1629 return tod_stamp(tod_full);
1630
1631 case vtype_todl: /* Log format time of day */
1632 return tod_stamp(tod_log_bare); /* (without timezone) */
1633
1634 case vtype_todzone: /* Time zone offset only */
1635 return tod_stamp(tod_zone);
1636
1637 case vtype_todzulu: /* Zulu time */
1638 return tod_stamp(tod_zulu);
1639
1640 case vtype_todlf: /* Log file datestamp tod */
f1e5fef5 1641 return tod_stamp(tod_log_datestamp_daily);
059ec3d9
PH
1642
1643 case vtype_reply: /* Get reply address */
c8ea1597 1644 s = find_header(US"reply-to:", exists_only, newsize, TRUE,
059ec3d9 1645 headers_charset);
6979240a 1646 if (s != NULL) while (isspace(*s)) s++;
059ec3d9 1647 if (s == NULL || *s == 0)
41a13e0a
PH
1648 {
1649 *newsize = 0; /* For the *s==0 case */
c8ea1597
PH
1650 s = find_header(US"from:", exists_only, newsize, TRUE, headers_charset);
1651 }
1652 if (s != NULL)
1653 {
1654 uschar *t;
1655 while (isspace(*s)) s++;
1656 for (t = s; *t != 0; t++) if (*t == '\n') *t = ' ';
6979240a
PH
1657 while (t > s && isspace(t[-1])) t--;
1658 *t = 0;
41a13e0a 1659 }
059ec3d9
PH
1660 return (s == NULL)? US"" : s;
1661
1662 /* A recipients list is available only during system message filtering,
1663 during ACL processing after DATA, and while expanding pipe commands
1664 generated from a system filter, but not elsewhere. */
1665
1666 case vtype_recipients:
1667 if (!enable_dollar_recipients) return NULL; else
1668 {
1669 int size = 128;
1670 int ptr = 0;
1671 int i;
1672 s = store_get(size);
1673 for (i = 0; i < recipients_count; i++)
1674 {
1675 if (i != 0) s = string_cat(s, &size, &ptr, US", ", 2);
1676 s = string_cat(s, &size, &ptr, recipients_list[i].address,
1677 Ustrlen(recipients_list[i].address));
1678 }
1679 s[ptr] = 0; /* string_cat() leaves room */
1680 }
1681 return s;
8e669ac1 1682
5cb8cbc6
PH
1683 case vtype_pspace:
1684 {
1685 int inodes;
8e669ac1
PH
1686 sprintf(CS var_buffer, "%d",
1687 receive_statvfs(var_table[middle].value == (void *)TRUE, &inodes));
5cb8cbc6
PH
1688 }
1689 return var_buffer;
8e669ac1 1690
5cb8cbc6
PH
1691 case vtype_pinodes:
1692 {
1693 int inodes;
8e669ac1 1694 (void) receive_statvfs(var_table[middle].value == (void *)TRUE, &inodes);
5cb8cbc6
PH
1695 sprintf(CS var_buffer, "%d", inodes);
1696 }
1697 return var_buffer;
80a47a2c 1698
c8307c12 1699 #ifndef DISABLE_DKIM
80a47a2c 1700 case vtype_dkim:
da5dfc3a 1701 return dkim_exim_expand_query((int)(long)var_table[middle].value);
80a47a2c
TK
1702 #endif
1703
059ec3d9
PH
1704 }
1705 }
1706
1707return NULL; /* Unknown variable name */
1708}
1709
1710
1711
1712
d9b2312b
JH
1713void
1714modify_variable(uschar *name, void * value)
1715{
1716int first = 0;
1717int last = var_table_size;
1718
1719while (last > first)
1720 {
1721 int middle = (first + last)/2;
1722 int c = Ustrcmp(name, var_table[middle].name);
1723
1724 if (c > 0) { first = middle + 1; continue; }
1725 if (c < 0) { last = middle; continue; }
1726
1727 /* Found an existing variable; change the item it refers to */
1728 var_table[middle].value = value;
1729 return;
1730 }
1731return; /* Unknown variable name, fail silently */
1732}
1733
1734
1735
1736
1737
059ec3d9
PH
1738/*************************************************
1739* Read and expand substrings *
1740*************************************************/
1741
1742/* This function is called to read and expand argument substrings for various
1743expansion items. Some have a minimum requirement that is less than the maximum;
1744in these cases, the first non-present one is set to NULL.
1745
1746Arguments:
1747 sub points to vector of pointers to set
1748 n maximum number of substrings
1749 m minimum required
1750 sptr points to current string pointer
1751 skipping the skipping flag
1752 check_end if TRUE, check for final '}'
1753 name name of item, for error message
1754
1755Returns: 0 OK; string pointer updated
1756 1 curly bracketing error (too few arguments)
1757 2 too many arguments (only if check_end is set); message set
1758 3 other error (expansion failure)
1759*/
1760
1761static int
1762read_subs(uschar **sub, int n, int m, uschar **sptr, BOOL skipping,
1763 BOOL check_end, uschar *name)
1764{
1765int i;
1766uschar *s = *sptr;
1767
1768while (isspace(*s)) s++;
1769for (i = 0; i < n; i++)
1770 {
1771 if (*s != '{')
1772 {
1773 if (i < m) return 1;
1774 sub[i] = NULL;
1775 break;
1776 }
da6dbe26 1777 sub[i] = expand_string_internal(s+1, TRUE, &s, skipping, TRUE);
059ec3d9
PH
1778 if (sub[i] == NULL) return 3;
1779 if (*s++ != '}') return 1;
1780 while (isspace(*s)) s++;
1781 }
1782if (check_end && *s++ != '}')
1783 {
1784 if (s[-1] == '{')
1785 {
1786 expand_string_message = string_sprintf("Too many arguments for \"%s\" "
1787 "(max is %d)", name, n);
1788 return 2;
1789 }
1790 return 1;
1791 }
1792
1793*sptr = s;
1794return 0;
1795}
1796
1797
1798
1799
641cb756
PH
1800/*************************************************
1801* Elaborate message for bad variable *
1802*************************************************/
1803
1804/* For the "unknown variable" message, take a look at the variable's name, and
1805give additional information about possible ACL variables. The extra information
1806is added on to expand_string_message.
1807
1808Argument: the name of the variable
1809Returns: nothing
1810*/
1811
1812static void
1813check_variable_error_message(uschar *name)
1814{
1815if (Ustrncmp(name, "acl_", 4) == 0)
1816 expand_string_message = string_sprintf("%s (%s)", expand_string_message,
1817 (name[4] == 'c' || name[4] == 'm')?
1818 (isalpha(name[5])?
1819 US"6th character of a user-defined ACL variable must be a digit or underscore" :
1820 US"strict_acl_vars is set" /* Syntax is OK, it has to be this */
1821 ) :
1822 US"user-defined ACL variables must start acl_c or acl_m");
1823}
1824
1825
1826
059ec3d9
PH
1827/*************************************************
1828* Read and evaluate a condition *
1829*************************************************/
1830
1831/*
1832Arguments:
1833 s points to the start of the condition text
1834 yield points to a BOOL to hold the result of the condition test;
1835 if NULL, we are just reading through a condition that is
1836 part of an "or" combination to check syntax, or in a state
1837 where the answer isn't required
1838
1839Returns: a pointer to the first character after the condition, or
1840 NULL after an error
1841*/
1842
1843static uschar *
1844eval_condition(uschar *s, BOOL *yield)
1845{
1846BOOL testfor = TRUE;
1847BOOL tempcond, combined_cond;
1848BOOL *subcondptr;
5cfd2e57 1849BOOL sub2_honour_dollar = TRUE;
059ec3d9 1850int i, rc, cond_type, roffset;
97d17305 1851int_eximarith_t num[2];
059ec3d9
PH
1852struct stat statbuf;
1853uschar name[256];
1854uschar *sub[4];
1855
1856const pcre *re;
1857const uschar *rerror;
1858
1859for (;;)
1860 {
1861 while (isspace(*s)) s++;
1862 if (*s == '!') { testfor = !testfor; s++; } else break;
1863 }
1864
1865/* Numeric comparisons are symbolic */
1866
1867if (*s == '=' || *s == '>' || *s == '<')
1868 {
1869 int p = 0;
1870 name[p++] = *s++;
1871 if (*s == '=')
1872 {
1873 name[p++] = '=';
1874 s++;
1875 }
1876 name[p] = 0;
1877 }
1878
1879/* All other conditions are named */
1880
1881else s = read_name(name, 256, s, US"_");
1882
1883/* If we haven't read a name, it means some non-alpha character is first. */
1884
1885if (name[0] == 0)
1886 {
1887 expand_string_message = string_sprintf("condition name expected, "
1888 "but found \"%.16s\"", s);
1889 return NULL;
1890 }
1891
1892/* Find which condition we are dealing with, and switch on it */
1893
1894cond_type = chop_match(name, cond_table, sizeof(cond_table)/sizeof(uschar *));
1895switch(cond_type)
1896 {
9b4768fa
PH
1897 /* def: tests for a non-empty variable, or for the existence of a header. If
1898 yield == NULL we are in a skipping state, and don't care about the answer. */
059ec3d9
PH
1899
1900 case ECOND_DEF:
1901 if (*s != ':')
1902 {
1903 expand_string_message = US"\":\" expected after \"def\"";
1904 return NULL;
1905 }
1906
1907 s = read_name(name, 256, s+1, US"_");
1908
0d85fa3f
PH
1909 /* Test for a header's existence. If the name contains a closing brace
1910 character, this may be a user error where the terminating colon has been
1911 omitted. Set a flag to adjust a subsequent error message in this case. */
059ec3d9
PH
1912
1913 if (Ustrncmp(name, "h_", 2) == 0 ||
1914 Ustrncmp(name, "rh_", 3) == 0 ||
1915 Ustrncmp(name, "bh_", 3) == 0 ||
1916 Ustrncmp(name, "header_", 7) == 0 ||
1917 Ustrncmp(name, "rheader_", 8) == 0 ||
1918 Ustrncmp(name, "bheader_", 8) == 0)
1919 {
1920 s = read_header_name(name, 256, s);
0d85fa3f 1921 if (Ustrchr(name, '}') != NULL) malformed_header = TRUE;
059ec3d9
PH
1922 if (yield != NULL) *yield =
1923 (find_header(name, TRUE, NULL, FALSE, NULL) != NULL) == testfor;
1924 }
1925
9b4768fa
PH
1926 /* Test for a variable's having a non-empty value. A non-existent variable
1927 causes an expansion failure. */
059ec3d9
PH
1928
1929 else
1930 {
1931 uschar *value = find_variable(name, TRUE, yield == NULL, NULL);
1932 if (value == NULL)
1933 {
1934 expand_string_message = (name[0] == 0)?
1935 string_sprintf("variable name omitted after \"def:\"") :
1936 string_sprintf("unknown variable \"%s\" after \"def:\"", name);
641cb756 1937 check_variable_error_message(name);
059ec3d9
PH
1938 return NULL;
1939 }
9b4768fa 1940 if (yield != NULL) *yield = (value[0] != 0) == testfor;
059ec3d9
PH
1941 }
1942
1943 return s;
1944
1945
1946 /* first_delivery tests for first delivery attempt */
1947
1948 case ECOND_FIRST_DELIVERY:
1949 if (yield != NULL) *yield = deliver_firsttime == testfor;
1950 return s;
1951
1952
1953 /* queue_running tests for any process started by a queue runner */
1954
1955 case ECOND_QUEUE_RUNNING:
1956 if (yield != NULL) *yield = (queue_run_pid != (pid_t)0) == testfor;
1957 return s;
1958
1959
1960 /* exists: tests for file existence
1961 isip: tests for any IP address
1962 isip4: tests for an IPv4 address
1963 isip6: tests for an IPv6 address
1964 pam: does PAM authentication
1965 radius: does RADIUS authentication
1966 ldapauth: does LDAP authentication
1967 pwcheck: does Cyrus SASL pwcheck authentication
1968 */
1969
1970 case ECOND_EXISTS:
1971 case ECOND_ISIP:
1972 case ECOND_ISIP4:
1973 case ECOND_ISIP6:
1974 case ECOND_PAM:
1975 case ECOND_RADIUS:
1976 case ECOND_LDAPAUTH:
1977 case ECOND_PWCHECK:
1978
1979 while (isspace(*s)) s++;
1980 if (*s != '{') goto COND_FAILED_CURLY_START;
1981
da6dbe26 1982 sub[0] = expand_string_internal(s+1, TRUE, &s, yield == NULL, TRUE);
059ec3d9
PH
1983 if (sub[0] == NULL) return NULL;
1984 if (*s++ != '}') goto COND_FAILED_CURLY_END;
1985
1986 if (yield == NULL) return s; /* No need to run the test if skipping */
1987
1988 switch(cond_type)
1989 {
1990 case ECOND_EXISTS:
1991 if ((expand_forbid & RDO_EXISTS) != 0)
1992 {
1993 expand_string_message = US"File existence tests are not permitted";
1994 return NULL;
1995 }
1996 *yield = (Ustat(sub[0], &statbuf) == 0) == testfor;
1997 break;
1998
1999 case ECOND_ISIP:
2000 case ECOND_ISIP4:
2001 case ECOND_ISIP6:
2002 rc = string_is_ip_address(sub[0], NULL);
7e66e54d 2003 *yield = ((cond_type == ECOND_ISIP)? (rc != 0) :
059ec3d9
PH
2004 (cond_type == ECOND_ISIP4)? (rc == 4) : (rc == 6)) == testfor;
2005 break;
2006
2007 /* Various authentication tests - all optionally compiled */
2008
2009 case ECOND_PAM:
2010 #ifdef SUPPORT_PAM
2011 rc = auth_call_pam(sub[0], &expand_string_message);
2012 goto END_AUTH;
2013 #else
2014 goto COND_FAILED_NOT_COMPILED;
2015 #endif /* SUPPORT_PAM */
2016
2017 case ECOND_RADIUS:
2018 #ifdef RADIUS_CONFIG_FILE
2019 rc = auth_call_radius(sub[0], &expand_string_message);
2020 goto END_AUTH;
2021 #else
2022 goto COND_FAILED_NOT_COMPILED;
2023 #endif /* RADIUS_CONFIG_FILE */
2024
2025 case ECOND_LDAPAUTH:
2026 #ifdef LOOKUP_LDAP
2027 {
2028 /* Just to keep the interface the same */
2029 BOOL do_cache;
2030 int old_pool = store_pool;
2031 store_pool = POOL_SEARCH;
2032 rc = eldapauth_find((void *)(-1), NULL, sub[0], Ustrlen(sub[0]), NULL,
2033 &expand_string_message, &do_cache);
2034 store_pool = old_pool;
2035 }
2036 goto END_AUTH;
2037 #else
2038 goto COND_FAILED_NOT_COMPILED;
2039 #endif /* LOOKUP_LDAP */
2040
2041 case ECOND_PWCHECK:
2042 #ifdef CYRUS_PWCHECK_SOCKET
2043 rc = auth_call_pwcheck(sub[0], &expand_string_message);
2044 goto END_AUTH;
2045 #else
2046 goto COND_FAILED_NOT_COMPILED;
2047 #endif /* CYRUS_PWCHECK_SOCKET */
2048
2049 #if defined(SUPPORT_PAM) || defined(RADIUS_CONFIG_FILE) || \
2050 defined(LOOKUP_LDAP) || defined(CYRUS_PWCHECK_SOCKET)
2051 END_AUTH:
2052 if (rc == ERROR || rc == DEFER) return NULL;
2053 *yield = (rc == OK) == testfor;
2054 #endif
2055 }
2056 return s;
2057
2058
2059 /* saslauthd: does Cyrus saslauthd authentication. Four parameters are used:
2060
2061 ${if saslauthd {{username}{password}{service}{realm}} {yes}[no}}
2062
2063 However, the last two are optional. That is why the whole set is enclosed
2064 in their own set or braces. */
2065
2066 case ECOND_SASLAUTHD:
2067 #ifndef CYRUS_SASLAUTHD_SOCKET
2068 goto COND_FAILED_NOT_COMPILED;
2069 #else
2070 while (isspace(*s)) s++;
2071 if (*s++ != '{') goto COND_FAILED_CURLY_START;
2072 switch(read_subs(sub, 4, 2, &s, yield == NULL, TRUE, US"saslauthd"))
2073 {
2074 case 1: expand_string_message = US"too few arguments or bracketing "
2075 "error for saslauthd";
2076 case 2:
2077 case 3: return NULL;
2078 }
2079 if (sub[2] == NULL) sub[3] = NULL; /* realm if no service */
2080 if (yield != NULL)
2081 {
2082 int rc;
2083 rc = auth_call_saslauthd(sub[0], sub[1], sub[2], sub[3],
2084 &expand_string_message);
2085 if (rc == ERROR || rc == DEFER) return NULL;
2086 *yield = (rc == OK) == testfor;
2087 }
2088 return s;
2089 #endif /* CYRUS_SASLAUTHD_SOCKET */
2090
2091
2092 /* symbolic operators for numeric and string comparison, and a number of
2093 other operators, all requiring two arguments.
2094
76dca828
PP
2095 crypteq: encrypts plaintext and compares against an encrypted text,
2096 using crypt(), crypt16(), MD5 or SHA-1
2097 inlist/inlisti: checks if first argument is in the list of the second
059ec3d9
PH
2098 match: does a regular expression match and sets up the numerical
2099 variables if it succeeds
2100 match_address: matches in an address list
2101 match_domain: matches in a domain list
32d668a5 2102 match_ip: matches a host list that is restricted to IP addresses
059ec3d9 2103 match_local_part: matches in a local part list
059ec3d9
PH
2104 */
2105
059ec3d9
PH
2106 case ECOND_MATCH_ADDRESS:
2107 case ECOND_MATCH_DOMAIN:
32d668a5 2108 case ECOND_MATCH_IP:
059ec3d9 2109 case ECOND_MATCH_LOCAL_PART:
da6dbe26
PP
2110#ifndef EXPAND_LISTMATCH_RHS
2111 sub2_honour_dollar = FALSE;
2112#endif
2113 /* FALLTHROUGH */
2114
2115 case ECOND_CRYPTEQ:
2116 case ECOND_INLIST:
2117 case ECOND_INLISTI:
2118 case ECOND_MATCH:
059ec3d9
PH
2119
2120 case ECOND_NUM_L: /* Numerical comparisons */
2121 case ECOND_NUM_LE:
2122 case ECOND_NUM_E:
2123 case ECOND_NUM_EE:
2124 case ECOND_NUM_G:
2125 case ECOND_NUM_GE:
2126
2127 case ECOND_STR_LT: /* String comparisons */
2128 case ECOND_STR_LTI:
2129 case ECOND_STR_LE:
2130 case ECOND_STR_LEI:
2131 case ECOND_STR_EQ:
2132 case ECOND_STR_EQI:
2133 case ECOND_STR_GT:
2134 case ECOND_STR_GTI:
2135 case ECOND_STR_GE:
2136 case ECOND_STR_GEI:
2137
2138 for (i = 0; i < 2; i++)
2139 {
da6dbe26
PP
2140 /* Sometimes, we don't expand substrings; too many insecure configurations
2141 created using match_address{}{} and friends, where the second param
2142 includes information from untrustworthy sources. */
2143 BOOL honour_dollar = TRUE;
2144 if ((i > 0) && !sub2_honour_dollar)
2145 honour_dollar = FALSE;
2146
059ec3d9
PH
2147 while (isspace(*s)) s++;
2148 if (*s != '{')
2149 {
2150 if (i == 0) goto COND_FAILED_CURLY_START;
2151 expand_string_message = string_sprintf("missing 2nd string in {} "
2152 "after \"%s\"", name);
2153 return NULL;
2154 }
da6dbe26
PP
2155 sub[i] = expand_string_internal(s+1, TRUE, &s, yield == NULL,
2156 honour_dollar);
059ec3d9
PH
2157 if (sub[i] == NULL) return NULL;
2158 if (*s++ != '}') goto COND_FAILED_CURLY_END;
2159
2160 /* Convert to numerical if required; we know that the names of all the
2161 conditions that compare numbers do not start with a letter. This just saves
2162 checking for them individually. */
2163
d6066548 2164 if (!isalpha(name[0]) && yield != NULL)
059ec3d9 2165 {
5dd1517f
PH
2166 if (sub[i][0] == 0)
2167 {
2168 num[i] = 0;
2169 DEBUG(D_expand)
2170 debug_printf("empty string cast to zero for numerical comparison\n");
2171 }
2172 else
2173 {
2174 num[i] = expand_string_integer(sub[i], FALSE);
2175 if (expand_string_message != NULL) return NULL;
2176 }
059ec3d9
PH
2177 }
2178 }
2179
2180 /* Result not required */
2181
2182 if (yield == NULL) return s;
2183
2184 /* Do an appropriate comparison */
2185
2186 switch(cond_type)
2187 {
2188 case ECOND_NUM_E:
2189 case ECOND_NUM_EE:
2190 *yield = (num[0] == num[1]) == testfor;
2191 break;
2192
2193 case ECOND_NUM_G:
2194 *yield = (num[0] > num[1]) == testfor;
2195 break;
2196
2197 case ECOND_NUM_GE:
2198 *yield = (num[0] >= num[1]) == testfor;
2199 break;
2200
2201 case ECOND_NUM_L:
2202 *yield = (num[0] < num[1]) == testfor;
2203 break;
2204
2205 case ECOND_NUM_LE:
2206 *yield = (num[0] <= num[1]) == testfor;
2207 break;
2208
2209 case ECOND_STR_LT:
2210 *yield = (Ustrcmp(sub[0], sub[1]) < 0) == testfor;
2211 break;
2212
2213 case ECOND_STR_LTI:
2214 *yield = (strcmpic(sub[0], sub[1]) < 0) == testfor;
2215 break;
2216
2217 case ECOND_STR_LE:
2218 *yield = (Ustrcmp(sub[0], sub[1]) <= 0) == testfor;
2219 break;
2220
2221 case ECOND_STR_LEI:
2222 *yield = (strcmpic(sub[0], sub[1]) <= 0) == testfor;
2223 break;
2224
2225 case ECOND_STR_EQ:
2226 *yield = (Ustrcmp(sub[0], sub[1]) == 0) == testfor;
2227 break;
2228
2229 case ECOND_STR_EQI:
2230 *yield = (strcmpic(sub[0], sub[1]) == 0) == testfor;
2231 break;
2232
2233 case ECOND_STR_GT:
2234 *yield = (Ustrcmp(sub[0], sub[1]) > 0) == testfor;
2235 break;
2236
2237 case ECOND_STR_GTI:
2238 *yield = (strcmpic(sub[0], sub[1]) > 0) == testfor;
2239 break;
2240
2241 case ECOND_STR_GE:
2242 *yield = (Ustrcmp(sub[0], sub[1]) >= 0) == testfor;
2243 break;
2244
2245 case ECOND_STR_GEI:
2246 *yield = (strcmpic(sub[0], sub[1]) >= 0) == testfor;
2247 break;
2248
2249 case ECOND_MATCH: /* Regular expression match */
2250 re = pcre_compile(CS sub[1], PCRE_COPT, (const char **)&rerror, &roffset,
2251 NULL);
2252 if (re == NULL)
2253 {
2254 expand_string_message = string_sprintf("regular expression error in "
2255 "\"%s\": %s at offset %d", sub[1], rerror, roffset);
2256 return NULL;
2257 }
2258 *yield = regex_match_and_setup(re, sub[0], 0, -1) == testfor;
2259 break;
2260
2261 case ECOND_MATCH_ADDRESS: /* Match in an address list */
2262 rc = match_address_list(sub[0], TRUE, FALSE, &(sub[1]), NULL, -1, 0, NULL);
2263 goto MATCHED_SOMETHING;
2264
2265 case ECOND_MATCH_DOMAIN: /* Match in a domain list */
2266 rc = match_isinlist(sub[0], &(sub[1]), 0, &domainlist_anchor, NULL,
2267 MCL_DOMAIN + MCL_NOEXPAND, TRUE, NULL);
2268 goto MATCHED_SOMETHING;
2269
32d668a5 2270 case ECOND_MATCH_IP: /* Match IP address in a host list */
7e66e54d 2271 if (sub[0][0] != 0 && string_is_ip_address(sub[0], NULL) == 0)
32d668a5
PH
2272 {
2273 expand_string_message = string_sprintf("\"%s\" is not an IP address",
2274 sub[0]);
2275 return NULL;
2276 }
2277 else
2278 {
2279 unsigned int *nullcache = NULL;
2280 check_host_block cb;
2281
2282 cb.host_name = US"";
2283 cb.host_address = sub[0];
2284
2285 /* If the host address starts off ::ffff: it is an IPv6 address in
2286 IPv4-compatible mode. Find the IPv4 part for checking against IPv4
2287 addresses. */
2288
2289 cb.host_ipv4 = (Ustrncmp(cb.host_address, "::ffff:", 7) == 0)?
2290 cb.host_address + 7 : cb.host_address;
2291
2292 rc = match_check_list(
2293 &sub[1], /* the list */
2294 0, /* separator character */
2295 &hostlist_anchor, /* anchor pointer */
2296 &nullcache, /* cache pointer */
2297 check_host, /* function for testing */
2298 &cb, /* argument for function */
2299 MCL_HOST, /* type of check */
2300 sub[0], /* text for debugging */
2301 NULL); /* where to pass back data */
2302 }
2303 goto MATCHED_SOMETHING;
2304
059ec3d9
PH
2305 case ECOND_MATCH_LOCAL_PART:
2306 rc = match_isinlist(sub[0], &(sub[1]), 0, &localpartlist_anchor, NULL,
2307 MCL_LOCALPART + MCL_NOEXPAND, TRUE, NULL);
2308 /* Fall through */
9a26b6b2 2309 /* VVVVVVVVVVVV */
059ec3d9
PH
2310 MATCHED_SOMETHING:
2311 switch(rc)
2312 {
2313 case OK:
2314 *yield = testfor;
2315 break;
2316
2317 case FAIL:
2318 *yield = !testfor;
2319 break;
2320
2321 case DEFER:
2322 expand_string_message = string_sprintf("unable to complete match "
2323 "against \"%s\": %s", sub[1], search_error_message);
2324 return NULL;
2325 }
2326
2327 break;
2328
2329 /* Various "encrypted" comparisons. If the second string starts with
2330 "{" then an encryption type is given. Default to crypt() or crypt16()
2331 (build-time choice). */
2332
2333 case ECOND_CRYPTEQ:
2334 #ifndef SUPPORT_CRYPTEQ
2335 goto COND_FAILED_NOT_COMPILED;
2336 #else
2337 if (strncmpic(sub[1], US"{md5}", 5) == 0)
2338 {
2339 int sublen = Ustrlen(sub[1]+5);
2340 md5 base;
2341 uschar digest[16];
2342
2343 md5_start(&base);
2344 md5_end(&base, (uschar *)sub[0], Ustrlen(sub[0]), digest);
2345
2346 /* If the length that we are comparing against is 24, the MD5 digest
2347 is expressed as a base64 string. This is the way LDAP does it. However,
2348 some other software uses a straightforward hex representation. We assume
2349 this if the length is 32. Other lengths fail. */
2350
2351 if (sublen == 24)
2352 {
2353 uschar *coded = auth_b64encode((uschar *)digest, 16);
2354 DEBUG(D_auth) debug_printf("crypteq: using MD5+B64 hashing\n"
2355 " subject=%s\n crypted=%s\n", coded, sub[1]+5);
2356 *yield = (Ustrcmp(coded, sub[1]+5) == 0) == testfor;
2357 }
2358 else if (sublen == 32)
2359 {
2360 int i;
2361 uschar coded[36];
2362 for (i = 0; i < 16; i++) sprintf(CS (coded+2*i), "%02X", digest[i]);
2363 coded[32] = 0;
2364 DEBUG(D_auth) debug_printf("crypteq: using MD5+hex hashing\n"
2365 " subject=%s\n crypted=%s\n", coded, sub[1]+5);
2366 *yield = (strcmpic(coded, sub[1]+5) == 0) == testfor;
2367 }
2368 else
2369 {
2370 DEBUG(D_auth) debug_printf("crypteq: length for MD5 not 24 or 32: "
2371 "fail\n crypted=%s\n", sub[1]+5);
2372 *yield = !testfor;
2373 }
2374 }
2375
2376 else if (strncmpic(sub[1], US"{sha1}", 6) == 0)
2377 {
2378 int sublen = Ustrlen(sub[1]+6);
2379 sha1 base;
2380 uschar digest[20];
2381
2382 sha1_start(&base);
2383 sha1_end(&base, (uschar *)sub[0], Ustrlen(sub[0]), digest);
2384
2385 /* If the length that we are comparing against is 28, assume the SHA1
2386 digest is expressed as a base64 string. If the length is 40, assume a
2387 straightforward hex representation. Other lengths fail. */
2388
2389 if (sublen == 28)
2390 {
2391 uschar *coded = auth_b64encode((uschar *)digest, 20);
2392 DEBUG(D_auth) debug_printf("crypteq: using SHA1+B64 hashing\n"
2393 " subject=%s\n crypted=%s\n", coded, sub[1]+6);
2394 *yield = (Ustrcmp(coded, sub[1]+6) == 0) == testfor;
2395 }
2396 else if (sublen == 40)
2397 {
2398 int i;
2399 uschar coded[44];
2400 for (i = 0; i < 20; i++) sprintf(CS (coded+2*i), "%02X", digest[i]);
2401 coded[40] = 0;
2402 DEBUG(D_auth) debug_printf("crypteq: using SHA1+hex hashing\n"
2403 " subject=%s\n crypted=%s\n", coded, sub[1]+6);
2404 *yield = (strcmpic(coded, sub[1]+6) == 0) == testfor;
2405 }
2406 else
2407 {
2408 DEBUG(D_auth) debug_printf("crypteq: length for SHA-1 not 28 or 40: "
2409 "fail\n crypted=%s\n", sub[1]+6);
2410 *yield = !testfor;
2411 }
2412 }
2413
2414 else /* {crypt} or {crypt16} and non-{ at start */
76dca828 2415 /* }-for-text-editors */
059ec3d9
PH
2416 {
2417 int which = 0;
2418 uschar *coded;
2419
2420 if (strncmpic(sub[1], US"{crypt}", 7) == 0)
2421 {
2422 sub[1] += 7;
2423 which = 1;
2424 }
2425 else if (strncmpic(sub[1], US"{crypt16}", 9) == 0)
2426 {
2427 sub[1] += 9;
2428 which = 2;
2429 }
2430 else if (sub[1][0] == '{')
2431 {
2432 expand_string_message = string_sprintf("unknown encryption mechanism "
2433 "in \"%s\"", sub[1]);
2434 return NULL;
2435 }
2436
2437 switch(which)
2438 {
2439 case 0: coded = US DEFAULT_CRYPT(CS sub[0], CS sub[1]); break;
2440 case 1: coded = US crypt(CS sub[0], CS sub[1]); break;
2441 default: coded = US crypt16(CS sub[0], CS sub[1]); break;
2442 }
2443
2444 #define STR(s) # s
2445 #define XSTR(s) STR(s)
2446 DEBUG(D_auth) debug_printf("crypteq: using %s()\n"
2447 " subject=%s\n crypted=%s\n",
2448 (which == 0)? XSTR(DEFAULT_CRYPT) : (which == 1)? "crypt" : "crypt16",
2449 coded, sub[1]);
2450 #undef STR
2451 #undef XSTR
2452
2453 /* If the encrypted string contains fewer than two characters (for the
2454 salt), force failure. Otherwise we get false positives: with an empty
2455 string the yield of crypt() is an empty string! */
2456
2457 *yield = (Ustrlen(sub[1]) < 2)? !testfor :
2458 (Ustrcmp(coded, sub[1]) == 0) == testfor;
2459 }
2460 break;
2461 #endif /* SUPPORT_CRYPTEQ */
76dca828
PP
2462
2463 case ECOND_INLIST:
2464 case ECOND_INLISTI:
2465 {
2466 int sep = 0;
2467 BOOL found = FALSE;
2468 uschar *save_iterate_item = iterate_item;
2469 int (*compare)(const uschar *, const uschar *);
2470
2471 if (cond_type == ECOND_INLISTI)
2472 compare = strcmpic;
2473 else
2474 compare = (int (*)(const uschar *, const uschar *)) strcmp;
2475
2476 while ((iterate_item = string_nextinlist(&sub[1], &sep, NULL, 0)) != NULL)
2477 if (compare(sub[0], iterate_item) == 0)
2478 {
2479 found = TRUE;
2480 break;
2481 }
2482 iterate_item = save_iterate_item;
2483 *yield = found;
2484 }
2485
059ec3d9
PH
2486 } /* Switch for comparison conditions */
2487
2488 return s; /* End of comparison conditions */
2489
2490
2491 /* and/or: computes logical and/or of several conditions */
2492
2493 case ECOND_AND:
2494 case ECOND_OR:
2495 subcondptr = (yield == NULL)? NULL : &tempcond;
2496 combined_cond = (cond_type == ECOND_AND);
2497
2498 while (isspace(*s)) s++;
2499 if (*s++ != '{') goto COND_FAILED_CURLY_START;
2500
2501 for (;;)
2502 {
2503 while (isspace(*s)) s++;
2504 if (*s == '}') break;
2505 if (*s != '{')
2506 {
2507 expand_string_message = string_sprintf("each subcondition "
2508 "inside an \"%s{...}\" condition must be in its own {}", name);
2509 return NULL;
2510 }
2511
2512 s = eval_condition(s+1, subcondptr);
2513 if (s == NULL)
2514 {
2515 expand_string_message = string_sprintf("%s inside \"%s{...}\" condition",
2516 expand_string_message, name);
2517 return NULL;
2518 }
2519 while (isspace(*s)) s++;
2520
2521 if (*s++ != '}')
2522 {
2523 expand_string_message = string_sprintf("missing } at end of condition "
2524 "inside \"%s\" group", name);
2525 return NULL;
2526 }
2527
2528 if (yield != NULL)
2529 {
2530 if (cond_type == ECOND_AND)
2531 {
2532 combined_cond &= tempcond;
2533 if (!combined_cond) subcondptr = NULL; /* once false, don't */
2534 } /* evaluate any more */
2535 else
2536 {
2537 combined_cond |= tempcond;
2538 if (combined_cond) subcondptr = NULL; /* once true, don't */
2539 } /* evaluate any more */
2540 }
2541 }
2542
2543 if (yield != NULL) *yield = (combined_cond == testfor);
2544 return ++s;
2545
2546
0ce9abe6
PH
2547 /* forall/forany: iterates a condition with different values */
2548
2549 case ECOND_FORALL:
2550 case ECOND_FORANY:
2551 {
2552 int sep = 0;
282b357d 2553 uschar *save_iterate_item = iterate_item;
0ce9abe6
PH
2554
2555 while (isspace(*s)) s++;
2556 if (*s++ != '{') goto COND_FAILED_CURLY_START;
da6dbe26 2557 sub[0] = expand_string_internal(s, TRUE, &s, (yield == NULL), TRUE);
0ce9abe6
PH
2558 if (sub[0] == NULL) return NULL;
2559 if (*s++ != '}') goto COND_FAILED_CURLY_END;
2560
2561 while (isspace(*s)) s++;
2562 if (*s++ != '{') goto COND_FAILED_CURLY_START;
2563
2564 sub[1] = s;
2565
2566 /* Call eval_condition once, with result discarded (as if scanning a
2567 "false" part). This allows us to find the end of the condition, because if
2568 the list it empty, we won't actually evaluate the condition for real. */
2569
2570 s = eval_condition(sub[1], NULL);
2571 if (s == NULL)
2572 {
2573 expand_string_message = string_sprintf("%s inside \"%s\" condition",
2574 expand_string_message, name);
2575 return NULL;
2576 }
2577 while (isspace(*s)) s++;
2578
2579 if (*s++ != '}')
2580 {
2581 expand_string_message = string_sprintf("missing } at end of condition "
2582 "inside \"%s\"", name);
2583 return NULL;
2584 }
2585
2586 if (yield != NULL) *yield = !testfor;
2587 while ((iterate_item = string_nextinlist(&sub[0], &sep, NULL, 0)) != NULL)
2588 {
2589 DEBUG(D_expand) debug_printf("%s: $item = \"%s\"\n", name, iterate_item);
2590 if (eval_condition(sub[1], &tempcond) == NULL)
2591 {
2592 expand_string_message = string_sprintf("%s inside \"%s\" condition",
2593 expand_string_message, name);
e58c13cc 2594 iterate_item = save_iterate_item;
0ce9abe6
PH
2595 return NULL;
2596 }
2597 DEBUG(D_expand) debug_printf("%s: condition evaluated to %s\n", name,
2598 tempcond? "true":"false");
2599
2600 if (yield != NULL) *yield = (tempcond == testfor);
2601 if (tempcond == (cond_type == ECOND_FORANY)) break;
2602 }
2603
282b357d 2604 iterate_item = save_iterate_item;
0ce9abe6
PH
2605 return s;
2606 }
2607
2608
f3766eb5
NM
2609 /* The bool{} expansion condition maps a string to boolean.
2610 The values supported should match those supported by the ACL condition
2611 (acl.c, ACLC_CONDITION) so that we keep to a minimum the different ideas
2612 of true/false. Note that Router "condition" rules have a different
2613 interpretation, where general data can be used and only a few values
2614 map to FALSE.
2615 Note that readconf.c boolean matching, for boolean configuration options,
6a8de854
PP
2616 only matches true/yes/false/no.
2617 The bool_lax{} condition matches the Router logic, which is much more
2618 liberal. */
f3766eb5 2619 case ECOND_BOOL:
6a8de854 2620 case ECOND_BOOL_LAX:
f3766eb5
NM
2621 {
2622 uschar *sub_arg[1];
71265ae9 2623 uschar *t, *t2;
6a8de854 2624 uschar *ourname;
f3766eb5
NM
2625 size_t len;
2626 BOOL boolvalue = FALSE;
2627 while (isspace(*s)) s++;
2628 if (*s != '{') goto COND_FAILED_CURLY_START;
6a8de854
PP
2629 ourname = cond_type == ECOND_BOOL_LAX ? US"bool_lax" : US"bool";
2630 switch(read_subs(sub_arg, 1, 1, &s, yield == NULL, FALSE, ourname))
f3766eb5 2631 {
6a8de854
PP
2632 case 1: expand_string_message = string_sprintf(
2633 "too few arguments or bracketing error for %s",
2634 ourname);
f3766eb5
NM
2635 /*FALLTHROUGH*/
2636 case 2:
2637 case 3: return NULL;
2638 }
2639 t = sub_arg[0];
2640 while (isspace(*t)) t++;
2641 len = Ustrlen(t);
71265ae9
PP
2642 if (len)
2643 {
2644 /* trailing whitespace: seems like a good idea to ignore it too */
2645 t2 = t + len - 1;
2646 while (isspace(*t2)) t2--;
2647 if (t2 != (t + len))
2648 {
2649 *++t2 = '\0';
2650 len = t2 - t;
2651 }
2652 }
f3766eb5 2653 DEBUG(D_expand)
6a8de854
PP
2654 debug_printf("considering %s: %s\n", ourname, len ? t : US"<empty>");
2655 /* logic for the lax case from expand_check_condition(), which also does
2656 expands, and the logic is both short and stable enough that there should
2657 be no maintenance burden from replicating it. */
f3766eb5
NM
2658 if (len == 0)
2659 boolvalue = FALSE;
2660 else if (Ustrspn(t, "0123456789") == len)
6a8de854 2661 {
f3766eb5 2662 boolvalue = (Uatoi(t) == 0) ? FALSE : TRUE;
6a8de854
PP
2663 /* expand_check_condition only does a literal string "0" check */
2664 if ((cond_type == ECOND_BOOL_LAX) && (len > 1))
2665 boolvalue = TRUE;
2666 }
f3766eb5
NM
2667 else if (strcmpic(t, US"true") == 0 || strcmpic(t, US"yes") == 0)
2668 boolvalue = TRUE;
2669 else if (strcmpic(t, US"false") == 0 || strcmpic(t, US"no") == 0)
2670 boolvalue = FALSE;
6a8de854
PP
2671 else if (cond_type == ECOND_BOOL_LAX)
2672 boolvalue = TRUE;
f3766eb5
NM
2673 else
2674 {
2675 expand_string_message = string_sprintf("unrecognised boolean "
2676 "value \"%s\"", t);
2677 return NULL;
2678 }
5ee6f336 2679 if (yield != NULL) *yield = (boolvalue == testfor);
f3766eb5
NM
2680 return s;
2681 }
2682
059ec3d9
PH
2683 /* Unknown condition */
2684
2685 default:
2686 expand_string_message = string_sprintf("unknown condition \"%s\"", name);
2687 return NULL;
2688 } /* End switch on condition type */
2689
2690/* Missing braces at start and end of data */
2691
2692COND_FAILED_CURLY_START:
2693expand_string_message = string_sprintf("missing { after \"%s\"", name);
2694return NULL;
2695
2696COND_FAILED_CURLY_END:
2697expand_string_message = string_sprintf("missing } at end of \"%s\" condition",
2698 name);
2699return NULL;
2700
2701/* A condition requires code that is not compiled */
2702
2703#if !defined(SUPPORT_PAM) || !defined(RADIUS_CONFIG_FILE) || \
2704 !defined(LOOKUP_LDAP) || !defined(CYRUS_PWCHECK_SOCKET) || \
2705 !defined(SUPPORT_CRYPTEQ) || !defined(CYRUS_SASLAUTHD_SOCKET)
2706COND_FAILED_NOT_COMPILED:
2707expand_string_message = string_sprintf("support for \"%s\" not compiled",
2708 name);
2709return NULL;
2710#endif
2711}
2712
2713
2714
2715
2716/*************************************************
2717* Save numerical variables *
2718*************************************************/
2719
2720/* This function is called from items such as "if" that want to preserve and
2721restore the numbered variables.
2722
2723Arguments:
2724 save_expand_string points to an array of pointers to set
2725 save_expand_nlength points to an array of ints for the lengths
2726
2727Returns: the value of expand max to save
2728*/
2729
2730static int
2731save_expand_strings(uschar **save_expand_nstring, int *save_expand_nlength)
2732{
2733int i;
2734for (i = 0; i <= expand_nmax; i++)
2735 {
2736 save_expand_nstring[i] = expand_nstring[i];
2737 save_expand_nlength[i] = expand_nlength[i];
2738 }
2739return expand_nmax;
2740}
2741
2742
2743
2744/*************************************************
2745* Restore numerical variables *
2746*************************************************/
2747
2748/* This function restored saved values of numerical strings.
2749
2750Arguments:
2751 save_expand_nmax the number of strings to restore
2752 save_expand_string points to an array of pointers
2753 save_expand_nlength points to an array of ints
2754
2755Returns: nothing
2756*/
2757
2758static void
2759restore_expand_strings(int save_expand_nmax, uschar **save_expand_nstring,
2760 int *save_expand_nlength)
2761{
2762int i;
2763expand_nmax = save_expand_nmax;
2764for (i = 0; i <= expand_nmax; i++)
2765 {
2766 expand_nstring[i] = save_expand_nstring[i];
2767 expand_nlength[i] = save_expand_nlength[i];
2768 }
2769}
2770
2771
2772
2773
2774
2775/*************************************************
2776* Handle yes/no substrings *
2777*************************************************/
2778
2779/* This function is used by ${if}, ${lookup} and ${extract} to handle the
2780alternative substrings that depend on whether or not the condition was true,
2781or the lookup or extraction succeeded. The substrings always have to be
2782expanded, to check their syntax, but "skipping" is set when the result is not
2783needed - this avoids unnecessary nested lookups.
2784
2785Arguments:
2786 skipping TRUE if we were skipping when this item was reached
2787 yes TRUE if the first string is to be used, else use the second
2788 save_lookup a value to put back into lookup_value before the 2nd expansion
2789 sptr points to the input string pointer
2790 yieldptr points to the output string pointer
2791 sizeptr points to the output string size
2792 ptrptr points to the output string pointer
2793 type "lookup" or "if" or "extract" or "run", for error message
2794
2795Returns: 0 OK; lookup_value has been reset to save_lookup
2796 1 expansion failed
2797 2 expansion failed because of bracketing error
2798*/
2799
2800static int
2801process_yesno(BOOL skipping, BOOL yes, uschar *save_lookup, uschar **sptr,
2802 uschar **yieldptr, int *sizeptr, int *ptrptr, uschar *type)
2803{
2804int rc = 0;
2805uschar *s = *sptr; /* Local value */
2806uschar *sub1, *sub2;
2807
2808/* If there are no following strings, we substitute the contents of $value for
063b1e99 2809lookups and for extractions in the success case. For the ${if item, the string
8e669ac1 2810"true" is substituted. In the fail case, nothing is substituted for all three
063b1e99 2811items. */
059ec3d9
PH
2812
2813while (isspace(*s)) s++;
2814if (*s == '}')
2815 {
063b1e99
PH
2816 if (type[0] == 'i')
2817 {
8e669ac1 2818 if (yes) *yieldptr = string_cat(*yieldptr, sizeptr, ptrptr, US"true", 4);
063b1e99
PH
2819 }
2820 else
8e669ac1 2821 {
063b1e99
PH
2822 if (yes && lookup_value != NULL)
2823 *yieldptr = string_cat(*yieldptr, sizeptr, ptrptr, lookup_value,
2824 Ustrlen(lookup_value));
2825 lookup_value = save_lookup;
2826 }
059ec3d9
PH
2827 s++;
2828 goto RETURN;
2829 }
2830
9b4768fa
PH
2831/* The first following string must be braced. */
2832
2833if (*s++ != '{') goto FAILED_CURLY;
2834
059ec3d9
PH
2835/* Expand the first substring. Forced failures are noticed only if we actually
2836want this string. Set skipping in the call in the fail case (this will always
2837be the case if we were already skipping). */
2838
da6dbe26 2839sub1 = expand_string_internal(s, TRUE, &s, !yes, TRUE);
059ec3d9
PH
2840if (sub1 == NULL && (yes || !expand_string_forcedfail)) goto FAILED;
2841expand_string_forcedfail = FALSE;
2842if (*s++ != '}') goto FAILED_CURLY;
2843
2844/* If we want the first string, add it to the output */
2845
2846if (yes)
2847 *yieldptr = string_cat(*yieldptr, sizeptr, ptrptr, sub1, Ustrlen(sub1));
2848
2849/* If this is called from a lookup or an extract, we want to restore $value to
2850what it was at the start of the item, so that it has this value during the
d20976dc
PH
2851second string expansion. For the call from "if" or "run" to this function,
2852save_lookup is set to lookup_value, so that this statement does nothing. */
059ec3d9
PH
2853
2854lookup_value = save_lookup;
2855
2856/* There now follows either another substring, or "fail", or nothing. This
2857time, forced failures are noticed only if we want the second string. We must
2858set skipping in the nested call if we don't want this string, or if we were
2859already skipping. */
2860
2861while (isspace(*s)) s++;
2862if (*s == '{')
2863 {
da6dbe26 2864 sub2 = expand_string_internal(s+1, TRUE, &s, yes || skipping, TRUE);
059ec3d9
PH
2865 if (sub2 == NULL && (!yes || !expand_string_forcedfail)) goto FAILED;
2866 expand_string_forcedfail = FALSE;
2867 if (*s++ != '}') goto FAILED_CURLY;
2868
2869 /* If we want the second string, add it to the output */
2870
2871 if (!yes)
2872 *yieldptr = string_cat(*yieldptr, sizeptr, ptrptr, sub2, Ustrlen(sub2));
2873 }
2874
2875/* If there is no second string, but the word "fail" is present when the use of
2876the second string is wanted, set a flag indicating it was a forced failure
2877rather than a syntactic error. Swallow the terminating } in case this is nested
2878inside another lookup or if or extract. */
2879
2880else if (*s != '}')
2881 {
2882 uschar name[256];
2883 s = read_name(name, sizeof(name), s, US"_");
2884 if (Ustrcmp(name, "fail") == 0)
2885 {
2886 if (!yes && !skipping)
2887 {
2888 while (isspace(*s)) s++;
2889 if (*s++ != '}') goto FAILED_CURLY;
2890 expand_string_message =
2891 string_sprintf("\"%s\" failed and \"fail\" requested", type);
2892 expand_string_forcedfail = TRUE;
2893 goto FAILED;
2894 }
2895 }
2896 else
2897 {
2898 expand_string_message =
2899 string_sprintf("syntax error in \"%s\" item - \"fail\" expected", type);
2900 goto FAILED;
2901 }
2902 }
2903
2904/* All we have to do now is to check on the final closing brace. */
2905
2906while (isspace(*s)) s++;
2907if (*s++ == '}') goto RETURN;
2908
2909/* Get here if there is a bracketing failure */
2910
2911FAILED_CURLY:
2912rc++;
2913
2914/* Get here for other failures */
2915
2916FAILED:
2917rc++;
2918
2919/* Update the input pointer value before returning */
2920
2921RETURN:
2922*sptr = s;
2923return rc;
2924}
2925
2926
2927
2928
059ec3d9
PH
2929/*************************************************
2930* Handle MD5 or SHA-1 computation for HMAC *
2931*************************************************/
2932
2933/* These are some wrapping functions that enable the HMAC code to be a bit
2934cleaner. A good compiler will spot the tail recursion.
2935
2936Arguments:
2937 type HMAC_MD5 or HMAC_SHA1
2938 remaining are as for the cryptographic hash functions
2939
2940Returns: nothing
2941*/
2942
2943static void
2944chash_start(int type, void *base)
2945{
2946if (type == HMAC_MD5)
2947 md5_start((md5 *)base);
2948else
2949 sha1_start((sha1 *)base);
2950}
2951
2952static void
2953chash_mid(int type, void *base, uschar *string)
2954{
2955if (type == HMAC_MD5)
2956 md5_mid((md5 *)base, string);
2957else
2958 sha1_mid((sha1 *)base, string);
2959}
2960
2961static void
2962chash_end(int type, void *base, uschar *string, int length, uschar *digest)
2963{
2964if (type == HMAC_MD5)
2965 md5_end((md5 *)base, string, length, digest);
2966else
2967 sha1_end((sha1 *)base, string, length, digest);
2968}
2969
2970
2971
2972
2973
1549ea3b
PH
2974/********************************************************
2975* prvs: Get last three digits of days since Jan 1, 1970 *
2976********************************************************/
2977
2978/* This is needed to implement the "prvs" BATV reverse
2979 path signing scheme
2980
2981Argument: integer "days" offset to add or substract to
2982 or from the current number of days.
2983
2984Returns: pointer to string containing the last three
2985 digits of the number of days since Jan 1, 1970,
2986 modified by the offset argument, NULL if there
2987 was an error in the conversion.
2988
2989*/
2990
2991static uschar *
2992prvs_daystamp(int day_offset)
2993{
a86229cf
PH
2994uschar *days = store_get(32); /* Need at least 24 for cases */
2995(void)string_format(days, 32, TIME_T_FMT, /* where TIME_T_FMT is %lld */
1549ea3b 2996 (time(NULL) + day_offset*86400)/86400);
e169f567 2997return (Ustrlen(days) >= 3) ? &days[Ustrlen(days)-3] : US"100";
1549ea3b
PH
2998}
2999
3000
3001
3002/********************************************************
3003* prvs: perform HMAC-SHA1 computation of prvs bits *
3004********************************************************/
3005
3006/* This is needed to implement the "prvs" BATV reverse
3007 path signing scheme
3008
3009Arguments:
3010 address RFC2821 Address to use
3011 key The key to use (must be less than 64 characters
3012 in size)
3013 key_num Single-digit key number to use. Defaults to
3014 '0' when NULL.
3015
3016Returns: pointer to string containing the first three
3017 bytes of the final hash in hex format, NULL if
3018 there was an error in the process.
3019*/
3020
3021static uschar *
3022prvs_hmac_sha1(uschar *address, uschar *key, uschar *key_num, uschar *daystamp)
3023{
3024uschar *hash_source, *p;
3025int size = 0,offset = 0,i;
3026sha1 sha1_base;
3027void *use_base = &sha1_base;
3028uschar innerhash[20];
3029uschar finalhash[20];
3030uschar innerkey[64];
3031uschar outerkey[64];
3032uschar *finalhash_hex = store_get(40);
3033
3034if (key_num == NULL)
3035 key_num = US"0";
3036
3037if (Ustrlen(key) > 64)
3038 return NULL;
3039
3040hash_source = string_cat(NULL,&size,&offset,key_num,1);
3041string_cat(hash_source,&size,&offset,daystamp,3);
3042string_cat(hash_source,&size,&offset,address,Ustrlen(address));
3043hash_source[offset] = '\0';
3044
3045DEBUG(D_expand) debug_printf("prvs: hash source is '%s'\n", hash_source);
3046
3047memset(innerkey, 0x36, 64);
3048memset(outerkey, 0x5c, 64);
3049
3050for (i = 0; i < Ustrlen(key); i++)
3051 {
3052 innerkey[i] ^= key[i];
3053 outerkey[i] ^= key[i];
3054 }
3055
3056chash_start(HMAC_SHA1, use_base);
3057chash_mid(HMAC_SHA1, use_base, innerkey);
3058chash_end(HMAC_SHA1, use_base, hash_source, offset, innerhash);
3059
3060chash_start(HMAC_SHA1, use_base);
3061chash_mid(HMAC_SHA1, use_base, outerkey);
3062chash_end(HMAC_SHA1, use_base, innerhash, 20, finalhash);
3063
3064p = finalhash_hex;
3065for (i = 0; i < 3; i++)
3066 {
3067 *p++ = hex_digits[(finalhash[i] & 0xf0) >> 4];
3068 *p++ = hex_digits[finalhash[i] & 0x0f];
3069 }
3070*p = '\0';
3071
3072return finalhash_hex;
3073}
3074
3075
3076
3077
059ec3d9
PH
3078/*************************************************
3079* Join a file onto the output string *
3080*************************************************/
3081
3082/* This is used for readfile and after a run expansion. It joins the contents
3083of a file onto the output string, globally replacing newlines with a given
3084string (optionally). The file is closed at the end.
3085
3086Arguments:
3087 f the FILE
3088 yield pointer to the expandable string
3089 sizep pointer to the current size
3090 ptrp pointer to the current position
3091 eol newline replacement string, or NULL
3092
3093Returns: new value of string pointer
3094*/
3095
3096static uschar *
3097cat_file(FILE *f, uschar *yield, int *sizep, int *ptrp, uschar *eol)
3098{
3099int eollen;
3100uschar buffer[1024];
3101
3102eollen = (eol == NULL)? 0 : Ustrlen(eol);
3103
3104while (Ufgets(buffer, sizeof(buffer), f) != NULL)
3105 {
3106 int len = Ustrlen(buffer);
3107 if (eol != NULL && buffer[len-1] == '\n') len--;
3108 yield = string_cat(yield, sizep, ptrp, buffer, len);
3109 if (buffer[len] != 0)
3110 yield = string_cat(yield, sizep, ptrp, eol, eollen);
3111 }
3112
3113if (yield != NULL) yield[*ptrp] = 0;
3114
3115return yield;
3116}
3117
3118
3119
3120
3121/*************************************************
3122* Evaluate numeric expression *
3123*************************************************/
3124
af561417
PH
3125/* This is a set of mutually recursive functions that evaluate an arithmetic
3126expression involving + - * / % & | ^ ~ << >> and parentheses. The only one of
3127these functions that is called from elsewhere is eval_expr, whose interface is:
059ec3d9
PH
3128
3129Arguments:
af561417
PH
3130 sptr pointer to the pointer to the string - gets updated
3131 decimal TRUE if numbers are to be assumed decimal
3132 error pointer to where to put an error message - must be NULL on input
3133 endket TRUE if ')' must terminate - FALSE for external call
059ec3d9 3134
af561417
PH
3135Returns: on success: the value of the expression, with *error still NULL
3136 on failure: an undefined value, with *error = a message
059ec3d9
PH
3137*/
3138
97d17305 3139static int_eximarith_t eval_op_or(uschar **, BOOL, uschar **);
af561417 3140
059ec3d9 3141
97d17305 3142static int_eximarith_t
059ec3d9
PH
3143eval_expr(uschar **sptr, BOOL decimal, uschar **error, BOOL endket)
3144{
3145uschar *s = *sptr;
97d17305 3146int_eximarith_t x = eval_op_or(&s, decimal, error);
059ec3d9
PH
3147if (*error == NULL)
3148 {
af561417 3149 if (endket)
059ec3d9 3150 {
af561417
PH
3151 if (*s != ')')
3152 *error = US"expecting closing parenthesis";
3153 else
3154 while (isspace(*(++s)));
059ec3d9 3155 }
af561417 3156 else if (*s != 0) *error = US"expecting operator";
059ec3d9 3157 }
059ec3d9
PH
3158*sptr = s;
3159return x;
3160}
3161
af561417 3162
97d17305 3163static int_eximarith_t
af561417 3164eval_number(uschar **sptr, BOOL decimal, uschar **error)
059ec3d9
PH
3165{
3166register int c;
97d17305 3167int_eximarith_t n;
059ec3d9
PH
3168uschar *s = *sptr;
3169while (isspace(*s)) s++;
3170c = *s;
af561417 3171if (isdigit(c))
059ec3d9
PH
3172 {
3173 int count;
97d17305 3174 (void)sscanf(CS s, (decimal? SC_EXIM_DEC "%n" : SC_EXIM_ARITH "%n"), &n, &count);
059ec3d9 3175 s += count;
97d17305
JH
3176 switch (tolower(*s))
3177 {
3178 default: break;
3179 case 'k': n *= 1024; s++; break;
3180 case 'm': n *= 1024*1024; s++; break;
3181 case 'g': n *= 1024*1024*1024; s++; break;
3182 }
059ec3d9
PH
3183 while (isspace (*s)) s++;
3184 }
3185else if (c == '(')
3186 {
3187 s++;
3188 n = eval_expr(&s, decimal, error, 1);
3189 }
3190else
3191 {
3192 *error = US"expecting number or opening parenthesis";
3193 n = 0;
3194 }
3195*sptr = s;
3196return n;
3197}
3198
af561417 3199
97d17305 3200static int_eximarith_t
aa7c82b2 3201eval_op_unary(uschar **sptr, BOOL decimal, uschar **error)
af561417
PH
3202{
3203uschar *s = *sptr;
97d17305 3204int_eximarith_t x;
af561417
PH
3205while (isspace(*s)) s++;
3206if (*s == '+' || *s == '-' || *s == '~')
3207 {
3208 int op = *s++;
3209 x = eval_op_unary(&s, decimal, error);
3210 if (op == '-') x = -x;
3211 else if (op == '~') x = ~x;
3212 }
3213else
3214 {
3215 x = eval_number(&s, decimal, error);
3216 }
3217*sptr = s;
3218return x;
3219}
3220
3221
97d17305 3222static int_eximarith_t
aa7c82b2 3223eval_op_mult(uschar **sptr, BOOL decimal, uschar **error)
059ec3d9
PH
3224{
3225uschar *s = *sptr;
97d17305 3226int_eximarith_t x = eval_op_unary(&s, decimal, error);
059ec3d9
PH
3227if (*error == NULL)
3228 {
5591031b 3229 while (*s == '*' || *s == '/' || *s == '%')
059ec3d9
PH
3230 {
3231 int op = *s++;
97d17305 3232 int_eximarith_t y = eval_op_unary(&s, decimal, error);
059ec3d9 3233 if (*error != NULL) break;
053a9aa3
PP
3234 /* SIGFPE both on div/mod by zero and on INT_MIN / -1, which would give
3235 * a value of INT_MAX+1. Note that INT_MIN * -1 gives INT_MIN for me, which
3236 * is a bug somewhere in [gcc 4.2.1, FreeBSD, amd64]. In fact, -N*-M where
3237 * -N*M is INT_MIN will yielf INT_MIN.
3238 * Since we don't support floating point, this is somewhat simpler.
3239 * Ideally, we'd return an error, but since we overflow for all other
3240 * arithmetic, consistency suggests otherwise, but what's the correct value
3241 * to use? There is none.
3242 * The C standard guarantees overflow for unsigned arithmetic but signed
3243 * overflow invokes undefined behaviour; in practice, this is overflow
3244 * except for converting INT_MIN to INT_MAX+1. We also can't guarantee
3245 * that long/longlong larger than int are available, or we could just work
3246 * with larger types. We should consider whether to guarantee 32bit eval
3247 * and 64-bit working variables, with errors returned. For now ...
3248 * So, the only SIGFPEs occur with a non-shrinking div/mod, thus -1; we
3249 * can just let the other invalid results occur otherwise, as they have
3250 * until now. For this one case, we can coerce.
3251 */
aa7c82b2 3252 if (y == -1 && x == LLONG_MIN && op != '*')
053a9aa3
PP
3253 {
3254 DEBUG(D_expand)
97d17305 3255 debug_printf("Integer exception dodging: " PR_EXIM_ARITH "%c-1 coerced to " PR_EXIM_ARITH "\n",
aa7c82b2
JH
3256 LLONG_MIN, op, LLONG_MAX);
3257 x = LLONG_MAX;
053a9aa3
PP
3258 continue;
3259 }
a5b52695
PP
3260 if (op == '*')
3261 x *= y;
3262 else
3263 {
3264 if (y == 0)
54e7ce4a 3265 {
a5b52695
PP
3266 *error = (op == '/') ? US"divide by zero" : US"modulo by zero";
3267 x = 0;
3268 break;
54e7ce4a 3269 }
a5b52695
PP
3270 if (op == '/')
3271 x /= y;
3272 else
3273 x %= y;
3274 }
059ec3d9
PH
3275 }
3276 }
3277*sptr = s;
3278return x;
3279}
3280
3281
97d17305 3282static int_eximarith_t
aa7c82b2 3283eval_op_sum(uschar **sptr, BOOL decimal, uschar **error)
af561417
PH
3284{
3285uschar *s = *sptr;
97d17305 3286int_eximarith_t x = eval_op_mult(&s, decimal, error);
af561417
PH
3287if (*error == NULL)
3288 {
3289 while (*s == '+' || *s == '-')
3290 {
3291 int op = *s++;
97d17305 3292 int_eximarith_t y = eval_op_mult(&s, decimal, error);
af561417
PH
3293 if (*error != NULL) break;
3294 if (op == '+') x += y; else x -= y;
3295 }
3296 }
3297*sptr = s;
3298return x;
3299}
3300
3301
97d17305 3302static int_eximarith_t
aa7c82b2 3303eval_op_shift(uschar **sptr, BOOL decimal, uschar **error)
af561417
PH
3304{
3305uschar *s = *sptr;
97d17305 3306int_eximarith_t x = eval_op_sum(&s, decimal, error);
af561417
PH
3307if (*error == NULL)
3308 {
3309 while ((*s == '<' || *s == '>') && s[1] == s[0])
3310 {
97d17305 3311 int_eximarith_t y;
af561417
PH
3312 int op = *s++;
3313 s++;
3314 y = eval_op_sum(&s, decimal, error);
3315 if (*error != NULL) break;
3316 if (op == '<') x <<= y; else x >>= y;
3317 }
3318 }
3319*sptr = s;
3320return x;
3321}
3322
3323
97d17305 3324static int_eximarith_t
aa7c82b2 3325eval_op_and(uschar **sptr, BOOL decimal, uschar **error)
af561417
PH
3326{
3327uschar *s = *sptr;
97d17305 3328int_eximarith_t x = eval_op_shift(&s, decimal, error);
af561417
PH
3329if (*error == NULL)
3330 {
3331 while (*s == '&')
3332 {
97d17305 3333 int_eximarith_t y;
af561417
PH
3334 s++;
3335 y = eval_op_shift(&s, decimal, error);
3336 if (*error != NULL) break;
3337 x &= y;
3338 }
3339 }
3340*sptr = s;
3341return x;
3342}
3343
3344
97d17305 3345static int_eximarith_t
aa7c82b2 3346eval_op_xor(uschar **sptr, BOOL decimal, uschar **error)
af561417
PH
3347{
3348uschar *s = *sptr;
97d17305 3349int_eximarith_t x = eval_op_and(&s, decimal, error);
af561417
PH
3350if (*error == NULL)
3351 {
3352 while (*s == '^')
3353 {
97d17305 3354 int_eximarith_t y;
af561417
PH
3355 s++;
3356 y = eval_op_and(&s, decimal, error);
3357 if (*error != NULL) break;
3358 x ^= y;
3359 }
3360 }
3361*sptr = s;
3362return x;
3363}
3364
3365
97d17305 3366static int_eximarith_t
aa7c82b2 3367eval_op_or(uschar **sptr, BOOL decimal, uschar **error)
af561417
PH
3368{
3369uschar *s = *sptr;
97d17305 3370int_eximarith_t x = eval_op_xor(&s, decimal, error);
af561417
PH
3371if (*error == NULL)
3372 {
3373 while (*s == '|')
3374 {
97d17305 3375 int_eximarith_t y;
af561417
PH
3376 s++;
3377 y = eval_op_xor(&s, decimal, error);
3378 if (*error != NULL) break;
3379 x |= y;
3380 }
3381 }
3382*sptr = s;
3383return x;
3384}
3385
059ec3d9
PH
3386
3387
3388/*************************************************
3389* Expand string *
3390*************************************************/
3391
3392/* Returns either an unchanged string, or the expanded string in stacking pool
3393store. Interpreted sequences are:
3394
3395 \... normal escaping rules
3396 $name substitutes the variable
3397 ${name} ditto
3398 ${op:string} operates on the expanded string value
3399 ${item{arg1}{arg2}...} expands the args and then does the business
3400 some literal args are not enclosed in {}
3401
3402There are now far too many operators and item types to make it worth listing
3403them here in detail any more.
3404
3405We use an internal routine recursively to handle embedded substrings. The
3406external function follows. The yield is NULL if the expansion failed, and there
3407are two cases: if something collapsed syntactically, or if "fail" was given
3408as the action on a lookup failure. These can be distinguised by looking at the
3409variable expand_string_forcedfail, which is TRUE in the latter case.
3410
3411The skipping flag is set true when expanding a substring that isn't actually
3412going to be used (after "if" or "lookup") and it prevents lookups from
3413happening lower down.
3414
3415Store usage: At start, a store block of the length of the input plus 64
3416is obtained. This is expanded as necessary by string_cat(), which might have to
3417get a new block, or might be able to expand the original. At the end of the
3418function we can release any store above that portion of the yield block that
3419was actually used. In many cases this will be optimal.
3420
3421However: if the first item in the expansion is a variable name or header name,
3422we reset the store before processing it; if the result is in fresh store, we
3423use that without copying. This is helpful for expanding strings like
3424$message_headers which can get very long.
3425
d6b4d938
TF
3426There's a problem if a ${dlfunc item has side-effects that cause allocation,
3427since resetting the store at the end of the expansion will free store that was
3428allocated by the plugin code as well as the slop after the expanded string. So
3429we skip any resets if ${dlfunc has been used. This is an unfortunate
3430consequence of string expansion becoming too powerful.
3431
059ec3d9
PH
3432Arguments:
3433 string the string to be expanded
3434 ket_ends true if expansion is to stop at }
3435 left if not NULL, a pointer to the first character after the
3436 expansion is placed here (typically used with ket_ends)
3437 skipping TRUE for recursive calls when the value isn't actually going
3438 to be used (to allow for optimisation)
da6dbe26
PP
3439 honour_dollar TRUE if $ is to be expanded,
3440 FALSE if it's just another character
059ec3d9
PH
3441
3442Returns: NULL if expansion fails:
3443 expand_string_forcedfail is set TRUE if failure was forced
3444 expand_string_message contains a textual error message
3445 a pointer to the expanded string on success
3446*/
3447
3448static uschar *
3449expand_string_internal(uschar *string, BOOL ket_ends, uschar **left,
da6dbe26 3450 BOOL skipping, BOOL honour_dollar)
059ec3d9
PH
3451{
3452int ptr = 0;
3453int size = Ustrlen(string)+ 64;
3454int item_type;
3455uschar *yield = store_get(size);
3456uschar *s = string;
3457uschar *save_expand_nstring[EXPAND_MAXN+1];
3458int save_expand_nlength[EXPAND_MAXN+1];
d6b4d938 3459BOOL resetok = TRUE;
059ec3d9
PH
3460
3461expand_string_forcedfail = FALSE;
3462expand_string_message = US"";
3463
3464while (*s != 0)
3465 {
3466 uschar *value;
3467 uschar name[256];
3468
3469 /* \ escapes the next character, which must exist, or else
3470 the expansion fails. There's a special escape, \N, which causes
3471 copying of the subject verbatim up to the next \N. Otherwise,
3472 the escapes are the standard set. */
3473
3474 if (*s == '\\')
3475 {
3476 if (s[1] == 0)
3477 {
3478 expand_string_message = US"\\ at end of string";
3479 goto EXPAND_FAILED;
3480 }
3481
3482 if (s[1] == 'N')
3483 {
3484 uschar *t = s + 2;
3485 for (s = t; *s != 0; s++) if (*s == '\\' && s[1] == 'N') break;
3486 yield = string_cat(yield, &size, &ptr, t, s - t);
3487 if (*s != 0) s += 2;
3488 }
3489
3490 else
3491 {
3492 uschar ch[1];
3493 ch[0] = string_interpret_escape(&s);
3494 s++;
3495 yield = string_cat(yield, &size, &ptr, ch, 1);
3496 }
3497
3498 continue;
3499 }
3500
3501 /* Anything other than $ is just copied verbatim, unless we are
3502 looking for a terminating } character. */
3503
3504 if (ket_ends && *s == '}') break;
3505
da6dbe26 3506 if (*s != '$' || !honour_dollar)
059ec3d9
PH
3507 {
3508 yield = string_cat(yield, &size, &ptr, s++, 1);
3509 continue;
3510 }
3511
3512 /* No { after the $ - must be a plain name or a number for string
3513 match variable. There has to be a fudge for variables that are the
3514 names of header fields preceded by "$header_" because header field
3515 names can contain any printing characters except space and colon.
3516 For those that don't like typing this much, "$h_" is a synonym for
3517 "$header_". A non-existent header yields a NULL value; nothing is
3518 inserted. */
3519
3520 if (isalpha((*(++s))))
3521 {
3522 int len;
3523 int newsize = 0;
3524
3525 s = read_name(name, sizeof(name), s, US"_");
3526
3527 /* If this is the first thing to be expanded, release the pre-allocated
3528 buffer. */
3529
3530 if (ptr == 0 && yield != NULL)
3531 {
d6b4d938 3532 if (resetok) store_reset(yield);
059ec3d9
PH
3533 yield = NULL;
3534 size = 0;
3535 }
3536
3537 /* Header */
3538
3539 if (Ustrncmp(name, "h_", 2) == 0 ||
3540 Ustrncmp(name, "rh_", 3) == 0 ||
3541 Ustrncmp(name, "bh_", 3) == 0 ||
3542 Ustrncmp(name, "header_", 7) == 0 ||
3543 Ustrncmp(name, "rheader_", 8) == 0 ||
3544 Ustrncmp(name, "bheader_", 8) == 0)
3545 {
3546 BOOL want_raw = (name[0] == 'r')? TRUE : FALSE;
3547 uschar *charset = (name[0] == 'b')? NULL : headers_charset;
3548 s = read_header_name(name, sizeof(name), s);
3549 value = find_header(name, FALSE, &newsize, want_raw, charset);
3550
3551 /* If we didn't find the header, and the header contains a closing brace
0d85fa3f 3552 character, this may be a user error where the terminating colon
059ec3d9
PH
3553 has been omitted. Set a flag to adjust the error message in this case.
3554 But there is no error here - nothing gets inserted. */
3555
3556 if (value == NULL)
3557 {
3558 if (Ustrchr(name, '}') != NULL) malformed_header = TRUE;
3559 continue;
3560 }
3561 }
3562
3563 /* Variable */
3564
3565 else
3566 {
3567 value = find_variable(name, FALSE, skipping, &newsize);
3568 if (value == NULL)
3569 {
3570 expand_string_message =
3571 string_sprintf("unknown variable name \"%s\"", name);
641cb756 3572 check_variable_error_message(name);
059ec3d9
PH
3573 goto EXPAND_FAILED;
3574 }
3575 }
3576
3577 /* If the data is known to be in a new buffer, newsize will be set to the
3578 size of that buffer. If this is the first thing in an expansion string,
3579 yield will be NULL; just point it at the new store instead of copying. Many
3580 expansion strings contain just one reference, so this is a useful
3581 optimization, especially for humungous headers. */
3582
3583 len = Ustrlen(value);
3584 if (yield == NULL && newsize != 0)
3585 {
3586 yield = value;
3587 size = newsize;
3588 ptr = len;
3589 }
3590 else yield = string_cat(yield, &size, &ptr, value, len);
3591
3592 continue;
3593 }
3594
3595 if (isdigit(*s))
3596 {
3597 int n;
3598 s = read_number(&n, s);
3599 if (n >= 0 && n <= expand_nmax)
3600 yield = string_cat(yield, &size, &ptr, expand_nstring[n],
3601 expand_nlength[n]);
3602 continue;
3603 }
3604
3605 /* Otherwise, if there's no '{' after $ it's an error. */
3606
3607 if (*s != '{')
3608 {
3609 expand_string_message = US"$ not followed by letter, digit, or {";
3610 goto EXPAND_FAILED;
3611 }
3612
3613 /* After { there can be various things, but they all start with
3614 an initial word, except for a number for a string match variable. */
3615
3616 if (isdigit((*(++s))))
3617 {
3618 int n;
3619 s = read_number(&n, s);
3620 if (*s++ != '}')
3621 {
3622 expand_string_message = US"} expected after number";
3623 goto EXPAND_FAILED;
3624 }
3625 if (n >= 0 && n <= expand_nmax)
3626 yield = string_cat(yield, &size, &ptr, expand_nstring[n],
3627 expand_nlength[n]);
3628 continue;
3629 }
3630
3631 if (!isalpha(*s))
3632 {
3633 expand_string_message = US"letter or digit expected after ${";
3634 goto EXPAND_FAILED;
3635 }
3636
3637 /* Allow "-" in names to cater for substrings with negative
3638 arguments. Since we are checking for known names after { this is
3639 OK. */
3640
3641 s = read_name(name, sizeof(name), s, US"_-");
3642 item_type = chop_match(name, item_table, sizeof(item_table)/sizeof(uschar *));
3643
3644 switch(item_type)
3645 {
723c72e6
JH
3646 /* Call an ACL from an expansion. We feed data in via $address_data.
3647 If the ACL returns acceptance we return content set by "message ="
3648 There is currently no limit on recursion; this would have us call
3649 acl_check_internal() directly and get a current level from somewhere.
3650 */
3651
3652 case EITEM_ACL:
3653 {
3654 int rc;
3655 uschar *sub[2];
3656 uschar *new_yield;
3657 uschar *user_msg;
3658 uschar *log_msg;
3659 switch(read_subs(sub, 2, 1, &s, skipping, TRUE, US"acl"))
3660 {
3661 case 1: goto EXPAND_FAILED_CURLY;
3662 case 2:
3663 case 3: goto EXPAND_FAILED;
3664 }
3665 if (skipping) continue;
3666
3667 DEBUG(D_expand)
3668 debug_printf("expanding: acl: %s arg: %s\n", sub[0], sub[1]?sub[1]:US"<none>");
3669
3670 deliver_address_data = sub[1];
3671 switch(rc = acl_check(ACL_WHERE_EXPANSION, NULL, sub[0], &user_msg, &log_msg))
3672 {
3673 case OK:
3674 if (user_msg)
3675 yield = string_cat(yield, &size, &ptr, user_msg, Ustrlen(user_msg));
3676 continue;
3677 case DEFER:
3678 continue;
3679 default:
3680 expand_string_message = string_sprintf("acl \"%s\" did not accept", sub[0]);
3681 goto EXPAND_FAILED;
3682 }
3683 }
3684
059ec3d9
PH
3685 /* Handle conditionals - preserve the values of the numerical expansion
3686 variables in case they get changed by a regular expression match in the
3687 condition. If not, they retain their external settings. At the end
3688 of this "if" section, they get restored to their previous values. */
3689
3690 case EITEM_IF:
3691 {
3692 BOOL cond = FALSE;
3693 uschar *next_s;
3694 int save_expand_nmax =
3695 save_expand_strings(save_expand_nstring, save_expand_nlength);
3696
3697 while (isspace(*s)) s++;
3698 next_s = eval_condition(s, skipping? NULL : &cond);
3699 if (next_s == NULL) goto EXPAND_FAILED; /* message already set */
3700
3701 DEBUG(D_expand)
3702 debug_printf("condition: %.*s\n result: %s\n", (int)(next_s - s), s,
3703 cond? "true" : "false");
3704
3705 s = next_s;
3706
3707 /* The handling of "yes" and "no" result strings is now in a separate
3708 function that is also used by ${lookup} and ${extract} and ${run}. */
3709
3710 switch(process_yesno(
3711 skipping, /* were previously skipping */
3712 cond, /* success/failure indicator */
3713 lookup_value, /* value to reset for string2 */
3714 &s, /* input pointer */
3715 &yield, /* output pointer */
3716 &size, /* output size */
3717 &ptr, /* output current point */
3718 US"if")) /* condition type */
3719 {
3720 case 1: goto EXPAND_FAILED; /* when all is well, the */
3721 case 2: goto EXPAND_FAILED_CURLY; /* returned value is 0 */
3722 }
3723
3724 /* Restore external setting of expansion variables for continuation
3725 at this level. */
3726
3727 restore_expand_strings(save_expand_nmax, save_expand_nstring,
3728 save_expand_nlength);
3729 continue;
3730 }
3731
3732 /* Handle database lookups unless locked out. If "skipping" is TRUE, we are
3733 expanding an internal string that isn't actually going to be used. All we
3734 need to do is check the syntax, so don't do a lookup at all. Preserve the
3735 values of the numerical expansion variables in case they get changed by a
3736 partial lookup. If not, they retain their external settings. At the end
3737 of this "lookup" section, they get restored to their previous values. */
3738
3739 case EITEM_LOOKUP:
3740 {
3741 int stype, partial, affixlen, starflags;
3742 int expand_setup = 0;
3743 int nameptr = 0;
3744 uschar *key, *filename, *affix;
3745 uschar *save_lookup_value = lookup_value;
3746 int save_expand_nmax =
3747 save_expand_strings(save_expand_nstring, save_expand_nlength);
3748
3749 if ((expand_forbid & RDO_LOOKUP) != 0)
3750 {
3751 expand_string_message = US"lookup expansions are not permitted";
3752 goto EXPAND_FAILED;
3753 }
3754
3755 /* Get the key we are to look up for single-key+file style lookups.
3756 Otherwise set the key NULL pro-tem. */
3757
3758 while (isspace(*s)) s++;
3759 if (*s == '{')
3760 {
da6dbe26 3761 key = expand_string_internal(s+1, TRUE, &s, skipping, TRUE);
059ec3d9
PH
3762 if (key == NULL) goto EXPAND_FAILED;
3763 if (*s++ != '}') goto EXPAND_FAILED_CURLY;
3764 while (isspace(*s)) s++;
3765 }
3766 else key = NULL;
3767
3768 /* Find out the type of database */
3769
3770 if (!isalpha(*s))
3771 {
3772 expand_string_message = US"missing lookup type";
3773 goto EXPAND_FAILED;
3774 }
3775
3776 /* The type is a string that may contain special characters of various
3777 kinds. Allow everything except space or { to appear; the actual content
3778 is checked by search_findtype_partial. */
3779
3780 while (*s != 0 && *s != '{' && !isspace(*s))
3781 {
3782 if (nameptr < sizeof(name) - 1) name[nameptr++] = *s;
3783 s++;
3784 }
3785 name[nameptr] = 0;
3786 while (isspace(*s)) s++;
3787
3788 /* Now check for the individual search type and any partial or default
3789 options. Only those types that are actually in the binary are valid. */
3790
3791 stype = search_findtype_partial(name, &partial, &affix, &affixlen,
3792 &starflags);
3793 if (stype < 0)
3794 {
3795 expand_string_message = search_error_message;
3796 goto EXPAND_FAILED;
3797 }
3798
3799 /* Check that a key was provided for those lookup types that need it,
3800 and was not supplied for those that use the query style. */
3801
13b685f9 3802 if (!mac_islookup(stype, lookup_querystyle|lookup_absfilequery))
059ec3d9
PH
3803 {
3804 if (key == NULL)
3805 {
3806 expand_string_message = string_sprintf("missing {key} for single-"
3807 "key \"%s\" lookup", name);
3808 goto EXPAND_FAILED;
3809 }
3810 }
3811 else
3812 {
3813 if (key != NULL)
3814 {
3815 expand_string_message = string_sprintf("a single key was given for "
3816 "lookup type \"%s\", which is not a single-key lookup type", name);
3817 goto EXPAND_FAILED;
3818 }
3819 }
3820
3821 /* Get the next string in brackets and expand it. It is the file name for
13b685f9
PH
3822 single-key+file lookups, and the whole query otherwise. In the case of
3823 queries that also require a file name (e.g. sqlite), the file name comes
3824 first. */
059ec3d9
PH
3825
3826 if (*s != '{') goto EXPAND_FAILED_CURLY;
da6dbe26 3827 filename = expand_string_internal(s+1, TRUE, &s, skipping, TRUE);
059ec3d9
PH
3828 if (filename == NULL) goto EXPAND_FAILED;
3829 if (*s++ != '}') goto EXPAND_FAILED_CURLY;
3830 while (isspace(*s)) s++;
3831
3832 /* If this isn't a single-key+file lookup, re-arrange the variables
13b685f9
PH
3833 to be appropriate for the search_ functions. For query-style lookups,
3834 there is just a "key", and no file name. For the special query-style +
3835 file types, the query (i.e. "key") starts with a file name. */
059ec3d9
PH
3836
3837 if (key == NULL)
3838 {
13b685f9 3839 while (isspace(*filename)) filename++;
059ec3d9 3840 key = filename;
13b685f9
PH
3841
3842 if (mac_islookup(stype, lookup_querystyle))
3843 {
3844 filename = NULL;
3845 }
3846 else
3847 {
3848 if (*filename != '/')
3849 {
3850 expand_string_message = string_sprintf(
3851 "absolute file name expected for \"%s\" lookup", name);
3852 goto EXPAND_FAILED;
3853 }
3854 while (*key != 0 && !isspace(*key)) key++;
3855 if (*key != 0) *key++ = 0;
3856 }
059ec3d9
PH
3857 }
3858
3859 /* If skipping, don't do the next bit - just lookup_value == NULL, as if
3860 the entry was not found. Note that there is no search_close() function.
3861 Files are left open in case of re-use. At suitable places in higher logic,
3862 search_tidyup() is called to tidy all open files. This can save opening
3863 the same file several times. However, files may also get closed when
3864 others are opened, if too many are open at once. The rule is that a
3865 handle should not be used after a second search_open().
3866
3867 Request that a partial search sets up $1 and maybe $2 by passing
3868 expand_setup containing zero. If its value changes, reset expand_nmax,
3869 since new variables will have been set. Note that at the end of this
3870 "lookup" section, the old numeric variables are restored. */
3871
3872 if (skipping)
3873 lookup_value = NULL;
3874 else
3875 {
3876 void *handle = search_open(filename, stype, 0, NULL, NULL);
3877 if (handle == NULL)