Defensive coding in ${run }
[exim.git] / src / src / expand.c
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2016 */
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
14 /* Recursively called function */
15
16 static uschar *expand_string_internal(const uschar *, BOOL, const uschar **, BOOL, BOOL, BOOL *);
17 static int_eximarith_t expanded_string_integer(const uschar *, BOOL);
18
19 #ifdef STAND_ALONE
20 #ifndef SUPPORT_CRYPTEQ
21 #define SUPPORT_CRYPTEQ
22 #endif
23 #endif
24
25 #ifdef LOOKUP_LDAP
26 #include "lookups/ldap.h"
27 #endif
28
29 #ifdef SUPPORT_CRYPTEQ
30 #ifdef CRYPT_H
31 #include <crypt.h>
32 #endif
33 #ifndef HAVE_CRYPT16
34 extern char* crypt16(char*, char*);
35 #endif
36 #endif
37
38 /* The handling of crypt16() is a mess. I will record below the analysis of the
39 mess that was sent to me. We decided, however, to make changing this very low
40 priority, because in practice people are moving away from the crypt()
41 algorithms nowadays, so it doesn't seem worth it.
42
43 <quote>
44 There is an algorithm named "crypt16" in Ultrix and Tru64. It crypts
45 the first 8 characters of the password using a 20-round version of crypt
46 (standard crypt does 25 rounds). It then crypts the next 8 characters,
47 or an empty block if the password is less than 9 characters, using a
48 20-round version of crypt and the same salt as was used for the first
49 block. Charaters after the first 16 are ignored. It always generates
50 a 16-byte hash, which is expressed together with the salt as a string
51 of 24 base 64 digits. Here are some links to peruse:
52
53 http://cvs.pld.org.pl/pam/pamcrypt/crypt16.c?rev=1.2
54 http://seclists.org/bugtraq/1999/Mar/0076.html
55
56 There's a different algorithm named "bigcrypt" in HP-UX, Digital Unix,
57 and OSF/1. This is the same as the standard crypt if given a password
58 of 8 characters or less. If given more, it first does the same as crypt
59 using the first 8 characters, then crypts the next 8 (the 9th to 16th)
60 using as salt the first two base 64 digits from the first hash block.
61 If the password is more than 16 characters then it crypts the 17th to 24th
62 characters using as salt the first two base 64 digits from the second hash
63 block. And so on: I've seen references to it cutting off the password at
64 40 characters (5 blocks), 80 (10 blocks), or 128 (16 blocks). Some links:
65
66 http://cvs.pld.org.pl/pam/pamcrypt/bigcrypt.c?rev=1.2
67 http://seclists.org/bugtraq/1999/Mar/0109.html
68 http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/HTML/AA-Q0R2D-
69 TET1_html/sec.c222.html#no_id_208
70
71 Exim has something it calls "crypt16". It will either use a native
72 crypt16 or its own implementation. A native crypt16 will presumably
73 be the one that I called "crypt16" above. The internal "crypt16"
74 function, however, is a two-block-maximum implementation of what I called
75 "bigcrypt". The documentation matches the internal code.
76
77 I suspect that whoever did the "crypt16" stuff for Exim didn't realise
78 that crypt16 and bigcrypt were different things.
79
80 Exim uses the LDAP-style scheme identifier "{crypt16}" to refer
81 to whatever it is using under that name. This unfortunately sets a
82 precedent for using "{crypt16}" to identify two incompatible algorithms
83 whose output can't be distinguished. With "{crypt16}" thus rendered
84 ambiguous, I suggest you deprecate it and invent two new identifiers
85 for the two algorithms.
86
87 Both crypt16 and bigcrypt are very poor algorithms, btw. Hashing parts
88 of the password separately means they can be cracked separately, so
89 the double-length hash only doubles the cracking effort instead of
90 squaring it. I recommend salted SHA-1 ({SSHA}), or the Blowfish-based
91 bcrypt ({CRYPT}$2a$).
92 </quote>
93 */
94
95
96
97 /*************************************************
98 * Local statics and tables *
99 *************************************************/
100
101 /* Table of item names, and corresponding switch numbers. The names must be in
102 alphabetical order. */
103
104 static uschar *item_table[] = {
105 US"acl",
106 US"certextract",
107 US"dlfunc",
108 US"env",
109 US"extract",
110 US"filter",
111 US"hash",
112 US"hmac",
113 US"if",
114 #ifdef SUPPORT_I18N
115 US"imapfolder",
116 #endif
117 US"length",
118 US"listextract",
119 US"lookup",
120 US"map",
121 US"nhash",
122 US"perl",
123 US"prvs",
124 US"prvscheck",
125 US"readfile",
126 US"readsocket",
127 US"reduce",
128 US"run",
129 US"sg",
130 US"sort",
131 US"substr",
132 US"tr" };
133
134 enum {
135 EITEM_ACL,
136 EITEM_CERTEXTRACT,
137 EITEM_DLFUNC,
138 EITEM_ENV,
139 EITEM_EXTRACT,
140 EITEM_FILTER,
141 EITEM_HASH,
142 EITEM_HMAC,
143 EITEM_IF,
144 #ifdef SUPPORT_I18N
145 EITEM_IMAPFOLDER,
146 #endif
147 EITEM_LENGTH,
148 EITEM_LISTEXTRACT,
149 EITEM_LOOKUP,
150 EITEM_MAP,
151 EITEM_NHASH,
152 EITEM_PERL,
153 EITEM_PRVS,
154 EITEM_PRVSCHECK,
155 EITEM_READFILE,
156 EITEM_READSOCK,
157 EITEM_REDUCE,
158 EITEM_RUN,
159 EITEM_SG,
160 EITEM_SORT,
161 EITEM_SUBSTR,
162 EITEM_TR };
163
164 /* Tables of operator names, and corresponding switch numbers. The names must be
165 in alphabetical order. There are two tables, because underscore is used in some
166 cases to introduce arguments, whereas for other it is part of the name. This is
167 an historical mis-design. */
168
169 static uschar *op_table_underscore[] = {
170 US"from_utf8",
171 US"local_part",
172 US"quote_local_part",
173 US"reverse_ip",
174 US"time_eval",
175 US"time_interval"
176 #ifdef SUPPORT_I18N
177 ,US"utf8_domain_from_alabel",
178 US"utf8_domain_to_alabel",
179 US"utf8_localpart_from_alabel",
180 US"utf8_localpart_to_alabel"
181 #endif
182 };
183
184 enum {
185 EOP_FROM_UTF8,
186 EOP_LOCAL_PART,
187 EOP_QUOTE_LOCAL_PART,
188 EOP_REVERSE_IP,
189 EOP_TIME_EVAL,
190 EOP_TIME_INTERVAL
191 #ifdef SUPPORT_I18N
192 ,EOP_UTF8_DOMAIN_FROM_ALABEL,
193 EOP_UTF8_DOMAIN_TO_ALABEL,
194 EOP_UTF8_LOCALPART_FROM_ALABEL,
195 EOP_UTF8_LOCALPART_TO_ALABEL
196 #endif
197 };
198
199 static uschar *op_table_main[] = {
200 US"address",
201 US"addresses",
202 US"base32",
203 US"base32d",
204 US"base62",
205 US"base62d",
206 US"base64",
207 US"base64d",
208 US"domain",
209 US"escape",
210 US"eval",
211 US"eval10",
212 US"expand",
213 US"h",
214 US"hash",
215 US"hex2b64",
216 US"hexquote",
217 US"ipv6denorm",
218 US"ipv6norm",
219 US"l",
220 US"lc",
221 US"length",
222 US"listcount",
223 US"listnamed",
224 US"mask",
225 US"md5",
226 US"nh",
227 US"nhash",
228 US"quote",
229 US"randint",
230 US"rfc2047",
231 US"rfc2047d",
232 US"rxquote",
233 US"s",
234 US"sha1",
235 US"sha256",
236 US"sha3",
237 US"stat",
238 US"str2b64",
239 US"strlen",
240 US"substr",
241 US"uc",
242 US"utf8clean" };
243
244 enum {
245 EOP_ADDRESS = nelem(op_table_underscore),
246 EOP_ADDRESSES,
247 EOP_BASE32,
248 EOP_BASE32D,
249 EOP_BASE62,
250 EOP_BASE62D,
251 EOP_BASE64,
252 EOP_BASE64D,
253 EOP_DOMAIN,
254 EOP_ESCAPE,
255 EOP_EVAL,
256 EOP_EVAL10,
257 EOP_EXPAND,
258 EOP_H,
259 EOP_HASH,
260 EOP_HEX2B64,
261 EOP_HEXQUOTE,
262 EOP_IPV6DENORM,
263 EOP_IPV6NORM,
264 EOP_L,
265 EOP_LC,
266 EOP_LENGTH,
267 EOP_LISTCOUNT,
268 EOP_LISTNAMED,
269 EOP_MASK,
270 EOP_MD5,
271 EOP_NH,
272 EOP_NHASH,
273 EOP_QUOTE,
274 EOP_RANDINT,
275 EOP_RFC2047,
276 EOP_RFC2047D,
277 EOP_RXQUOTE,
278 EOP_S,
279 EOP_SHA1,
280 EOP_SHA256,
281 EOP_SHA3,
282 EOP_STAT,
283 EOP_STR2B64,
284 EOP_STRLEN,
285 EOP_SUBSTR,
286 EOP_UC,
287 EOP_UTF8CLEAN };
288
289
290 /* Table of condition names, and corresponding switch numbers. The names must
291 be in alphabetical order. */
292
293 static uschar *cond_table[] = {
294 US"<",
295 US"<=",
296 US"=",
297 US"==", /* Backward compatibility */
298 US">",
299 US">=",
300 US"acl",
301 US"and",
302 US"bool",
303 US"bool_lax",
304 US"crypteq",
305 US"def",
306 US"eq",
307 US"eqi",
308 US"exists",
309 US"first_delivery",
310 US"forall",
311 US"forany",
312 US"ge",
313 US"gei",
314 US"gt",
315 US"gti",
316 US"inlist",
317 US"inlisti",
318 US"isip",
319 US"isip4",
320 US"isip6",
321 US"ldapauth",
322 US"le",
323 US"lei",
324 US"lt",
325 US"lti",
326 US"match",
327 US"match_address",
328 US"match_domain",
329 US"match_ip",
330 US"match_local_part",
331 US"or",
332 US"pam",
333 US"pwcheck",
334 US"queue_running",
335 US"radius",
336 US"saslauthd"
337 };
338
339 enum {
340 ECOND_NUM_L,
341 ECOND_NUM_LE,
342 ECOND_NUM_E,
343 ECOND_NUM_EE,
344 ECOND_NUM_G,
345 ECOND_NUM_GE,
346 ECOND_ACL,
347 ECOND_AND,
348 ECOND_BOOL,
349 ECOND_BOOL_LAX,
350 ECOND_CRYPTEQ,
351 ECOND_DEF,
352 ECOND_STR_EQ,
353 ECOND_STR_EQI,
354 ECOND_EXISTS,
355 ECOND_FIRST_DELIVERY,
356 ECOND_FORALL,
357 ECOND_FORANY,
358 ECOND_STR_GE,
359 ECOND_STR_GEI,
360 ECOND_STR_GT,
361 ECOND_STR_GTI,
362 ECOND_INLIST,
363 ECOND_INLISTI,
364 ECOND_ISIP,
365 ECOND_ISIP4,
366 ECOND_ISIP6,
367 ECOND_LDAPAUTH,
368 ECOND_STR_LE,
369 ECOND_STR_LEI,
370 ECOND_STR_LT,
371 ECOND_STR_LTI,
372 ECOND_MATCH,
373 ECOND_MATCH_ADDRESS,
374 ECOND_MATCH_DOMAIN,
375 ECOND_MATCH_IP,
376 ECOND_MATCH_LOCAL_PART,
377 ECOND_OR,
378 ECOND_PAM,
379 ECOND_PWCHECK,
380 ECOND_QUEUE_RUNNING,
381 ECOND_RADIUS,
382 ECOND_SASLAUTHD
383 };
384
385
386 /* Types of table entry */
387
388 enum vtypes {
389 vtype_int, /* value is address of int */
390 vtype_filter_int, /* ditto, but recognized only when filtering */
391 vtype_ino, /* value is address of ino_t (not always an int) */
392 vtype_uid, /* value is address of uid_t (not always an int) */
393 vtype_gid, /* value is address of gid_t (not always an int) */
394 vtype_bool, /* value is address of bool */
395 vtype_stringptr, /* value is address of pointer to string */
396 vtype_msgbody, /* as stringptr, but read when first required */
397 vtype_msgbody_end, /* ditto, the end of the message */
398 vtype_msgheaders, /* the message's headers, processed */
399 vtype_msgheaders_raw, /* the message's headers, unprocessed */
400 vtype_localpart, /* extract local part from string */
401 vtype_domain, /* extract domain from string */
402 vtype_string_func, /* value is string returned by given function */
403 vtype_todbsdin, /* value not used; generate BSD inbox tod */
404 vtype_tode, /* value not used; generate tod in epoch format */
405 vtype_todel, /* value not used; generate tod in epoch/usec format */
406 vtype_todf, /* value not used; generate full tod */
407 vtype_todl, /* value not used; generate log tod */
408 vtype_todlf, /* value not used; generate log file datestamp tod */
409 vtype_todzone, /* value not used; generate time zone only */
410 vtype_todzulu, /* value not used; generate zulu tod */
411 vtype_reply, /* value not used; get reply from headers */
412 vtype_pid, /* value not used; result is pid */
413 vtype_host_lookup, /* value not used; get host name */
414 vtype_load_avg, /* value not used; result is int from os_getloadavg */
415 vtype_pspace, /* partition space; value is T/F for spool/log */
416 vtype_pinodes, /* partition inodes; value is T/F for spool/log */
417 vtype_cert /* SSL certificate */
418 #ifndef DISABLE_DKIM
419 ,vtype_dkim /* Lookup of value in DKIM signature */
420 #endif
421 };
422
423 /* Type for main variable table */
424
425 typedef struct {
426 const char *name;
427 enum vtypes type;
428 void *value;
429 } var_entry;
430
431 /* Type for entries pointing to address/length pairs. Not currently
432 in use. */
433
434 typedef struct {
435 uschar **address;
436 int *length;
437 } alblock;
438
439 static uschar * fn_recipients(void);
440
441 /* This table must be kept in alphabetical order. */
442
443 static var_entry var_table[] = {
444 /* WARNING: Do not invent variables whose names start acl_c or acl_m because
445 they will be confused with user-creatable ACL variables. */
446 { "acl_arg1", vtype_stringptr, &acl_arg[0] },
447 { "acl_arg2", vtype_stringptr, &acl_arg[1] },
448 { "acl_arg3", vtype_stringptr, &acl_arg[2] },
449 { "acl_arg4", vtype_stringptr, &acl_arg[3] },
450 { "acl_arg5", vtype_stringptr, &acl_arg[4] },
451 { "acl_arg6", vtype_stringptr, &acl_arg[5] },
452 { "acl_arg7", vtype_stringptr, &acl_arg[6] },
453 { "acl_arg8", vtype_stringptr, &acl_arg[7] },
454 { "acl_arg9", vtype_stringptr, &acl_arg[8] },
455 { "acl_narg", vtype_int, &acl_narg },
456 { "acl_verify_message", vtype_stringptr, &acl_verify_message },
457 { "address_data", vtype_stringptr, &deliver_address_data },
458 { "address_file", vtype_stringptr, &address_file },
459 { "address_pipe", vtype_stringptr, &address_pipe },
460 { "authenticated_fail_id",vtype_stringptr, &authenticated_fail_id },
461 { "authenticated_id", vtype_stringptr, &authenticated_id },
462 { "authenticated_sender",vtype_stringptr, &authenticated_sender },
463 { "authentication_failed",vtype_int, &authentication_failed },
464 #ifdef WITH_CONTENT_SCAN
465 { "av_failed", vtype_int, &av_failed },
466 #endif
467 #ifdef EXPERIMENTAL_BRIGHTMAIL
468 { "bmi_alt_location", vtype_stringptr, &bmi_alt_location },
469 { "bmi_base64_tracker_verdict", vtype_stringptr, &bmi_base64_tracker_verdict },
470 { "bmi_base64_verdict", vtype_stringptr, &bmi_base64_verdict },
471 { "bmi_deliver", vtype_int, &bmi_deliver },
472 #endif
473 { "body_linecount", vtype_int, &body_linecount },
474 { "body_zerocount", vtype_int, &body_zerocount },
475 { "bounce_recipient", vtype_stringptr, &bounce_recipient },
476 { "bounce_return_size_limit", vtype_int, &bounce_return_size_limit },
477 { "caller_gid", vtype_gid, &real_gid },
478 { "caller_uid", vtype_uid, &real_uid },
479 { "callout_address", vtype_stringptr, &callout_address },
480 { "compile_date", vtype_stringptr, &version_date },
481 { "compile_number", vtype_stringptr, &version_cnumber },
482 { "config_dir", vtype_stringptr, &config_main_directory },
483 { "config_file", vtype_stringptr, &config_main_filename },
484 { "csa_status", vtype_stringptr, &csa_status },
485 #ifdef EXPERIMENTAL_DCC
486 { "dcc_header", vtype_stringptr, &dcc_header },
487 { "dcc_result", vtype_stringptr, &dcc_result },
488 #endif
489 #ifndef DISABLE_DKIM
490 { "dkim_algo", vtype_dkim, (void *)DKIM_ALGO },
491 { "dkim_bodylength", vtype_dkim, (void *)DKIM_BODYLENGTH },
492 { "dkim_canon_body", vtype_dkim, (void *)DKIM_CANON_BODY },
493 { "dkim_canon_headers", vtype_dkim, (void *)DKIM_CANON_HEADERS },
494 { "dkim_copiedheaders", vtype_dkim, (void *)DKIM_COPIEDHEADERS },
495 { "dkim_created", vtype_dkim, (void *)DKIM_CREATED },
496 { "dkim_cur_signer", vtype_stringptr, &dkim_cur_signer },
497 { "dkim_domain", vtype_stringptr, &dkim_signing_domain },
498 { "dkim_expires", vtype_dkim, (void *)DKIM_EXPIRES },
499 { "dkim_headernames", vtype_dkim, (void *)DKIM_HEADERNAMES },
500 { "dkim_identity", vtype_dkim, (void *)DKIM_IDENTITY },
501 { "dkim_key_granularity",vtype_dkim, (void *)DKIM_KEY_GRANULARITY },
502 { "dkim_key_length", vtype_int, &dkim_key_length },
503 { "dkim_key_nosubdomains",vtype_dkim, (void *)DKIM_NOSUBDOMAINS },
504 { "dkim_key_notes", vtype_dkim, (void *)DKIM_KEY_NOTES },
505 { "dkim_key_srvtype", vtype_dkim, (void *)DKIM_KEY_SRVTYPE },
506 { "dkim_key_testing", vtype_dkim, (void *)DKIM_KEY_TESTING },
507 { "dkim_selector", vtype_stringptr, &dkim_signing_selector },
508 { "dkim_signers", vtype_stringptr, &dkim_signers },
509 { "dkim_verify_reason", vtype_dkim, (void *)DKIM_VERIFY_REASON },
510 { "dkim_verify_status", vtype_dkim, (void *)DKIM_VERIFY_STATUS},
511 #endif
512 #ifdef EXPERIMENTAL_DMARC
513 { "dmarc_ar_header", vtype_stringptr, &dmarc_ar_header },
514 { "dmarc_domain_policy", vtype_stringptr, &dmarc_domain_policy },
515 { "dmarc_status", vtype_stringptr, &dmarc_status },
516 { "dmarc_status_text", vtype_stringptr, &dmarc_status_text },
517 { "dmarc_used_domain", vtype_stringptr, &dmarc_used_domain },
518 #endif
519 { "dnslist_domain", vtype_stringptr, &dnslist_domain },
520 { "dnslist_matched", vtype_stringptr, &dnslist_matched },
521 { "dnslist_text", vtype_stringptr, &dnslist_text },
522 { "dnslist_value", vtype_stringptr, &dnslist_value },
523 { "domain", vtype_stringptr, &deliver_domain },
524 { "domain_data", vtype_stringptr, &deliver_domain_data },
525 #ifndef DISABLE_EVENT
526 { "event_data", vtype_stringptr, &event_data },
527
528 /*XXX want to use generic vars for as many of these as possible*/
529 { "event_defer_errno", vtype_int, &event_defer_errno },
530
531 { "event_name", vtype_stringptr, &event_name },
532 #endif
533 { "exim_gid", vtype_gid, &exim_gid },
534 { "exim_path", vtype_stringptr, &exim_path },
535 { "exim_uid", vtype_uid, &exim_uid },
536 { "exim_version", vtype_stringptr, &version_string },
537 { "headers_added", vtype_string_func, &fn_hdrs_added },
538 { "home", vtype_stringptr, &deliver_home },
539 { "host", vtype_stringptr, &deliver_host },
540 { "host_address", vtype_stringptr, &deliver_host_address },
541 { "host_data", vtype_stringptr, &host_data },
542 { "host_lookup_deferred",vtype_int, &host_lookup_deferred },
543 { "host_lookup_failed", vtype_int, &host_lookup_failed },
544 { "host_port", vtype_int, &deliver_host_port },
545 { "initial_cwd", vtype_stringptr, &initial_cwd },
546 { "inode", vtype_ino, &deliver_inode },
547 { "interface_address", vtype_stringptr, &interface_address },
548 { "interface_port", vtype_int, &interface_port },
549 { "item", vtype_stringptr, &iterate_item },
550 #ifdef LOOKUP_LDAP
551 { "ldap_dn", vtype_stringptr, &eldap_dn },
552 #endif
553 { "load_average", vtype_load_avg, NULL },
554 { "local_part", vtype_stringptr, &deliver_localpart },
555 { "local_part_data", vtype_stringptr, &deliver_localpart_data },
556 { "local_part_prefix", vtype_stringptr, &deliver_localpart_prefix },
557 { "local_part_suffix", vtype_stringptr, &deliver_localpart_suffix },
558 { "local_scan_data", vtype_stringptr, &local_scan_data },
559 { "local_user_gid", vtype_gid, &local_user_gid },
560 { "local_user_uid", vtype_uid, &local_user_uid },
561 { "localhost_number", vtype_int, &host_number },
562 { "log_inodes", vtype_pinodes, (void *)FALSE },
563 { "log_space", vtype_pspace, (void *)FALSE },
564 { "lookup_dnssec_authenticated",vtype_stringptr,&lookup_dnssec_authenticated},
565 { "mailstore_basename", vtype_stringptr, &mailstore_basename },
566 #ifdef WITH_CONTENT_SCAN
567 { "malware_name", vtype_stringptr, &malware_name },
568 #endif
569 { "max_received_linelength", vtype_int, &max_received_linelength },
570 { "message_age", vtype_int, &message_age },
571 { "message_body", vtype_msgbody, &message_body },
572 { "message_body_end", vtype_msgbody_end, &message_body_end },
573 { "message_body_size", vtype_int, &message_body_size },
574 { "message_exim_id", vtype_stringptr, &message_id },
575 { "message_headers", vtype_msgheaders, NULL },
576 { "message_headers_raw", vtype_msgheaders_raw, NULL },
577 { "message_id", vtype_stringptr, &message_id },
578 { "message_linecount", vtype_int, &message_linecount },
579 { "message_size", vtype_int, &message_size },
580 #ifdef SUPPORT_I18N
581 { "message_smtputf8", vtype_bool, &message_smtputf8 },
582 #endif
583 #ifdef WITH_CONTENT_SCAN
584 { "mime_anomaly_level", vtype_int, &mime_anomaly_level },
585 { "mime_anomaly_text", vtype_stringptr, &mime_anomaly_text },
586 { "mime_boundary", vtype_stringptr, &mime_boundary },
587 { "mime_charset", vtype_stringptr, &mime_charset },
588 { "mime_content_description", vtype_stringptr, &mime_content_description },
589 { "mime_content_disposition", vtype_stringptr, &mime_content_disposition },
590 { "mime_content_id", vtype_stringptr, &mime_content_id },
591 { "mime_content_size", vtype_int, &mime_content_size },
592 { "mime_content_transfer_encoding",vtype_stringptr, &mime_content_transfer_encoding },
593 { "mime_content_type", vtype_stringptr, &mime_content_type },
594 { "mime_decoded_filename", vtype_stringptr, &mime_decoded_filename },
595 { "mime_filename", vtype_stringptr, &mime_filename },
596 { "mime_is_coverletter", vtype_int, &mime_is_coverletter },
597 { "mime_is_multipart", vtype_int, &mime_is_multipart },
598 { "mime_is_rfc822", vtype_int, &mime_is_rfc822 },
599 { "mime_part_count", vtype_int, &mime_part_count },
600 #endif
601 { "n0", vtype_filter_int, &filter_n[0] },
602 { "n1", vtype_filter_int, &filter_n[1] },
603 { "n2", vtype_filter_int, &filter_n[2] },
604 { "n3", vtype_filter_int, &filter_n[3] },
605 { "n4", vtype_filter_int, &filter_n[4] },
606 { "n5", vtype_filter_int, &filter_n[5] },
607 { "n6", vtype_filter_int, &filter_n[6] },
608 { "n7", vtype_filter_int, &filter_n[7] },
609 { "n8", vtype_filter_int, &filter_n[8] },
610 { "n9", vtype_filter_int, &filter_n[9] },
611 { "original_domain", vtype_stringptr, &deliver_domain_orig },
612 { "original_local_part", vtype_stringptr, &deliver_localpart_orig },
613 { "originator_gid", vtype_gid, &originator_gid },
614 { "originator_uid", vtype_uid, &originator_uid },
615 { "parent_domain", vtype_stringptr, &deliver_domain_parent },
616 { "parent_local_part", vtype_stringptr, &deliver_localpart_parent },
617 { "pid", vtype_pid, NULL },
618 #ifndef DISABLE_PRDR
619 { "prdr_requested", vtype_bool, &prdr_requested },
620 #endif
621 { "primary_hostname", vtype_stringptr, &primary_hostname },
622 #if defined(SUPPORT_PROXY) || defined(SUPPORT_SOCKS)
623 { "proxy_external_address",vtype_stringptr, &proxy_external_address },
624 { "proxy_external_port", vtype_int, &proxy_external_port },
625 { "proxy_local_address", vtype_stringptr, &proxy_local_address },
626 { "proxy_local_port", vtype_int, &proxy_local_port },
627 { "proxy_session", vtype_bool, &proxy_session },
628 #endif
629 { "prvscheck_address", vtype_stringptr, &prvscheck_address },
630 { "prvscheck_keynum", vtype_stringptr, &prvscheck_keynum },
631 { "prvscheck_result", vtype_stringptr, &prvscheck_result },
632 { "qualify_domain", vtype_stringptr, &qualify_domain_sender },
633 { "qualify_recipient", vtype_stringptr, &qualify_domain_recipient },
634 { "queue_name", vtype_stringptr, &queue_name },
635 { "rcpt_count", vtype_int, &rcpt_count },
636 { "rcpt_defer_count", vtype_int, &rcpt_defer_count },
637 { "rcpt_fail_count", vtype_int, &rcpt_fail_count },
638 { "received_count", vtype_int, &received_count },
639 { "received_for", vtype_stringptr, &received_for },
640 { "received_ip_address", vtype_stringptr, &interface_address },
641 { "received_port", vtype_int, &interface_port },
642 { "received_protocol", vtype_stringptr, &received_protocol },
643 { "received_time", vtype_int, &received_time },
644 { "recipient_data", vtype_stringptr, &recipient_data },
645 { "recipient_verify_failure",vtype_stringptr,&recipient_verify_failure },
646 { "recipients", vtype_string_func, &fn_recipients },
647 { "recipients_count", vtype_int, &recipients_count },
648 #ifdef WITH_CONTENT_SCAN
649 { "regex_match_string", vtype_stringptr, &regex_match_string },
650 #endif
651 { "reply_address", vtype_reply, NULL },
652 { "return_path", vtype_stringptr, &return_path },
653 { "return_size_limit", vtype_int, &bounce_return_size_limit },
654 { "router_name", vtype_stringptr, &router_name },
655 { "runrc", vtype_int, &runrc },
656 { "self_hostname", vtype_stringptr, &self_hostname },
657 { "sender_address", vtype_stringptr, &sender_address },
658 { "sender_address_data", vtype_stringptr, &sender_address_data },
659 { "sender_address_domain", vtype_domain, &sender_address },
660 { "sender_address_local_part", vtype_localpart, &sender_address },
661 { "sender_data", vtype_stringptr, &sender_data },
662 { "sender_fullhost", vtype_stringptr, &sender_fullhost },
663 { "sender_helo_dnssec", vtype_bool, &sender_helo_dnssec },
664 { "sender_helo_name", vtype_stringptr, &sender_helo_name },
665 { "sender_host_address", vtype_stringptr, &sender_host_address },
666 { "sender_host_authenticated",vtype_stringptr, &sender_host_authenticated },
667 { "sender_host_dnssec", vtype_bool, &sender_host_dnssec },
668 { "sender_host_name", vtype_host_lookup, NULL },
669 { "sender_host_port", vtype_int, &sender_host_port },
670 { "sender_ident", vtype_stringptr, &sender_ident },
671 { "sender_rate", vtype_stringptr, &sender_rate },
672 { "sender_rate_limit", vtype_stringptr, &sender_rate_limit },
673 { "sender_rate_period", vtype_stringptr, &sender_rate_period },
674 { "sender_rcvhost", vtype_stringptr, &sender_rcvhost },
675 { "sender_verify_failure",vtype_stringptr, &sender_verify_failure },
676 { "sending_ip_address", vtype_stringptr, &sending_ip_address },
677 { "sending_port", vtype_int, &sending_port },
678 { "smtp_active_hostname", vtype_stringptr, &smtp_active_hostname },
679 { "smtp_command", vtype_stringptr, &smtp_cmd_buffer },
680 { "smtp_command_argument", vtype_stringptr, &smtp_cmd_argument },
681 { "smtp_count_at_connection_start", vtype_int, &smtp_accept_count },
682 { "smtp_notquit_reason", vtype_stringptr, &smtp_notquit_reason },
683 { "sn0", vtype_filter_int, &filter_sn[0] },
684 { "sn1", vtype_filter_int, &filter_sn[1] },
685 { "sn2", vtype_filter_int, &filter_sn[2] },
686 { "sn3", vtype_filter_int, &filter_sn[3] },
687 { "sn4", vtype_filter_int, &filter_sn[4] },
688 { "sn5", vtype_filter_int, &filter_sn[5] },
689 { "sn6", vtype_filter_int, &filter_sn[6] },
690 { "sn7", vtype_filter_int, &filter_sn[7] },
691 { "sn8", vtype_filter_int, &filter_sn[8] },
692 { "sn9", vtype_filter_int, &filter_sn[9] },
693 #ifdef WITH_CONTENT_SCAN
694 { "spam_action", vtype_stringptr, &spam_action },
695 { "spam_bar", vtype_stringptr, &spam_bar },
696 { "spam_report", vtype_stringptr, &spam_report },
697 { "spam_score", vtype_stringptr, &spam_score },
698 { "spam_score_int", vtype_stringptr, &spam_score_int },
699 #endif
700 #ifdef EXPERIMENTAL_SPF
701 { "spf_guess", vtype_stringptr, &spf_guess },
702 { "spf_header_comment", vtype_stringptr, &spf_header_comment },
703 { "spf_received", vtype_stringptr, &spf_received },
704 { "spf_result", vtype_stringptr, &spf_result },
705 { "spf_smtp_comment", vtype_stringptr, &spf_smtp_comment },
706 #endif
707 { "spool_directory", vtype_stringptr, &spool_directory },
708 { "spool_inodes", vtype_pinodes, (void *)TRUE },
709 { "spool_space", vtype_pspace, (void *)TRUE },
710 #ifdef EXPERIMENTAL_SRS
711 { "srs_db_address", vtype_stringptr, &srs_db_address },
712 { "srs_db_key", vtype_stringptr, &srs_db_key },
713 { "srs_orig_recipient", vtype_stringptr, &srs_orig_recipient },
714 { "srs_orig_sender", vtype_stringptr, &srs_orig_sender },
715 { "srs_recipient", vtype_stringptr, &srs_recipient },
716 { "srs_status", vtype_stringptr, &srs_status },
717 #endif
718 { "thisaddress", vtype_stringptr, &filter_thisaddress },
719
720 /* The non-(in,out) variables are now deprecated */
721 { "tls_bits", vtype_int, &tls_in.bits },
722 { "tls_certificate_verified", vtype_int, &tls_in.certificate_verified },
723 { "tls_cipher", vtype_stringptr, &tls_in.cipher },
724
725 { "tls_in_bits", vtype_int, &tls_in.bits },
726 { "tls_in_certificate_verified", vtype_int, &tls_in.certificate_verified },
727 { "tls_in_cipher", vtype_stringptr, &tls_in.cipher },
728 { "tls_in_ocsp", vtype_int, &tls_in.ocsp },
729 { "tls_in_ourcert", vtype_cert, &tls_in.ourcert },
730 { "tls_in_peercert", vtype_cert, &tls_in.peercert },
731 { "tls_in_peerdn", vtype_stringptr, &tls_in.peerdn },
732 #if defined(SUPPORT_TLS)
733 { "tls_in_sni", vtype_stringptr, &tls_in.sni },
734 #endif
735 { "tls_out_bits", vtype_int, &tls_out.bits },
736 { "tls_out_certificate_verified", vtype_int,&tls_out.certificate_verified },
737 { "tls_out_cipher", vtype_stringptr, &tls_out.cipher },
738 #ifdef EXPERIMENTAL_DANE
739 { "tls_out_dane", vtype_bool, &tls_out.dane_verified },
740 #endif
741 { "tls_out_ocsp", vtype_int, &tls_out.ocsp },
742 { "tls_out_ourcert", vtype_cert, &tls_out.ourcert },
743 { "tls_out_peercert", vtype_cert, &tls_out.peercert },
744 { "tls_out_peerdn", vtype_stringptr, &tls_out.peerdn },
745 #if defined(SUPPORT_TLS)
746 { "tls_out_sni", vtype_stringptr, &tls_out.sni },
747 #endif
748 #ifdef EXPERIMENTAL_DANE
749 { "tls_out_tlsa_usage", vtype_int, &tls_out.tlsa_usage },
750 #endif
751
752 { "tls_peerdn", vtype_stringptr, &tls_in.peerdn }, /* mind the alphabetical order! */
753 #if defined(SUPPORT_TLS)
754 { "tls_sni", vtype_stringptr, &tls_in.sni }, /* mind the alphabetical order! */
755 #endif
756
757 { "tod_bsdinbox", vtype_todbsdin, NULL },
758 { "tod_epoch", vtype_tode, NULL },
759 { "tod_epoch_l", vtype_todel, NULL },
760 { "tod_full", vtype_todf, NULL },
761 { "tod_log", vtype_todl, NULL },
762 { "tod_logfile", vtype_todlf, NULL },
763 { "tod_zone", vtype_todzone, NULL },
764 { "tod_zulu", vtype_todzulu, NULL },
765 { "transport_name", vtype_stringptr, &transport_name },
766 { "value", vtype_stringptr, &lookup_value },
767 { "verify_mode", vtype_stringptr, &verify_mode },
768 { "version_number", vtype_stringptr, &version_string },
769 { "warn_message_delay", vtype_stringptr, &warnmsg_delay },
770 { "warn_message_recipient",vtype_stringptr, &warnmsg_recipients },
771 { "warn_message_recipients",vtype_stringptr,&warnmsg_recipients },
772 { "warnmsg_delay", vtype_stringptr, &warnmsg_delay },
773 { "warnmsg_recipient", vtype_stringptr, &warnmsg_recipients },
774 { "warnmsg_recipients", vtype_stringptr, &warnmsg_recipients }
775 };
776
777 static int var_table_size = nelem(var_table);
778 static uschar var_buffer[256];
779 static BOOL malformed_header;
780
781 /* For textual hashes */
782
783 static const char *hashcodes = "abcdefghijklmnopqrtsuvwxyz"
784 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
785 "0123456789";
786
787 enum { HMAC_MD5, HMAC_SHA1 };
788
789 /* For numeric hashes */
790
791 static unsigned int prime[] = {
792 2, 3, 5, 7, 11, 13, 17, 19, 23, 29,
793 31, 37, 41, 43, 47, 53, 59, 61, 67, 71,
794 73, 79, 83, 89, 97, 101, 103, 107, 109, 113};
795
796 /* For printing modes in symbolic form */
797
798 static uschar *mtable_normal[] =
799 { US"---", US"--x", US"-w-", US"-wx", US"r--", US"r-x", US"rw-", US"rwx" };
800
801 static uschar *mtable_setid[] =
802 { US"--S", US"--s", US"-wS", US"-ws", US"r-S", US"r-s", US"rwS", US"rws" };
803
804 static uschar *mtable_sticky[] =
805 { US"--T", US"--t", US"-wT", US"-wt", US"r-T", US"r-t", US"rwT", US"rwt" };
806
807
808
809 /*************************************************
810 * Tables for UTF-8 support *
811 *************************************************/
812
813 /* Table of the number of extra characters, indexed by the first character
814 masked with 0x3f. The highest number for a valid UTF-8 character is in fact
815 0x3d. */
816
817 static uschar utf8_table1[] = {
818 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
819 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
820 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
821 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };
822
823 /* These are the masks for the data bits in the first byte of a character,
824 indexed by the number of additional bytes. */
825
826 static int utf8_table2[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};
827
828 /* Get the next UTF-8 character, advancing the pointer. */
829
830 #define GETUTF8INC(c, ptr) \
831 c = *ptr++; \
832 if ((c & 0xc0) == 0xc0) \
833 { \
834 int a = utf8_table1[c & 0x3f]; /* Number of additional bytes */ \
835 int s = 6*a; \
836 c = (c & utf8_table2[a]) << s; \
837 while (a-- > 0) \
838 { \
839 s -= 6; \
840 c |= (*ptr++ & 0x3f) << s; \
841 } \
842 }
843
844
845
846 static uschar * base32_chars = US"abcdefghijklmnopqrstuvwxyz234567";
847
848 /*************************************************
849 * Binary chop search on a table *
850 *************************************************/
851
852 /* This is used for matching expansion items and operators.
853
854 Arguments:
855 name the name that is being sought
856 table the table to search
857 table_size the number of items in the table
858
859 Returns: the offset in the table, or -1
860 */
861
862 static int
863 chop_match(uschar *name, uschar **table, int table_size)
864 {
865 uschar **bot = table;
866 uschar **top = table + table_size;
867
868 while (top > bot)
869 {
870 uschar **mid = bot + (top - bot)/2;
871 int c = Ustrcmp(name, *mid);
872 if (c == 0) return mid - table;
873 if (c > 0) bot = mid + 1; else top = mid;
874 }
875
876 return -1;
877 }
878
879
880
881 /*************************************************
882 * Check a condition string *
883 *************************************************/
884
885 /* This function is called to expand a string, and test the result for a "true"
886 or "false" value. Failure of the expansion yields FALSE; logged unless it was a
887 forced fail or lookup defer.
888
889 We used to release all store used, but this is not not safe due
890 to ${dlfunc } and ${acl }. In any case expand_string_internal()
891 is reasonably careful to release what it can.
892
893 The actual false-value tests should be replicated for ECOND_BOOL_LAX.
894
895 Arguments:
896 condition the condition string
897 m1 text to be incorporated in panic error
898 m2 ditto
899
900 Returns: TRUE if condition is met, FALSE if not
901 */
902
903 BOOL
904 expand_check_condition(uschar *condition, uschar *m1, uschar *m2)
905 {
906 int rc;
907 uschar *ss = expand_string(condition);
908 if (ss == NULL)
909 {
910 if (!expand_string_forcedfail && !search_find_defer)
911 log_write(0, LOG_MAIN|LOG_PANIC, "failed to expand condition \"%s\" "
912 "for %s %s: %s", condition, m1, m2, expand_string_message);
913 return FALSE;
914 }
915 rc = ss[0] != 0 && Ustrcmp(ss, "0") != 0 && strcmpic(ss, US"no") != 0 &&
916 strcmpic(ss, US"false") != 0;
917 return rc;
918 }
919
920
921
922
923 /*************************************************
924 * Pseudo-random number generation *
925 *************************************************/
926
927 /* Pseudo-random number generation. The result is not "expected" to be
928 cryptographically strong but not so weak that someone will shoot themselves
929 in the foot using it as a nonce in some email header scheme or whatever
930 weirdness they'll twist this into. The result should ideally handle fork().
931
932 However, if we're stuck unable to provide this, then we'll fall back to
933 appallingly bad randomness.
934
935 If SUPPORT_TLS is defined then this will not be used except as an emergency
936 fallback.
937
938 Arguments:
939 max range maximum
940 Returns a random number in range [0, max-1]
941 */
942
943 #ifdef SUPPORT_TLS
944 # define vaguely_random_number vaguely_random_number_fallback
945 #endif
946 int
947 vaguely_random_number(int max)
948 {
949 #ifdef SUPPORT_TLS
950 # undef vaguely_random_number
951 #endif
952 static pid_t pid = 0;
953 pid_t p2;
954 #if defined(HAVE_SRANDOM) && !defined(HAVE_SRANDOMDEV)
955 struct timeval tv;
956 #endif
957
958 p2 = getpid();
959 if (p2 != pid)
960 {
961 if (pid != 0)
962 {
963
964 #ifdef HAVE_ARC4RANDOM
965 /* cryptographically strong randomness, common on *BSD platforms, not
966 so much elsewhere. Alas. */
967 #ifndef NOT_HAVE_ARC4RANDOM_STIR
968 arc4random_stir();
969 #endif
970 #elif defined(HAVE_SRANDOM) || defined(HAVE_SRANDOMDEV)
971 #ifdef HAVE_SRANDOMDEV
972 /* uses random(4) for seeding */
973 srandomdev();
974 #else
975 gettimeofday(&tv, NULL);
976 srandom(tv.tv_sec | tv.tv_usec | getpid());
977 #endif
978 #else
979 /* Poor randomness and no seeding here */
980 #endif
981
982 }
983 pid = p2;
984 }
985
986 #ifdef HAVE_ARC4RANDOM
987 return arc4random() % max;
988 #elif defined(HAVE_SRANDOM) || defined(HAVE_SRANDOMDEV)
989 return random() % max;
990 #else
991 /* This one returns a 16-bit number, definitely not crypto-strong */
992 return random_number(max);
993 #endif
994 }
995
996
997
998
999 /*************************************************
1000 * Pick out a name from a string *
1001 *************************************************/
1002
1003 /* If the name is too long, it is silently truncated.
1004
1005 Arguments:
1006 name points to a buffer into which to put the name
1007 max is the length of the buffer
1008 s points to the first alphabetic character of the name
1009 extras chars other than alphanumerics to permit
1010
1011 Returns: pointer to the first character after the name
1012
1013 Note: The test for *s != 0 in the while loop is necessary because
1014 Ustrchr() yields non-NULL if the character is zero (which is not something
1015 I expected). */
1016
1017 static const uschar *
1018 read_name(uschar *name, int max, const uschar *s, uschar *extras)
1019 {
1020 int ptr = 0;
1021 while (*s != 0 && (isalnum(*s) || Ustrchr(extras, *s) != NULL))
1022 {
1023 if (ptr < max-1) name[ptr++] = *s;
1024 s++;
1025 }
1026 name[ptr] = 0;
1027 return s;
1028 }
1029
1030
1031
1032 /*************************************************
1033 * Pick out the rest of a header name *
1034 *************************************************/
1035
1036 /* A variable name starting $header_ (or just $h_ for those who like
1037 abbreviations) might not be the complete header name because headers can
1038 contain any printing characters in their names, except ':'. This function is
1039 called to read the rest of the name, chop h[eader]_ off the front, and put ':'
1040 on the end, if the name was terminated by white space.
1041
1042 Arguments:
1043 name points to a buffer in which the name read so far exists
1044 max is the length of the buffer
1045 s points to the first character after the name so far, i.e. the
1046 first non-alphameric character after $header_xxxxx
1047
1048 Returns: a pointer to the first character after the header name
1049 */
1050
1051 static const uschar *
1052 read_header_name(uschar *name, int max, const uschar *s)
1053 {
1054 int prelen = Ustrchr(name, '_') - name + 1;
1055 int ptr = Ustrlen(name) - prelen;
1056 if (ptr > 0) memmove(name, name+prelen, ptr);
1057 while (mac_isgraph(*s) && *s != ':')
1058 {
1059 if (ptr < max-1) name[ptr++] = *s;
1060 s++;
1061 }
1062 if (*s == ':') s++;
1063 name[ptr++] = ':';
1064 name[ptr] = 0;
1065 return s;
1066 }
1067
1068
1069
1070 /*************************************************
1071 * Pick out a number from a string *
1072 *************************************************/
1073
1074 /* Arguments:
1075 n points to an integer into which to put the number
1076 s points to the first digit of the number
1077
1078 Returns: a pointer to the character after the last digit
1079 */
1080 /*XXX consider expanding to int_eximarith_t. But the test for
1081 "overbig numbers" in 0002 still needs to overflow it. */
1082
1083 static uschar *
1084 read_number(int *n, uschar *s)
1085 {
1086 *n = 0;
1087 while (isdigit(*s)) *n = *n * 10 + (*s++ - '0');
1088 return s;
1089 }
1090
1091 static const uschar *
1092 read_cnumber(int *n, const uschar *s)
1093 {
1094 *n = 0;
1095 while (isdigit(*s)) *n = *n * 10 + (*s++ - '0');
1096 return s;
1097 }
1098
1099
1100
1101 /*************************************************
1102 * Extract keyed subfield from a string *
1103 *************************************************/
1104
1105 /* The yield is in dynamic store; NULL means that the key was not found.
1106
1107 Arguments:
1108 key points to the name of the key
1109 s points to the string from which to extract the subfield
1110
1111 Returns: NULL if the subfield was not found, or
1112 a pointer to the subfield's data
1113 */
1114
1115 static uschar *
1116 expand_getkeyed(uschar *key, const uschar *s)
1117 {
1118 int length = Ustrlen(key);
1119 while (isspace(*s)) s++;
1120
1121 /* Loop to search for the key */
1122
1123 while (*s != 0)
1124 {
1125 int dkeylength;
1126 uschar *data;
1127 const uschar *dkey = s;
1128
1129 while (*s != 0 && *s != '=' && !isspace(*s)) s++;
1130 dkeylength = s - dkey;
1131 while (isspace(*s)) s++;
1132 if (*s == '=') while (isspace((*(++s))));
1133
1134 data = string_dequote(&s);
1135 if (length == dkeylength && strncmpic(key, dkey, length) == 0)
1136 return data;
1137
1138 while (isspace(*s)) s++;
1139 }
1140
1141 return NULL;
1142 }
1143
1144
1145
1146 static var_entry *
1147 find_var_ent(uschar * name)
1148 {
1149 int first = 0;
1150 int last = var_table_size;
1151
1152 while (last > first)
1153 {
1154 int middle = (first + last)/2;
1155 int c = Ustrcmp(name, var_table[middle].name);
1156
1157 if (c > 0) { first = middle + 1; continue; }
1158 if (c < 0) { last = middle; continue; }
1159 return &var_table[middle];
1160 }
1161 return NULL;
1162 }
1163
1164 /*************************************************
1165 * Extract numbered subfield from string *
1166 *************************************************/
1167
1168 /* Extracts a numbered field from a string that is divided by tokens - for
1169 example a line from /etc/passwd is divided by colon characters. First field is
1170 numbered one. Negative arguments count from the right. Zero returns the whole
1171 string. Returns NULL if there are insufficient tokens in the string
1172
1173 ***WARNING***
1174 Modifies final argument - this is a dynamically generated string, so that's OK.
1175
1176 Arguments:
1177 field number of field to be extracted,
1178 first field = 1, whole string = 0, last field = -1
1179 separators characters that are used to break string into tokens
1180 s points to the string from which to extract the subfield
1181
1182 Returns: NULL if the field was not found,
1183 a pointer to the field's data inside s (modified to add 0)
1184 */
1185
1186 static uschar *
1187 expand_gettokened (int field, uschar *separators, uschar *s)
1188 {
1189 int sep = 1;
1190 int count;
1191 uschar *ss = s;
1192 uschar *fieldtext = NULL;
1193
1194 if (field == 0) return s;
1195
1196 /* Break the line up into fields in place; for field > 0 we stop when we have
1197 done the number of fields we want. For field < 0 we continue till the end of
1198 the string, counting the number of fields. */
1199
1200 count = (field > 0)? field : INT_MAX;
1201
1202 while (count-- > 0)
1203 {
1204 size_t len;
1205
1206 /* Previous field was the last one in the string. For a positive field
1207 number, this means there are not enough fields. For a negative field number,
1208 check that there are enough, and scan back to find the one that is wanted. */
1209
1210 if (sep == 0)
1211 {
1212 if (field > 0 || (-field) > (INT_MAX - count - 1)) return NULL;
1213 if ((-field) == (INT_MAX - count - 1)) return s;
1214 while (field++ < 0)
1215 {
1216 ss--;
1217 while (ss[-1] != 0) ss--;
1218 }
1219 fieldtext = ss;
1220 break;
1221 }
1222
1223 /* Previous field was not last in the string; save its start and put a
1224 zero at its end. */
1225
1226 fieldtext = ss;
1227 len = Ustrcspn(ss, separators);
1228 sep = ss[len];
1229 ss[len] = 0;
1230 ss += len + 1;
1231 }
1232
1233 return fieldtext;
1234 }
1235
1236
1237 static uschar *
1238 expand_getlistele(int field, const uschar * list)
1239 {
1240 const uschar * tlist= list;
1241 int sep= 0;
1242 uschar dummy;
1243
1244 if(field<0)
1245 {
1246 for(field++; string_nextinlist(&tlist, &sep, &dummy, 1); ) field++;
1247 sep= 0;
1248 }
1249 if(field==0) return NULL;
1250 while(--field>0 && (string_nextinlist(&list, &sep, &dummy, 1))) ;
1251 return string_nextinlist(&list, &sep, NULL, 0);
1252 }
1253
1254
1255 /* Certificate fields, by name. Worry about by-OID later */
1256 /* Names are chosen to not have common prefixes */
1257
1258 #ifdef SUPPORT_TLS
1259 typedef struct
1260 {
1261 uschar * name;
1262 int namelen;
1263 uschar * (*getfn)(void * cert, uschar * mod);
1264 } certfield;
1265 static certfield certfields[] =
1266 { /* linear search; no special order */
1267 { US"version", 7, &tls_cert_version },
1268 { US"serial_number", 13, &tls_cert_serial_number },
1269 { US"subject", 7, &tls_cert_subject },
1270 { US"notbefore", 9, &tls_cert_not_before },
1271 { US"notafter", 8, &tls_cert_not_after },
1272 { US"issuer", 6, &tls_cert_issuer },
1273 { US"signature", 9, &tls_cert_signature },
1274 { US"sig_algorithm", 13, &tls_cert_signature_algorithm },
1275 { US"subj_altname", 12, &tls_cert_subject_altname },
1276 { US"ocsp_uri", 8, &tls_cert_ocsp_uri },
1277 { US"crl_uri", 7, &tls_cert_crl_uri },
1278 };
1279
1280 static uschar *
1281 expand_getcertele(uschar * field, uschar * certvar)
1282 {
1283 var_entry * vp;
1284 certfield * cp;
1285
1286 if (!(vp = find_var_ent(certvar)))
1287 {
1288 expand_string_message =
1289 string_sprintf("no variable named \"%s\"", certvar);
1290 return NULL; /* Unknown variable name */
1291 }
1292 /* NB this stops us passing certs around in variable. Might
1293 want to do that in future */
1294 if (vp->type != vtype_cert)
1295 {
1296 expand_string_message =
1297 string_sprintf("\"%s\" is not a certificate", certvar);
1298 return NULL; /* Unknown variable name */
1299 }
1300 if (!*(void **)vp->value)
1301 return NULL;
1302
1303 if (*field >= '0' && *field <= '9')
1304 return tls_cert_ext_by_oid(*(void **)vp->value, field, 0);
1305
1306 for(cp = certfields;
1307 cp < certfields + nelem(certfields);
1308 cp++)
1309 if (Ustrncmp(cp->name, field, cp->namelen) == 0)
1310 {
1311 uschar * modifier = *(field += cp->namelen) == ','
1312 ? ++field : NULL;
1313 return (*cp->getfn)( *(void **)vp->value, modifier );
1314 }
1315
1316 expand_string_message =
1317 string_sprintf("bad field selector \"%s\" for certextract", field);
1318 return NULL;
1319 }
1320 #endif /*SUPPORT_TLS*/
1321
1322 /*************************************************
1323 * Extract a substring from a string *
1324 *************************************************/
1325
1326 /* Perform the ${substr or ${length expansion operations.
1327
1328 Arguments:
1329 subject the input string
1330 value1 the offset from the start of the input string to the start of
1331 the output string; if negative, count from the right.
1332 value2 the length of the output string, or negative (-1) for unset
1333 if value1 is positive, unset means "all after"
1334 if value1 is negative, unset means "all before"
1335 len set to the length of the returned string
1336
1337 Returns: pointer to the output string, or NULL if there is an error
1338 */
1339
1340 static uschar *
1341 extract_substr(uschar *subject, int value1, int value2, int *len)
1342 {
1343 int sublen = Ustrlen(subject);
1344
1345 if (value1 < 0) /* count from right */
1346 {
1347 value1 += sublen;
1348
1349 /* If the position is before the start, skip to the start, and adjust the
1350 length. If the length ends up negative, the substring is null because nothing
1351 can precede. This falls out naturally when the length is unset, meaning "all
1352 to the left". */
1353
1354 if (value1 < 0)
1355 {
1356 value2 += value1;
1357 if (value2 < 0) value2 = 0;
1358 value1 = 0;
1359 }
1360
1361 /* Otherwise an unset length => characters before value1 */
1362
1363 else if (value2 < 0)
1364 {
1365 value2 = value1;
1366 value1 = 0;
1367 }
1368 }
1369
1370 /* For a non-negative offset, if the starting position is past the end of the
1371 string, the result will be the null string. Otherwise, an unset length means
1372 "rest"; just set it to the maximum - it will be cut down below if necessary. */
1373
1374 else
1375 {
1376 if (value1 > sublen)
1377 {
1378 value1 = sublen;
1379 value2 = 0;
1380 }
1381 else if (value2 < 0) value2 = sublen;
1382 }
1383
1384 /* Cut the length down to the maximum possible for the offset value, and get
1385 the required characters. */
1386
1387 if (value1 + value2 > sublen) value2 = sublen - value1;
1388 *len = value2;
1389 return subject + value1;
1390 }
1391
1392
1393
1394
1395 /*************************************************
1396 * Old-style hash of a string *
1397 *************************************************/
1398
1399 /* Perform the ${hash expansion operation.
1400
1401 Arguments:
1402 subject the input string (an expanded substring)
1403 value1 the length of the output string; if greater or equal to the
1404 length of the input string, the input string is returned
1405 value2 the number of hash characters to use, or 26 if negative
1406 len set to the length of the returned string
1407
1408 Returns: pointer to the output string, or NULL if there is an error
1409 */
1410
1411 static uschar *
1412 compute_hash(uschar *subject, int value1, int value2, int *len)
1413 {
1414 int sublen = Ustrlen(subject);
1415
1416 if (value2 < 0) value2 = 26;
1417 else if (value2 > Ustrlen(hashcodes))
1418 {
1419 expand_string_message =
1420 string_sprintf("hash count \"%d\" too big", value2);
1421 return NULL;
1422 }
1423
1424 /* Calculate the hash text. We know it is shorter than the original string, so
1425 can safely place it in subject[] (we know that subject is always itself an
1426 expanded substring). */
1427
1428 if (value1 < sublen)
1429 {
1430 int c;
1431 int i = 0;
1432 int j = value1;
1433 while ((c = (subject[j])) != 0)
1434 {
1435 int shift = (c + j++) & 7;
1436 subject[i] ^= (c << shift) | (c >> (8-shift));
1437 if (++i >= value1) i = 0;
1438 }
1439 for (i = 0; i < value1; i++)
1440 subject[i] = hashcodes[(subject[i]) % value2];
1441 }
1442 else value1 = sublen;
1443
1444 *len = value1;
1445 return subject;
1446 }
1447
1448
1449
1450
1451 /*************************************************
1452 * Numeric hash of a string *
1453 *************************************************/
1454
1455 /* Perform the ${nhash expansion operation. The first characters of the
1456 string are treated as most important, and get the highest prime numbers.
1457
1458 Arguments:
1459 subject the input string
1460 value1 the maximum value of the first part of the result
1461 value2 the maximum value of the second part of the result,
1462 or negative to produce only a one-part result
1463 len set to the length of the returned string
1464
1465 Returns: pointer to the output string, or NULL if there is an error.
1466 */
1467
1468 static uschar *
1469 compute_nhash (uschar *subject, int value1, int value2, int *len)
1470 {
1471 uschar *s = subject;
1472 int i = 0;
1473 unsigned long int total = 0; /* no overflow */
1474
1475 while (*s != 0)
1476 {
1477 if (i == 0) i = nelem(prime) - 1;
1478 total += prime[i--] * (unsigned int)(*s++);
1479 }
1480
1481 /* If value2 is unset, just compute one number */
1482
1483 if (value2 < 0)
1484 {
1485 s = string_sprintf("%d", total % value1);
1486 }
1487
1488 /* Otherwise do a div/mod hash */
1489
1490 else
1491 {
1492 total = total % (value1 * value2);
1493 s = string_sprintf("%d/%d", total/value2, total % value2);
1494 }
1495
1496 *len = Ustrlen(s);
1497 return s;
1498 }
1499
1500
1501
1502
1503
1504 /*************************************************
1505 * Find the value of a header or headers *
1506 *************************************************/
1507
1508 /* Multiple instances of the same header get concatenated, and this function
1509 can also return a concatenation of all the header lines. When concatenating
1510 specific headers that contain lists of addresses, a comma is inserted between
1511 them. Otherwise we use a straight concatenation. Because some messages can have
1512 pathologically large number of lines, there is a limit on the length that is
1513 returned. Also, to avoid massive store use which would result from using
1514 string_cat() as it copies and extends strings, we do a preliminary pass to find
1515 out exactly how much store will be needed. On "normal" messages this will be
1516 pretty trivial.
1517
1518 Arguments:
1519 name the name of the header, without the leading $header_ or $h_,
1520 or NULL if a concatenation of all headers is required
1521 exists_only TRUE if called from a def: test; don't need to build a string;
1522 just return a string that is not "" and not "0" if the header
1523 exists
1524 newsize return the size of memory block that was obtained; may be NULL
1525 if exists_only is TRUE
1526 want_raw TRUE if called for $rh_ or $rheader_ variables; no processing,
1527 other than concatenating, will be done on the header. Also used
1528 for $message_headers_raw.
1529 charset name of charset to translate MIME words to; used only if
1530 want_raw is false; if NULL, no translation is done (this is
1531 used for $bh_ and $bheader_)
1532
1533 Returns: NULL if the header does not exist, else a pointer to a new
1534 store block
1535 */
1536
1537 static uschar *
1538 find_header(uschar *name, BOOL exists_only, int *newsize, BOOL want_raw,
1539 uschar *charset)
1540 {
1541 BOOL found = name == NULL;
1542 int comma = 0;
1543 int len = found? 0 : Ustrlen(name);
1544 int i;
1545 uschar *yield = NULL;
1546 uschar *ptr = NULL;
1547
1548 /* Loop for two passes - saves code repetition */
1549
1550 for (i = 0; i < 2; i++)
1551 {
1552 int size = 0;
1553 header_line *h;
1554
1555 for (h = header_list; size < header_insert_maxlen && h != NULL; h = h->next)
1556 {
1557 if (h->type != htype_old && h->text != NULL) /* NULL => Received: placeholder */
1558 {
1559 if (name == NULL || (len <= h->slen && strncmpic(name, h->text, len) == 0))
1560 {
1561 int ilen;
1562 uschar *t;
1563
1564 if (exists_only) return US"1"; /* don't need actual string */
1565 found = TRUE;
1566 t = h->text + len; /* text to insert */
1567 if (!want_raw) /* unless wanted raw, */
1568 while (isspace(*t)) t++; /* remove leading white space */
1569 ilen = h->slen - (t - h->text); /* length to insert */
1570
1571 /* Unless wanted raw, remove trailing whitespace, including the
1572 newline. */
1573
1574 if (!want_raw)
1575 while (ilen > 0 && isspace(t[ilen-1])) ilen--;
1576
1577 /* Set comma = 1 if handling a single header and it's one of those
1578 that contains an address list, except when asked for raw headers. Only
1579 need to do this once. */
1580
1581 if (!want_raw && name != NULL && comma == 0 &&
1582 Ustrchr("BCFRST", h->type) != NULL)
1583 comma = 1;
1584
1585 /* First pass - compute total store needed; second pass - compute
1586 total store used, including this header. */
1587
1588 size += ilen + comma + 1; /* +1 for the newline */
1589
1590 /* Second pass - concatentate the data, up to a maximum. Note that
1591 the loop stops when size hits the limit. */
1592
1593 if (i != 0)
1594 {
1595 if (size > header_insert_maxlen)
1596 {
1597 ilen -= size - header_insert_maxlen - 1;
1598 comma = 0;
1599 }
1600 Ustrncpy(ptr, t, ilen);
1601 ptr += ilen;
1602
1603 /* For a non-raw header, put in the comma if needed, then add
1604 back the newline we removed above, provided there was some text in
1605 the header. */
1606
1607 if (!want_raw && ilen > 0)
1608 {
1609 if (comma != 0) *ptr++ = ',';
1610 *ptr++ = '\n';
1611 }
1612 }
1613 }
1614 }
1615 }
1616
1617 /* At end of first pass, return NULL if no header found. Then truncate size
1618 if necessary, and get the buffer to hold the data, returning the buffer size.
1619 */
1620
1621 if (i == 0)
1622 {
1623 if (!found) return NULL;
1624 if (size > header_insert_maxlen) size = header_insert_maxlen;
1625 *newsize = size + 1;
1626 ptr = yield = store_get(*newsize);
1627 }
1628 }
1629
1630 /* That's all we do for raw header expansion. */
1631
1632 if (want_raw)
1633 {
1634 *ptr = 0;
1635 }
1636
1637 /* Otherwise, remove a final newline and a redundant added comma. Then we do
1638 RFC 2047 decoding, translating the charset if requested. The rfc2047_decode2()
1639 function can return an error with decoded data if the charset translation
1640 fails. If decoding fails, it returns NULL. */
1641
1642 else
1643 {
1644 uschar *decoded, *error;
1645 if (ptr > yield && ptr[-1] == '\n') ptr--;
1646 if (ptr > yield && comma != 0 && ptr[-1] == ',') ptr--;
1647 *ptr = 0;
1648 decoded = rfc2047_decode2(yield, check_rfc2047_length, charset, '?', NULL,
1649 newsize, &error);
1650 if (error != NULL)
1651 {
1652 DEBUG(D_any) debug_printf("*** error in RFC 2047 decoding: %s\n"
1653 " input was: %s\n", error, yield);
1654 }
1655 if (decoded != NULL) yield = decoded;
1656 }
1657
1658 return yield;
1659 }
1660
1661
1662
1663
1664 /*************************************************
1665 * Return list of recipients *
1666 *************************************************/
1667 /* A recipients list is available only during system message filtering,
1668 during ACL processing after DATA, and while expanding pipe commands
1669 generated from a system filter, but not elsewhere. */
1670
1671 static uschar *
1672 fn_recipients(void)
1673 {
1674 if (!enable_dollar_recipients) return NULL; else
1675 {
1676 int size = 128;
1677 int ptr = 0;
1678 int i;
1679 uschar * s = store_get(size);
1680 for (i = 0; i < recipients_count; i++)
1681 {
1682 if (i != 0) s = string_catn(s, &size, &ptr, US", ", 2);
1683 s = string_cat(s, &size, &ptr, recipients_list[i].address);
1684 }
1685 s[ptr] = 0; /* string_cat() leaves room */
1686 return s;
1687 }
1688 }
1689
1690
1691 /*************************************************
1692 * Find value of a variable *
1693 *************************************************/
1694
1695 /* The table of variables is kept in alphabetic order, so we can search it
1696 using a binary chop. The "choplen" variable is nothing to do with the binary
1697 chop.
1698
1699 Arguments:
1700 name the name of the variable being sought
1701 exists_only TRUE if this is a def: test; passed on to find_header()
1702 skipping TRUE => skip any processing evaluation; this is not the same as
1703 exists_only because def: may test for values that are first
1704 evaluated here
1705 newsize pointer to an int which is initially zero; if the answer is in
1706 a new memory buffer, *newsize is set to its size
1707
1708 Returns: NULL if the variable does not exist, or
1709 a pointer to the variable's contents, or
1710 something non-NULL if exists_only is TRUE
1711 */
1712
1713 static uschar *
1714 find_variable(uschar *name, BOOL exists_only, BOOL skipping, int *newsize)
1715 {
1716 var_entry * vp;
1717 uschar *s, *domain;
1718 uschar **ss;
1719 void * val;
1720
1721 /* Handle ACL variables, whose names are of the form acl_cxxx or acl_mxxx.
1722 Originally, xxx had to be a number in the range 0-9 (later 0-19), but from
1723 release 4.64 onwards arbitrary names are permitted, as long as the first 5
1724 characters are acl_c or acl_m and the sixth is either a digit or an underscore
1725 (this gave backwards compatibility at the changeover). There may be built-in
1726 variables whose names start acl_ but they should never start in this way. This
1727 slightly messy specification is a consequence of the history, needless to say.
1728
1729 If an ACL variable does not exist, treat it as empty, unless strict_acl_vars is
1730 set, in which case give an error. */
1731
1732 if ((Ustrncmp(name, "acl_c", 5) == 0 || Ustrncmp(name, "acl_m", 5) == 0) &&
1733 !isalpha(name[5]))
1734 {
1735 tree_node *node =
1736 tree_search((name[4] == 'c')? acl_var_c : acl_var_m, name + 4);
1737 return node ? node->data.ptr : strict_acl_vars ? NULL : US"";
1738 }
1739
1740 /* Handle $auth<n> variables. */
1741
1742 if (Ustrncmp(name, "auth", 4) == 0)
1743 {
1744 uschar *endptr;
1745 int n = Ustrtoul(name + 4, &endptr, 10);
1746 if (*endptr == 0 && n != 0 && n <= AUTH_VARS)
1747 return !auth_vars[n-1] ? US"" : auth_vars[n-1];
1748 }
1749 else if (Ustrncmp(name, "regex", 5) == 0)
1750 {
1751 uschar *endptr;
1752 int n = Ustrtoul(name + 5, &endptr, 10);
1753 if (*endptr == 0 && n != 0 && n <= REGEX_VARS)
1754 return !regex_vars[n-1] ? US"" : regex_vars[n-1];
1755 }
1756
1757 /* For all other variables, search the table */
1758
1759 if (!(vp = find_var_ent(name)))
1760 return NULL; /* Unknown variable name */
1761
1762 /* Found an existing variable. If in skipping state, the value isn't needed,
1763 and we want to avoid processing (such as looking up the host name). */
1764
1765 if (skipping)
1766 return US"";
1767
1768 val = vp->value;
1769 switch (vp->type)
1770 {
1771 case vtype_filter_int:
1772 if (!filter_running) return NULL;
1773 /* Fall through */
1774 /* VVVVVVVVVVVV */
1775 case vtype_int:
1776 sprintf(CS var_buffer, "%d", *(int *)(val)); /* Integer */
1777 return var_buffer;
1778
1779 case vtype_ino:
1780 sprintf(CS var_buffer, "%ld", (long int)(*(ino_t *)(val))); /* Inode */
1781 return var_buffer;
1782
1783 case vtype_gid:
1784 sprintf(CS var_buffer, "%ld", (long int)(*(gid_t *)(val))); /* gid */
1785 return var_buffer;
1786
1787 case vtype_uid:
1788 sprintf(CS var_buffer, "%ld", (long int)(*(uid_t *)(val))); /* uid */
1789 return var_buffer;
1790
1791 case vtype_bool:
1792 sprintf(CS var_buffer, "%s", *(BOOL *)(val) ? "yes" : "no"); /* bool */
1793 return var_buffer;
1794
1795 case vtype_stringptr: /* Pointer to string */
1796 return (s = *((uschar **)(val))) ? s : US"";
1797
1798 case vtype_pid:
1799 sprintf(CS var_buffer, "%d", (int)getpid()); /* pid */
1800 return var_buffer;
1801
1802 case vtype_load_avg:
1803 sprintf(CS var_buffer, "%d", OS_GETLOADAVG()); /* load_average */
1804 return var_buffer;
1805
1806 case vtype_host_lookup: /* Lookup if not done so */
1807 if (sender_host_name == NULL && sender_host_address != NULL &&
1808 !host_lookup_failed && host_name_lookup() == OK)
1809 host_build_sender_fullhost();
1810 return (sender_host_name == NULL)? US"" : sender_host_name;
1811
1812 case vtype_localpart: /* Get local part from address */
1813 s = *((uschar **)(val));
1814 if (s == NULL) return US"";
1815 domain = Ustrrchr(s, '@');
1816 if (domain == NULL) return s;
1817 if (domain - s > sizeof(var_buffer) - 1)
1818 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "local part longer than " SIZE_T_FMT
1819 " in string expansion", sizeof(var_buffer));
1820 Ustrncpy(var_buffer, s, domain - s);
1821 var_buffer[domain - s] = 0;
1822 return var_buffer;
1823
1824 case vtype_domain: /* Get domain from address */
1825 s = *((uschar **)(val));
1826 if (s == NULL) return US"";
1827 domain = Ustrrchr(s, '@');
1828 return (domain == NULL)? US"" : domain + 1;
1829
1830 case vtype_msgheaders:
1831 return find_header(NULL, exists_only, newsize, FALSE, NULL);
1832
1833 case vtype_msgheaders_raw:
1834 return find_header(NULL, exists_only, newsize, TRUE, NULL);
1835
1836 case vtype_msgbody: /* Pointer to msgbody string */
1837 case vtype_msgbody_end: /* Ditto, the end of the msg */
1838 ss = (uschar **)(val);
1839 if (*ss == NULL && deliver_datafile >= 0) /* Read body when needed */
1840 {
1841 uschar *body;
1842 off_t start_offset = SPOOL_DATA_START_OFFSET;
1843 int len = message_body_visible;
1844 if (len > message_size) len = message_size;
1845 *ss = body = store_malloc(len+1);
1846 body[0] = 0;
1847 if (vp->type == vtype_msgbody_end)
1848 {
1849 struct stat statbuf;
1850 if (fstat(deliver_datafile, &statbuf) == 0)
1851 {
1852 start_offset = statbuf.st_size - len;
1853 if (start_offset < SPOOL_DATA_START_OFFSET)
1854 start_offset = SPOOL_DATA_START_OFFSET;
1855 }
1856 }
1857 if (lseek(deliver_datafile, start_offset, SEEK_SET) < 0)
1858 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "deliver_datafile lseek: %s",
1859 strerror(errno));
1860 len = read(deliver_datafile, body, len);
1861 if (len > 0)
1862 {
1863 body[len] = 0;
1864 if (message_body_newlines) /* Separate loops for efficiency */
1865 while (len > 0)
1866 { if (body[--len] == 0) body[len] = ' '; }
1867 else
1868 while (len > 0)
1869 { if (body[--len] == '\n' || body[len] == 0) body[len] = ' '; }
1870 }
1871 }
1872 return (*ss == NULL)? US"" : *ss;
1873
1874 case vtype_todbsdin: /* BSD inbox time of day */
1875 return tod_stamp(tod_bsdin);
1876
1877 case vtype_tode: /* Unix epoch time of day */
1878 return tod_stamp(tod_epoch);
1879
1880 case vtype_todel: /* Unix epoch/usec time of day */
1881 return tod_stamp(tod_epoch_l);
1882
1883 case vtype_todf: /* Full time of day */
1884 return tod_stamp(tod_full);
1885
1886 case vtype_todl: /* Log format time of day */
1887 return tod_stamp(tod_log_bare); /* (without timezone) */
1888
1889 case vtype_todzone: /* Time zone offset only */
1890 return tod_stamp(tod_zone);
1891
1892 case vtype_todzulu: /* Zulu time */
1893 return tod_stamp(tod_zulu);
1894
1895 case vtype_todlf: /* Log file datestamp tod */
1896 return tod_stamp(tod_log_datestamp_daily);
1897
1898 case vtype_reply: /* Get reply address */
1899 s = find_header(US"reply-to:", exists_only, newsize, TRUE,
1900 headers_charset);
1901 if (s != NULL) while (isspace(*s)) s++;
1902 if (s == NULL || *s == 0)
1903 {
1904 *newsize = 0; /* For the *s==0 case */
1905 s = find_header(US"from:", exists_only, newsize, TRUE, headers_charset);
1906 }
1907 if (s != NULL)
1908 {
1909 uschar *t;
1910 while (isspace(*s)) s++;
1911 for (t = s; *t != 0; t++) if (*t == '\n') *t = ' ';
1912 while (t > s && isspace(t[-1])) t--;
1913 *t = 0;
1914 }
1915 return (s == NULL)? US"" : s;
1916
1917 case vtype_string_func:
1918 {
1919 uschar * (*fn)() = val;
1920 return fn();
1921 }
1922
1923 case vtype_pspace:
1924 {
1925 int inodes;
1926 sprintf(CS var_buffer, "%d",
1927 receive_statvfs(val == (void *)TRUE, &inodes));
1928 }
1929 return var_buffer;
1930
1931 case vtype_pinodes:
1932 {
1933 int inodes;
1934 (void) receive_statvfs(val == (void *)TRUE, &inodes);
1935 sprintf(CS var_buffer, "%d", inodes);
1936 }
1937 return var_buffer;
1938
1939 case vtype_cert:
1940 return *(void **)val ? US"<cert>" : US"";
1941
1942 #ifndef DISABLE_DKIM
1943 case vtype_dkim:
1944 return dkim_exim_expand_query((int)(long)val);
1945 #endif
1946
1947 }
1948
1949 return NULL; /* Unknown variable. Silences static checkers. */
1950 }
1951
1952
1953
1954
1955 void
1956 modify_variable(uschar *name, void * value)
1957 {
1958 var_entry * vp;
1959 if ((vp = find_var_ent(name))) vp->value = value;
1960 return; /* Unknown variable name, fail silently */
1961 }
1962
1963
1964
1965
1966
1967 /*************************************************
1968 * Read and expand substrings *
1969 *************************************************/
1970
1971 /* This function is called to read and expand argument substrings for various
1972 expansion items. Some have a minimum requirement that is less than the maximum;
1973 in these cases, the first non-present one is set to NULL.
1974
1975 Arguments:
1976 sub points to vector of pointers to set
1977 n maximum number of substrings
1978 m minimum required
1979 sptr points to current string pointer
1980 skipping the skipping flag
1981 check_end if TRUE, check for final '}'
1982 name name of item, for error message
1983 resetok if not NULL, pointer to flag - write FALSE if unsafe to reset
1984 the store.
1985
1986 Returns: 0 OK; string pointer updated
1987 1 curly bracketing error (too few arguments)
1988 2 too many arguments (only if check_end is set); message set
1989 3 other error (expansion failure)
1990 */
1991
1992 static int
1993 read_subs(uschar **sub, int n, int m, const uschar **sptr, BOOL skipping,
1994 BOOL check_end, uschar *name, BOOL *resetok)
1995 {
1996 int i;
1997 const uschar *s = *sptr;
1998
1999 while (isspace(*s)) s++;
2000 for (i = 0; i < n; i++)
2001 {
2002 if (*s != '{')
2003 {
2004 if (i < m)
2005 {
2006 expand_string_message = string_sprintf("Not enough arguments for '%s' "
2007 "(min is %d)", name, m);
2008 return 1;
2009 }
2010 sub[i] = NULL;
2011 break;
2012 }
2013 if (!(sub[i] = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, resetok)))
2014 return 3;
2015 if (*s++ != '}') return 1;
2016 while (isspace(*s)) s++;
2017 }
2018 if (check_end && *s++ != '}')
2019 {
2020 if (s[-1] == '{')
2021 {
2022 expand_string_message = string_sprintf("Too many arguments for '%s' "
2023 "(max is %d)", name, n);
2024 return 2;
2025 }
2026 expand_string_message = string_sprintf("missing '}' after '%s'", name);
2027 return 1;
2028 }
2029
2030 *sptr = s;
2031 return 0;
2032 }
2033
2034
2035
2036
2037 /*************************************************
2038 * Elaborate message for bad variable *
2039 *************************************************/
2040
2041 /* For the "unknown variable" message, take a look at the variable's name, and
2042 give additional information about possible ACL variables. The extra information
2043 is added on to expand_string_message.
2044
2045 Argument: the name of the variable
2046 Returns: nothing
2047 */
2048
2049 static void
2050 check_variable_error_message(uschar *name)
2051 {
2052 if (Ustrncmp(name, "acl_", 4) == 0)
2053 expand_string_message = string_sprintf("%s (%s)", expand_string_message,
2054 (name[4] == 'c' || name[4] == 'm')?
2055 (isalpha(name[5])?
2056 US"6th character of a user-defined ACL variable must be a digit or underscore" :
2057 US"strict_acl_vars is set" /* Syntax is OK, it has to be this */
2058 ) :
2059 US"user-defined ACL variables must start acl_c or acl_m");
2060 }
2061
2062
2063
2064 /*
2065 Load args from sub array to globals, and call acl_check().
2066 Sub array will be corrupted on return.
2067
2068 Returns: OK access is granted by an ACCEPT verb
2069 DISCARD access is (apparently) granted by a DISCARD verb
2070 FAIL access is denied
2071 FAIL_DROP access is denied; drop the connection
2072 DEFER can't tell at the moment
2073 ERROR disaster
2074 */
2075 static int
2076 eval_acl(uschar ** sub, int nsub, uschar ** user_msgp)
2077 {
2078 int i;
2079 int sav_narg = acl_narg;
2080 int ret;
2081 uschar * dummy_logmsg;
2082 extern int acl_where;
2083
2084 if(--nsub > nelem(acl_arg)) nsub = nelem(acl_arg);
2085 for (i = 0; i < nsub && sub[i+1]; i++)
2086 {
2087 uschar * tmp = acl_arg[i];
2088 acl_arg[i] = sub[i+1]; /* place callers args in the globals */
2089 sub[i+1] = tmp; /* stash the old args using our caller's storage */
2090 }
2091 acl_narg = i;
2092 while (i < nsub)
2093 {
2094 sub[i+1] = acl_arg[i];
2095 acl_arg[i++] = NULL;
2096 }
2097
2098 DEBUG(D_expand)
2099 debug_printf("expanding: acl: %s arg: %s%s\n",
2100 sub[0],
2101 acl_narg>0 ? acl_arg[0] : US"<none>",
2102 acl_narg>1 ? " +more" : "");
2103
2104 ret = acl_eval(acl_where, sub[0], user_msgp, &dummy_logmsg);
2105
2106 for (i = 0; i < nsub; i++)
2107 acl_arg[i] = sub[i+1]; /* restore old args */
2108 acl_narg = sav_narg;
2109
2110 return ret;
2111 }
2112
2113
2114
2115
2116 /*************************************************
2117 * Read and evaluate a condition *
2118 *************************************************/
2119
2120 /*
2121 Arguments:
2122 s points to the start of the condition text
2123 resetok points to a BOOL which is written false if it is unsafe to
2124 free memory. Certain condition types (acl) may have side-effect
2125 allocation which must be preserved.
2126 yield points to a BOOL to hold the result of the condition test;
2127 if NULL, we are just reading through a condition that is
2128 part of an "or" combination to check syntax, or in a state
2129 where the answer isn't required
2130
2131 Returns: a pointer to the first character after the condition, or
2132 NULL after an error
2133 */
2134
2135 static const uschar *
2136 eval_condition(const uschar *s, BOOL *resetok, BOOL *yield)
2137 {
2138 BOOL testfor = TRUE;
2139 BOOL tempcond, combined_cond;
2140 BOOL *subcondptr;
2141 BOOL sub2_honour_dollar = TRUE;
2142 int i, rc, cond_type, roffset;
2143 int_eximarith_t num[2];
2144 struct stat statbuf;
2145 uschar name[256];
2146 const uschar *sub[10];
2147
2148 const pcre *re;
2149 const uschar *rerror;
2150
2151 for (;;)
2152 {
2153 while (isspace(*s)) s++;
2154 if (*s == '!') { testfor = !testfor; s++; } else break;
2155 }
2156
2157 /* Numeric comparisons are symbolic */
2158
2159 if (*s == '=' || *s == '>' || *s == '<')
2160 {
2161 int p = 0;
2162 name[p++] = *s++;
2163 if (*s == '=')
2164 {
2165 name[p++] = '=';
2166 s++;
2167 }
2168 name[p] = 0;
2169 }
2170
2171 /* All other conditions are named */
2172
2173 else s = read_name(name, 256, s, US"_");
2174
2175 /* If we haven't read a name, it means some non-alpha character is first. */
2176
2177 if (name[0] == 0)
2178 {
2179 expand_string_message = string_sprintf("condition name expected, "
2180 "but found \"%.16s\"", s);
2181 return NULL;
2182 }
2183
2184 /* Find which condition we are dealing with, and switch on it */
2185
2186 cond_type = chop_match(name, cond_table, nelem(cond_table));
2187 switch(cond_type)
2188 {
2189 /* def: tests for a non-empty variable, or for the existence of a header. If
2190 yield == NULL we are in a skipping state, and don't care about the answer. */
2191
2192 case ECOND_DEF:
2193 if (*s != ':')
2194 {
2195 expand_string_message = US"\":\" expected after \"def\"";
2196 return NULL;
2197 }
2198
2199 s = read_name(name, 256, s+1, US"_");
2200
2201 /* Test for a header's existence. If the name contains a closing brace
2202 character, this may be a user error where the terminating colon has been
2203 omitted. Set a flag to adjust a subsequent error message in this case. */
2204
2205 if (Ustrncmp(name, "h_", 2) == 0 ||
2206 Ustrncmp(name, "rh_", 3) == 0 ||
2207 Ustrncmp(name, "bh_", 3) == 0 ||
2208 Ustrncmp(name, "header_", 7) == 0 ||
2209 Ustrncmp(name, "rheader_", 8) == 0 ||
2210 Ustrncmp(name, "bheader_", 8) == 0)
2211 {
2212 s = read_header_name(name, 256, s);
2213 /* {-for-text-editors */
2214 if (Ustrchr(name, '}') != NULL) malformed_header = TRUE;
2215 if (yield != NULL) *yield =
2216 (find_header(name, TRUE, NULL, FALSE, NULL) != NULL) == testfor;
2217 }
2218
2219 /* Test for a variable's having a non-empty value. A non-existent variable
2220 causes an expansion failure. */
2221
2222 else
2223 {
2224 uschar *value = find_variable(name, TRUE, yield == NULL, NULL);
2225 if (value == NULL)
2226 {
2227 expand_string_message = (name[0] == 0)?
2228 string_sprintf("variable name omitted after \"def:\"") :
2229 string_sprintf("unknown variable \"%s\" after \"def:\"", name);
2230 check_variable_error_message(name);
2231 return NULL;
2232 }
2233 if (yield != NULL) *yield = (value[0] != 0) == testfor;
2234 }
2235
2236 return s;
2237
2238
2239 /* first_delivery tests for first delivery attempt */
2240
2241 case ECOND_FIRST_DELIVERY:
2242 if (yield != NULL) *yield = deliver_firsttime == testfor;
2243 return s;
2244
2245
2246 /* queue_running tests for any process started by a queue runner */
2247
2248 case ECOND_QUEUE_RUNNING:
2249 if (yield != NULL) *yield = (queue_run_pid != (pid_t)0) == testfor;
2250 return s;
2251
2252
2253 /* exists: tests for file existence
2254 isip: tests for any IP address
2255 isip4: tests for an IPv4 address
2256 isip6: tests for an IPv6 address
2257 pam: does PAM authentication
2258 radius: does RADIUS authentication
2259 ldapauth: does LDAP authentication
2260 pwcheck: does Cyrus SASL pwcheck authentication
2261 */
2262
2263 case ECOND_EXISTS:
2264 case ECOND_ISIP:
2265 case ECOND_ISIP4:
2266 case ECOND_ISIP6:
2267 case ECOND_PAM:
2268 case ECOND_RADIUS:
2269 case ECOND_LDAPAUTH:
2270 case ECOND_PWCHECK:
2271
2272 while (isspace(*s)) s++;
2273 if (*s != '{') goto COND_FAILED_CURLY_START; /* }-for-text-editors */
2274
2275 sub[0] = expand_string_internal(s+1, TRUE, &s, yield == NULL, TRUE, resetok);
2276 if (sub[0] == NULL) return NULL;
2277 /* {-for-text-editors */
2278 if (*s++ != '}') goto COND_FAILED_CURLY_END;
2279
2280 if (yield == NULL) return s; /* No need to run the test if skipping */
2281
2282 switch(cond_type)
2283 {
2284 case ECOND_EXISTS:
2285 if ((expand_forbid & RDO_EXISTS) != 0)
2286 {
2287 expand_string_message = US"File existence tests are not permitted";
2288 return NULL;
2289 }
2290 *yield = (Ustat(sub[0], &statbuf) == 0) == testfor;
2291 break;
2292
2293 case ECOND_ISIP:
2294 case ECOND_ISIP4:
2295 case ECOND_ISIP6:
2296 rc = string_is_ip_address(sub[0], NULL);
2297 *yield = ((cond_type == ECOND_ISIP)? (rc != 0) :
2298 (cond_type == ECOND_ISIP4)? (rc == 4) : (rc == 6)) == testfor;
2299 break;
2300
2301 /* Various authentication tests - all optionally compiled */
2302
2303 case ECOND_PAM:
2304 #ifdef SUPPORT_PAM
2305 rc = auth_call_pam(sub[0], &expand_string_message);
2306 goto END_AUTH;
2307 #else
2308 goto COND_FAILED_NOT_COMPILED;
2309 #endif /* SUPPORT_PAM */
2310
2311 case ECOND_RADIUS:
2312 #ifdef RADIUS_CONFIG_FILE
2313 rc = auth_call_radius(sub[0], &expand_string_message);
2314 goto END_AUTH;
2315 #else
2316 goto COND_FAILED_NOT_COMPILED;
2317 #endif /* RADIUS_CONFIG_FILE */
2318
2319 case ECOND_LDAPAUTH:
2320 #ifdef LOOKUP_LDAP
2321 {
2322 /* Just to keep the interface the same */
2323 BOOL do_cache;
2324 int old_pool = store_pool;
2325 store_pool = POOL_SEARCH;
2326 rc = eldapauth_find((void *)(-1), NULL, sub[0], Ustrlen(sub[0]), NULL,
2327 &expand_string_message, &do_cache);
2328 store_pool = old_pool;
2329 }
2330 goto END_AUTH;
2331 #else
2332 goto COND_FAILED_NOT_COMPILED;
2333 #endif /* LOOKUP_LDAP */
2334
2335 case ECOND_PWCHECK:
2336 #ifdef CYRUS_PWCHECK_SOCKET
2337 rc = auth_call_pwcheck(sub[0], &expand_string_message);
2338 goto END_AUTH;
2339 #else
2340 goto COND_FAILED_NOT_COMPILED;
2341 #endif /* CYRUS_PWCHECK_SOCKET */
2342
2343 #if defined(SUPPORT_PAM) || defined(RADIUS_CONFIG_FILE) || \
2344 defined(LOOKUP_LDAP) || defined(CYRUS_PWCHECK_SOCKET)
2345 END_AUTH:
2346 if (rc == ERROR || rc == DEFER) return NULL;
2347 *yield = (rc == OK) == testfor;
2348 #endif
2349 }
2350 return s;
2351
2352
2353 /* call ACL (in a conditional context). Accept true, deny false.
2354 Defer is a forced-fail. Anything set by message= goes to $value.
2355 Up to ten parameters are used; we use the braces round the name+args
2356 like the saslauthd condition does, to permit a variable number of args.
2357 See also the expansion-item version EITEM_ACL and the traditional
2358 acl modifier ACLC_ACL.
2359 Since the ACL may allocate new global variables, tell our caller to not
2360 reclaim memory.
2361 */
2362
2363 case ECOND_ACL:
2364 /* ${if acl {{name}{arg1}{arg2}...} {yes}{no}} */
2365 {
2366 uschar *sub[10];
2367 uschar *user_msg;
2368 BOOL cond = FALSE;
2369 int size = 0;
2370 int ptr = 0;
2371
2372 while (isspace(*s)) s++;
2373 if (*s++ != '{') goto COND_FAILED_CURLY_START; /*}*/
2374
2375 switch(read_subs(sub, nelem(sub), 1,
2376 &s, yield == NULL, TRUE, US"acl", resetok))
2377 {
2378 case 1: expand_string_message = US"too few arguments or bracketing "
2379 "error for acl";
2380 case 2:
2381 case 3: return NULL;
2382 }
2383
2384 *resetok = FALSE; /* eval_acl() might allocate; do not reclaim */
2385 if (yield != NULL) switch(eval_acl(sub, nelem(sub), &user_msg))
2386 {
2387 case OK:
2388 cond = TRUE;
2389 case FAIL:
2390 lookup_value = NULL;
2391 if (user_msg)
2392 {
2393 lookup_value = string_cat(NULL, &size, &ptr, user_msg);
2394 lookup_value[ptr] = '\0';
2395 }
2396 *yield = cond == testfor;
2397 break;
2398
2399 case DEFER:
2400 expand_string_forcedfail = TRUE;
2401 /*FALLTHROUGH*/
2402 default:
2403 expand_string_message = string_sprintf("error from acl \"%s\"", sub[0]);
2404 return NULL;
2405 }
2406 return s;
2407 }
2408
2409
2410 /* saslauthd: does Cyrus saslauthd authentication. Four parameters are used:
2411
2412 ${if saslauthd {{username}{password}{service}{realm}} {yes}{no}}
2413
2414 However, the last two are optional. That is why the whole set is enclosed
2415 in their own set of braces. */
2416
2417 case ECOND_SASLAUTHD:
2418 #ifndef CYRUS_SASLAUTHD_SOCKET
2419 goto COND_FAILED_NOT_COMPILED;
2420 #else
2421 {
2422 uschar *sub[4];
2423 while (isspace(*s)) s++;
2424 if (*s++ != '{') goto COND_FAILED_CURLY_START; /* }-for-text-editors */
2425 switch(read_subs(sub, nelem(sub), 2, &s, yield == NULL, TRUE, US"saslauthd",
2426 resetok))
2427 {
2428 case 1: expand_string_message = US"too few arguments or bracketing "
2429 "error for saslauthd";
2430 case 2:
2431 case 3: return NULL;
2432 }
2433 if (sub[2] == NULL) sub[3] = NULL; /* realm if no service */
2434 if (yield != NULL)
2435 {
2436 int rc = auth_call_saslauthd(sub[0], sub[1], sub[2], sub[3],
2437 &expand_string_message);
2438 if (rc == ERROR || rc == DEFER) return NULL;
2439 *yield = (rc == OK) == testfor;
2440 }
2441 return s;
2442 }
2443 #endif /* CYRUS_SASLAUTHD_SOCKET */
2444
2445
2446 /* symbolic operators for numeric and string comparison, and a number of
2447 other operators, all requiring two arguments.
2448
2449 crypteq: encrypts plaintext and compares against an encrypted text,
2450 using crypt(), crypt16(), MD5 or SHA-1
2451 inlist/inlisti: checks if first argument is in the list of the second
2452 match: does a regular expression match and sets up the numerical
2453 variables if it succeeds
2454 match_address: matches in an address list
2455 match_domain: matches in a domain list
2456 match_ip: matches a host list that is restricted to IP addresses
2457 match_local_part: matches in a local part list
2458 */
2459
2460 case ECOND_MATCH_ADDRESS:
2461 case ECOND_MATCH_DOMAIN:
2462 case ECOND_MATCH_IP:
2463 case ECOND_MATCH_LOCAL_PART:
2464 #ifndef EXPAND_LISTMATCH_RHS
2465 sub2_honour_dollar = FALSE;
2466 #endif
2467 /* FALLTHROUGH */
2468
2469 case ECOND_CRYPTEQ:
2470 case ECOND_INLIST:
2471 case ECOND_INLISTI:
2472 case ECOND_MATCH:
2473
2474 case ECOND_NUM_L: /* Numerical comparisons */
2475 case ECOND_NUM_LE:
2476 case ECOND_NUM_E:
2477 case ECOND_NUM_EE:
2478 case ECOND_NUM_G:
2479 case ECOND_NUM_GE:
2480
2481 case ECOND_STR_LT: /* String comparisons */
2482 case ECOND_STR_LTI:
2483 case ECOND_STR_LE:
2484 case ECOND_STR_LEI:
2485 case ECOND_STR_EQ:
2486 case ECOND_STR_EQI:
2487 case ECOND_STR_GT:
2488 case ECOND_STR_GTI:
2489 case ECOND_STR_GE:
2490 case ECOND_STR_GEI:
2491
2492 for (i = 0; i < 2; i++)
2493 {
2494 /* Sometimes, we don't expand substrings; too many insecure configurations
2495 created using match_address{}{} and friends, where the second param
2496 includes information from untrustworthy sources. */
2497 BOOL honour_dollar = TRUE;
2498 if ((i > 0) && !sub2_honour_dollar)
2499 honour_dollar = FALSE;
2500
2501 while (isspace(*s)) s++;
2502 if (*s != '{')
2503 {
2504 if (i == 0) goto COND_FAILED_CURLY_START;
2505 expand_string_message = string_sprintf("missing 2nd string in {} "
2506 "after \"%s\"", name);
2507 return NULL;
2508 }
2509 sub[i] = expand_string_internal(s+1, TRUE, &s, yield == NULL,
2510 honour_dollar, resetok);
2511 if (sub[i] == NULL) return NULL;
2512 if (*s++ != '}') goto COND_FAILED_CURLY_END;
2513
2514 /* Convert to numerical if required; we know that the names of all the
2515 conditions that compare numbers do not start with a letter. This just saves
2516 checking for them individually. */
2517
2518 if (!isalpha(name[0]) && yield != NULL)
2519 if (sub[i][0] == 0)
2520 {
2521 num[i] = 0;
2522 DEBUG(D_expand)
2523 debug_printf("empty string cast to zero for numerical comparison\n");
2524 }
2525 else
2526 {
2527 num[i] = expanded_string_integer(sub[i], FALSE);
2528 if (expand_string_message != NULL) return NULL;
2529 }
2530 }
2531
2532 /* Result not required */
2533
2534 if (yield == NULL) return s;
2535
2536 /* Do an appropriate comparison */
2537
2538 switch(cond_type)
2539 {
2540 case ECOND_NUM_E:
2541 case ECOND_NUM_EE:
2542 tempcond = (num[0] == num[1]);
2543 break;
2544
2545 case ECOND_NUM_G:
2546 tempcond = (num[0] > num[1]);
2547 break;
2548
2549 case ECOND_NUM_GE:
2550 tempcond = (num[0] >= num[1]);
2551 break;
2552
2553 case ECOND_NUM_L:
2554 tempcond = (num[0] < num[1]);
2555 break;
2556
2557 case ECOND_NUM_LE:
2558 tempcond = (num[0] <= num[1]);
2559 break;
2560
2561 case ECOND_STR_LT:
2562 tempcond = (Ustrcmp(sub[0], sub[1]) < 0);
2563 break;
2564
2565 case ECOND_STR_LTI:
2566 tempcond = (strcmpic(sub[0], sub[1]) < 0);
2567 break;
2568
2569 case ECOND_STR_LE:
2570 tempcond = (Ustrcmp(sub[0], sub[1]) <= 0);
2571 break;
2572
2573 case ECOND_STR_LEI:
2574 tempcond = (strcmpic(sub[0], sub[1]) <= 0);
2575 break;
2576
2577 case ECOND_STR_EQ:
2578 tempcond = (Ustrcmp(sub[0], sub[1]) == 0);
2579 break;
2580
2581 case ECOND_STR_EQI:
2582 tempcond = (strcmpic(sub[0], sub[1]) == 0);
2583 break;
2584
2585 case ECOND_STR_GT:
2586 tempcond = (Ustrcmp(sub[0], sub[1]) > 0);
2587 break;
2588
2589 case ECOND_STR_GTI:
2590 tempcond = (strcmpic(sub[0], sub[1]) > 0);
2591 break;
2592
2593 case ECOND_STR_GE:
2594 tempcond = (Ustrcmp(sub[0], sub[1]) >= 0);
2595 break;
2596
2597 case ECOND_STR_GEI:
2598 tempcond = (strcmpic(sub[0], sub[1]) >= 0);
2599 break;
2600
2601 case ECOND_MATCH: /* Regular expression match */
2602 re = pcre_compile(CS sub[1], PCRE_COPT, (const char **)&rerror, &roffset,
2603 NULL);
2604 if (re == NULL)
2605 {
2606 expand_string_message = string_sprintf("regular expression error in "
2607 "\"%s\": %s at offset %d", sub[1], rerror, roffset);
2608 return NULL;
2609 }
2610 tempcond = regex_match_and_setup(re, sub[0], 0, -1);
2611 break;
2612
2613 case ECOND_MATCH_ADDRESS: /* Match in an address list */
2614 rc = match_address_list(sub[0], TRUE, FALSE, &(sub[1]), NULL, -1, 0, NULL);
2615 goto MATCHED_SOMETHING;
2616
2617 case ECOND_MATCH_DOMAIN: /* Match in a domain list */
2618 rc = match_isinlist(sub[0], &(sub[1]), 0, &domainlist_anchor, NULL,
2619 MCL_DOMAIN + MCL_NOEXPAND, TRUE, NULL);
2620 goto MATCHED_SOMETHING;
2621
2622 case ECOND_MATCH_IP: /* Match IP address in a host list */
2623 if (sub[0][0] != 0 && string_is_ip_address(sub[0], NULL) == 0)
2624 {
2625 expand_string_message = string_sprintf("\"%s\" is not an IP address",
2626 sub[0]);
2627 return NULL;
2628 }
2629 else
2630 {
2631 unsigned int *nullcache = NULL;
2632 check_host_block cb;
2633
2634 cb.host_name = US"";
2635 cb.host_address = sub[0];
2636
2637 /* If the host address starts off ::ffff: it is an IPv6 address in
2638 IPv4-compatible mode. Find the IPv4 part for checking against IPv4
2639 addresses. */
2640
2641 cb.host_ipv4 = (Ustrncmp(cb.host_address, "::ffff:", 7) == 0)?
2642 cb.host_address + 7 : cb.host_address;
2643
2644 rc = match_check_list(
2645 &sub[1], /* the list */
2646 0, /* separator character */
2647 &hostlist_anchor, /* anchor pointer */
2648 &nullcache, /* cache pointer */
2649 check_host, /* function for testing */
2650 &cb, /* argument for function */
2651 MCL_HOST, /* type of check */
2652 sub[0], /* text for debugging */
2653 NULL); /* where to pass back data */
2654 }
2655 goto MATCHED_SOMETHING;
2656
2657 case ECOND_MATCH_LOCAL_PART:
2658 rc = match_isinlist(sub[0], &(sub[1]), 0, &localpartlist_anchor, NULL,
2659 MCL_LOCALPART + MCL_NOEXPAND, TRUE, NULL);
2660 /* Fall through */
2661 /* VVVVVVVVVVVV */
2662 MATCHED_SOMETHING:
2663 switch(rc)
2664 {
2665 case OK:
2666 tempcond = TRUE;
2667 break;
2668
2669 case FAIL:
2670 tempcond = FALSE;
2671 break;
2672
2673 case DEFER:
2674 expand_string_message = string_sprintf("unable to complete match "
2675 "against \"%s\": %s", sub[1], search_error_message);
2676 return NULL;
2677 }
2678
2679 break;
2680
2681 /* Various "encrypted" comparisons. If the second string starts with
2682 "{" then an encryption type is given. Default to crypt() or crypt16()
2683 (build-time choice). */
2684 /* }-for-text-editors */
2685
2686 case ECOND_CRYPTEQ:
2687 #ifndef SUPPORT_CRYPTEQ
2688 goto COND_FAILED_NOT_COMPILED;
2689 #else
2690 if (strncmpic(sub[1], US"{md5}", 5) == 0)
2691 {
2692 int sublen = Ustrlen(sub[1]+5);
2693 md5 base;
2694 uschar digest[16];
2695
2696 md5_start(&base);
2697 md5_end(&base, sub[0], Ustrlen(sub[0]), digest);
2698
2699 /* If the length that we are comparing against is 24, the MD5 digest
2700 is expressed as a base64 string. This is the way LDAP does it. However,
2701 some other software uses a straightforward hex representation. We assume
2702 this if the length is 32. Other lengths fail. */
2703
2704 if (sublen == 24)
2705 {
2706 uschar *coded = b64encode(digest, 16);
2707 DEBUG(D_auth) debug_printf("crypteq: using MD5+B64 hashing\n"
2708 " subject=%s\n crypted=%s\n", coded, sub[1]+5);
2709 tempcond = (Ustrcmp(coded, sub[1]+5) == 0);
2710 }
2711 else if (sublen == 32)
2712 {
2713 int i;
2714 uschar coded[36];
2715 for (i = 0; i < 16; i++) sprintf(CS (coded+2*i), "%02X", digest[i]);
2716 coded[32] = 0;
2717 DEBUG(D_auth) debug_printf("crypteq: using MD5+hex hashing\n"
2718 " subject=%s\n crypted=%s\n", coded, sub[1]+5);
2719 tempcond = (strcmpic(coded, sub[1]+5) == 0);
2720 }
2721 else
2722 {
2723 DEBUG(D_auth) debug_printf("crypteq: length for MD5 not 24 or 32: "
2724 "fail\n crypted=%s\n", sub[1]+5);
2725 tempcond = FALSE;
2726 }
2727 }
2728
2729 else if (strncmpic(sub[1], US"{sha1}", 6) == 0)
2730 {
2731 int sublen = Ustrlen(sub[1]+6);
2732 hctx h;
2733 uschar digest[20];
2734
2735 sha1_start(&h);
2736 sha1_end(&h, sub[0], Ustrlen(sub[0]), digest);
2737
2738 /* If the length that we are comparing against is 28, assume the SHA1
2739 digest is expressed as a base64 string. If the length is 40, assume a
2740 straightforward hex representation. Other lengths fail. */
2741
2742 if (sublen == 28)
2743 {
2744 uschar *coded = b64encode(digest, 20);
2745 DEBUG(D_auth) debug_printf("crypteq: using SHA1+B64 hashing\n"
2746 " subject=%s\n crypted=%s\n", coded, sub[1]+6);
2747 tempcond = (Ustrcmp(coded, sub[1]+6) == 0);
2748 }
2749 else if (sublen == 40)
2750 {
2751 int i;
2752 uschar coded[44];
2753 for (i = 0; i < 20; i++) sprintf(CS (coded+2*i), "%02X", digest[i]);
2754 coded[40] = 0;
2755 DEBUG(D_auth) debug_printf("crypteq: using SHA1+hex hashing\n"
2756 " subject=%s\n crypted=%s\n", coded, sub[1]+6);
2757 tempcond = (strcmpic(coded, sub[1]+6) == 0);
2758 }
2759 else
2760 {
2761 DEBUG(D_auth) debug_printf("crypteq: length for SHA-1 not 28 or 40: "
2762 "fail\n crypted=%s\n", sub[1]+6);
2763 tempcond = FALSE;
2764 }
2765 }
2766
2767 else /* {crypt} or {crypt16} and non-{ at start */
2768 /* }-for-text-editors */
2769 {
2770 int which = 0;
2771 uschar *coded;
2772
2773 if (strncmpic(sub[1], US"{crypt}", 7) == 0)
2774 {
2775 sub[1] += 7;
2776 which = 1;
2777 }
2778 else if (strncmpic(sub[1], US"{crypt16}", 9) == 0)
2779 {
2780 sub[1] += 9;
2781 which = 2;
2782 }
2783 else if (sub[1][0] == '{') /* }-for-text-editors */
2784 {
2785 expand_string_message = string_sprintf("unknown encryption mechanism "
2786 "in \"%s\"", sub[1]);
2787 return NULL;
2788 }
2789
2790 switch(which)
2791 {
2792 case 0: coded = US DEFAULT_CRYPT(CS sub[0], CS sub[1]); break;
2793 case 1: coded = US crypt(CS sub[0], CS sub[1]); break;
2794 default: coded = US crypt16(CS sub[0], CS sub[1]); break;
2795 }
2796
2797 #define STR(s) # s
2798 #define XSTR(s) STR(s)
2799 DEBUG(D_auth) debug_printf("crypteq: using %s()\n"
2800 " subject=%s\n crypted=%s\n",
2801 which == 0 ? XSTR(DEFAULT_CRYPT) : which == 1 ? "crypt" : "crypt16",
2802 coded, sub[1]);
2803 #undef STR
2804 #undef XSTR
2805
2806 /* If the encrypted string contains fewer than two characters (for the
2807 salt), force failure. Otherwise we get false positives: with an empty
2808 string the yield of crypt() is an empty string! */
2809
2810 if (coded)
2811 tempcond = Ustrlen(sub[1]) < 2 ? FALSE : Ustrcmp(coded, sub[1]) == 0;
2812 else if (errno == EINVAL)
2813 tempcond = FALSE;
2814 else
2815 {
2816 expand_string_message = string_sprintf("crypt error: %s\n",
2817 US strerror(errno));
2818 return NULL;
2819 }
2820 }
2821 break;
2822 #endif /* SUPPORT_CRYPTEQ */
2823
2824 case ECOND_INLIST:
2825 case ECOND_INLISTI:
2826 {
2827 const uschar * list = sub[1];
2828 int sep = 0;
2829 uschar *save_iterate_item = iterate_item;
2830 int (*compare)(const uschar *, const uschar *);
2831
2832 DEBUG(D_expand) debug_printf("condition: %s\n", name);
2833
2834 tempcond = FALSE;
2835 compare = cond_type == ECOND_INLISTI
2836 ? strcmpic : (int (*)(const uschar *, const uschar *)) strcmp;
2837
2838 while ((iterate_item = string_nextinlist(&list, &sep, NULL, 0)))
2839 if (compare(sub[0], iterate_item) == 0)
2840 {
2841 tempcond = TRUE;
2842 break;
2843 }
2844 iterate_item = save_iterate_item;
2845 }
2846
2847 } /* Switch for comparison conditions */
2848
2849 *yield = tempcond == testfor;
2850 return s; /* End of comparison conditions */
2851
2852
2853 /* and/or: computes logical and/or of several conditions */
2854
2855 case ECOND_AND:
2856 case ECOND_OR:
2857 subcondptr = (yield == NULL)? NULL : &tempcond;
2858 combined_cond = (cond_type == ECOND_AND);
2859
2860 while (isspace(*s)) s++;
2861 if (*s++ != '{') goto COND_FAILED_CURLY_START; /* }-for-text-editors */
2862
2863 for (;;)
2864 {
2865 while (isspace(*s)) s++;
2866 /* {-for-text-editors */
2867 if (*s == '}') break;
2868 if (*s != '{') /* }-for-text-editors */
2869 {
2870 expand_string_message = string_sprintf("each subcondition "
2871 "inside an \"%s{...}\" condition must be in its own {}", name);
2872 return NULL;
2873 }
2874
2875 if (!(s = eval_condition(s+1, resetok, subcondptr)))
2876 {
2877 expand_string_message = string_sprintf("%s inside \"%s{...}\" condition",
2878 expand_string_message, name);
2879 return NULL;
2880 }
2881 while (isspace(*s)) s++;
2882
2883 /* {-for-text-editors */
2884 if (*s++ != '}')
2885 {
2886 /* {-for-text-editors */
2887 expand_string_message = string_sprintf("missing } at end of condition "
2888 "inside \"%s\" group", name);
2889 return NULL;
2890 }
2891
2892 if (yield != NULL)
2893 {
2894 if (cond_type == ECOND_AND)
2895 {
2896 combined_cond &= tempcond;
2897 if (!combined_cond) subcondptr = NULL; /* once false, don't */
2898 } /* evaluate any more */
2899 else
2900 {
2901 combined_cond |= tempcond;
2902 if (combined_cond) subcondptr = NULL; /* once true, don't */
2903 } /* evaluate any more */
2904 }
2905 }
2906
2907 if (yield != NULL) *yield = (combined_cond == testfor);
2908 return ++s;
2909
2910
2911 /* forall/forany: iterates a condition with different values */
2912
2913 case ECOND_FORALL:
2914 case ECOND_FORANY:
2915 {
2916 const uschar * list;
2917 int sep = 0;
2918 uschar *save_iterate_item = iterate_item;
2919
2920 DEBUG(D_expand) debug_printf("condition: %s\n", name);
2921
2922 while (isspace(*s)) s++;
2923 if (*s++ != '{') goto COND_FAILED_CURLY_START; /* }-for-text-editors */
2924 sub[0] = expand_string_internal(s, TRUE, &s, (yield == NULL), TRUE, resetok);
2925 if (sub[0] == NULL) return NULL;
2926 /* {-for-text-editors */
2927 if (*s++ != '}') goto COND_FAILED_CURLY_END;
2928
2929 while (isspace(*s)) s++;
2930 if (*s++ != '{') goto COND_FAILED_CURLY_START; /* }-for-text-editors */
2931
2932 sub[1] = s;
2933
2934 /* Call eval_condition once, with result discarded (as if scanning a
2935 "false" part). This allows us to find the end of the condition, because if
2936 the list it empty, we won't actually evaluate the condition for real. */
2937
2938 if (!(s = eval_condition(sub[1], resetok, NULL)))
2939 {
2940 expand_string_message = string_sprintf("%s inside \"%s\" condition",
2941 expand_string_message, name);
2942 return NULL;
2943 }
2944 while (isspace(*s)) s++;
2945
2946 /* {-for-text-editors */
2947 if (*s++ != '}')
2948 {
2949 /* {-for-text-editors */
2950 expand_string_message = string_sprintf("missing } at end of condition "
2951 "inside \"%s\"", name);
2952 return NULL;
2953 }
2954
2955 if (yield != NULL) *yield = !testfor;
2956 list = sub[0];
2957 while ((iterate_item = string_nextinlist(&list, &sep, NULL, 0)) != NULL)
2958 {
2959 DEBUG(D_expand) debug_printf("%s: $item = \"%s\"\n", name, iterate_item);
2960 if (!eval_condition(sub[1], resetok, &tempcond))
2961 {
2962 expand_string_message = string_sprintf("%s inside \"%s\" condition",
2963 expand_string_message, name);
2964 iterate_item = save_iterate_item;
2965 return NULL;
2966 }
2967 DEBUG(D_expand) debug_printf("%s: condition evaluated to %s\n", name,
2968 tempcond? "true":"false");
2969
2970 if (yield != NULL) *yield = (tempcond == testfor);
2971 if (tempcond == (cond_type == ECOND_FORANY)) break;
2972 }
2973
2974 iterate_item = save_iterate_item;
2975 return s;
2976 }
2977
2978
2979 /* The bool{} expansion condition maps a string to boolean.
2980 The values supported should match those supported by the ACL condition
2981 (acl.c, ACLC_CONDITION) so that we keep to a minimum the different ideas
2982 of true/false. Note that Router "condition" rules have a different
2983 interpretation, where general data can be used and only a few values
2984 map to FALSE.
2985 Note that readconf.c boolean matching, for boolean configuration options,
2986 only matches true/yes/false/no.
2987 The bool_lax{} condition matches the Router logic, which is much more
2988 liberal. */
2989 case ECOND_BOOL:
2990 case ECOND_BOOL_LAX:
2991 {
2992 uschar *sub_arg[1];
2993 uschar *t, *t2;
2994 uschar *ourname;
2995 size_t len;
2996 BOOL boolvalue = FALSE;
2997 while (isspace(*s)) s++;
2998 if (*s != '{') goto COND_FAILED_CURLY_START; /* }-for-text-editors */
2999 ourname = cond_type == ECOND_BOOL_LAX ? US"bool_lax" : US"bool";
3000 switch(read_subs(sub_arg, 1, 1, &s, yield == NULL, FALSE, ourname, resetok))
3001 {
3002 case 1: expand_string_message = string_sprintf(
3003 "too few arguments or bracketing error for %s",
3004 ourname);
3005 /*FALLTHROUGH*/
3006 case 2:
3007 case 3: return NULL;
3008 }
3009 t = sub_arg[0];
3010 while (isspace(*t)) t++;
3011 len = Ustrlen(t);
3012 if (len)
3013 {
3014 /* trailing whitespace: seems like a good idea to ignore it too */
3015 t2 = t + len - 1;
3016 while (isspace(*t2)) t2--;
3017 if (t2 != (t + len))
3018 {
3019 *++t2 = '\0';
3020 len = t2 - t;
3021 }
3022 }
3023 DEBUG(D_expand)
3024 debug_printf("considering %s: %s\n", ourname, len ? t : US"<empty>");
3025 /* logic for the lax case from expand_check_condition(), which also does
3026 expands, and the logic is both short and stable enough that there should
3027 be no maintenance burden from replicating it. */
3028 if (len == 0)
3029 boolvalue = FALSE;
3030 else if (*t == '-'
3031 ? Ustrspn(t+1, "0123456789") == len-1
3032 : Ustrspn(t, "0123456789") == len)
3033 {
3034 boolvalue = (Uatoi(t) == 0) ? FALSE : TRUE;
3035 /* expand_check_condition only does a literal string "0" check */
3036 if ((cond_type == ECOND_BOOL_LAX) && (len > 1))
3037 boolvalue = TRUE;
3038 }
3039 else if (strcmpic(t, US"true") == 0 || strcmpic(t, US"yes") == 0)
3040 boolvalue = TRUE;
3041 else if (strcmpic(t, US"false") == 0 || strcmpic(t, US"no") == 0)
3042 boolvalue = FALSE;
3043 else if (cond_type == ECOND_BOOL_LAX)
3044 boolvalue = TRUE;
3045 else
3046 {
3047 expand_string_message = string_sprintf("unrecognised boolean "
3048 "value \"%s\"", t);
3049 return NULL;
3050 }
3051 if (yield != NULL) *yield = (boolvalue == testfor);
3052 return s;
3053 }
3054
3055 /* Unknown condition */
3056
3057 default:
3058 expand_string_message = string_sprintf("unknown condition \"%s\"", name);
3059 return NULL;
3060 } /* End switch on condition type */
3061
3062 /* Missing braces at start and end of data */
3063
3064 COND_FAILED_CURLY_START:
3065 expand_string_message = string_sprintf("missing { after \"%s\"", name);
3066 return NULL;
3067
3068 COND_FAILED_CURLY_END:
3069 expand_string_message = string_sprintf("missing } at end of \"%s\" condition",
3070 name);
3071 return NULL;
3072
3073 /* A condition requires code that is not compiled */
3074
3075 #if !defined(SUPPORT_PAM) || !defined(RADIUS_CONFIG_FILE) || \
3076 !defined(LOOKUP_LDAP) || !defined(CYRUS_PWCHECK_SOCKET) || \
3077 !defined(SUPPORT_CRYPTEQ) || !defined(CYRUS_SASLAUTHD_SOCKET)
3078 COND_FAILED_NOT_COMPILED:
3079 expand_string_message = string_sprintf("support for \"%s\" not compiled",
3080 name);
3081 return NULL;
3082 #endif
3083 }
3084
3085
3086
3087
3088 /*************************************************
3089 * Save numerical variables *
3090 *************************************************/
3091
3092 /* This function is called from items such as "if" that want to preserve and
3093 restore the numbered variables.
3094
3095 Arguments:
3096 save_expand_string points to an array of pointers to set
3097 save_expand_nlength points to an array of ints for the lengths
3098
3099 Returns: the value of expand max to save
3100 */
3101
3102 static int
3103 save_expand_strings(uschar **save_expand_nstring, int *save_expand_nlength)
3104 {
3105 int i;
3106 for (i = 0; i <= expand_nmax; i++)
3107 {
3108 save_expand_nstring[i] = expand_nstring[i];
3109 save_expand_nlength[i] = expand_nlength[i];
3110 }
3111 return expand_nmax;
3112 }
3113
3114
3115
3116 /*************************************************
3117 * Restore numerical variables *
3118 *************************************************/
3119
3120 /* This function restored saved values of numerical strings.
3121
3122 Arguments:
3123 save_expand_nmax the number of strings to restore
3124 save_expand_string points to an array of pointers
3125 save_expand_nlength points to an array of ints
3126
3127 Returns: nothing
3128 */
3129
3130 static void
3131 restore_expand_strings(int save_expand_nmax, uschar **save_expand_nstring,
3132 int *save_expand_nlength)
3133 {
3134 int i;
3135 expand_nmax = save_expand_nmax;
3136 for (i = 0; i <= expand_nmax; i++)
3137 {
3138 expand_nstring[i] = save_expand_nstring[i];
3139 expand_nlength[i] = save_expand_nlength[i];
3140 }
3141 }
3142
3143
3144
3145
3146
3147 /*************************************************
3148 * Handle yes/no substrings *
3149 *************************************************/
3150
3151 /* This function is used by ${if}, ${lookup} and ${extract} to handle the
3152 alternative substrings that depend on whether or not the condition was true,
3153 or the lookup or extraction succeeded. The substrings always have to be
3154 expanded, to check their syntax, but "skipping" is set when the result is not
3155 needed - this avoids unnecessary nested lookups.
3156
3157 Arguments:
3158 skipping TRUE if we were skipping when this item was reached
3159 yes TRUE if the first string is to be used, else use the second
3160 save_lookup a value to put back into lookup_value before the 2nd expansion
3161 sptr points to the input string pointer
3162 yieldptr points to the output string pointer
3163 sizeptr points to the output string size
3164 ptrptr points to the output string pointer
3165 type "lookup", "if", "extract", "run", "env", "listextract" or
3166 "certextract" for error message
3167 resetok if not NULL, pointer to flag - write FALSE if unsafe to reset
3168 the store.
3169
3170 Returns: 0 OK; lookup_value has been reset to save_lookup
3171 1 expansion failed
3172 2 expansion failed because of bracketing error
3173 */
3174
3175 static int
3176 process_yesno(BOOL skipping, BOOL yes, uschar *save_lookup, const uschar **sptr,
3177 uschar **yieldptr, int *sizeptr, int *ptrptr, uschar *type, BOOL *resetok)
3178 {
3179 int rc = 0;
3180 const uschar *s = *sptr; /* Local value */
3181 uschar *sub1, *sub2;
3182 const uschar * errwhere;
3183
3184 /* If there are no following strings, we substitute the contents of $value for
3185 lookups and for extractions in the success case. For the ${if item, the string
3186 "true" is substituted. In the fail case, nothing is substituted for all three
3187 items. */
3188
3189 while (isspace(*s)) s++;
3190 if (*s == '}')
3191 {
3192 if (!skipping)
3193 if (type[0] == 'i')
3194 {
3195 if (yes) *yieldptr = string_catn(*yieldptr, sizeptr, ptrptr, US"true", 4);
3196 }
3197 else
3198 {
3199 if (yes && lookup_value)
3200 *yieldptr = string_cat(*yieldptr, sizeptr, ptrptr, lookup_value);
3201 lookup_value = save_lookup;
3202 }
3203 s++;
3204 goto RETURN;
3205 }
3206
3207 /* The first following string must be braced. */
3208
3209 if (*s++ != '{')
3210 {
3211 errwhere = US"'yes' part did not start with '{'";
3212 goto FAILED_CURLY;
3213 }
3214
3215 /* Expand the first substring. Forced failures are noticed only if we actually
3216 want this string. Set skipping in the call in the fail case (this will always
3217 be the case if we were already skipping). */
3218
3219 sub1 = expand_string_internal(s, TRUE, &s, !yes, TRUE, resetok);
3220 if (sub1 == NULL && (yes || !expand_string_forcedfail)) goto FAILED;
3221 expand_string_forcedfail = FALSE;
3222 if (*s++ != '}')
3223 {
3224 errwhere = US"'yes' part did not end with '}'";
3225 goto FAILED_CURLY;
3226 }
3227
3228 /* If we want the first string, add it to the output */
3229
3230 if (yes)
3231 *yieldptr = string_cat(*yieldptr, sizeptr, ptrptr, sub1);
3232
3233 /* If this is called from a lookup/env or a (cert)extract, we want to restore
3234 $value to what it was at the start of the item, so that it has this value
3235 during the second string expansion. For the call from "if" or "run" to this
3236 function, save_lookup is set to lookup_value, so that this statement does
3237 nothing. */
3238
3239 lookup_value = save_lookup;
3240
3241 /* There now follows either another substring, or "fail", or nothing. This
3242 time, forced failures are noticed only if we want the second string. We must
3243 set skipping in the nested call if we don't want this string, or if we were
3244 already skipping. */
3245
3246 while (isspace(*s)) s++;
3247 if (*s == '{')
3248 {
3249 sub2 = expand_string_internal(s+1, TRUE, &s, yes || skipping, TRUE, resetok);
3250 if (sub2 == NULL && (!yes || !expand_string_forcedfail)) goto FAILED;
3251 expand_string_forcedfail = FALSE;
3252 if (*s++ != '}')
3253 {
3254 errwhere = US"'no' part did not start with '{'";
3255 goto FAILED_CURLY;
3256 }
3257
3258 /* If we want the second string, add it to the output */
3259
3260 if (!yes)
3261 *yieldptr = string_cat(*yieldptr, sizeptr, ptrptr, sub2);
3262 }
3263
3264 /* If there is no second string, but the word "fail" is present when the use of
3265 the second string is wanted, set a flag indicating it was a forced failure
3266 rather than a syntactic error. Swallow the terminating } in case this is nested
3267 inside another lookup or if or extract. */
3268
3269 else if (*s != '}')
3270 {
3271 uschar name[256];
3272 /* deconst cast ok here as source is s anyway */
3273 s = US read_name(name, sizeof(name), s, US"_");
3274 if (Ustrcmp(name, "fail") == 0)
3275 {
3276 if (!yes && !skipping)
3277 {
3278 while (isspace(*s)) s++;
3279 if (*s++ != '}')
3280 {
3281 errwhere = US"did not close with '}' after forcedfail";
3282 goto FAILED_CURLY;
3283 }
3284 expand_string_message =
3285 string_sprintf("\"%s\" failed and \"fail\" requested", type);
3286 expand_string_forcedfail = TRUE;
3287 goto FAILED;
3288 }
3289 }
3290 else
3291 {
3292 expand_string_message =
3293 string_sprintf("syntax error in \"%s\" item - \"fail\" expected", type);
3294 goto FAILED;
3295 }
3296 }
3297
3298 /* All we have to do now is to check on the final closing brace. */
3299
3300 while (isspace(*s)) s++;
3301 if (*s++ != '}')
3302 {
3303 errwhere = US"did not close with '}'";
3304 goto FAILED_CURLY;
3305 }
3306
3307
3308 RETURN:
3309 /* Update the input pointer value before returning */
3310 *sptr = s;
3311 return rc;
3312
3313 FAILED_CURLY:
3314 /* Get here if there is a bracketing failure */
3315 expand_string_message = string_sprintf(
3316 "curly-bracket problem in conditional yes/no parsing: %s\n"
3317 " remaining string is '%s'", errwhere, --s);
3318 rc = 2;
3319 goto RETURN;
3320
3321 FAILED:
3322 /* Get here for other failures */
3323 rc = 1;
3324 goto RETURN;
3325 }
3326
3327
3328
3329
3330 /*************************************************
3331 * Handle MD5 or SHA-1 computation for HMAC *
3332 *************************************************/
3333
3334 /* These are some wrapping functions that enable the HMAC code to be a bit
3335 cleaner. A good compiler will spot the tail recursion.
3336
3337 Arguments:
3338 type HMAC_MD5 or HMAC_SHA1
3339 remaining are as for the cryptographic hash functions
3340
3341 Returns: nothing
3342 */
3343
3344 static void
3345 chash_start(int type, void *base)
3346 {
3347 if (type == HMAC_MD5)
3348 md5_start((md5 *)base);
3349 else
3350 sha1_start((hctx *)base);
3351 }
3352
3353 static void
3354 chash_mid(int type, void *base, uschar *string)
3355 {
3356 if (type == HMAC_MD5)
3357 md5_mid((md5 *)base, string);
3358 else
3359 sha1_mid((hctx *)base, string);
3360 }
3361
3362 static void
3363 chash_end(int type, void *base, uschar *string, int length, uschar *digest)
3364 {
3365 if (type == HMAC_MD5)
3366 md5_end((md5 *)base, string, length, digest);
3367 else
3368 sha1_end((hctx *)base, string, length, digest);
3369 }
3370
3371
3372
3373
3374
3375 /********************************************************
3376 * prvs: Get last three digits of days since Jan 1, 1970 *
3377 ********************************************************/
3378
3379 /* This is needed to implement the "prvs" BATV reverse
3380 path signing scheme
3381
3382 Argument: integer "days" offset to add or substract to
3383 or from the current number of days.
3384
3385 Returns: pointer to string containing the last three
3386 digits of the number of days since Jan 1, 1970,
3387 modified by the offset argument, NULL if there
3388 was an error in the conversion.
3389
3390 */
3391
3392 static uschar *
3393 prvs_daystamp(int day_offset)
3394 {
3395 uschar *days = store_get(32); /* Need at least 24 for cases */
3396 (void)string_format(days, 32, TIME_T_FMT, /* where TIME_T_FMT is %lld */
3397 (time(NULL) + day_offset*86400)/86400);
3398 return (Ustrlen(days) >= 3) ? &days[Ustrlen(days)-3] : US"100";
3399 }
3400
3401
3402
3403 /********************************************************
3404 * prvs: perform HMAC-SHA1 computation of prvs bits *
3405 ********************************************************/
3406
3407 /* This is needed to implement the "prvs" BATV reverse
3408 path signing scheme
3409
3410 Arguments:
3411 address RFC2821 Address to use
3412 key The key to use (must be less than 64 characters
3413 in size)
3414 key_num Single-digit key number to use. Defaults to
3415 '0' when NULL.
3416
3417 Returns: pointer to string containing the first three
3418 bytes of the final hash in hex format, NULL if
3419 there was an error in the process.
3420 */
3421
3422 static uschar *
3423 prvs_hmac_sha1(uschar *address, uschar *key, uschar *key_num, uschar *daystamp)
3424 {
3425 uschar *hash_source, *p;
3426 int size = 0,offset = 0,i;
3427 hctx h;
3428 uschar innerhash[20];
3429 uschar finalhash[20];
3430 uschar innerkey[64];
3431 uschar outerkey[64];
3432 uschar *finalhash_hex = store_get(40);
3433
3434 if (key_num == NULL)
3435 key_num = US"0";
3436
3437 if (Ustrlen(key) > 64)
3438 return NULL;
3439
3440 hash_source = string_catn(NULL, &size, &offset, key_num, 1);
3441 hash_source = string_catn(hash_source, &size, &offset, daystamp, 3);
3442 hash_source = string_cat(hash_source, &size, &offset, address);
3443 hash_source[offset] = '\0';
3444
3445 DEBUG(D_expand) debug_printf("prvs: hash source is '%s'\n", hash_source);
3446
3447 memset(innerkey, 0x36, 64);
3448 memset(outerkey, 0x5c, 64);
3449
3450 for (i = 0; i < Ustrlen(key); i++)
3451 {
3452 innerkey[i] ^= key[i];
3453 outerkey[i] ^= key[i];
3454 }
3455
3456 chash_start(HMAC_SHA1, &h);
3457 chash_mid(HMAC_SHA1, &h, innerkey);
3458 chash_end(HMAC_SHA1, &h, hash_source, offset, innerhash);
3459
3460 chash_start(HMAC_SHA1, &h);
3461 chash_mid(HMAC_SHA1, &h, outerkey);
3462 chash_end(HMAC_SHA1, &h, innerhash, 20, finalhash);
3463
3464 p = finalhash_hex;
3465 for (i = 0; i < 3; i++)
3466 {
3467 *p++ = hex_digits[(finalhash[i] & 0xf0) >> 4];
3468 *p++ = hex_digits[finalhash[i] & 0x0f];
3469 }
3470 *p = '\0';
3471
3472 return finalhash_hex;
3473 }
3474
3475
3476
3477
3478 /*************************************************
3479 * Join a file onto the output string *
3480 *************************************************/
3481
3482 /* This is used for readfile/readsock and after a run expansion.
3483 It joins the contents of a file onto the output string, globally replacing
3484 newlines with a given string (optionally).
3485
3486 Arguments:
3487 f the FILE
3488 yield pointer to the expandable string
3489 sizep pointer to the current size
3490 ptrp pointer to the current position
3491 eol newline replacement string, or NULL
3492
3493 Returns: new value of string pointer
3494 */
3495
3496 static uschar *
3497 cat_file(FILE *f, uschar *yield, int *sizep, int *ptrp, uschar *eol)
3498 {
3499 uschar buffer[1024];
3500
3501 while (Ufgets(buffer, sizeof(buffer), f))
3502 {
3503 int len = Ustrlen(buffer);
3504 if (eol && buffer[len-1] == '\n') len--;
3505 yield = string_catn(yield, sizep, ptrp, buffer, len);
3506 if (eol && buffer[len])
3507 yield = string_cat(yield, sizep, ptrp, eol);
3508 }
3509
3510 if (yield) yield[*ptrp] = 0;
3511
3512 return yield;
3513 }
3514
3515
3516
3517
3518 /*************************************************
3519 * Evaluate numeric expression *
3520 *************************************************/
3521
3522 /* This is a set of mutually recursive functions that evaluate an arithmetic
3523 expression involving + - * / % & | ^ ~ << >> and parentheses. The only one of
3524 these functions that is called from elsewhere is eval_expr, whose interface is:
3525
3526 Arguments:
3527 sptr pointer to the pointer to the string - gets updated
3528 decimal TRUE if numbers are to be assumed decimal
3529 error pointer to where to put an error message - must be NULL on input
3530 endket TRUE if ')' must terminate - FALSE for external call
3531
3532 Returns: on success: the value of the expression, with *error still NULL
3533 on failure: an undefined value, with *error = a message
3534 */
3535
3536 static int_eximarith_t eval_op_or(uschar **, BOOL, uschar **);
3537
3538
3539 static int_eximarith_t
3540 eval_expr(uschar **sptr, BOOL decimal, uschar **error, BOOL endket)
3541 {
3542 uschar *s = *sptr;
3543 int_eximarith_t x = eval_op_or(&s, decimal, error);
3544 if (*error == NULL)
3545 {
3546 if (endket)
3547 {
3548 if (*s != ')')
3549 *error = US"expecting closing parenthesis";
3550 else
3551 while (isspace(*(++s)));
3552 }
3553 else if (*s != 0) *error = US"expecting operator";
3554 }
3555 *sptr = s;
3556 return x;
3557 }
3558
3559
3560 static int_eximarith_t
3561 eval_number(uschar **sptr, BOOL decimal, uschar **error)
3562 {
3563 register int c;
3564 int_eximarith_t n;
3565 uschar *s = *sptr;
3566 while (isspace(*s)) s++;
3567 c = *s;
3568 if (isdigit(c))
3569 {
3570 int count;
3571 (void)sscanf(CS s, (decimal? SC_EXIM_DEC "%n" : SC_EXIM_ARITH "%n"), &n, &count);
3572 s += count;
3573 switch (tolower(*s))
3574 {
3575 default: break;
3576 case 'k': n *= 1024; s++; break;
3577 case 'm': n *= 1024*1024; s++; break;
3578 case 'g': n *= 1024*1024*1024; s++; break;
3579 }
3580 while (isspace (*s)) s++;
3581 }
3582 else if (c == '(')
3583 {
3584 s++;
3585 n = eval_expr(&s, decimal, error, 1);
3586 }
3587 else
3588 {
3589 *error = US"expecting number or opening parenthesis";
3590 n = 0;
3591 }
3592 *sptr = s;
3593 return n;
3594 }
3595
3596
3597 static int_eximarith_t
3598 eval_op_unary(uschar **sptr, BOOL decimal, uschar **error)
3599 {
3600 uschar *s = *sptr;
3601 int_eximarith_t x;
3602 while (isspace(*s)) s++;
3603 if (*s == '+' || *s == '-' || *s == '~')
3604 {
3605 int op = *s++;
3606 x = eval_op_unary(&s, decimal, error);
3607 if (op == '-') x = -x;
3608 else if (op == '~') x = ~x;
3609 }
3610 else
3611 {
3612 x = eval_number(&s, decimal, error);
3613 }
3614 *sptr = s;
3615 return x;
3616 }
3617
3618
3619 static int_eximarith_t
3620 eval_op_mult(uschar **sptr, BOOL decimal, uschar **error)
3621 {
3622 uschar *s = *sptr;
3623 int_eximarith_t x = eval_op_unary(&s, decimal, error);
3624 if (*error == NULL)
3625 {
3626 while (*s == '*' || *s == '/' || *s == '%')
3627 {
3628 int op = *s++;
3629 int_eximarith_t y = eval_op_unary(&s, decimal, error);
3630 if (*error != NULL) break;
3631 /* SIGFPE both on div/mod by zero and on INT_MIN / -1, which would give
3632 * a value of INT_MAX+1. Note that INT_MIN * -1 gives INT_MIN for me, which
3633 * is a bug somewhere in [gcc 4.2.1, FreeBSD, amd64]. In fact, -N*-M where
3634 * -N*M is INT_MIN will yielf INT_MIN.
3635 * Since we don't support floating point, this is somewhat simpler.
3636 * Ideally, we'd return an error, but since we overflow for all other
3637 * arithmetic, consistency suggests otherwise, but what's the correct value
3638 * to use? There is none.
3639 * The C standard guarantees overflow for unsigned arithmetic but signed
3640 * overflow invokes undefined behaviour; in practice, this is overflow
3641 * except for converting INT_MIN to INT_MAX+1. We also can't guarantee
3642 * that long/longlong larger than int are available, or we could just work
3643 * with larger types. We should consider whether to guarantee 32bit eval
3644 * and 64-bit working variables, with errors returned. For now ...
3645 * So, the only SIGFPEs occur with a non-shrinking div/mod, thus -1; we
3646 * can just let the other invalid results occur otherwise, as they have
3647 * until now. For this one case, we can coerce.
3648 */
3649 if (y == -1 && x == EXIM_ARITH_MIN && op != '*')
3650 {
3651 DEBUG(D_expand)
3652 debug_printf("Integer exception dodging: " PR_EXIM_ARITH "%c-1 coerced to " PR_EXIM_ARITH "\n",
3653 EXIM_ARITH_MIN, op, EXIM_ARITH_MAX);
3654 x = EXIM_ARITH_MAX;
3655 continue;
3656 }
3657 if (op == '*')
3658 x *= y;
3659 else
3660 {
3661 if (y == 0)
3662 {
3663 *error = (op == '/') ? US"divide by zero" : US"modulo by zero";
3664 x = 0;
3665 break;
3666 }
3667 if (op == '/')
3668 x /= y;
3669 else
3670 x %= y;
3671 }
3672 }
3673 }
3674 *sptr = s;
3675 return x;
3676 }
3677
3678
3679 static int_eximarith_t
3680 eval_op_sum(uschar **sptr, BOOL decimal, uschar **error)
3681 {
3682 uschar *s = *sptr;
3683 int_eximarith_t x = eval_op_mult(&s, decimal, error);
3684 if (!*error)
3685 {
3686 while (*s == '+' || *s == '-')
3687 {
3688 int op = *s++;
3689 int_eximarith_t y = eval_op_mult(&s, decimal, error);
3690 if (*error) break;
3691 if ( (x >= EXIM_ARITH_MAX/2 && x >= EXIM_ARITH_MAX/2)
3692 || (x <= -(EXIM_ARITH_MAX/2) && y <= -(EXIM_ARITH_MAX/2)))
3693 { /* over-conservative check */
3694 *error = op == '+'
3695 ? US"overflow in sum" : US"overflow in difference";
3696 break;
3697 }
3698 if (op == '+') x += y; else x -= y;
3699 }
3700 }
3701 *sptr = s;
3702 return x;
3703 }
3704
3705
3706 static int_eximarith_t
3707 eval_op_shift(uschar **sptr, BOOL decimal, uschar **error)
3708 {
3709 uschar *s = *sptr;
3710 int_eximarith_t x = eval_op_sum(&s, decimal, error);
3711 if (*error == NULL)
3712 {
3713 while ((*s == '<' || *s == '>') && s[1] == s[0])
3714 {
3715 int_eximarith_t y;
3716 int op = *s++;
3717 s++;
3718 y = eval_op_sum(&s, decimal, error);
3719 if (*error != NULL) break;
3720 if (op == '<') x <<= y; else x >>= y;
3721 }
3722 }
3723 *sptr = s;
3724 return x;
3725 }
3726
3727
3728 static int_eximarith_t
3729 eval_op_and(uschar **sptr, BOOL decimal, uschar **error)
3730 {
3731 uschar *s = *sptr;
3732 int_eximarith_t x = eval_op_shift(&s, decimal, error);
3733 if (*error == NULL)
3734 {
3735 while (*s == '&')
3736 {
3737 int_eximarith_t y;
3738 s++;
3739 y = eval_op_shift(&s, decimal, error);
3740 if (*error != NULL) break;
3741 x &= y;
3742 }
3743 }
3744 *sptr = s;
3745 return x;
3746 }
3747
3748
3749 static int_eximarith_t
3750 eval_op_xor(uschar **sptr, BOOL decimal, uschar **error)
3751 {
3752 uschar *s = *sptr;
3753 int_eximarith_t x = eval_op_and(&s, decimal, error);
3754 if (*error == NULL)
3755 {
3756 while (*s == '^')
3757 {
3758 int_eximarith_t y;
3759 s++;
3760 y = eval_op_and(&s, decimal, error);
3761 if (*error != NULL) break;
3762 x ^= y;
3763 }
3764 }
3765 *sptr = s;
3766 return x;
3767 }
3768
3769
3770 static int_eximarith_t
3771 eval_op_or(uschar **sptr, BOOL decimal, uschar **error)
3772 {
3773 uschar *s = *sptr;
3774 int_eximarith_t x = eval_op_xor(&s, decimal, error);
3775 if (*error == NULL)
3776 {
3777 while (*s == '|')
3778 {
3779 int_eximarith_t y;
3780 s++;
3781 y = eval_op_xor(&s, decimal, error);
3782 if (*error != NULL) break;
3783 x |= y;
3784 }
3785 }
3786 *sptr = s;
3787 return x;
3788 }
3789
3790
3791
3792 /*************************************************
3793 * Expand string *
3794 *************************************************/
3795
3796 /* Returns either an unchanged string, or the expanded string in stacking pool
3797 store. Interpreted sequences are:
3798
3799 \... normal escaping rules
3800 $name substitutes the variable
3801 ${name} ditto
3802 ${op:string} operates on the expanded string value
3803 ${item{arg1}{arg2}...} expands the args and then does the business
3804 some literal args are not enclosed in {}
3805
3806 There are now far too many operators and item types to make it worth listing
3807 them here in detail any more.
3808
3809 We use an internal routine recursively to handle embedded substrings. The
3810 external function follows. The yield is NULL if the expansion failed, and there
3811 are two cases: if something collapsed syntactically, or if "fail" was given
3812 as the action on a lookup failure. These can be distinguised by looking at the
3813 variable expand_string_forcedfail, which is TRUE in the latter case.
3814
3815 The skipping flag is set true when expanding a substring that isn't actually
3816 going to be used (after "if" or "lookup") and it prevents lookups from
3817 happening lower down.
3818
3819 Store usage: At start, a store block of the length of the input plus 64
3820 is obtained. This is expanded as necessary by string_cat(), which might have to
3821 get a new block, or might be able to expand the original. At the end of the
3822 function we can release any store above that portion of the yield block that
3823 was actually used. In many cases this will be optimal.
3824
3825 However: if the first item in the expansion is a variable name or header name,
3826 we reset the store before processing it; if the result is in fresh store, we
3827 use that without copying. This is helpful for expanding strings like
3828 $message_headers which can get very long.
3829
3830 There's a problem if a ${dlfunc item has side-effects that cause allocation,
3831 since resetting the store at the end of the expansion will free store that was
3832 allocated by the plugin code as well as the slop after the expanded string. So
3833 we skip any resets if ${dlfunc } has been used. The same applies for ${acl }
3834 and, given the acl condition, ${if }. This is an unfortunate consequence of
3835 string expansion becoming too powerful.
3836
3837 Arguments:
3838 string the string to be expanded
3839 ket_ends true if expansion is to stop at }
3840 left if not NULL, a pointer to the first character after the
3841 expansion is placed here (typically used with ket_ends)
3842 skipping TRUE for recursive calls when the value isn't actually going
3843 to be used (to allow for optimisation)
3844 honour_dollar TRUE if $ is to be expanded,
3845 FALSE if it's just another character
3846 resetok_p if not NULL, pointer to flag - write FALSE if unsafe to reset
3847 the store.
3848
3849 Returns: NULL if expansion fails:
3850 expand_string_forcedfail is set TRUE if failure was forced
3851 expand_string_message contains a textual error message
3852 a pointer to the expanded string on success
3853 */
3854
3855 static uschar *
3856 expand_string_internal(const uschar *string, BOOL ket_ends, const uschar **left,
3857 BOOL skipping, BOOL honour_dollar, BOOL *resetok_p)
3858 {
3859 int ptr = 0;
3860 int size = Ustrlen(string)+ 64;
3861 uschar *yield = store_get(size);
3862 int item_type;
3863 const uschar *s = string;
3864 uschar *save_expand_nstring[EXPAND_MAXN+1];
3865 int save_expand_nlength[EXPAND_MAXN+1];
3866 BOOL resetok = TRUE;
3867
3868 DEBUG(D_expand)
3869 debug_printf("%s: %s\n", skipping ? " scanning" : "considering", string);
3870
3871 expand_string_forcedfail = FALSE;
3872 expand_string_message = US"";
3873
3874 while (*s != 0)
3875 {
3876 uschar *value;
3877 uschar name[256];
3878
3879 /* \ escapes the next character, which must exist, or else
3880 the expansion fails. There's a special escape, \N, which causes
3881 copying of the subject verbatim up to the next \N. Otherwise,
3882 the escapes are the standard set. */
3883
3884 if (*s == '\\')
3885 {
3886 if (s[1] == 0)
3887 {
3888 expand_string_message = US"\\ at end of string";
3889 goto EXPAND_FAILED;
3890 }
3891
3892 if (s[1] == 'N')
3893 {
3894 const uschar * t = s + 2;
3895 for (s = t; *s != 0; s++) if (*s == '\\' && s[1] == 'N') break;
3896 yield = string_catn(yield, &size, &ptr, t, s - t);
3897 if (*s != 0) s += 2;
3898 }
3899
3900 else
3901 {
3902 uschar ch[1];
3903 ch[0] = string_interpret_escape(&s);
3904 s++;
3905 yield = string_catn(yield, &size, &ptr, ch, 1);
3906 }
3907
3908 continue;
3909 }
3910
3911 /*{*/
3912 /* Anything other than $ is just copied verbatim, unless we are
3913 looking for a terminating } character. */
3914
3915 /*{*/
3916 if (ket_ends && *s == '}') break;
3917
3918 if (*s != '$' || !honour_dollar)
3919 {
3920 yield = string_catn(yield, &size, &ptr, s++, 1);
3921 continue;
3922 }
3923
3924 /* No { after the $ - must be a plain name or a number for string
3925 match variable. There has to be a fudge for variables that are the
3926 names of header fields preceded by "$header_" because header field
3927 names can contain any printing characters except space and colon.
3928 For those that don't like typing this much, "$h_" is a synonym for
3929 "$header_". A non-existent header yields a NULL value; nothing is
3930 inserted. */ /*}*/
3931
3932 if (isalpha((*(++s))))
3933 {
3934 int len;
3935 int newsize = 0;
3936
3937 s = read_name(name, sizeof(name), s, US"_");
3938
3939 /* If this is the first thing to be expanded, release the pre-allocated
3940 buffer. */
3941
3942 if (ptr == 0 && yield != NULL)
3943 {
3944 if (resetok) store_reset(yield);
3945 yield = NULL;
3946 size = 0;
3947 }
3948
3949 /* Header */
3950
3951 if (Ustrncmp(name, "h_", 2) == 0 ||
3952 Ustrncmp(name, "rh_", 3) == 0 ||
3953 Ustrncmp(name, "bh_", 3) == 0 ||
3954 Ustrncmp(name, "header_", 7) == 0 ||
3955 Ustrncmp(name, "rheader_", 8) == 0 ||
3956 Ustrncmp(name, "bheader_", 8) == 0)
3957 {
3958 BOOL want_raw = (name[0] == 'r')? TRUE : FALSE;
3959 uschar *charset = (name[0] == 'b')? NULL : headers_charset;
3960 s = read_header_name(name, sizeof(name), s);
3961 value = find_header(name, FALSE, &newsize, want_raw, charset);
3962
3963 /* If we didn't find the header, and the header contains a closing brace
3964 character, this may be a user error where the terminating colon
3965 has been omitted. Set a flag to adjust the error message in this case.
3966 But there is no error here - nothing gets inserted. */
3967
3968 if (value == NULL)
3969 {
3970 if (Ustrchr(name, '}') != NULL) malformed_header = TRUE;
3971 continue;
3972 }
3973 }
3974
3975 /* Variable */
3976
3977 else if (!(value = find_variable(name, FALSE, skipping, &newsize)))
3978 {
3979 expand_string_message =
3980 string_sprintf("unknown variable name \"%s\"", name);
3981 check_variable_error_message(name);
3982 goto EXPAND_FAILED;
3983 }
3984
3985 /* If the data is known to be in a new buffer, newsize will be set to the
3986 size of that buffer. If this is the first thing in an expansion string,
3987 yield will be NULL; just point it at the new store instead of copying. Many
3988 expansion strings contain just one reference, so this is a useful
3989 optimization, especially for humungous headers. */
3990
3991 len = Ustrlen(value);
3992 if (yield == NULL && newsize != 0)
3993 {
3994 yield = value;
3995 size = newsize;
3996 ptr = len;
3997 }
3998 else yield = string_catn(yield, &size, &ptr, value, len);
3999
4000 continue;
4001 }
4002
4003 if (isdigit(*s))
4004 {
4005 int n;
4006 s = read_cnumber(&n, s);
4007 if (n >= 0 && n <= expand_nmax)
4008 yield = string_catn(yield, &size, &ptr, expand_nstring[n],
4009 expand_nlength[n]);
4010 continue;
4011 }
4012
4013 /* Otherwise, if there's no '{' after $ it's an error. */ /*}*/
4014
4015 if (*s != '{') /*}*/
4016 {
4017 expand_string_message = US"$ not followed by letter, digit, or {"; /*}*/
4018 goto EXPAND_FAILED;
4019 }
4020
4021 /* After { there can be various things, but they all start with
4022 an initial word, except for a number for a string match variable. */
4023
4024 if (isdigit((*(++s))))
4025 {
4026 int n;
4027 s = read_cnumber(&n, s); /*{*/
4028 if (*s++ != '}')
4029 { /*{*/
4030 expand_string_message = US"} expected after number";
4031 goto EXPAND_FAILED;
4032 }
4033 if (n >= 0 && n <= expand_nmax)
4034 yield = string_catn(yield, &size, &ptr, expand_nstring[n],
4035 expand_nlength[n]);
4036 continue;
4037 }
4038
4039 if (!isalpha(*s))
4040 {
4041 expand_string_message = US"letter or digit expected after ${"; /*}*/
4042 goto EXPAND_FAILED;
4043 }
4044
4045 /* Allow "-" in names to cater for substrings with negative
4046 arguments. Since we are checking for known names after { this is
4047 OK. */
4048
4049 s = read_name(name, sizeof(name), s, US"_-");
4050 item_type = chop_match(name, item_table, nelem(item_table));
4051
4052 switch(item_type)
4053 {
4054 /* Call an ACL from an expansion. We feed data in via $acl_arg1 - $acl_arg9.
4055 If the ACL returns accept or reject we return content set by "message ="
4056 There is currently no limit on recursion; this would have us call
4057 acl_check_internal() directly and get a current level from somewhere.
4058 See also the acl expansion condition ECOND_ACL and the traditional
4059 acl modifier ACLC_ACL.
4060 Assume that the function has side-effects on the store that must be preserved.
4061 */
4062
4063 case EITEM_ACL:
4064 /* ${acl {name} {arg1}{arg2}...} */
4065 {
4066 uschar *sub[10]; /* name + arg1-arg9 (which must match number of acl_arg[]) */
4067 uschar *user_msg;
4068
4069 switch(read_subs(sub, nelem(sub), 1, &s, skipping, TRUE, US"acl",
4070 &resetok))
4071 {
4072 case 1: goto EXPAND_FAILED_CURLY;
4073 case 2:
4074 case 3: goto EXPAND_FAILED;
4075 }
4076 if (skipping) continue;
4077
4078 resetok = FALSE;
4079 switch(eval_acl(sub, nelem(sub), &user_msg))
4080 {
4081 case OK:
4082 case FAIL:
4083 DEBUG(D_expand)
4084 debug_printf("acl expansion yield: %s\n", user_msg);
4085 if (user_msg)
4086 yield = string_cat(yield, &size, &ptr, user_msg);
4087 continue;
4088
4089 case DEFER:
4090 expand_string_forcedfail = TRUE;
4091 /*FALLTHROUGH*/
4092 default:
4093 expand_string_message = string_sprintf("error from acl \"%s\"", sub[0]);
4094 goto EXPAND_FAILED;
4095 }
4096 }
4097
4098 /* Handle conditionals - preserve the values of the numerical expansion
4099 variables in case they get changed by a regular expression match in the
4100 condition. If not, they retain their external settings. At the end
4101 of this "if" section, they get restored to their previous values. */
4102
4103 case EITEM_IF:
4104 {
4105 BOOL cond = FALSE;
4106 const uschar *next_s;
4107 int save_expand_nmax =
4108 save_expand_strings(save_expand_nstring, save_expand_nlength);
4109
4110 while (isspace(*s)) s++;
4111 next_s = eval_condition(s, &resetok, skipping? NULL : &cond);
4112 if (next_s == NULL) goto EXPAND_FAILED; /* message already set */
4113
4114 DEBUG(D_expand)
4115 debug_printf(" condition: %.*s\n result: %s\n",
4116 (int)(next_s - s), s,
4117 cond ? "true" : "false");
4118
4119 s = next_s;
4120
4121 /* The handling of "yes" and "no" result strings is now in a separate
4122 function that is also used by ${lookup} and ${extract} and ${run}. */
4123
4124 switch(process_yesno(
4125 skipping, /* were previously skipping */
4126 cond, /* success/failure indicator */
4127 lookup_value, /* value to reset for string2 */
4128 &s, /* input pointer */
4129 &yield, /* output pointer */
4130 &size, /* output size */
4131 &ptr, /* output current point */
4132 US"if", /* condition type */
4133 &resetok))
4134 {
4135 case 1: goto EXPAND_FAILED; /* when all is well, the */
4136 case 2: goto EXPAND_FAILED_CURLY; /* returned value is 0 */
4137 }
4138
4139 /* Restore external setting of expansion variables for continuation
4140 at this level. */
4141
4142 restore_expand_strings(save_expand_nmax, save_expand_nstring,
4143 save_expand_nlength);
4144 continue;
4145 }
4146
4147 #ifdef SUPPORT_I18N
4148 case EITEM_IMAPFOLDER:
4149 { /* ${imapfolder {name}{sep]{specials}} */
4150 uschar *sub_arg[3];
4151 uschar *encoded;
4152
4153 switch(read_subs(sub_arg, nelem(sub_arg), 1, &s, skipping, TRUE, name,
4154 &resetok))
4155 {
4156 case 1: goto EXPAND_FAILED_CURLY;
4157 case 2:
4158 case 3: goto EXPAND_FAILED;
4159 }
4160
4161 if (sub_arg[1] == NULL) /* One argument */
4162 {
4163 sub_arg[1] = US"/"; /* default separator */
4164 sub_arg[2] = NULL;
4165 }
4166 else if (Ustrlen(sub_arg[1]) != 1)
4167 {
4168 expand_string_message =
4169 string_sprintf(
4170 "IMAP folder separator must be one character, found \"%s\"",
4171 sub_arg[1]);
4172 goto EXPAND_FAILED;
4173 }
4174
4175 if (!(encoded = imap_utf7_encode(sub_arg[0], headers_charset,
4176 sub_arg[1][0], sub_arg[2], &expand_string_message)))
4177 goto EXPAND_FAILED;
4178 if (!skipping)
4179 yield = string_cat(yield, &size, &ptr, encoded);
4180 continue;
4181 }
4182 #endif
4183
4184 /* Handle database lookups unless locked out. If "skipping" is TRUE, we are
4185 expanding an internal string that isn't actually going to be used. All we
4186 need to do is check the syntax, so don't do a lookup at all. Preserve the
4187 values of the numerical expansion variables in case they get changed by a
4188 partial lookup. If not, they retain their external settings. At the end
4189 of this "lookup" section, they get restored to their previous values. */
4190
4191 case EITEM_LOOKUP:
4192 {
4193 int stype, partial, affixlen, starflags;
4194 int expand_setup = 0;
4195 int nameptr = 0;
4196 uschar *key, *filename;
4197 const uschar *affix;
4198 uschar *save_lookup_value = lookup_value;
4199 int save_expand_nmax =
4200 save_expand_strings(save_expand_nstring, save_expand_nlength);
4201
4202 if ((expand_forbid & RDO_LOOKUP) != 0)
4203 {
4204 expand_string_message = US"lookup expansions are not permitted";
4205 goto EXPAND_FAILED;
4206 }
4207
4208 /* Get the key we are to look up for single-key+file style lookups.
4209 Otherwise set the key NULL pro-tem. */
4210
4211 while (isspace(*s)) s++;
4212 if (*s == '{') /*}*/
4213 {
4214 key = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok);
4215 if (!key) goto EXPAND_FAILED; /*{{*/
4216 if (*s++ != '}')
4217 {
4218 expand_string_message = US"missing '}' after lookup key";
4219 goto EXPAND_FAILED_CURLY;
4220 }
4221 while (isspace(*s)) s++;
4222 }
4223 else key = NULL;
4224
4225 /* Find out the type of database */
4226
4227 if (!isalpha(*s))
4228 {
4229 expand_string_message = US"missing lookup type";
4230 goto EXPAND_FAILED;
4231 }
4232
4233 /* The type is a string that may contain special characters of various
4234 kinds. Allow everything except space or { to appear; the actual content
4235 is checked by search_findtype_partial. */ /*}*/
4236
4237 while (*s != 0 && *s != '{' && !isspace(*s)) /*}*/
4238 {
4239 if (nameptr < sizeof(name) - 1) name[nameptr++] = *s;
4240 s++;
4241 }
4242 name[nameptr] = 0;
4243 while (isspace(*s)) s++;
4244
4245 /* Now check for the individual search type and any partial or default
4246 options. Only those types that are actually in the binary are valid. */
4247
4248 stype = search_findtype_partial(name, &partial, &affix, &affixlen,
4249 &starflags);
4250 if (stype < 0)
4251 {
4252 expand_string_message = search_error_message;
4253 goto EXPAND_FAILED;
4254 }
4255
4256 /* Check that a key was provided for those lookup types that need it,
4257 and was not supplied for those that use the query style. */
4258
4259 if (!mac_islookup(stype, lookup_querystyle|lookup_absfilequery))
4260 {
4261 if (key == NULL)
4262 {
4263 expand_string_message = string_sprintf("missing {key} for single-"
4264 "key \"%s\" lookup", name);
4265 goto EXPAND_FAILED;
4266 }
4267 }
4268 else
4269 {
4270 if (key != NULL)
4271 {
4272 expand_string_message = string_sprintf("a single key was given for "
4273 "lookup type \"%s\", which is not a single-key lookup type", name);
4274 goto EXPAND_FAILED;
4275 }
4276 }
4277
4278 /* Get the next string in brackets and expand it. It is the file name for
4279 single-key+file lookups, and the whole query otherwise. In the case of
4280 queries that also require a file name (e.g. sqlite), the file name comes
4281 first. */
4282
4283 if (*s != '{')
4284 {
4285 expand_string_message = US"missing '{' for lookup file-or-query arg";
4286 goto EXPAND_FAILED_CURLY;
4287 }
4288 filename = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok);
4289 if (filename == NULL) goto EXPAND_FAILED;
4290 if (*s++ != '}')
4291 {
4292 expand_string_message = US"missing '}' closing lookup file-or-query arg";
4293 goto EXPAND_FAILED_CURLY;
4294 }
4295 while (isspace(*s)) s++;
4296
4297 /* If this isn't a single-key+file lookup, re-arrange the variables
4298 to be appropriate for the search_ functions. For query-style lookups,
4299 there is just a "key", and no file name. For the special query-style +
4300 file types, the query (i.e. "key") starts with a file name. */
4301
4302 if (!key)
4303 {
4304 while (isspace(*filename)) filename++;
4305 key = filename;
4306
4307 if (mac_islookup(stype, lookup_querystyle))
4308 filename = NULL;
4309 else
4310 {
4311 if (*filename != '/')
4312 {
4313 expand_string_message = string_sprintf(
4314 "absolute file name expected for \"%s\" lookup", name);
4315 goto EXPAND_FAILED;
4316 }
4317 while (*key != 0 && !isspace(*key)) key++;
4318 if (*key != 0) *key++ = 0;
4319 }
4320 }
4321
4322 /* If skipping, don't do the next bit - just lookup_value == NULL, as if
4323 the entry was not found. Note that there is no search_close() function.
4324 Files are left open in case of re-use. At suitable places in higher logic,
4325 search_tidyup() is called to tidy all open files. This can save opening
4326 the same file several times. However, files may also get closed when
4327 others are opened, if too many are open at once. The rule is that a
4328 handle should not be used after a second search_open().
4329
4330 Request that a partial search sets up $1 and maybe $2 by passing
4331 expand_setup containing zero. If its value changes, reset expand_nmax,
4332 since new variables will have been set. Note that at the end of this
4333 "lookup" section, the old numeric variables are restored. */
4334
4335 if (skipping)
4336 lookup_value = NULL;
4337 else
4338 {
4339 void *handle = search_open(filename, stype, 0, NULL, NULL);
4340 if (handle == NULL)
4341 {
4342 expand_string_message = search_error_message;
4343 goto EXPAND_FAILED;
4344 }
4345 lookup_value = search_find(handle, filename, key, partial, affix,
4346 affixlen, starflags, &expand_setup);
4347 if (search_find_defer)
4348 {
4349 expand_string_message =
4350 string_sprintf("lookup of \"%s\" gave DEFER: %s",
4351 string_printing2(key, FALSE), search_error_message);
4352 goto EXPAND_FAILED;
4353 }
4354 if (expand_setup > 0) expand_nmax = expand_setup;
4355 }
4356
4357 /* The handling of "yes" and "no" result strings is now in a separate
4358 function that is also used by ${if} and ${extract}. */
4359
4360 switch(process_yesno(
4361 skipping, /* were previously skipping */
4362 lookup_value != NULL, /* success/failure indicator */
4363 save_lookup_value, /* value to reset for string2 */
4364 &s, /* input pointer */
4365 &yield, /* output pointer */
4366 &size, /* output size */
4367 &ptr, /* output current point */
4368 US"lookup", /* condition type */
4369 &resetok))
4370 {
4371 case 1: goto EXPAND_FAILED; /* when all is well, the */
4372 case 2: goto EXPAND_FAILED_CURLY; /* returned value is 0 */
4373 }
4374
4375 /* Restore external setting of expansion variables for carrying on
4376 at this level, and continue. */
4377
4378 restore_expand_strings(save_expand_nmax, save_expand_nstring,
4379 save_expand_nlength);
4380 continue;
4381 }
4382
4383 /* If Perl support is configured, handle calling embedded perl subroutines,
4384 unless locked out at this time. Syntax is ${perl{sub}} or ${perl{sub}{arg}}
4385 or ${perl{sub}{arg1}{arg2}} or up to a maximum of EXIM_PERL_MAX_ARGS
4386 arguments (defined below). */
4387
4388 #define EXIM_PERL_MAX_ARGS 8
4389
4390 case EITEM_PERL:
4391 #ifndef EXIM_PERL
4392 expand_string_message = US"\"${perl\" encountered, but this facility " /*}*/
4393 "is not included in this binary";
4394 goto EXPAND_FAILED;
4395
4396 #else /* EXIM_PERL */
4397 {
4398 uschar *sub_arg[EXIM_PERL_MAX_ARGS + 2];
4399 uschar *new_yield;
4400
4401 if ((expand_forbid & RDO_PERL) != 0)
4402 {
4403 expand_string_message = US"Perl calls are not permitted";
4404 goto EXPAND_FAILED;
4405 }
4406
4407 switch(read_subs(sub_arg, EXIM_PERL_MAX_ARGS + 1, 1, &s, skipping, TRUE,
4408 US"perl", &resetok))
4409 {
4410 case 1: goto EXPAND_FAILED_CURLY;
4411 case 2:
4412 case 3: goto EXPAND_FAILED;
4413 }
4414
4415 /* If skipping, we don't actually do anything */
4416
4417 if (skipping) continue;
4418
4419 /* Start the interpreter if necessary */
4420
4421 if (!opt_perl_started)
4422 {
4423 uschar *initerror;
4424 if (opt_perl_startup == NULL)
4425 {
4426 expand_string_message = US"A setting of perl_startup is needed when "
4427 "using the Perl interpreter";
4428 goto EXPAND_FAILED;
4429 }
4430 DEBUG(D_any) debug_printf("Starting Perl interpreter\n");
4431 initerror = init_perl(opt_perl_startup);
4432 if (initerror != NULL)
4433 {
4434 expand_string_message =
4435 string_sprintf("error in perl_startup code: %s\n", initerror);
4436 goto EXPAND_FAILED;
4437 }
4438 opt_perl_started = TRUE;
4439 }
4440
4441 /* Call the function */
4442
4443 sub_arg[EXIM_PERL_MAX_ARGS + 1] = NULL;
4444 new_yield = call_perl_cat(yield, &size, &ptr, &expand_string_message,
4445 sub_arg[0], sub_arg + 1);
4446
4447 /* NULL yield indicates failure; if the message pointer has been set to
4448 NULL, the yield was undef, indicating a forced failure. Otherwise the
4449 message will indicate some kind of Perl error. */
4450
4451 if (new_yield == NULL)
4452 {
4453 if (expand_string_message == NULL)
4454 {
4455 expand_string_message =
4456 string_sprintf("Perl subroutine \"%s\" returned undef to force "
4457 "failure", sub_arg[0]);
4458 expand_string_forcedfail = TRUE;
4459 }
4460 goto EXPAND_FAILED;
4461 }
4462
4463 /* Yield succeeded. Ensure forcedfail is unset, just in case it got
4464 set during a callback from Perl. */
4465
4466 expand_string_forcedfail = FALSE;
4467 yield = new_yield;
4468 continue;
4469 }
4470 #endif /* EXIM_PERL */
4471
4472 /* Transform email address to "prvs" scheme to use
4473 as BATV-signed return path */
4474
4475 case EITEM_PRVS:
4476 {
4477 uschar *sub_arg[3];
4478 uschar *p,*domain;
4479
4480 switch(read_subs(sub_arg, 3, 2, &s, skipping, TRUE, US"prvs", &resetok))
4481 {
4482 case 1: goto EXPAND_FAILED_CURLY;
4483 case 2:
4484 case 3: goto EXPAND_FAILED;
4485 }
4486
4487 /* If skipping, we don't actually do anything */
4488 if (skipping) continue;
4489
4490 /* sub_arg[0] is the address */
4491 domain = Ustrrchr(sub_arg[0],'@');
4492 if ( (domain == NULL) || (domain == sub_arg[0]) || (Ustrlen(domain) == 1) )
4493 {
4494 expand_string_message = US"prvs first argument must be a qualified email address";
4495 goto EXPAND_FAILED;
4496 }
4497
4498 /* Calculate the hash. The second argument must be a single-digit
4499 key number, or unset. */
4500
4501 if (sub_arg[2] != NULL &&
4502 (!isdigit(sub_arg[2][0]) || sub_arg[2][1] != 0))
4503 {
4504 expand_string_message = US"prvs second argument must be a single digit";
4505 goto EXPAND_FAILED;
4506 }
4507
4508 p = prvs_hmac_sha1(sub_arg[0],sub_arg[1],sub_arg[2],prvs_daystamp(7));
4509 if (p == NULL)
4510 {
4511 expand_string_message = US"prvs hmac-sha1 conversion failed";
4512 goto EXPAND_FAILED;
4513 }
4514
4515 /* Now separate the domain from the local part */
4516 *domain++ = '\0';
4517
4518 yield = string_catn(yield, &size, &ptr, US"prvs=", 5);
4519 yield = string_catn(yield, &size, &ptr, sub_arg[2] ? sub_arg[2] : US"0", 1);
4520 yield = string_catn(yield, &size, &ptr, prvs_daystamp(7), 3);
4521 yield = string_catn(yield, &size, &ptr, p, 6);
4522 yield = string_catn(yield, &size, &ptr, US"=", 1);
4523 yield = string_cat (yield, &size, &ptr, sub_arg[0]);
4524 yield = string_catn(yield, &size, &ptr, US"@", 1);
4525 yield = string_cat (yield, &size, &ptr, domain);
4526
4527 continue;
4528 }
4529
4530 /* Check a prvs-encoded address for validity */
4531
4532 case EITEM_PRVSCHECK:
4533 {
4534 uschar *sub_arg[3];
4535 int mysize = 0, myptr = 0;
4536 const pcre *re;
4537 uschar *p;
4538
4539 /* TF: Ugliness: We want to expand parameter 1 first, then set
4540 up expansion variables that are used in the expansion of
4541 parameter 2. So we clone the string for the first
4542 expansion, where we only expand parameter 1.
4543
4544 PH: Actually, that isn't necessary. The read_subs() function is
4545 designed to work this way for the ${if and ${lookup expansions. I've
4546 tidied the code.
4547 */
4548
4549 /* Reset expansion variables */
4550 prvscheck_result = NULL;
4551 prvscheck_address = NULL;
4552 prvscheck_keynum = NULL;
4553
4554 switch(read_subs(sub_arg, 1, 1, &s, skipping, FALSE, US"prvs", &resetok))
4555 {
4556 case 1: goto EXPAND_FAILED_CURLY;
4557 case 2:
4558 case 3: goto EXPAND_FAILED;
4559 }
4560
4561 re = regex_must_compile(US"^prvs\\=([0-9])([0-9]{3})([A-F0-9]{6})\\=(.+)\\@(.+)$",
4562 TRUE,FALSE);
4563
4564 if (regex_match_and_setup(re,sub_arg[0],0,-1))
4565 {
4566 uschar *local_part = string_copyn(expand_nstring[4],expand_nlength[4]);
4567 uschar *key_num = string_copyn(expand_nstring[1],expand_nlength[1]);
4568 uschar *daystamp = string_copyn(expand_nstring[2],expand_nlength[2]);
4569 uschar *hash = string_copyn(expand_nstring[3],expand_nlength[3]);
4570 uschar *domain = string_copyn(expand_nstring[5],expand_nlength[5]);
4571
4572 DEBUG(D_expand) debug_printf("prvscheck localpart: %s\n", local_part);
4573 DEBUG(D_expand) debug_printf("prvscheck key number: %s\n", key_num);
4574 DEBUG(D_expand) debug_printf("prvscheck daystamp: %s\n", daystamp);
4575 DEBUG(D_expand) debug_printf("prvscheck hash: %s\n", hash);
4576 DEBUG(D_expand) debug_printf("prvscheck domain: %s\n", domain);
4577
4578 /* Set up expansion variables */
4579 prvscheck_address = string_cat (NULL, &mysize, &myptr, local_part);
4580 prvscheck_address = string_catn(prvscheck_address, &mysize, &myptr, US"@", 1);
4581 prvscheck_address = string_cat (prvscheck_address, &mysize, &myptr, domain);
4582 prvscheck_address[myptr] = '\0';
4583 prvscheck_keynum = string_copy(key_num);
4584
4585 /* Now expand the second argument */
4586 switch(read_subs(sub_arg, 1, 1, &s, skipping, FALSE, US"prvs", &resetok))
4587 {
4588 case 1: goto EXPAND_FAILED_CURLY;
4589 case 2:
4590 case 3: goto EXPAND_FAILED;
4591 }
4592
4593 /* Now we have the key and can check the address. */
4594
4595 p = prvs_hmac_sha1(prvscheck_address, sub_arg[0], prvscheck_keynum,
4596 daystamp);
4597
4598 if (p == NULL)
4599 {
4600 expand_string_message = US"hmac-sha1 conversion failed";
4601 goto EXPAND_FAILED;
4602 }
4603
4604 DEBUG(D_expand) debug_printf("prvscheck: received hash is %s\n", hash);
4605 DEBUG(D_expand) debug_printf("prvscheck: own hash is %s\n", p);
4606
4607 if (Ustrcmp(p,hash) == 0)
4608 {
4609 /* Success, valid BATV address. Now check the expiry date. */
4610 uschar *now = prvs_daystamp(0);
4611 unsigned int inow = 0,iexpire = 1;
4612
4613 (void)sscanf(CS now,"%u",&inow);
4614 (void)sscanf(CS daystamp,"%u",&iexpire);
4615
4616 /* When "iexpire" is < 7, a "flip" has occured.
4617 Adjust "inow" accordingly. */
4618 if ( (iexpire < 7) && (inow >= 993) ) inow = 0;
4619
4620 if (iexpire >= inow)
4621 {
4622 prvscheck_result = US"1";
4623 DEBUG(D_expand) debug_printf("prvscheck: success, $pvrs_result set to 1\n");
4624 }
4625 else
4626 {
4627 prvscheck_result = NULL;
4628 DEBUG(D_expand) debug_printf("prvscheck: signature expired, $pvrs_result unset\n");
4629 }
4630 }
4631 else
4632 {
4633 prvscheck_result = NULL;
4634 DEBUG(D_expand) debug_printf("prvscheck: hash failure, $pvrs_result unset\n");
4635 }
4636
4637 /* Now expand the final argument. We leave this till now so that
4638 it can include $prvscheck_result. */
4639
4640 switch(read_subs(sub_arg, 1, 0, &s, skipping, TRUE, US"prvs", &resetok))
4641 {
4642 case 1: goto EXPAND_FAILED_CURLY;
4643 case 2:
4644 case 3: goto EXPAND_FAILED;
4645 }
4646
4647 yield = string_cat(yield, &size, &ptr,
4648 !sub_arg[0] || !*sub_arg[0] ? prvscheck_address : sub_arg[0]);
4649
4650 /* Reset the "internal" variables afterwards, because they are in
4651 dynamic store that will be reclaimed if the expansion succeeded. */
4652
4653 prvscheck_address = NULL;
4654 prvscheck_keynum = NULL;
4655 }
4656 else
4657 {
4658 /* Does not look like a prvs encoded address, return the empty string.
4659 We need to make sure all subs are expanded first, so as to skip over
4660 the entire item. */
4661
4662 switch(read_subs(sub_arg, 2, 1, &s, skipping, TRUE, US"prvs", &resetok))
4663 {
4664 case 1: goto EXPAND_FAILED_CURLY;
4665 case 2:
4666 case 3: goto EXPAND_FAILED;
4667 }
4668 }
4669
4670 continue;
4671 }
4672
4673 /* Handle "readfile" to insert an entire file */
4674
4675 case EITEM_READFILE:
4676 {
4677 FILE *f;
4678 uschar *sub_arg[2];
4679
4680 if ((expand_forbid & RDO_READFILE) != 0)
4681 {
4682 expand_string_message = US"file insertions are not permitted";
4683 goto EXPAND_FAILED;
4684 }
4685
4686 switch(read_subs(sub_arg, 2, 1, &s, skipping, TRUE, US"readfile", &resetok))
4687 {
4688 case 1: goto EXPAND_FAILED_CURLY;
4689 case 2:
4690 case 3: goto EXPAND_FAILED;
4691 }
4692
4693 /* If skipping, we don't actually do anything */
4694
4695 if (skipping) continue;
4696
4697 /* Open the file and read it */
4698
4699 f = Ufopen(sub_arg[0], "rb");
4700 if (f == NULL)
4701 {
4702 expand_string_message = string_open_failed(errno, "%s", sub_arg[0]);
4703 goto EXPAND_FAILED;
4704 }
4705
4706 yield = cat_file(f, yield, &size, &ptr, sub_arg[1]);
4707 (void)fclose(f);
4708 continue;
4709 }
4710
4711 /* Handle "readsocket" to insert data from a Unix domain socket */
4712
4713 case EITEM_READSOCK:
4714 {
4715 int fd;
4716 int timeout = 5;
4717 int save_ptr = ptr;
4718 FILE *f;
4719 struct sockaddr_un sockun; /* don't call this "sun" ! */
4720 uschar *arg;
4721 uschar *sub_arg[4];
4722
4723 if ((expand_forbid & RDO_READSOCK) != 0)
4724 {
4725 expand_string_message = US"socket insertions are not permitted";
4726 goto EXPAND_FAILED;
4727 }
4728
4729 /* Read up to 4 arguments, but don't do the end of item check afterwards,
4730 because there may be a string for expansion on failure. */
4731
4732 switch(read_subs(sub_arg, 4, 2, &s, skipping, FALSE, US"readsocket", &resetok))
4733 {
4734 case 1: goto EXPAND_FAILED_CURLY;
4735 case 2: /* Won't occur: no end check */
4736 case 3: goto EXPAND_FAILED;
4737 }
4738
4739 /* Sort out timeout, if given */
4740
4741 if (sub_arg[2] != NULL)
4742 {
4743 timeout = readconf_readtime(sub_arg[2], 0, FALSE);
4744 if (timeout < 0)
4745 {
4746 expand_string_message = string_sprintf("bad time value %s",
4747 sub_arg[2]);
4748 goto EXPAND_FAILED;
4749 }
4750 }
4751 else sub_arg[3] = NULL; /* No eol if no timeout */
4752
4753 /* If skipping, we don't actually do anything. Otherwise, arrange to
4754 connect to either an IP or a Unix socket. */
4755
4756 if (!skipping)
4757 {
4758 /* Handle an IP (internet) domain */
4759
4760 if (Ustrncmp(sub_arg[0], "inet:", 5) == 0)
4761 {
4762 int port;
4763 uschar *server_name = sub_arg[0] + 5;
4764 uschar *port_name = Ustrrchr(server_name, ':');
4765
4766 /* Sort out the port */
4767
4768 if (port_name == NULL)
4769 {
4770 expand_string_message =
4771 string_sprintf("missing port for readsocket %s", sub_arg[0]);
4772 goto EXPAND_FAILED;
4773 }
4774 *port_name++ = 0; /* Terminate server name */
4775
4776 if (isdigit(*port_name))
4777 {
4778 uschar *end;
4779 port = Ustrtol(port_name, &end, 0);
4780 if (end != port_name + Ustrlen(port_name))
4781 {
4782 expand_string_message =
4783 string_sprintf("invalid port number %s", port_name);
4784 goto EXPAND_FAILED;
4785 }
4786 }
4787 else
4788 {
4789 struct servent *service_info = getservbyname(CS port_name, "tcp");
4790 if (service_info == NULL)
4791 {
4792 expand_string_message = string_sprintf("unknown port \"%s\"",
4793 port_name);
4794 goto EXPAND_FAILED;
4795 }
4796 port = ntohs(service_info->s_port);
4797 }
4798
4799 if ((fd = ip_connectedsocket(SOCK_STREAM, server_name, port, port,
4800 timeout, NULL, &expand_string_message)) < 0)
4801 goto SOCK_FAIL;
4802 }
4803
4804 /* Handle a Unix domain socket */
4805
4806 else
4807 {
4808 int rc;
4809 if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
4810 {
4811 expand_string_message = string_sprintf("failed to create socket: %s",
4812 strerror(errno));
4813 goto SOCK_FAIL;
4814 }
4815
4816 sockun.sun_family = AF_UNIX;
4817 sprintf(sockun.sun_path, "%.*s", (int)(sizeof(sockun.sun_path)-1),
4818 sub_arg[0]);
4819
4820 sigalrm_seen = FALSE;
4821 alarm(timeout);
4822 rc = connect(fd, (struct sockaddr *)(&sockun), sizeof(sockun));
4823 alarm(0);
4824 if (sigalrm_seen)
4825 {
4826 expand_string_message = US "socket connect timed out";
4827 goto SOCK_FAIL;
4828 }
4829 if (rc < 0)
4830 {
4831 expand_string_message = string_sprintf("failed to connect to socket "
4832 "%s: %s", sub_arg[0], strerror(errno));
4833 goto SOCK_FAIL;
4834 }
4835 }
4836
4837 DEBUG(D_expand) debug_printf("connected to socket %s\n", sub_arg[0]);
4838
4839 /* Allow sequencing of test actions */
4840 if (running_in_test_harness) millisleep(100);
4841
4842 /* Write the request string, if not empty */
4843
4844 if (sub_arg[1][0] != 0)
4845 {
4846 int len = Ustrlen(sub_arg[1]);
4847 DEBUG(D_expand) debug_printf("writing \"%s\" to socket\n",
4848 sub_arg[1]);
4849 if (write(fd, sub_arg[1], len) != len)
4850 {
4851 expand_string_message = string_sprintf("request write to socket "
4852 "failed: %s", strerror(errno));
4853 goto SOCK_FAIL;
4854 }
4855 }
4856
4857 /* Shut down the sending side of the socket. This helps some servers to
4858 recognise that it is their turn to do some work. Just in case some
4859 system doesn't have this function, make it conditional. */
4860
4861 #ifdef SHUT_WR
4862 shutdown(fd, SHUT_WR);
4863 #endif
4864
4865 if (running_in_test_harness) millisleep(100);
4866
4867 /* Now we need to read from the socket, under a timeout. The function
4868 that reads a file can be used. */
4869
4870 f = fdopen(fd, "rb");
4871 sigalrm_seen = FALSE;
4872 alarm(timeout);
4873 yield = cat_file(f, yield, &size, &ptr, sub_arg[3]);
4874 alarm(0);
4875 (void)fclose(f);
4876
4877 /* After a timeout, we restore the pointer in the result, that is,
4878 make sure we add nothing from the socket. */
4879
4880 if (sigalrm_seen)
4881 {
4882 ptr = save_ptr;
4883 expand_string_message = US "socket read timed out";
4884 goto SOCK_FAIL;
4885 }
4886 }
4887
4888 /* The whole thing has worked (or we were skipping). If there is a
4889 failure string following, we need to skip it. */
4890
4891 if (*s == '{')
4892 {
4893 if (expand_string_internal(s+1, TRUE, &s, TRUE, TRUE, &resetok) == NULL)
4894 goto EXPAND_FAILED;
4895 if (*s++ != '}')
4896 {
4897 expand_string_message = US"missing '}' closing failstring for readsocket";
4898 goto EXPAND_FAILED_CURLY;
4899 }
4900 while (isspace(*s)) s++;
4901 }
4902
4903 readsock_done:
4904 if (*s++ != '}')
4905 {
4906 expand_string_message = US"missing '}' closing readsocket";
4907 goto EXPAND_FAILED_CURLY;
4908 }
4909 continue;
4910
4911 /* Come here on failure to create socket, connect socket, write to the
4912 socket, or timeout on reading. If another substring follows, expand and
4913 use it. Otherwise, those conditions give expand errors. */
4914
4915 SOCK_FAIL:
4916 if (*s != '{') goto EXPAND_FAILED;
4917 DEBUG(D_any) debug_printf("%s\n", expand_string_message);
4918 if (!(arg = expand_string_internal(s+1, TRUE, &s, FALSE, TRUE, &resetok)))
4919 goto EXPAND_FAILED;
4920 yield = string_cat(yield, &size, &ptr, arg);
4921 if (*s++ != '}')
4922 {
4923 expand_string_message = US"missing '}' closing failstring for readsocket";
4924 goto EXPAND_FAILED_CURLY;
4925 }
4926 while (isspace(*s)) s++;
4927 goto readsock_done;
4928 }
4929
4930 /* Handle "run" to execute a program. */
4931
4932 case EITEM_RUN:
4933 {
4934 FILE *f;
4935 uschar *arg;
4936 const uschar **argv;
4937 pid_t pid;
4938 int fd_in, fd_out;
4939 int lsize = 0, lptr = 0;
4940
4941 if ((expand_forbid & RDO_RUN) != 0)
4942 {
4943 expand_string_message = US"running a command is not permitted";
4944 goto EXPAND_FAILED;
4945 }
4946
4947 while (isspace(*s)) s++;
4948 if (*s != '{')
4949 {
4950 expand_string_message = US"missing '{' for command arg of run";
4951 goto EXPAND_FAILED_CURLY;
4952 }
4953 arg = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok);
4954 if (arg == NULL) goto EXPAND_FAILED;
4955 while (isspace(*s)) s++;
4956 if (*s++ != '}')
4957 {
4958 expand_string_message = US"missing '}' closing command arg of run";
4959 goto EXPAND_FAILED_CURLY;
4960 }
4961
4962 if (skipping) /* Just pretend it worked when we're skipping */
4963 {
4964 runrc = 0;
4965 lookup_value = NULL;
4966 }
4967 else
4968 {
4969 if (!transport_set_up_command(&argv, /* anchor for arg list */
4970 arg, /* raw command */
4971 FALSE, /* don't expand the arguments */
4972 0, /* not relevant when... */
4973 NULL, /* no transporting address */
4974 US"${run} expansion", /* for error messages */
4975 &expand_string_message)) /* where to put error message */
4976 goto EXPAND_FAILED;
4977
4978 /* Create the child process, making it a group leader. */
4979
4980 if ((pid = child_open(USS argv, NULL, 0077, &fd_in, &fd_out, TRUE)) < 0)
4981 {
4982 expand_string_message =
4983 string_sprintf("couldn't create child process: %s", strerror(errno));
4984 goto EXPAND_FAILED;
4985 }
4986
4987 /* Nothing is written to the standard input. */
4988
4989 (void)close(fd_in);
4990
4991 /* Read the pipe to get the command's output into $value (which is kept
4992 in lookup_value). Read during execution, so that if the output exceeds
4993 the OS pipe buffer limit, we don't block forever. Remember to not release
4994 memory just allocated for $value. */
4995
4996 resetok = FALSE;
4997 f = fdopen(fd_out, "rb");
4998 sigalrm_seen = FALSE;
4999 alarm(60);
5000 lookup_value = cat_file(f, NULL, &lsize, &lptr, NULL);
5001 alarm(0);
5002 (void)fclose(f);
5003
5004 /* Wait for the process to finish, applying the timeout, and inspect its
5005 return code for serious disasters. Simple non-zero returns are passed on.
5006 */
5007
5008 if (sigalrm_seen || (runrc = child_close(pid, 30)) < 0)
5009 {
5010 if (sigalrm_seen || runrc == -256)
5011 {
5012 expand_string_message = string_sprintf("command timed out");
5013 killpg(pid, SIGKILL); /* Kill the whole process group */
5014 }
5015
5016 else if (runrc == -257)
5017 expand_string_message = string_sprintf("wait() failed: %s",
5018 strerror(errno));
5019
5020 else
5021 expand_string_message = string_sprintf("command killed by signal %d",
5022 -runrc);
5023
5024 goto EXPAND_FAILED;
5025 }
5026 }
5027
5028 /* Process the yes/no strings; $value may be useful in both cases */
5029
5030 switch(process_yesno(
5031 skipping, /* were previously skipping */
5032 runrc == 0, /* success/failure indicator */
5033 lookup_value, /* value to reset for string2 */
5034 &s, /* input pointer */
5035 &yield, /* output pointer */
5036 &size, /* output size */
5037 &ptr, /* output current point */
5038 US"run", /* condition type */
5039 &resetok))
5040 {
5041 case 1: goto EXPAND_FAILED; /* when all is well, the */
5042 case 2: goto EXPAND_FAILED_CURLY; /* returned value is 0 */
5043 }
5044
5045 continue;
5046 }
5047
5048 /* Handle character translation for "tr" */
5049
5050 case EITEM_TR:
5051 {
5052 int oldptr = ptr;
5053 int o2m;
5054 uschar *sub[3];
5055
5056 switch(read_subs(sub, 3, 3, &s, skipping, TRUE, US"tr", &resetok))
5057 {
5058 case 1: goto EXPAND_FAILED_CURLY;
5059 case 2:
5060 case 3: goto EXPAND_FAILED;
5061 }
5062
5063 yield = string_cat(yield, &size, &ptr, sub[0]);
5064 o2m = Ustrlen(sub[2]) - 1;
5065
5066 if (o2m >= 0) for (; oldptr < ptr; oldptr++)
5067 {
5068 uschar *m = Ustrrchr(sub[1], yield[oldptr]);
5069 if (m != NULL)
5070 {
5071 int o = m - sub[1];
5072 yield[oldptr] = sub[2][(o < o2m)? o : o2m];
5073 }
5074 }
5075
5076 continue;
5077 }
5078
5079 /* Handle "hash", "length", "nhash", and "substr" when they are given with
5080 expanded arguments. */
5081
5082 case EITEM_HASH:
5083 case EITEM_LENGTH:
5084 case EITEM_NHASH:
5085 case EITEM_SUBSTR:
5086 {
5087 int i;
5088 int len;
5089 uschar *ret;
5090 int val[2] = { 0, -1 };
5091 uschar *sub[3];
5092
5093 /* "length" takes only 2 arguments whereas the others take 2 or 3.
5094 Ensure that sub[2] is set in the ${length } case. */
5095
5096 sub[2] = NULL;
5097 switch(read_subs(sub, (item_type == EITEM_LENGTH)? 2:3, 2, &s, skipping,
5098 TRUE, name, &resetok))
5099 {
5100 case 1: goto EXPAND_FAILED_CURLY;
5101 case 2:
5102 case 3: goto EXPAND_FAILED;
5103 }
5104
5105 /* Juggle the arguments if there are only two of them: always move the
5106 string to the last position and make ${length{n}{str}} equivalent to
5107 ${substr{0}{n}{str}}. See the defaults for val[] above. */
5108
5109 if (sub[2] == NULL)
5110 {
5111 sub[2] = sub[1];
5112 sub[1] = NULL;
5113 if (item_type == EITEM_LENGTH)
5114 {
5115 sub[1] = sub[0];
5116 sub[0] = NULL;
5117 }
5118 }
5119
5120 for (i = 0; i < 2; i++)
5121 {
5122 if (sub[i] == NULL) continue;
5123 val[i] = (int)Ustrtol(sub[i], &ret, 10);
5124 if (*ret != 0 || (i != 0 && val[i] < 0))
5125 {
5126 expand_string_message = string_sprintf("\"%s\" is not a%s number "
5127 "(in \"%s\" expansion)", sub[i], (i != 0)? " positive" : "", name);
5128 goto EXPAND_FAILED;
5129 }
5130 }
5131
5132 ret =
5133 (item_type == EITEM_HASH)?
5134 compute_hash(sub[2], val[0], val[1], &len) :
5135 (item_type == EITEM_NHASH)?
5136 compute_nhash(sub[2], val[0], val[1], &len) :
5137 extract_substr(sub[2], val[0], val[1], &len);
5138
5139 if (ret == NULL) goto EXPAND_FAILED;
5140 yield = string_catn(yield, &size, &ptr, ret, len);
5141 continue;
5142 }
5143
5144 /* Handle HMAC computation: ${hmac{<algorithm>}{<secret>}{<text>}}
5145 This code originally contributed by Steve Haslam. It currently supports
5146 the use of MD5 and SHA-1 hashes.
5147
5148 We need some workspace that is large enough to handle all the supported
5149 hash types. Use macros to set the sizes rather than be too elaborate. */
5150
5151 #define MAX_HASHLEN 20
5152 #define MAX_HASHBLOCKLEN 64
5153
5154 case EITEM_HMAC:
5155 {
5156 uschar *sub[3];
5157 md5 md5_base;
5158 hctx sha1_ctx;
5159 void *use_base;
5160 int type, i;
5161 int hashlen; /* Number of octets for the hash algorithm's output */
5162 int hashblocklen; /* Number of octets the hash algorithm processes */
5163 uschar *keyptr, *p;
5164 unsigned int keylen;
5165
5166 uschar keyhash[MAX_HASHLEN];
5167 uschar innerhash[MAX_HASHLEN];
5168 uschar finalhash[MAX_HASHLEN];
5169 uschar finalhash_hex[2*MAX_HASHLEN];
5170 uschar innerkey[MAX_HASHBLOCKLEN];
5171 uschar outerkey[MAX_HASHBLOCKLEN];
5172
5173 switch (read_subs(sub, 3, 3, &s, skipping, TRUE, name, &resetok))
5174 {
5175 case 1: goto EXPAND_FAILED_CURLY;
5176 case 2:
5177 case 3: goto EXPAND_FAILED;
5178 }
5179
5180 if (!skipping)
5181 {
5182 if (Ustrcmp(sub[0], "md5") == 0)
5183 {
5184 type = HMAC_MD5;
5185 use_base = &md5_base;
5186 hashlen = 16;
5187 hashblocklen = 64;
5188 }
5189 else if (Ustrcmp(sub[0], "sha1") == 0)
5190 {
5191 type = HMAC_SHA1;
5192 use_base = &sha1_ctx;
5193 hashlen = 20;
5194 hashblocklen = 64;
5195 }
5196 else
5197 {
5198 expand_string_message =
5199 string_sprintf("hmac algorithm \"%s\" is not recognised", sub[0]);
5200 goto EXPAND_FAILED;
5201 }
5202
5203 keyptr = sub[1];
5204 keylen = Ustrlen(keyptr);
5205
5206 /* If the key is longer than the hash block length, then hash the key
5207 first */
5208
5209 if (keylen > hashblocklen)
5210 {
5211 chash_start(type, use_base);
5212 chash_end(type, use_base, keyptr, keylen, keyhash);
5213 keyptr = keyhash;
5214 keylen = hashlen;
5215 }
5216
5217 /* Now make the inner and outer key values */
5218
5219 memset(innerkey, 0x36, hashblocklen);
5220 memset(outerkey, 0x5c, hashblocklen);
5221
5222 for (i = 0; i < keylen; i++)
5223 {
5224 innerkey[i] ^= keyptr[i];
5225 outerkey[i] ^= keyptr[i];
5226 }
5227
5228 /* Now do the hashes */
5229
5230 chash_start(type, use_base);
5231 chash_mid(type, use_base, innerkey);
5232 chash_end(type, use_base, sub[2], Ustrlen(sub[2]), innerhash);
5233
5234 chash_start(type, use_base);
5235 chash_mid(type, use_base, outerkey);
5236 chash_end(type, use_base, innerhash, hashlen, finalhash);
5237
5238 /* Encode the final hash as a hex string */
5239
5240 p = finalhash_hex;
5241 for (i = 0; i < hashlen; i++)
5242 {
5243 *p++ = hex_digits[(finalhash[i] & 0xf0) >> 4];
5244 *p++ = hex_digits[finalhash[i] & 0x0f];
5245 }
5246
5247 DEBUG(D_any) debug_printf("HMAC[%s](%.*s,%s)=%.*s\n",
5248 sub[0], (int)keylen, keyptr, sub[2], hashlen*2, finalhash_hex);
5249
5250 yield = string_catn(yield, &size, &ptr, finalhash_hex, hashlen*2);
5251 }
5252 continue;
5253 }
5254
5255 /* Handle global substitution for "sg" - like Perl's s/xxx/yyy/g operator.
5256 We have to save the numerical variables and restore them afterwards. */
5257
5258 case EITEM_SG:
5259 {
5260 const pcre *re;
5261 int moffset, moffsetextra, slen;
5262 int roffset;
5263 int emptyopt;
5264 const uschar *rerror;
5265 uschar *subject;
5266 uschar *sub[3];
5267 int save_expand_nmax =
5268 save_expand_strings(save_expand_nstring, save_expand_nlength);
5269
5270 switch(read_subs(sub, 3, 3, &s, skipping, TRUE, US"sg", &resetok))
5271 {
5272 case 1: goto EXPAND_FAILED_CURLY;
5273 case 2:
5274 case 3: goto EXPAND_FAILED;
5275 }
5276
5277 /* Compile the regular expression */
5278
5279 re = pcre_compile(CS sub[1], PCRE_COPT, (const char **)&rerror, &roffset,
5280 NULL);
5281
5282 if (re == NULL)
5283 {
5284 expand_string_message = string_sprintf("regular expression error in "
5285 "\"%s\": %s at offset %d", sub[1], rerror, roffset);
5286 goto EXPAND_FAILED;
5287 }
5288
5289 /* Now run a loop to do the substitutions as often as necessary. It ends
5290 when there are no more matches. Take care over matches of the null string;
5291 do the same thing as Perl does. */
5292
5293 subject = sub[0];
5294 slen = Ustrlen(sub[0]);
5295 moffset = moffsetextra = 0;
5296 emptyopt = 0;
5297
5298 for (;;)
5299 {
5300 int ovector[3*(EXPAND_MAXN+1)];
5301 int n = pcre_exec(re, NULL, CS subject, slen, moffset + moffsetextra,
5302 PCRE_EOPT | emptyopt, ovector, nelem(ovector));
5303 int nn;
5304 uschar *insert;
5305
5306 /* No match - if we previously set PCRE_NOTEMPTY after a null match, this
5307 is not necessarily the end. We want to repeat the match from one
5308 character further along, but leaving the basic offset the same (for
5309 copying below). We can't be at the end of the string - that was checked
5310 before setting PCRE_NOTEMPTY. If PCRE_NOTEMPTY is not set, we are
5311 finished; copy the remaining string and end the loop. */
5312
5313 if (n < 0)
5314 {
5315 if (emptyopt != 0)
5316 {
5317 moffsetextra = 1;
5318 emptyopt = 0;
5319 continue;
5320 }
5321 yield = string_catn(yield, &size, &ptr, subject+moffset, slen-moffset);
5322 break;
5323 }
5324
5325 /* Match - set up for expanding the replacement. */
5326
5327 if (n == 0) n = EXPAND_MAXN + 1;
5328 expand_nmax = 0;
5329 for (nn = 0; nn < n*2; nn += 2)
5330 {
5331 expand_nstring[expand_nmax] = subject + ovector[nn];
5332 expand_nlength[expand_nmax++] = ovector[nn+1] - ovector[nn];
5333 }
5334 expand_nmax--;
5335
5336 /* Copy the characters before the match, plus the expanded insertion. */
5337
5338 yield = string_catn(yield, &size, &ptr, subject + moffset,
5339 ovector[0] - moffset);
5340 insert = expand_string(sub[2]);
5341 if (insert == NULL) goto EXPAND_FAILED;
5342 yield = string_cat(yield, &size, &ptr, insert);
5343
5344 moffset = ovector[1];
5345 moffsetextra = 0;
5346 emptyopt = 0;
5347
5348 /* If we have matched an empty string, first check to see if we are at
5349 the end of the subject. If so, the loop is over. Otherwise, mimic
5350 what Perl's /g options does. This turns out to be rather cunning. First
5351 we set PCRE_NOTEMPTY and PCRE_ANCHORED and try the match a non-empty
5352 string at the same point. If this fails (picked up above) we advance to
5353 the next character. */
5354
5355 if (ovector[0] == ovector[1])
5356 {
5357 if (ovector[0] == slen) break;
5358 emptyopt = PCRE_NOTEMPTY | PCRE_ANCHORED;
5359 }
5360 }
5361
5362 /* All done - restore numerical variables. */
5363
5364 restore_expand_strings(save_expand_nmax, save_expand_nstring,
5365 save_expand_nlength);
5366 continue;
5367 }
5368
5369 /* Handle keyed and numbered substring extraction. If the first argument
5370 consists entirely of digits, then a numerical extraction is assumed. */
5371
5372 case EITEM_EXTRACT:
5373 {
5374 int i;
5375 int j;
5376 int field_number = 1;
5377 BOOL field_number_set = FALSE;
5378 uschar *save_lookup_value = lookup_value;
5379 uschar *sub[3];
5380 int save_expand_nmax =
5381 save_expand_strings(save_expand_nstring, save_expand_nlength);
5382
5383 /* While skipping we cannot rely on the data for expansions being
5384 available (eg. $item) hence cannot decide on numeric vs. keyed.
5385 Read a maximum of 5 arguments (inclding the yes/no) */
5386
5387 if (skipping)
5388 {
5389 while (isspace(*s)) s++;
5390 for (j = 5; j > 0 && *s == '{'; j--)
5391 {
5392 if (!expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok))
5393 goto EXPAND_FAILED; /*{*/
5394 if (*s++ != '}')
5395 {
5396 expand_string_message = US"missing '{' for arg of extract";
5397 goto EXPAND_FAILED_CURLY;
5398 }
5399 while (isspace(*s)) s++;
5400 }
5401 if ( Ustrncmp(s, "fail", 4) == 0
5402 && (s[4] == '}' || s[4] == ' ' || s[4] == '\t' || !s[4])
5403 )
5404 {
5405 s += 4;
5406 while (isspace(*s)) s++;
5407 }
5408 if (*s != '}')
5409 {
5410 expand_string_message = US"missing '}' closing extract";
5411 goto EXPAND_FAILED_CURLY;
5412 }
5413 }
5414
5415 else for (i = 0, j = 2; i < j; i++) /* Read the proper number of arguments */
5416 {
5417 while (isspace(*s)) s++;
5418 if (*s == '{') /*}*/
5419 {
5420 sub[i] = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok);
5421 if (sub[i] == NULL) goto EXPAND_FAILED; /*{*/
5422 if (*s++ != '}')
5423 {
5424 expand_string_message = string_sprintf(
5425 "missing '}' closing arg %d of extract", i+1);
5426 goto EXPAND_FAILED_CURLY;
5427 }
5428
5429 /* After removal of leading and trailing white space, the first
5430 argument must not be empty; if it consists entirely of digits
5431 (optionally preceded by a minus sign), this is a numerical
5432 extraction, and we expect 3 arguments. */
5433
5434 if (i == 0)
5435 {
5436 int len;
5437 int x = 0;
5438 uschar *p = sub[0];
5439
5440 while (isspace(*p)) p++;
5441 sub[0] = p;
5442
5443 len = Ustrlen(p);
5444 while (len > 0 && isspace(p[len-1])) len--;
5445 p[len] = 0;
5446
5447 if (*p == 0)
5448 {
5449 expand_string_message = US"first argument of \"extract\" must "
5450 "not be empty";
5451 goto EXPAND_FAILED;
5452 }
5453
5454 if (*p == '-')
5455 {
5456 field_number = -1;
5457 p++;
5458 }
5459 while (*p != 0 && isdigit(*p)) x = x * 10 + *p++ - '0';
5460 if (*p == 0)
5461 {
5462 field_number *= x;
5463 j = 3; /* Need 3 args */
5464 field_number_set = TRUE;
5465 }
5466 }
5467 }
5468 else
5469 {
5470 expand_string_message = string_sprintf(
5471 "missing '{' for arg %d of extract", i+1);
5472 goto EXPAND_FAILED_CURLY;
5473 }
5474 }
5475
5476 /* Extract either the numbered or the keyed substring into $value. If
5477 skipping, just pretend the extraction failed. */
5478
5479 lookup_value = skipping? NULL : field_number_set?
5480 expand_gettokened(field_number, sub[1], sub[2]) :
5481 expand_getkeyed(sub[0], sub[1]);
5482
5483 /* If no string follows, $value gets substituted; otherwise there can
5484 be yes/no strings, as for lookup or if. */
5485
5486 switch(process_yesno(
5487 skipping, /* were previously skipping */
5488 lookup_value != NULL, /* success/failure indicator */
5489 save_lookup_value, /* value to reset for string2 */
5490 &s, /* input pointer */
5491 &yield, /* output pointer */
5492 &size, /* output size */
5493 &ptr, /* output current point */
5494 US"extract", /* condition type */
5495 &resetok))
5496 {
5497 case 1: goto EXPAND_FAILED; /* when all is well, the */
5498 case 2: goto EXPAND_FAILED_CURLY; /* returned value is 0 */
5499 }
5500
5501 /* All done - restore numerical variables. */
5502
5503 restore_expand_strings(save_expand_nmax, save_expand_nstring,
5504 save_expand_nlength);
5505
5506 continue;
5507 }
5508
5509 /* return the Nth item from a list */
5510
5511 case EITEM_LISTEXTRACT:
5512 {
5513 int i;
5514 int field_number = 1;
5515 uschar *save_lookup_value = lookup_value;
5516 uschar *sub[2];
5517 int save_expand_nmax =
5518 save_expand_strings(save_expand_nstring, save_expand_nlength);
5519
5520 /* Read the field & list arguments */
5521
5522 for (i = 0; i < 2; i++)
5523 {
5524 while (isspace(*s)) s++;
5525 if (*s != '{') /*}*/
5526 {
5527 expand_string_message = string_sprintf(
5528 "missing '{' for arg %d of listextract", i+1);
5529 goto EXPAND_FAILED_CURLY;
5530 }
5531
5532 sub[i] = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok);
5533 if (!sub[i]) goto EXPAND_FAILED; /*{*/
5534 if (*s++ != '}')
5535 {
5536 expand_string_message = string_sprintf(
5537 "missing '}' closing arg %d of listextract", i+1);
5538 goto EXPAND_FAILED_CURLY;
5539 }
5540
5541 /* After removal of leading and trailing white space, the first
5542 argument must be numeric and nonempty. */
5543
5544 if (i == 0)
5545 {
5546 int len;
5547 int x = 0;
5548 uschar *p = sub[0];
5549
5550 while (isspace(*p)) p++;
5551 sub[0] = p;
5552
5553 len = Ustrlen(p);
5554 while (len > 0 && isspace(p[len-1])) len--;
5555 p[len] = 0;
5556
5557 if (!*p && !skipping)
5558 {
5559 expand_string_message = US"first argument of \"listextract\" must "
5560 "not be empty";
5561 goto EXPAND_FAILED;
5562 }
5563
5564 if (*p == '-')
5565 {
5566 field_number = -1;
5567 p++;
5568 }
5569 while (*p && isdigit(*p)) x = x * 10 + *p++ - '0';
5570 if (*p)
5571 {
5572 expand_string_message = US"first argument of \"listextract\" must "
5573 "be numeric";
5574 goto EXPAND_FAILED;
5575 }
5576 field_number *= x;
5577 }
5578 }
5579
5580 /* Extract the numbered element into $value. If
5581 skipping, just pretend the extraction failed. */
5582
5583 lookup_value = skipping? NULL : expand_getlistele(field_number, sub[1]);
5584
5585 /* If no string follows, $value gets substituted; otherwise there can
5586 be yes/no strings, as for lookup or if. */
5587
5588 switch(process_yesno(
5589 skipping, /* were previously skipping */
5590 lookup_value != NULL, /* success/failure indicator */
5591 save_lookup_value, /* value to reset for string2 */
5592 &s, /* input pointer */
5593 &yield, /* output pointer */
5594 &size, /* output size */
5595 &ptr, /* output current point */
5596 US"listextract", /* condition type */
5597 &resetok))
5598 {
5599 case 1: goto EXPAND_FAILED; /* when all is well, the */
5600 case 2: goto EXPAND_FAILED_CURLY; /* returned value is 0 */
5601 }
5602
5603 /* All done - restore numerical variables. */
5604
5605 restore_expand_strings(save_expand_nmax, save_expand_nstring,
5606 save_expand_nlength);
5607
5608 continue;
5609 }
5610
5611 #ifdef SUPPORT_TLS
5612 case EITEM_CERTEXTRACT:
5613 {
5614 uschar *save_lookup_value = lookup_value;
5615 uschar *sub[2];
5616 int save_expand_nmax =
5617 save_expand_strings(save_expand_nstring, save_expand_nlength);
5618
5619 /* Read the field argument */
5620 while (isspace(*s)) s++;
5621 if (*s != '{') /*}*/
5622 {
5623 expand_string_message = US"missing '{' for field arg of certextract";
5624 goto EXPAND_FAILED_CURLY;
5625 }
5626 sub[0] = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok);
5627 if (!sub[0]) goto EXPAND_FAILED; /*{*/
5628 if (*s++ != '}')
5629 {
5630 expand_string_message = US"missing '}' closing field arg of certextract";
5631 goto EXPAND_FAILED_CURLY;
5632 }
5633 /* strip spaces fore & aft */
5634 {
5635 int len;
5636 uschar *p = sub[0];
5637
5638 while (isspace(*p)) p++;
5639 sub[0] = p;
5640
5641 len = Ustrlen(p);
5642 while (len > 0 && isspace(p[len-1])) len--;
5643 p[len] = 0;
5644 }
5645
5646 /* inspect the cert argument */
5647 while (isspace(*s)) s++;
5648 if (*s != '{') /*}*/
5649 {
5650 expand_string_message = US"missing '{' for cert variable arg of certextract";
5651 goto EXPAND_FAILED_CURLY;
5652 }
5653 if (*++s != '$')
5654 {
5655 expand_string_message = US"second argument of \"certextract\" must "
5656 "be a certificate variable";
5657 goto EXPAND_FAILED;
5658 }
5659 sub[1] = expand_string_internal(s+1, TRUE, &s, skipping, FALSE, &resetok);
5660 if (!sub[1]) goto EXPAND_FAILED; /*{*/
5661 if (*s++ != '}')
5662 {
5663 expand_string_message = US"missing '}' closing cert variable arg of certextract";
5664 goto EXPAND_FAILED_CURLY;
5665 }
5666
5667 if (skipping)
5668 lookup_value = NULL;
5669 else
5670 {
5671 lookup_value = expand_getcertele(sub[0], sub[1]);
5672 if (*expand_string_message) goto EXPAND_FAILED;
5673 }
5674 switch(process_yesno(
5675 skipping, /* were previously skipping */
5676 lookup_value != NULL, /* success/failure indicator */
5677 save_lookup_value, /* value to reset for string2 */
5678 &s, /* input pointer */
5679 &yield, /* output pointer */
5680 &size, /* output size */
5681 &ptr, /* output current point */
5682 US"certextract", /* condition type */
5683 &resetok))
5684 {
5685 case 1: goto EXPAND_FAILED; /* when all is well, the */
5686 case 2: goto EXPAND_FAILED_CURLY; /* returned value is 0 */
5687 }
5688
5689 restore_expand_strings(save_expand_nmax, save_expand_nstring,
5690 save_expand_nlength);
5691 continue;
5692 }
5693 #endif /*SUPPORT_TLS*/
5694
5695 /* Handle list operations */
5696
5697 case EITEM_FILTER:
5698 case EITEM_MAP:
5699 case EITEM_REDUCE:
5700 {
5701 int sep = 0;
5702 int save_ptr = ptr;
5703 uschar outsep[2] = { '\0', '\0' };
5704 const uschar *list, *expr, *temp;
5705 uschar *save_iterate_item = iterate_item;
5706 uschar *save_lookup_value = lookup_value;
5707
5708 while (isspace(*s)) s++;
5709 if (*s++ != '{')
5710 {
5711 expand_string_message =
5712 string_sprintf("missing '{' for first arg of %s", name);
5713 goto EXPAND_FAILED_CURLY;
5714 }
5715
5716 list = expand_string_internal(s, TRUE, &s, skipping, TRUE, &resetok);
5717 if (list == NULL) goto EXPAND_FAILED;
5718 if (*s++ != '}')
5719 {
5720 expand_string_message =
5721 string_sprintf("missing '}' closing first arg of %s", name);
5722 goto EXPAND_FAILED_CURLY;
5723 }
5724
5725 if (item_type == EITEM_REDUCE)
5726 {
5727 uschar * t;
5728 while (isspace(*s)) s++;
5729 if (*s++ != '{')
5730 {
5731 expand_string_message = US"missing '{' for second arg of reduce";
5732 goto EXPAND_FAILED_CURLY;
5733 }
5734 t = expand_string_internal(s, TRUE, &s, skipping, TRUE, &resetok);
5735 if (!t) goto EXPAND_FAILED;
5736 lookup_value = t;
5737 if (*s++ != '}')
5738 {
5739 expand_string_message = US"missing '}' closing second arg of reduce";
5740 goto EXPAND_FAILED_CURLY;
5741 }
5742 }
5743
5744 while (isspace(*s)) s++;
5745 if (*s++ != '{')
5746 {
5747 expand_string_message =
5748 string_sprintf("missing '{' for last arg of %s", name);
5749 goto EXPAND_FAILED_CURLY;
5750 }
5751
5752 expr = s;
5753
5754 /* For EITEM_FILTER, call eval_condition once, with result discarded (as
5755 if scanning a "false" part). This allows us to find the end of the
5756 condition, because if the list is empty, we won't actually evaluate the
5757 condition for real. For EITEM_MAP and EITEM_REDUCE, do the same, using
5758 the normal internal expansion function. */
5759
5760 if (item_type == EITEM_FILTER)
5761 {
5762 temp = eval_condition(expr, &resetok, NULL);
5763 if (temp != NULL) s = temp;
5764 }
5765 else
5766 temp = expand_string_internal(s, TRUE, &s, TRUE, TRUE, &resetok);
5767
5768 if (temp == NULL)
5769 {
5770 expand_string_message = string_sprintf("%s inside \"%s\" item",
5771 expand_string_message, name);
5772 goto EXPAND_FAILED;
5773 }
5774
5775 while (isspace(*s)) s++;
5776 if (*s++ != '}')
5777 { /*{*/
5778 expand_string_message = string_sprintf("missing } at end of condition "
5779 "or expression inside \"%s\"", name);
5780 goto EXPAND_FAILED;
5781 }
5782
5783 while (isspace(*s)) s++; /*{*/
5784 if (*s++ != '}')
5785 { /*{*/
5786 expand_string_message = string_sprintf("missing } at end of \"%s\"",
5787 name);
5788 goto EXPAND_FAILED;
5789 }
5790
5791 /* If we are skipping, we can now just move on to the next item. When
5792 processing for real, we perform the iteration. */
5793
5794 if (skipping) continue;
5795 while ((iterate_item = string_nextinlist(&list, &sep, NULL, 0)) != NULL)
5796 {
5797 *outsep = (uschar)sep; /* Separator as a string */
5798
5799 DEBUG(D_expand) debug_printf("%s: $item = \"%s\"\n", name, iterate_item);
5800
5801 if (item_type == EITEM_FILTER)
5802 {
5803 BOOL condresult;
5804 if (eval_condition(expr, &resetok, &condresult) == NULL)
5805 {
5806 iterate_item = save_iterate_item;
5807 lookup_value = save_lookup_value;
5808 expand_string_message = string_sprintf("%s inside \"%s\" condition",
5809 expand_string_message, name);
5810 goto EXPAND_FAILED;
5811 }
5812 DEBUG(D_expand) debug_printf("%s: condition is %s\n", name,
5813 condresult? "true":"false");
5814 if (condresult)
5815 temp = iterate_item; /* TRUE => include this item */
5816 else
5817 continue; /* FALSE => skip this item */
5818 }
5819
5820 /* EITEM_MAP and EITEM_REDUCE */
5821
5822 else
5823 {
5824 uschar * t = expand_string_internal(expr, TRUE, NULL, skipping, TRUE, &resetok);
5825 temp = t;
5826 if (temp == NULL)
5827 {
5828 iterate_item = save_iterate_item;
5829 expand_string_message = string_sprintf("%s inside \"%s\" item",
5830 expand_string_message, name);
5831 goto EXPAND_FAILED;
5832 }
5833 if (item_type == EITEM_REDUCE)
5834 {
5835 lookup_value = t; /* Update the value of $value */
5836 continue; /* and continue the iteration */
5837 }
5838 }
5839
5840 /* We reach here for FILTER if the condition is true, always for MAP,
5841 and never for REDUCE. The value in "temp" is to be added to the output
5842 list that is being created, ensuring that any occurrences of the
5843 separator character are doubled. Unless we are dealing with the first
5844 item of the output list, add in a space if the new item begins with the
5845 separator character, or is an empty string. */
5846
5847 if (ptr != save_ptr && (temp[0] == *outsep || temp[0] == 0))
5848 yield = string_catn(yield, &size, &ptr, US" ", 1);
5849
5850 /* Add the string in "temp" to the output list that we are building,
5851 This is done in chunks by searching for the separator character. */
5852
5853 for (;;)
5854 {
5855 size_t seglen = Ustrcspn(temp, outsep);
5856
5857 yield = string_catn(yield, &size, &ptr, temp, seglen + 1);
5858
5859 /* If we got to the end of the string we output one character
5860 too many; backup and end the loop. Otherwise arrange to double the
5861 separator. */
5862
5863 if (temp[seglen] == '\0') { ptr--; break; }
5864 yield = string_catn(yield, &size, &ptr, outsep, 1);
5865 temp += seglen + 1;
5866 }
5867
5868 /* Output a separator after the string: we will remove the redundant
5869 final one at the end. */
5870
5871 yield = string_catn(yield, &size, &ptr, outsep, 1);
5872 } /* End of iteration over the list loop */
5873
5874 /* REDUCE has generated no output above: output the final value of
5875 $value. */
5876
5877 if (item_type == EITEM_REDUCE)
5878 {
5879 yield = string_cat(yield, &size, &ptr, lookup_value);
5880 lookup_value = save_lookup_value; /* Restore $value */
5881 }
5882
5883 /* FILTER and MAP generate lists: if they have generated anything, remove
5884 the redundant final separator. Even though an empty item at the end of a
5885 list does not count, this is tidier. */
5886
5887 else if (ptr != save_ptr) ptr--;
5888
5889 /* Restore preserved $item */
5890
5891 iterate_item = save_iterate_item;
5892 continue;
5893 }
5894
5895 case EITEM_SORT:
5896 {
5897 int sep = 0;
5898 const uschar *srclist, *cmp, *xtract;
5899 uschar *srcitem;
5900 const uschar *dstlist = NULL, *dstkeylist = NULL;
5901 uschar * tmp;
5902 uschar *save_iterate_item = iterate_item;
5903
5904 while (isspace(*s)) s++;
5905 if (*s++ != '{')
5906 {
5907 expand_string_message = US"missing '{' for list arg of sort";
5908 goto EXPAND_FAILED_CURLY;
5909 }
5910
5911 srclist = expand_string_internal(s, TRUE, &s, skipping, TRUE, &resetok);
5912 if (!srclist) goto EXPAND_FAILED;
5913 if (*s++ != '}')
5914 {
5915 expand_string_message = US"missing '}' closing list arg of sort";
5916 goto EXPAND_FAILED_CURLY;
5917 }
5918
5919 while (isspace(*s)) s++;
5920 if (*s++ != '{')
5921 {
5922 expand_string_message = US"missing '{' for comparator arg of sort";
5923 goto EXPAND_FAILED_CURLY;
5924 }
5925
5926 cmp = expand_string_internal(s, TRUE, &s, skipping, FALSE, &resetok);
5927 if (!cmp) goto EXPAND_FAILED;
5928 if (*s++ != '}')
5929 {
5930 expand_string_message = US"missing '}' closing comparator arg of sort";
5931 goto EXPAND_FAILED_CURLY;
5932 }
5933
5934 while (isspace(*s)) s++;
5935 if (*s++ != '{')
5936 {
5937 expand_string_message = US"missing '{' for extractor arg of sort";
5938 goto EXPAND_FAILED_CURLY;
5939 }
5940
5941 xtract = s;
5942 tmp = expand_string_internal(s, TRUE, &s, TRUE, TRUE, &resetok);
5943 if (!tmp) goto EXPAND_FAILED;
5944 xtract = string_copyn(xtract, s - xtract);
5945
5946 if (*s++ != '}')
5947 {
5948 expand_string_message = US"missing '}' closing extractor arg of sort";
5949 goto EXPAND_FAILED_CURLY;
5950 }
5951 /*{*/
5952 if (*s++ != '}')
5953 { /*{*/
5954 expand_string_message = US"missing } at end of \"sort\"";
5955 goto EXPAND_FAILED;
5956 }
5957
5958 if (skipping) continue;
5959
5960 while ((srcitem = string_nextinlist(&srclist, &sep, NULL, 0)))
5961 {
5962 uschar * dstitem;
5963 uschar * newlist = NULL;
5964 uschar * newkeylist = NULL;
5965 uschar * srcfield;
5966
5967 DEBUG(D_expand) debug_printf("%s: $item = \"%s\"\n", name, srcitem);
5968
5969 /* extract field for comparisons */
5970 iterate_item = srcitem;
5971 if ( !(srcfield = expand_string_internal(xtract, FALSE, NULL, FALSE,
5972 TRUE, &resetok))
5973 || !*srcfield)
5974 {
5975 expand_string_message = string_sprintf(
5976 "field-extract in sort: \"%s\"", xtract);
5977 goto EXPAND_FAILED;
5978 }
5979
5980 /* Insertion sort */
5981
5982 /* copy output list until new-item < list-item */
5983 while ((dstitem = string_nextinlist(&dstlist, &sep, NULL, 0)))
5984 {
5985 uschar * dstfield;
5986 uschar * expr;
5987 BOOL before;
5988
5989 /* field for comparison */
5990 if (!(dstfield = string_nextinlist(&dstkeylist, &sep, NULL, 0)))
5991 goto sort_mismatch;
5992
5993 /* build and run condition string */
5994 expr = string_sprintf("%s{%s}{%s}", cmp, srcfield, dstfield);
5995
5996 DEBUG(D_expand) debug_printf("%s: cond = \"%s\"\n", name, expr);
5997 if (!eval_condition(expr, &resetok, &before))
5998 {
5999 expand_string_message = string_sprintf("comparison in sort: %s",
6000 expr);
6001 goto EXPAND_FAILED;
6002 }
6003
6004 if (before)
6005 {
6006 /* New-item sorts before this dst-item. Append new-item,
6007 then dst-item, then remainder of dst list. */
6008
6009 newlist = string_append_listele(newlist, sep, srcitem);
6010 newkeylist = string_append_listele(newkeylist, sep, srcfield);
6011 srcitem = NULL;
6012
6013 newlist = string_append_listele(newlist, sep, dstitem);
6014 newkeylist = string_append_listele(newkeylist, sep, dstfield);
6015
6016 while ((dstitem = string_nextinlist(&dstlist, &sep, NULL, 0)))
6017 {
6018 if (!(dstfield = string_nextinlist(&dstkeylist, &sep, NULL, 0)))
6019 goto sort_mismatch;
6020 newlist = string_append_listele(newlist, sep, dstitem);
6021 newkeylist = string_append_listele(newkeylist, sep, dstfield);
6022 }
6023
6024 break;
6025 }
6026
6027 newlist = string_append_listele(newlist, sep, dstitem);
6028 newkeylist = string_append_listele(newkeylist, sep, dstfield);
6029 }
6030
6031 /* If we ran out of dstlist without consuming srcitem, append it */
6032 if (srcitem)
6033 {
6034 newlist = string_append_listele(newlist, sep, srcitem);
6035 newkeylist = string_append_listele(newkeylist, sep, srcfield);
6036 }
6037
6038 dstlist = newlist;
6039 dstkeylist = newkeylist;
6040
6041 DEBUG(D_expand) debug_printf("%s: dstlist = \"%s\"\n", name, dstlist);
6042 DEBUG(D_expand) debug_printf("%s: dstkeylist = \"%s\"\n", name, dstkeylist);
6043 }
6044
6045 if (dstlist)
6046 yield = string_cat(yield, &size, &ptr, dstlist);
6047
6048 /* Restore preserved $item */
6049 iterate_item = save_iterate_item;
6050 continue;
6051
6052 sort_mismatch:
6053 expand_string_message = US"Internal error in sort (list mismatch)";
6054 goto EXPAND_FAILED;
6055 }
6056
6057
6058 /* If ${dlfunc } support is configured, handle calling dynamically-loaded
6059 functions, unless locked out at this time. Syntax is ${dlfunc{file}{func}}
6060 or ${dlfunc{file}{func}{arg}} or ${dlfunc{file}{func}{arg1}{arg2}} or up to
6061 a maximum of EXPAND_DLFUNC_MAX_ARGS arguments (defined below). */
6062
6063 #define EXPAND_DLFUNC_MAX_ARGS 8
6064
6065 case EITEM_DLFUNC:
6066 #ifndef EXPAND_DLFUNC
6067 expand_string_message = US"\"${dlfunc\" encountered, but this facility " /*}*/
6068 "is not included in this binary";
6069 goto EXPAND_FAILED;
6070
6071 #else /* EXPAND_DLFUNC */
6072 {
6073 tree_node *t;
6074 exim_dlfunc_t *func;
6075 uschar *result;
6076 int status, argc;
6077 uschar *argv[EXPAND_DLFUNC_MAX_ARGS + 3];
6078
6079 if ((expand_forbid & RDO_DLFUNC) != 0)
6080 {
6081 expand_string_message =
6082 US"dynamically-loaded functions are not permitted";
6083 goto EXPAND_FAILED;
6084 }
6085
6086 switch(read_subs(argv, EXPAND_DLFUNC_MAX_ARGS + 2, 2, &s, skipping,
6087 TRUE, US"dlfunc", &resetok))
6088 {
6089 case 1: goto EXPAND_FAILED_CURLY;
6090 case 2:
6091 case 3: goto EXPAND_FAILED;
6092 }
6093
6094 /* If skipping, we don't actually do anything */
6095
6096 if (skipping) continue;
6097
6098 /* Look up the dynamically loaded object handle in the tree. If it isn't
6099 found, dlopen() the file and put the handle in the tree for next time. */
6100
6101 t = tree_search(dlobj_anchor, argv[0]);
6102 if (t == NULL)
6103 {
6104 void *handle = dlopen(CS argv[0], RTLD_LAZY);
6105 if (handle == NULL)
6106 {
6107 expand_string_message = string_sprintf("dlopen \"%s\" failed: %s",
6108 argv[0], dlerror());
6109 log_write(0, LOG_MAIN|LOG_PANIC, "%s", expand_string_message);
6110 goto EXPAND_FAILED;
6111 }
6112 t = store_get_perm(sizeof(tree_node) + Ustrlen(argv[0]));
6113 Ustrcpy(t->name, argv[0]);
6114 t->data.ptr = handle;
6115 (void)tree_insertnode(&dlobj_anchor, t);
6116 }
6117
6118 /* Having obtained the dynamically loaded object handle, look up the
6119 function pointer. */
6120
6121 func = (exim_dlfunc_t *)dlsym(t->data.ptr, CS argv[1]);
6122 if (func == NULL)
6123 {
6124 expand_string_message = string_sprintf("dlsym \"%s\" in \"%s\" failed: "
6125 "%s", argv[1], argv[0], dlerror());
6126 log_write(0, LOG_MAIN|LOG_PANIC, "%s", expand_string_message);
6127 goto EXPAND_FAILED;
6128 }
6129
6130 /* Call the function and work out what to do with the result. If it
6131 returns OK, we have a replacement string; if it returns DEFER then
6132 expansion has failed in a non-forced manner; if it returns FAIL then
6133 failure was forced; if it returns ERROR or any other value there's a
6134 problem, so panic slightly. In any case, assume that the function has
6135 side-effects on the store that must be preserved. */
6136
6137 resetok = FALSE;
6138 result = NULL;
6139 for (argc = 0; argv[argc] != NULL; argc++);
6140 status = func(&result, argc - 2, &argv[2]);
6141 if(status == OK)
6142 {
6143 if (result == NULL) result = US"";
6144 yield = string_cat(yield, &size, &ptr, result);
6145 continue;
6146 }
6147 else
6148 {
6149 expand_string_message = result == NULL ? US"(no message)" : result;
6150 if(status == FAIL_FORCED) expand_string_forcedfail = TRUE;
6151 else if(status != FAIL)
6152 log_write(0, LOG_MAIN|LOG_PANIC, "dlfunc{%s}{%s} failed (%d): %s",
6153 argv[0], argv[1], status, expand_string_message);
6154 goto EXPAND_FAILED;
6155 }
6156 }
6157 #endif /* EXPAND_DLFUNC */
6158
6159 case EITEM_ENV: /* ${env {name} {val_if_found} {val_if_unfound}} */
6160 {
6161 uschar * key;
6162 uschar *save_lookup_value = lookup_value;
6163
6164 while (isspace(*s)) s++;
6165 if (*s != '{') /*}*/
6166 goto EXPAND_FAILED;
6167
6168 key = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok);
6169 if (!key) goto EXPAND_FAILED; /*{*/
6170 if (*s++ != '}')
6171 {
6172 expand_string_message = US"missing '{' for name arg of env";
6173 goto EXPAND_FAILED_CURLY;
6174 }
6175
6176 lookup_value = US getenv(CS key);
6177
6178 switch(process_yesno(
6179 skipping, /* were previously skipping */
6180 lookup_value != NULL, /* success/failure indicator */
6181 save_lookup_value, /* value to reset for string2 */
6182 &s, /* input pointer */
6183 &yield, /* output pointer */
6184 &size, /* output size */
6185 &ptr, /* output current point */
6186 US"env", /* condition type */
6187 &resetok))
6188 {
6189 case 1: goto EXPAND_FAILED; /* when all is well, the */
6190 case 2: goto EXPAND_FAILED_CURLY; /* returned value is 0 */
6191 }
6192 continue;
6193 }
6194 } /* EITEM_* switch */
6195
6196 /* Control reaches here if the name is not recognized as one of the more
6197 complicated expansion items. Check for the "operator" syntax (name terminated
6198 by a colon). Some of the operators have arguments, separated by _ from the
6199 name. */
6200
6201 if (*s == ':')
6202 {
6203 int c;
6204 uschar *arg = NULL;
6205 uschar *sub;
6206 var_entry *vp = NULL;
6207
6208 /* Owing to an historical mis-design, an underscore may be part of the
6209 operator name, or it may introduce arguments. We therefore first scan the
6210 table of names that contain underscores. If there is no match, we cut off
6211 the arguments and then scan the main table. */
6212
6213 if ((c = chop_match(name, op_table_underscore,
6214 nelem(op_table_underscore))) < 0)
6215 {
6216 arg = Ustrchr(name, '_');
6217 if (arg != NULL) *arg = 0;
6218 c = chop_match(name, op_table_main, nelem(op_table_main));
6219 if (c >= 0) c += nelem(op_table_underscore);
6220 if (arg != NULL) *arg++ = '_'; /* Put back for error messages */
6221 }
6222
6223 /* Deal specially with operators that might take a certificate variable
6224 as we do not want to do the usual expansion. For most, expand the string.*/
6225 switch(c)
6226 {
6227 #ifdef SUPPORT_TLS
6228 case EOP_MD5:
6229 case EOP_SHA1:
6230 case EOP_SHA256:
6231 case EOP_BASE64:
6232 if (s[1] == '$')
6233 {
6234 const uschar * s1 = s;
6235 sub = expand_string_internal(s+2, TRUE, &s1, skipping,
6236 FALSE, &resetok);
6237 if (!sub) goto EXPAND_FAILED; /*{*/
6238 if (*s1 != '}')
6239 {
6240 expand_string_message =
6241 string_sprintf("missing '}' closing cert arg of %s", name);
6242 goto EXPAND_FAILED_CURLY;
6243 }
6244 if ((vp = find_var_ent(sub)) && vp->type == vtype_cert)
6245 {
6246 s = s1+1;
6247 break;
6248 }
6249 vp = NULL;
6250 }
6251 /*FALLTHROUGH*/
6252 #endif
6253 default:
6254 sub = expand_string_internal(s+1, TRUE, &s, skipping, TRUE, &resetok);
6255 if (!sub) goto EXPAND_FAILED;
6256 s++;
6257 break;
6258 }
6259
6260 /* If we are skipping, we don't need to perform the operation at all.
6261 This matters for operations like "mask", because the data may not be
6262 in the correct format when skipping. For example, the expression may test
6263 for the existence of $sender_host_address before trying to mask it. For
6264 other operations, doing them may not fail, but it is a waste of time. */
6265
6266 if (skipping && c >= 0) continue;
6267
6268 /* Otherwise, switch on the operator type */
6269
6270 switch(c)
6271 {
6272 case EOP_BASE32:
6273 {
6274 uschar *t;
6275 unsigned long int n = Ustrtoul(sub, &t, 10);
6276 uschar * s = NULL;
6277 int sz = 0, i = 0;
6278
6279 if (*t != 0)
6280 {
6281 expand_string_message = string_sprintf("argument for base32 "
6282 "operator is \"%s\", which is not a decimal number", sub);
6283 goto EXPAND_FAILED;
6284 }
6285 for ( ; n; n >>= 5)
6286 s = string_catn(s, &sz, &i, &base32_chars[n & 0x1f], 1);
6287
6288 while (i > 0) yield = string_catn(yield, &size, &ptr, &s[--i], 1);
6289 continue;
6290 }
6291
6292 case EOP_BASE32D:
6293 {
6294 uschar *tt = sub;
6295 unsigned long int n = 0;
6296 uschar * s;
6297 while (*tt)
6298 {
6299 uschar * t = Ustrchr(base32_chars, *tt++);
6300 if (t == NULL)
6301 {
6302 expand_string_message = string_sprintf("argument for base32d "
6303 "operator is \"%s\", which is not a base 32 number", sub);
6304 goto EXPAND_FAILED;
6305 }
6306 n = n * 32 + (t - base32_chars);
6307 }
6308 s = string_sprintf("%ld", n);
6309 yield = string_cat(yield, &size, &ptr, s);
6310 continue;
6311 }
6312
6313 case EOP_BASE62:
6314 {
6315 uschar *t;
6316 unsigned long int n = Ustrtoul(sub, &t, 10);
6317 if (*t != 0)
6318 {
6319 expand_string_message = string_sprintf("argument for base62 "
6320 "operator is \"%s\", which is not a decimal number", sub);
6321 goto EXPAND_FAILED;
6322 }
6323 t = string_base62(n);
6324 yield = string_cat(yield, &size, &ptr, t);
6325 continue;
6326 }
6327
6328 /* Note that for Darwin and Cygwin, BASE_62 actually has the value 36 */
6329
6330 case EOP_BASE62D:
6331 {
6332 uschar buf[16];
6333 uschar *tt = sub;
6334 unsigned long int n = 0;
6335 while (*tt != 0)
6336 {
6337 uschar *t = Ustrchr(base62_chars, *tt++);
6338 if (t == NULL)
6339 {
6340 expand_string_message = string_sprintf("argument for base62d "
6341 "operator is \"%s\", which is not a base %d number", sub,
6342 BASE_62);
6343 goto EXPAND_FAILED;
6344 }
6345 n = n * BASE_62 + (t - base62_chars);
6346 }
6347 (void)sprintf(CS buf, "%ld", n);
6348 yield = string_cat(yield, &size, &ptr, buf);
6349 continue;
6350 }
6351
6352 case EOP_EXPAND:
6353 {
6354 uschar *expanded = expand_string_internal(sub, FALSE, NULL, skipping, TRUE, &resetok);
6355 if (expanded == NULL)
6356 {
6357 expand_string_message =
6358 string_sprintf("internal expansion of \"%s\" failed: %s", sub,
6359 expand_string_message);
6360 goto EXPAND_FAILED;
6361 }
6362 yield = string_cat(yield, &size, &ptr, expanded);
6363 continue;
6364 }
6365
6366 case EOP_LC:
6367 {
6368 int count = 0;
6369 uschar *t = sub - 1;
6370 while (*(++t) != 0) { *t = tolower(*t); count++; }
6371 yield = string_catn(yield, &size, &ptr, sub, count);
6372 continue;
6373 }
6374
6375 case EOP_UC:
6376 {
6377 int count = 0;
6378 uschar *t = sub - 1;
6379 while (*(++t) != 0) { *t = toupper(*t); count++; }
6380 yield = string_catn(yield, &size, &ptr, sub, count);
6381 continue;
6382 }
6383
6384 case EOP_MD5:
6385 #ifdef SUPPORT_TLS
6386 if (vp && *(void **)vp->value)
6387 {
6388 uschar * cp = tls_cert_fprt_md5(*(void **)vp->value);
6389 yield = string_cat(yield, &size, &ptr, cp);
6390 }
6391 else
6392 #endif
6393 {
6394 md5 base;
6395 uschar digest[16];
6396 int j;
6397 char st[33];
6398 md5_start(&base);
6399 md5_end(&base, sub, Ustrlen(sub), digest);
6400 for(j = 0; j < 16; j++) sprintf(st+2*j, "%02x", digest[j]);
6401 yield = string_cat(yield, &size, &ptr, US st);
6402 }
6403 continue;
6404
6405 case EOP_SHA1:
6406 #ifdef SUPPORT_TLS
6407 if (vp && *(void **)vp->value)
6408 {
6409 uschar * cp = tls_cert_fprt_sha1(*(void **)vp->value);
6410 yield = string_cat(yield, &size, &ptr, cp);
6411 }
6412 else
6413 #endif
6414 {
6415 hctx h;
6416 uschar digest[20];
6417 int j;
6418 char st[41];
6419 sha1_start(&h);
6420 sha1_end(&h, sub, Ustrlen(sub), digest);
6421 for(j = 0; j < 20; j++) sprintf(st+2*j, "%02X", digest[j]);
6422 yield = string_catn(yield, &size, &ptr, US st, 40);
6423 }
6424 continue;
6425
6426 case EOP_SHA256:
6427 #ifdef EXIM_HAVE_SHA2
6428 if (vp && *(void **)vp->value)
6429 {
6430 uschar * cp = tls_cert_fprt_sha256(*(void **)vp->value);
6431 yield = string_cat(yield, &size, &ptr, cp);
6432 }
6433 else
6434 {
6435 hctx h;
6436 blob b;
6437 char st[3];
6438
6439 exim_sha_init(&h, HASH_SHA256);
6440 exim_sha_update(&h, sub, Ustrlen(sub));
6441 exim_sha_finish(&h, &b);
6442 while (b.len-- > 0)
6443 {
6444 sprintf(st, "%02X", *b.data++);
6445 yield = string_catn(yield, &size, &ptr, US st, 2);
6446 }
6447 }
6448 #else
6449 expand_string_message = US"sha256 only supported with TLS";
6450 #endif
6451 continue;
6452
6453 case EOP_SHA3:
6454 #ifdef EXIM_HAVE_SHA3
6455 {
6456 hctx h;
6457 blob b;
6458 char st[3];
6459 hashmethod m = !arg ? HASH_SHA3_256
6460 : Ustrcmp(arg, "224") == 0 ? HASH_SHA3_224
6461 : Ustrcmp(arg, "256") == 0 ? HASH_SHA3_256
6462 : Ustrcmp(arg, "384") == 0 ? HASH_SHA3_384
6463 : Ustrcmp(arg, "512") == 0 ? HASH_SHA3_512
6464 : HASH_BADTYPE;
6465
6466 if (m == HASH_BADTYPE)
6467 {
6468 expand_string_message = US"unrecognised sha3 variant";
6469 goto EXPAND_FAILED;
6470 }
6471
6472 exim_sha_init(&h, m);
6473 exim_sha_update(&h, sub, Ustrlen(sub));
6474 exim_sha_finish(&h, &b);
6475 while (b.len-- > 0)
6476 {
6477 sprintf(st, "%02X", *b.data++);
6478 yield = string_catn(yield, &size, &ptr, US st, 2);
6479 }
6480 }
6481 continue;
6482 #else
6483 expand_string_message = US"sha3 only supported with GnuTLS 3.5.0 +";
6484 goto EXPAND_FAILED;
6485 #endif
6486
6487 /* Convert hex encoding to base64 encoding */
6488
6489 case EOP_HEX2B64:
6490 {
6491 int c = 0;
6492 int b = -1;
6493 uschar *in = sub;
6494 uschar *out = sub;
6495 uschar *enc;
6496
6497 for (enc = sub; *enc != 0; enc++)
6498 {
6499 if (!isxdigit(*enc))
6500 {
6501 expand_string_message = string_sprintf("\"%s\" is not a hex "
6502 "string", sub);
6503 goto EXPAND_FAILED;
6504 }
6505 c++;
6506 }
6507
6508 if ((c & 1) != 0)
6509 {
6510 expand_string_message = string_sprintf("\"%s\" contains an odd "
6511 "number of characters", sub);
6512 goto EXPAND_FAILED;
6513 }
6514
6515 while ((c = *in++) != 0)
6516 {
6517 if (isdigit(c)) c -= '0';
6518 else c = toupper(c) - 'A' + 10;
6519 if (b == -1)
6520 {
6521 b = c << 4;
6522 }
6523 else
6524 {
6525 *out++ = b | c;
6526 b = -1;
6527 }
6528 }
6529
6530 enc = b64encode(sub, out - sub);
6531 yield = string_cat(yield, &size, &ptr, enc);
6532 continue;
6533 }
6534
6535 /* Convert octets outside 0x21..0x7E to \xXX form */
6536
6537 case EOP_HEXQUOTE:
6538 {
6539 uschar *t = sub - 1;
6540 while (*(++t) != 0)
6541 {
6542 if (*t < 0x21 || 0x7E < *t)
6543 yield = string_catn(yield, &size, &ptr,
6544 string_sprintf("\\x%02x", *t), 4);
6545 else
6546 yield = string_catn(yield, &size, &ptr, t, 1);
6547 }
6548 continue;
6549 }
6550
6551 /* count the number of list elements */
6552
6553 case EOP_LISTCOUNT:
6554 {
6555 int cnt = 0;
6556 int sep = 0;
6557 uschar * cp;
6558 uschar buffer[256];
6559
6560 while (string_nextinlist(CUSS &sub, &sep, buffer, sizeof(buffer)) != NULL) cnt++;
6561 cp = string_sprintf("%d", cnt);
6562 yield = string_cat(yield, &size, &ptr, cp);
6563 continue;
6564 }
6565
6566 /* expand a named list given the name */
6567 /* handles nested named lists; requotes as colon-sep list */
6568
6569 case EOP_LISTNAMED:
6570 {
6571 tree_node *t = NULL;
6572 const uschar * list;
6573 int sep = 0;
6574 uschar * item;
6575 uschar * suffix = US"";
6576 BOOL needsep = FALSE;
6577 uschar buffer[256];
6578
6579 if (*sub == '+') sub++;
6580 if (arg == NULL) /* no-argument version */
6581 {
6582 if (!(t = tree_search(addresslist_anchor, sub)) &&
6583 !(t = tree_search(domainlist_anchor, sub)) &&
6584 !(t = tree_search(hostlist_anchor, sub)))
6585 t = tree_search(localpartlist_anchor, sub);
6586 }
6587 else switch(*arg) /* specific list-type version */
6588 {
6589 case 'a': t = tree_search(addresslist_anchor, sub); suffix = US"_a"; break;
6590 case 'd': t = tree_search(domainlist_anchor, sub); suffix = US"_d"; break;
6591 case 'h': t = tree_search(hostlist_anchor, sub); suffix = US"_h"; break;
6592 case 'l': t = tree_search(localpartlist_anchor, sub); suffix = US"_l"; break;
6593 default:
6594 expand_string_message = string_sprintf("bad suffix on \"list\" operator");
6595 goto EXPAND_FAILED;
6596 }
6597
6598 if(!t)
6599 {
6600 expand_string_message = string_sprintf("\"%s\" is not a %snamed list",
6601 sub, !arg?""
6602 : *arg=='a'?"address "
6603 : *arg=='d'?"domain "
6604 : *arg=='h'?"host "
6605 : *arg=='l'?"localpart "
6606 : 0);
6607 goto EXPAND_FAILED;
6608 }
6609
6610 list = ((namedlist_block *)(t->data.ptr))->string;
6611
6612 while ((item = string_nextinlist(&list, &sep, buffer, sizeof(buffer))) != NULL)
6613 {
6614 uschar * buf = US" : ";
6615 if (needsep)
6616 yield = string_catn(yield, &size, &ptr, buf, 3);
6617 else
6618 needsep = TRUE;
6619
6620 if (*item == '+') /* list item is itself a named list */
6621 {
6622 uschar * sub = string_sprintf("${listnamed%s:%s}", suffix, item);
6623 item = expand_string_internal(sub, FALSE, NULL, FALSE, TRUE, &resetok);
6624 }
6625 else if (sep != ':') /* item from non-colon-sep list, re-quote for colon list-separator */
6626 {
6627 char * cp;
6628 char tok[3];
6629 tok[0] = sep; tok[1] = ':'; tok[2] = 0;
6630 while ((cp= strpbrk((const char *)item, tok)))
6631 {
6632 yield = string_catn(yield, &size, &ptr, item, cp-(char *)item);
6633 if (*cp++ == ':') /* colon in a non-colon-sep list item, needs doubling */
6634 {
6635 yield = string_catn(yield, &size, &ptr, US"::", 2);
6636 item = (uschar *)cp;
6637 }
6638 else /* sep in item; should already be doubled; emit once */
6639 {
6640 yield = string_catn(yield, &size, &ptr, (uschar *)tok, 1);
6641 if (*cp == sep) cp++;
6642 item = (uschar *)cp;
6643 }
6644 }
6645 }
6646 yield = string_cat(yield, &size, &ptr, item);
6647 }
6648 continue;
6649 }
6650
6651 /* mask applies a mask to an IP address; for example the result of
6652 ${mask:131.111.10.206/28} is 131.111.10.192/28. */
6653
6654 case EOP_MASK:
6655 {
6656 int count;
6657 uschar *endptr;
6658 int binary[4];
6659 int mask, maskoffset;
6660 int type = string_is_ip_address(sub, &maskoffset);
6661 uschar buffer[64];
6662
6663 if (type == 0)
6664 {
6665 expand_string_message = string_sprintf("\"%s\" is not an IP address",
6666 sub);
6667 goto EXPAND_FAILED;
6668 }
6669
6670 if (maskoffset == 0)
6671 {
6672 expand_string_message = string_sprintf("missing mask value in \"%s\"",
6673 sub);
6674 goto EXPAND_FAILED;
6675 }
6676
6677 mask = Ustrtol(sub + maskoffset + 1, &endptr, 10);
6678
6679 if (*endptr != 0 || mask < 0 || mask > ((type == 4)? 32 : 128))
6680 {
6681 expand_string_message = string_sprintf("mask value too big in \"%s\"",
6682 sub);
6683 goto EXPAND_FAILED;
6684 }
6685
6686 /* Convert the address to binary integer(s) and apply the mask */
6687
6688 sub[maskoffset] = 0;
6689 count = host_aton(sub, binary);
6690 host_mask(count, binary, mask);
6691
6692 /* Convert to masked textual format and add to output. */
6693
6694 yield = string_catn(yield, &size, &ptr, buffer,
6695 host_nmtoa(count, binary, mask, buffer, '.'));
6696 continue;
6697 }
6698
6699 case EOP_IPV6NORM:
6700 case EOP_IPV6DENORM:
6701 {
6702 int type = string_is_ip_address(sub, NULL);
6703 int binary[4];
6704 uschar buffer[44];
6705
6706 switch (type)
6707 {
6708 case 6:
6709 (void) host_aton(sub, binary);
6710 break;
6711
6712 case 4: /* convert to IPv4-mapped IPv6 */
6713 binary[0] = binary[1] = 0;
6714 binary[2] = 0x0000ffff;
6715 (void) host_aton(sub, binary+3);
6716 break;
6717
6718 case 0:
6719 expand_string_message =
6720 string_sprintf("\"%s\" is not an IP address", sub);
6721 goto EXPAND_FAILED;
6722 }
6723
6724 yield = string_catn(yield, &size, &ptr, buffer,
6725 c == EOP_IPV6NORM
6726 ? ipv6_nmtoa(binary, buffer)
6727 : host_nmtoa(4, binary, -1, buffer, ':')
6728 );
6729 continue;
6730 }
6731
6732 case EOP_ADDRESS:
6733 case EOP_LOCAL_PART:
6734 case EOP_DOMAIN:
6735 {
6736 uschar *error;
6737 int start, end, domain;
6738 uschar *t = parse_extract_address(sub, &error, &start, &end, &domain,
6739 FALSE);
6740 if (t != NULL)
6741 {
6742 if (c != EOP_DOMAIN)
6743 {
6744 if (c == EOP_LOCAL_PART && domain != 0) end = start + domain - 1;
6745 yield = string_catn(yield, &size, &ptr, sub+start, end-start);
6746 }
6747 else if (domain != 0)
6748 {
6749 domain += start;
6750 yield = string_catn(yield, &size, &ptr, sub+domain, end-domain);
6751 }
6752 }
6753 continue;
6754 }
6755
6756 case EOP_ADDRESSES:
6757 {
6758 uschar outsep[2] = { ':', '\0' };
6759 uschar *address, *error;
6760 int save_ptr = ptr;
6761 int start, end, domain; /* Not really used */
6762
6763 while (isspace(*sub)) sub++;
6764 if (*sub == '>') { *outsep = *++sub; ++sub; }
6765 parse_allow_group = TRUE;
6766
6767 for (;;)
6768 {
6769 uschar *p = parse_find_address_end(sub, FALSE);
6770 uschar saveend = *p;
6771 *p = '\0';
6772 address = parse_extract_address(sub, &error, &start, &end, &domain,
6773 FALSE);
6774 *p = saveend;
6775
6776 /* Add the address to the output list that we are building. This is
6777 done in chunks by searching for the separator character. At the
6778 start, unless we are dealing with the first address of the output
6779 list, add in a space if the new address begins with the separator
6780 character, or is an empty string. */
6781
6782 if (address != NULL)
6783 {
6784 if (ptr != save_ptr && address[0] == *outsep)
6785 yield = string_catn(yield, &size, &ptr, US" ", 1);
6786
6787 for (;;)
6788 {
6789 size_t seglen = Ustrcspn(address, outsep);
6790 yield = string_catn(yield, &size, &ptr, address, seglen + 1);
6791
6792 /* If we got to the end of the string we output one character
6793 too many. */
6794
6795 if (address[seglen] == '\0') { ptr--; break; }
6796 yield = string_catn(yield, &size, &ptr, outsep, 1);
6797 address += seglen + 1;
6798 }
6799
6800 /* Output a separator after the string: we will remove the
6801 redundant final one at the end. */
6802
6803 yield = string_catn(yield, &size, &ptr, outsep, 1);
6804 }
6805
6806 if (saveend == '\0') break;
6807 sub = p + 1;
6808 }
6809
6810 /* If we have generated anything, remove the redundant final
6811 separator. */
6812
6813 if (ptr != save_ptr) ptr--;
6814 parse_allow_group = FALSE;
6815 continue;
6816 }
6817
6818
6819 /* quote puts a string in quotes if it is empty or contains anything
6820 other than alphamerics, underscore, dot, or hyphen.
6821
6822 quote_local_part puts a string in quotes if RFC 2821/2822 requires it to
6823 be quoted in order to be a valid local part.
6824
6825 In both cases, newlines and carriage returns are converted into \n and \r
6826 respectively */
6827
6828 case EOP_QUOTE:
6829 case EOP_QUOTE_LOCAL_PART:
6830 if (arg == NULL)
6831 {
6832 BOOL needs_quote = (*sub == 0); /* TRUE for empty string */
6833 uschar *t = sub - 1;
6834
6835 if (c == EOP_QUOTE)
6836 {
6837 while (!needs_quote && *(++t) != 0)
6838 needs_quote = !isalnum(*t) && !strchr("_-.", *t);
6839 }
6840 else /* EOP_QUOTE_LOCAL_PART */
6841 {
6842 while (!needs_quote && *(++t) != 0)
6843 needs_quote = !isalnum(*t) &&
6844 strchr("!#$%&'*+-/=?^_`{|}~", *t) == NULL &&
6845 (*t != '.' || t == sub || t[1] == 0);
6846 }
6847
6848 if (needs_quote)
6849 {
6850 yield = string_catn(yield, &size, &ptr, US"\"", 1);
6851 t = sub - 1;
6852 while (*(++t) != 0)
6853 {
6854 if (*t == '\n')
6855 yield = string_catn(yield, &size, &ptr, US"\\n", 2);
6856 else if (*t == '\r')
6857 yield = string_catn(yield, &size, &ptr, US"\\r", 2);
6858 else
6859 {
6860 if (*t == '\\' || *t == '"')
6861 yield = string_catn(yield, &size, &ptr, US"\\", 1);
6862 yield = string_catn(yield, &size, &ptr, t, 1);
6863 }
6864 }
6865 yield = string_catn(yield, &size, &ptr, US"\"", 1);
6866 }
6867 else yield = string_cat(yield, &size, &ptr, sub);
6868 continue;
6869 }
6870
6871 /* quote_lookuptype does lookup-specific quoting */
6872
6873 else
6874 {
6875 int n;
6876 uschar *opt = Ustrchr(arg, '_');
6877
6878 if (opt != NULL) *opt++ = 0;
6879
6880 n = search_findtype(arg, Ustrlen(arg));
6881 if (n < 0)
6882 {
6883 expand_string_message = search_error_message;
6884 goto EXPAND_FAILED;
6885 }
6886
6887 if (lookup_list[n]->quote != NULL)
6888 sub = (lookup_list[n]->quote)(sub, opt);
6889 else if (opt != NULL) sub = NULL;
6890
6891 if (sub == NULL)
6892 {
6893 expand_string_message = string_sprintf(
6894 "\"%s\" unrecognized after \"${quote_%s\"",
6895 opt, arg);
6896 goto EXPAND_FAILED;
6897 }
6898
6899 yield = string_cat(yield, &size, &ptr, sub);
6900 continue;
6901 }
6902
6903 /* rx quote sticks in \ before any non-alphameric character so that
6904 the insertion works in a regular expression. */
6905
6906 case EOP_RXQUOTE:
6907 {
6908 uschar *t = sub - 1;
6909 while (*(++t) != 0)
6910 {
6911 if (!isalnum(*t))
6912 yield = string_catn(yield, &size, &ptr, US"\\", 1);
6913 yield = string_catn(yield, &size, &ptr, t, 1);
6914 }
6915 continue;
6916 }
6917
6918 /* RFC 2047 encodes, assuming headers_charset (default ISO 8859-1) as
6919 prescribed by the RFC, if there are characters that need to be encoded */
6920
6921 case EOP_RFC2047:
6922 {
6923 uschar buffer[2048];
6924 const uschar *string = parse_quote_2047(sub, Ustrlen(sub), headers_charset,
6925 buffer, sizeof(buffer), FALSE);
6926 yield = string_cat(yield, &size, &ptr, string);
6927 continue;
6928 }
6929
6930 /* RFC 2047 decode */
6931
6932 case EOP_RFC2047D:
6933 {
6934 int len;
6935 uschar *error;
6936 uschar *decoded = rfc2047_decode(sub, check_rfc2047_length,
6937 headers_charset, '?', &len, &error);
6938 if (error != NULL)
6939 {
6940 expand_string_message = error;
6941 goto EXPAND_FAILED;
6942 }
6943 yield = string_catn(yield, &size, &ptr, decoded, len);
6944 continue;
6945 }
6946
6947 /* from_utf8 converts UTF-8 to 8859-1, turning non-existent chars into
6948 underscores */
6949
6950 case EOP_FROM_UTF8:
6951 {
6952 while (*sub != 0)
6953 {
6954 int c;
6955 uschar buff[4];
6956 GETUTF8INC(c, sub);
6957 if (c > 255) c = '_';
6958 buff[0] = c;
6959 yield = string_catn(yield, &size, &ptr, buff, 1);
6960 }
6961 continue;
6962 }
6963
6964 /* replace illegal UTF-8 sequences by replacement character */
6965
6966 #define UTF8_REPLACEMENT_CHAR US"?"
6967
6968 case EOP_UTF8CLEAN:
6969 {
6970 int seq_len = 0, index = 0;
6971 int bytes_left = 0;
6972 long codepoint = -1;
6973 uschar seq_buff[4]; /* accumulate utf-8 here */
6974
6975 while (*sub != 0)
6976 {
6977 int complete = 0;
6978 uschar c = *sub++;
6979
6980 if (bytes_left)
6981 {
6982 if ((c & 0xc0) != 0x80)
6983 /* wrong continuation byte; invalidate all bytes */
6984 complete = 1; /* error */
6985 else
6986 {
6987 codepoint = (codepoint << 6) | (c & 0x3f);
6988 seq_buff[index++] = c;
6989 if (--bytes_left == 0) /* codepoint complete */
6990 if(codepoint > 0x10FFFF) /* is it too large? */
6991 complete = -1; /* error (RFC3629 limit) */
6992 else
6993 { /* finished; output utf-8 sequence */
6994 yield = string_catn(yield, &size, &ptr, seq_buff, seq_len);
6995 index = 0;
6996 }
6997 }
6998 }
6999 else /* no bytes left: new sequence */
7000 {
7001 if((c & 0x80) == 0) /* 1-byte sequence, US-ASCII, keep it */
7002 {
7003 yield = string_catn(yield, &size, &ptr, &c, 1);
7004 continue;
7005 }
7006 if((c & 0xe0) == 0xc0) /* 2-byte sequence */
7007 {
7008 if(c == 0xc0 || c == 0xc1) /* 0xc0 and 0xc1 are illegal */
7009 complete = -1;
7010 else
7011 {
7012 bytes_left = 1;
7013 codepoint = c & 0x1f;
7014 }
7015 }
7016 else if((c & 0xf0) == 0xe0) /* 3-byte sequence */
7017 {
7018 bytes_left = 2;
7019 codepoint = c & 0x0f;
7020 }
7021 else if((c & 0xf8) == 0xf0) /* 4-byte sequence */
7022 {
7023 bytes_left = 3;
7024 codepoint = c & 0x07;
7025 }
7026 else /* invalid or too long (RFC3629 allows only 4 bytes) */
7027 complete = -1;
7028
7029 seq_buff[index++] = c;
7030 seq_len = bytes_left + 1;
7031 } /* if(bytes_left) */
7032
7033 if (complete != 0)
7034 {
7035 bytes_left = index = 0;
7036 yield = string_catn(yield, &size, &ptr, UTF8_REPLACEMENT_CHAR, 1);
7037 }
7038 if ((complete == 1) && ((c & 0x80) == 0))
7039 /* ASCII character follows incomplete sequence */
7040 yield = string_catn(yield, &size, &ptr, &c, 1);
7041 }
7042 continue;
7043 }
7044
7045 #ifdef SUPPORT_I18N
7046 case EOP_UTF8_DOMAIN_TO_ALABEL:
7047 {
7048 uschar * error = NULL;
7049 uschar * s = string_domain_utf8_to_alabel(sub, &error);
7050 if (error)
7051 {
7052 expand_string_message = string_sprintf(
7053 "error converting utf8 (%s) to alabel: %s",
7054 string_printing(sub), error);
7055 goto EXPAND_FAILED;
7056 }
7057 yield = string_cat(yield, &size, &ptr, s);
7058 continue;
7059 }
7060
7061 case EOP_UTF8_DOMAIN_FROM_ALABEL:
7062 {
7063 uschar * error = NULL;
7064 uschar * s = string_domain_alabel_to_utf8(sub, &error);
7065 if (error)
7066 {
7067 expand_string_message = string_sprintf(
7068 "error converting alabel (%s) to utf8: %s",
7069 string_printing(sub), error);
7070 goto EXPAND_FAILED;
7071 }
7072 yield = string_cat(yield, &size, &ptr, s);
7073 continue;
7074 }
7075
7076 case EOP_UTF8_LOCALPART_TO_ALABEL:
7077 {
7078 uschar * error = NULL;
7079 uschar * s = string_localpart_utf8_to_alabel(sub, &error);
7080 if (error)
7081 {
7082 expand_string_message = string_sprintf(
7083 "error converting utf8 (%s) to alabel: %s",
7084 string_printing(sub), error);
7085 goto EXPAND_FAILED;
7086 }
7087 yield = string_cat(yield, &size, &ptr, s);
7088 DEBUG(D_expand) debug_printf("yield: '%s'\n", yield);
7089 continue;
7090 }
7091
7092 case EOP_UTF8_LOCALPART_FROM_ALABEL:
7093 {
7094 uschar * error = NULL;
7095 uschar * s = string_localpart_alabel_to_utf8(sub, &error);
7096 if (error)
7097 {
7098 expand_string_message = string_sprintf(
7099 "error converting alabel (%s) to utf8: %s",
7100 string_printing(sub), error);
7101 goto EXPAND_FAILED;
7102 }
7103 yield = string_cat(yield, &size, &ptr, s);
7104 continue;
7105 }
7106 #endif /* EXPERIMENTAL_INTERNATIONAL */
7107
7108 /* escape turns all non-printing characters into escape sequences. */
7109
7110 case EOP_ESCAPE:
7111 {
7112 const uschar *t = string_printing(sub);
7113 yield = string_cat(yield, &size, &ptr, t);
7114 continue;
7115 }
7116
7117 /* Handle numeric expression evaluation */
7118
7119 case EOP_EVAL:
7120 case EOP_EVAL10:
7121 {
7122 uschar *save_sub = sub;
7123 uschar *error = NULL;
7124 int_eximarith_t n = eval_expr(&sub, (c == EOP_EVAL10), &error, FALSE);
7125 if (error != NULL)
7126 {
7127 expand_string_message = string_sprintf("error in expression "
7128 "evaluation: %s (after processing \"%.*s\")", error, sub-save_sub,
7129 save_sub);
7130 goto EXPAND_FAILED;
7131 }
7132 sprintf(CS var_buffer, PR_EXIM_ARITH, n);
7133 yield = string_cat(yield, &size, &ptr, var_buffer);
7134 continue;
7135 }
7136
7137 /* Handle time period formating */
7138
7139 case EOP_TIME_EVAL:
7140 {
7141 int n = readconf_readtime(sub, 0, FALSE);
7142 if (n < 0)
7143 {
7144 expand_string_message = string_sprintf("string \"%s\" is not an "
7145 "Exim time interval in \"%s\" operator", sub, name);
7146 goto EXPAND_FAILED;
7147 }
7148 sprintf(CS var_buffer, "%d", n);
7149 yield = string_cat(yield, &size, &ptr, var_buffer);
7150 continue;
7151 }
7152
7153 case EOP_TIME_INTERVAL:
7154 {
7155 int n;
7156 uschar *t = read_number(&n, sub);
7157 if (*t != 0) /* Not A Number*/
7158 {
7159 expand_string_message = string_sprintf("string \"%s\" is not a "
7160 "positive number in \"%s\" operator", sub, name);
7161 goto EXPAND_FAILED;
7162 }
7163 t = readconf_printtime(n);
7164 yield = string_cat(yield, &size, &ptr, t);
7165 continue;
7166 }
7167
7168 /* Convert string to base64 encoding */
7169
7170 case EOP_STR2B64:
7171 case EOP_BASE64:
7172 {
7173 #ifdef SUPPORT_TLS
7174 uschar * s = vp && *(void **)vp->value
7175 ? tls_cert_der_b64(*(void **)vp->value)
7176 : b64encode(sub, Ustrlen(sub));
7177 #else
7178 uschar * s = b64encode(sub, Ustrlen(sub));
7179 #endif
7180 yield = string_cat(yield, &size, &ptr, s);
7181 continue;
7182 }
7183
7184 case EOP_BASE64D:
7185 {
7186 uschar * s;
7187 int len = b64decode(sub, &s);
7188 if (len < 0)
7189 {
7190 expand_string_message = string_sprintf("string \"%s\" is not "
7191 "well-formed for \"%s\" operator", sub, name);
7192 goto EXPAND_FAILED;
7193 }
7194 yield = string_cat(yield, &size, &ptr, s);
7195 continue;
7196 }
7197
7198 /* strlen returns the length of the string */
7199
7200 case EOP_STRLEN:
7201 {
7202 uschar buff[24];
7203 (void)sprintf(CS buff, "%d", Ustrlen(sub));
7204 yield = string_cat(yield, &size, &ptr, buff);
7205 continue;
7206 }
7207
7208 /* length_n or l_n takes just the first n characters or the whole string,
7209 whichever is the shorter;
7210
7211 substr_m_n, and s_m_n take n characters from offset m; negative m take
7212 from the end; l_n is synonymous with s_0_n. If n is omitted in substr it
7213 takes the rest, either to the right or to the left.
7214
7215 hash_n or h_n makes a hash of length n from the string, yielding n
7216 characters from the set a-z; hash_n_m makes a hash of length n, but
7217 uses m characters from the set a-zA-Z0-9.
7218
7219 nhash_n returns a single number between 0 and n-1 (in text form), while
7220 nhash_n_m returns a div/mod hash as two numbers "a/b". The first lies
7221 between 0 and n-1 and the second between 0 and m-1. */
7222
7223 case EOP_LENGTH:
7224 case EOP_L:
7225 case EOP_SUBSTR:
7226 case EOP_S:
7227 case EOP_HASH:
7228 case EOP_H:
7229 case EOP_NHASH:
7230 case EOP_NH:
7231 {
7232 int sign = 1;
7233 int value1 = 0;
7234 int value2 = -1;
7235 int *pn;
7236 int len;
7237 uschar *ret;
7238
7239 if (arg == NULL)
7240 {
7241 expand_string_message = string_sprintf("missing values after %s",
7242 name);
7243 goto EXPAND_FAILED;
7244 }
7245
7246 /* "length" has only one argument, effectively being synonymous with
7247 substr_0_n. */
7248
7249 if (c == EOP_LENGTH || c == EOP_L)
7250 {
7251 pn = &value2;
7252 value2 = 0;
7253 }
7254
7255 /* The others have one or two arguments; for "substr" the first may be
7256 negative. The second being negative means "not supplied". */
7257
7258 else
7259 {
7260 pn = &value1;
7261 if (name[0] == 's' && *arg == '-') { sign = -1; arg++; }
7262 }
7263
7264 /* Read up to two numbers, separated by underscores */
7265
7266 ret = arg;
7267 while (*arg != 0)
7268 {
7269 if (arg != ret && *arg == '_' && pn == &value1)
7270 {
7271 pn = &value2;
7272 value2 = 0;
7273 if (arg[1] != 0) arg++;
7274 }
7275 else if (!isdigit(*arg))
7276 {
7277 expand_string_message =
7278 string_sprintf("non-digit after underscore in \"%s\"", name);
7279 goto EXPAND_FAILED;
7280 }
7281 else *pn = (*pn)*10 + *arg++ - '0';
7282 }
7283 value1 *= sign;
7284
7285 /* Perform the required operation */
7286
7287 ret =
7288 (c == EOP_HASH || c == EOP_H)?
7289 compute_hash(sub, value1, value2, &len) :
7290 (c == EOP_NHASH || c == EOP_NH)?
7291 compute_nhash(sub, value1, value2, &len) :
7292 extract_substr(sub, value1, value2, &len);
7293
7294 if (ret == NULL) goto EXPAND_FAILED;
7295 yield = string_catn(yield, &size, &ptr, ret, len);
7296 continue;
7297 }
7298
7299 /* Stat a path */
7300
7301 case EOP_STAT:
7302 {
7303 uschar *s;
7304 uschar smode[12];
7305 uschar **modetable[3];
7306 int i;
7307 mode_t mode;
7308 struct stat st;
7309
7310 if ((expand_forbid & RDO_EXISTS) != 0)
7311 {
7312 expand_string_message = US"Use of the stat() expansion is not permitted";
7313 goto EXPAND_FAILED;
7314 }
7315
7316 if (stat(CS sub, &st) < 0)
7317 {
7318 expand_string_message = string_sprintf("stat(%s) failed: %s",
7319 sub, strerror(errno));
7320 goto EXPAND_FAILED;
7321 }
7322 mode = st.st_mode;
7323 switch (mode & S_IFMT)
7324 {
7325 case S_IFIFO: smode[0] = 'p'; break;
7326 case S_IFCHR: smode[0] = 'c'; break;
7327 case S_IFDIR: smode[0] = 'd'; break;
7328 case S_IFBLK: smode[0] = 'b'; break;
7329 case S_IFREG: smode[0] = '-'; break;
7330 default: smode[0] = '?'; break;
7331 }
7332
7333 modetable[0] = ((mode & 01000) == 0)? mtable_normal : mtable_sticky;
7334 modetable[1] = ((mode & 02000) == 0)? mtable_normal : mtable_setid;
7335 modetable[2] = ((mode & 04000) == 0)? mtable_normal : mtable_setid;
7336
7337 for (i = 0; i < 3; i++)
7338 {
7339 memcpy(CS(smode + 7 - i*3), CS(modetable[i][mode & 7]), 3);
7340 mode >>= 3;
7341 }
7342
7343 smode[10] = 0;
7344 s = string_sprintf("mode=%04lo smode=%s inode=%ld device=%ld links=%ld "
7345 "uid=%ld gid=%ld size=" OFF_T_FMT " atime=%ld mtime=%ld ctime=%ld",
7346 (long)(st.st_mode & 077777), smode, (long)st.st_ino,
7347 (long)st.st_dev, (long)st.st_nlink, (long)st.st_uid,
7348 (long)st.st_gid, st.st_size, (long)st.st_atime,
7349 (long)st.st_mtime, (long)st.st_ctime);
7350 yield = string_cat(yield, &size, &ptr, s);
7351 continue;
7352 }
7353
7354 /* vaguely random number less than N */
7355
7356 case EOP_RANDINT:
7357 {
7358 int_eximarith_t max;
7359 uschar *s;
7360
7361 max = expanded_string_integer(sub, TRUE);
7362 if (expand_string_message != NULL)
7363 goto EXPAND_FAILED;
7364 s = string_sprintf("%d", vaguely_random_number((int)max));
7365 yield = string_cat(yield, &size, &ptr, s);
7366 continue;
7367 }
7368
7369 /* Reverse IP, including IPv6 to dotted-nibble */
7370
7371 case EOP_REVERSE_IP:
7372 {
7373 int family, maskptr;
7374 uschar reversed[128];
7375
7376 family = string_is_ip_address(sub, &maskptr);
7377 if (family == 0)
7378 {
7379 expand_string_message = string_sprintf(
7380 "reverse_ip() not given an IP address [%s]", sub);
7381 goto EXPAND_FAILED;
7382 }
7383 invert_address(reversed, sub);
7384 yield = string_cat(yield, &size, &ptr, reversed);
7385 continue;
7386 }
7387
7388 /* Unknown operator */
7389
7390 default:
7391 expand_string_message =
7392 string_sprintf("unknown expansion operator \"%s\"", name);
7393 goto EXPAND_FAILED;
7394 }
7395 }
7396
7397 /* Handle a plain name. If this is the first thing in the expansion, release
7398 the pre-allocated buffer. If the result data is known to be in a new buffer,
7399 newsize will be set to the size of that buffer, and we can just point at that
7400 store instead of copying. Many expansion strings contain just one reference,
7401 so this is a useful optimization, especially for humungous headers
7402 ($message_headers). */
7403 /*{*/
7404 if (*s++ == '}')
7405 {
7406 int len;
7407 int newsize = 0;
7408 if (ptr == 0)
7409 {
7410 if (resetok) store_reset(yield);
7411 yield = NULL;
7412 size = 0;
7413 }
7414 if (!(value = find_variable(name, FALSE, skipping, &newsize)))
7415 {
7416 expand_string_message =
7417 string_sprintf("unknown variable in \"${%s}\"", name);
7418 check_variable_error_message(name);
7419 goto EXPAND_FAILED;
7420 }
7421 len = Ustrlen(value);
7422 if (!yield && newsize)
7423 {
7424 yield = value;
7425 size = newsize;
7426 ptr = len;
7427 }
7428 else
7429 yield = string_catn(yield, &size, &ptr, value, len);
7430 continue;
7431 }
7432
7433 /* Else there's something wrong */
7434
7435 expand_string_message =
7436 string_sprintf("\"${%s\" is not a known operator (or a } is missing "
7437 "in a variable reference)", name);
7438 goto EXPAND_FAILED;
7439 }
7440
7441 /* If we hit the end of the string when ket_ends is set, there is a missing
7442 terminating brace. */
7443
7444 if (ket_ends && *s == 0)
7445 {
7446 expand_string_message = malformed_header?
7447 US"missing } at end of string - could be header name not terminated by colon"
7448 :
7449 US"missing } at end of string";
7450 goto EXPAND_FAILED;
7451 }
7452
7453 /* Expansion succeeded; yield may still be NULL here if nothing was actually
7454 added to the string. If so, set up an empty string. Add a terminating zero. If
7455 left != NULL, return a pointer to the terminator. */
7456
7457 if (yield == NULL) yield = store_get(1);
7458 yield[ptr] = 0;
7459 if (left != NULL) *left = s;
7460
7461 /* Any stacking store that was used above the final string is no longer needed.
7462 In many cases the final string will be the first one that was got and so there
7463 will be optimal store usage. */
7464
7465 if (resetok) store_reset(yield + ptr + 1);
7466 else if (resetok_p) *resetok_p = FALSE;
7467
7468 DEBUG(D_expand)
7469 {
7470 debug_printf(" expanding: %.*s\n result: %s\n", (int)(s - string), string,
7471 yield);
7472 if (skipping) debug_printf(" skipping: result is not used\n");
7473 }
7474 return yield;
7475
7476 /* This is the failure exit: easiest to program with a goto. We still need
7477 to update the pointer to the terminator, for cases of nested calls with "fail".
7478 */
7479
7480 EXPAND_FAILED_CURLY:
7481 if (malformed_header)
7482 expand_string_message =
7483 US"missing or misplaced { or } - could be header name not terminated by colon";
7484
7485 else if (!expand_string_message || !*expand_string_message)
7486 expand_string_message = US"missing or misplaced { or }";
7487
7488 /* At one point, Exim reset the store to yield (if yield was not NULL), but
7489 that is a bad idea, because expand_string_message is in dynamic store. */
7490
7491 EXPAND_FAILED:
7492 if (left != NULL) *left = s;
7493 DEBUG(D_expand)
7494 {
7495 debug_printf("failed to expand: %s\n", string);
7496 debug_printf(" error message: %s\n", expand_string_message);
7497 if (expand_string_forcedfail) debug_printf("failure was forced\n");
7498 }
7499 if (resetok_p) *resetok_p = resetok;
7500 return NULL;
7501 }
7502
7503
7504 /* This is the external function call. Do a quick check for any expansion
7505 metacharacters, and if there are none, just return the input string.
7506
7507 Argument: the string to be expanded
7508 Returns: the expanded string, or NULL if expansion failed; if failure was
7509 due to a lookup deferring, search_find_defer will be TRUE
7510 */
7511
7512 uschar *
7513 expand_string(uschar *string)
7514 {
7515 search_find_defer = FALSE;
7516 malformed_header = FALSE;
7517 return (Ustrpbrk(string, "$\\") == NULL)? string :
7518 expand_string_internal(string, FALSE, NULL, FALSE, TRUE, NULL);
7519 }
7520
7521
7522
7523 const uschar *
7524 expand_cstring(const uschar *string)
7525 {
7526 search_find_defer = FALSE;
7527 malformed_header = FALSE;
7528 return (Ustrpbrk(string, "$\\") == NULL)? string :
7529 expand_string_internal(string, FALSE, NULL, FALSE, TRUE, NULL);
7530 }
7531
7532
7533
7534 /*************************************************
7535 * Expand and copy *
7536 *************************************************/
7537
7538 /* Now and again we want to expand a string and be sure that the result is in a
7539 new bit of store. This function does that.
7540 Since we know it has been copied, the de-const cast is safe.
7541
7542 Argument: the string to be expanded
7543 Returns: the expanded string, always in a new bit of store, or NULL
7544 */
7545
7546 uschar *
7547 expand_string_copy(const uschar *string)
7548 {
7549 const uschar *yield = expand_cstring(string);
7550 if (yield == string) yield = string_copy(string);
7551 return US yield;
7552 }
7553
7554
7555
7556 /*************************************************
7557 * Expand and interpret as an integer *
7558 *************************************************/
7559
7560 /* Expand a string, and convert the result into an integer.
7561
7562 Arguments:
7563 string the string to be expanded
7564 isplus TRUE if a non-negative number is expected
7565
7566 Returns: the integer value, or
7567 -1 for an expansion error ) in both cases, message in
7568 -2 for an integer interpretation error ) expand_string_message
7569 expand_string_message is set NULL for an OK integer
7570 */
7571
7572 int_eximarith_t
7573 expand_string_integer(uschar *string, BOOL isplus)
7574 {
7575 return expanded_string_integer(expand_string(string), isplus);
7576 }
7577
7578
7579 /*************************************************
7580 * Interpret string as an integer *
7581 *************************************************/
7582
7583 /* Convert a string (that has already been expanded) into an integer.
7584
7585 This function is used inside the expansion code.
7586
7587 Arguments:
7588 s the string to be expanded
7589 isplus TRUE if a non-negative number is expected
7590
7591 Returns: the integer value, or
7592 -1 if string is NULL (which implies an expansion error)
7593 -2 for an integer interpretation error
7594 expand_string_message is set NULL for an OK integer
7595 */
7596
7597 static int_eximarith_t
7598 expanded_string_integer(const uschar *s, BOOL isplus)
7599 {
7600 int_eximarith_t value;
7601 uschar *msg = US"invalid integer \"%s\"";
7602 uschar *endptr;
7603
7604 /* If expansion failed, expand_string_message will be set. */
7605
7606 if (s == NULL) return -1;
7607
7608 /* On an overflow, strtol() returns LONG_MAX or LONG_MIN, and sets errno
7609 to ERANGE. When there isn't an overflow, errno is not changed, at least on some
7610 systems, so we set it zero ourselves. */
7611
7612 errno = 0;
7613 expand_string_message = NULL; /* Indicates no error */
7614
7615 /* Before Exim 4.64, strings consisting entirely of whitespace compared
7616 equal to 0. Unfortunately, people actually relied upon that, so preserve
7617 the behaviour explicitly. Stripping leading whitespace is a harmless
7618 noop change since strtol skips it anyway (provided that there is a number
7619 to find at all). */
7620 if (isspace(*s))
7621 {
7622 while (isspace(*s)) ++s;
7623 if (*s == '\0')
7624 {
7625 DEBUG(D_expand)
7626 debug_printf("treating blank string as number 0\n");
7627 return 0;
7628 }
7629 }
7630
7631 value = strtoll(CS s, CSS &endptr, 10);
7632
7633 if (endptr == s)
7634 {
7635 msg = US"integer expected but \"%s\" found";
7636 }
7637 else if (value < 0 && isplus)
7638 {
7639 msg = US"non-negative integer expected but \"%s\" found";
7640 }
7641 else
7642 {
7643 switch (tolower(*endptr))
7644 {
7645 default:
7646 break;
7647 case 'k':
7648 if (value > EXIM_ARITH_MAX/1024 || value < EXIM_ARITH_MIN/1024) errno = ERANGE;
7649 else value *= 1024;
7650 endptr++;
7651 break;
7652 case 'm':
7653 if (value > EXIM_ARITH_MAX/(1024*1024) || value < EXIM_ARITH_MIN/(1024*1024)) errno = ERANGE;
7654 else value *= 1024*1024;
7655 endptr++;
7656 break;
7657 case 'g':
7658 if (value > EXIM_ARITH_MAX/(1024*1024*1024) || value < EXIM_ARITH_MIN/(1024*1024*1024)) errno = ERANGE;
7659 else value *= 1024*1024*1024;
7660 endptr++;
7661 break;
7662 }
7663 if (errno == ERANGE)
7664 msg = US"absolute value of integer \"%s\" is too large (overflow)";
7665 else
7666 {
7667 while (isspace(*endptr)) endptr++;
7668 if (*endptr == 0) return value;
7669 }
7670 }
7671
7672 expand_string_message = string_sprintf(CS msg, s);
7673 return -2;
7674 }
7675
7676
7677 /* These values are usually fixed boolean values, but they are permitted to be
7678 expanded strings.
7679
7680 Arguments:
7681 addr address being routed
7682 mtype the module type
7683 mname the module name
7684 dbg_opt debug selectors
7685 oname the option name
7686 bvalue the router's boolean value
7687 svalue the router's string value
7688 rvalue where to put the returned value
7689
7690 Returns: OK value placed in rvalue
7691 DEFER expansion failed
7692 */
7693
7694 int
7695 exp_bool(address_item *addr,
7696 uschar *mtype, uschar *mname, unsigned dbg_opt,
7697 uschar *oname, BOOL bvalue,
7698 uschar *svalue, BOOL *rvalue)
7699 {
7700 uschar *expanded;
7701 if (svalue == NULL) { *rvalue = bvalue; return OK; }
7702
7703 expanded = expand_string(svalue);
7704 if (expanded == NULL)
7705 {
7706 if (expand_string_forcedfail)
7707 {
7708 DEBUG(dbg_opt) debug_printf("expansion of \"%s\" forced failure\n", oname);
7709 *rvalue = bvalue;
7710 return OK;
7711 }
7712 addr->message = string_sprintf("failed to expand \"%s\" in %s %s: %s",
7713 oname, mname, mtype, expand_string_message);
7714 DEBUG(dbg_opt) debug_printf("%s\n", addr->message);
7715 return DEFER;
7716 }
7717
7718 DEBUG(dbg_opt) debug_printf("expansion of \"%s\" yields \"%s\"\n", oname,
7719 expanded);
7720
7721 if (strcmpic(expanded, US"true") == 0 || strcmpic(expanded, US"yes") == 0)
7722 *rvalue = TRUE;
7723 else if (strcmpic(expanded, US"false") == 0 || strcmpic(expanded, US"no") == 0)
7724 *rvalue = FALSE;
7725 else
7726 {
7727 addr->message = string_sprintf("\"%s\" is not a valid value for the "
7728 "\"%s\" option in the %s %s", expanded, oname, mname, mtype);
7729 return DEFER;
7730 }
7731
7732 return OK;
7733 }
7734
7735
7736
7737 /* Avoid potentially exposing a password in a string about to be logged */
7738
7739 uschar *
7740 expand_hide_passwords(uschar * s)
7741 {
7742 return ( ( Ustrstr(s, "failed to expand") != NULL
7743 || Ustrstr(s, "expansion of ") != NULL
7744 )
7745 && ( Ustrstr(s, "mysql") != NULL
7746 || Ustrstr(s, "pgsql") != NULL
7747 || Ustrstr(s, "redis") != NULL
7748 || Ustrstr(s, "sqlite") != NULL
7749 || Ustrstr(s, "ldap:") != NULL
7750 || Ustrstr(s, "ldaps:") != NULL
7751 || Ustrstr(s, "ldapi:") != NULL
7752 || Ustrstr(s, "ldapdn:") != NULL
7753 || Ustrstr(s, "ldapm:") != NULL
7754 ) )
7755 ? US"Temporary internal error" : s;
7756 }
7757
7758
7759
7760
7761 /*************************************************
7762 **************************************************
7763 * Stand-alone test program *
7764 **************************************************
7765 *************************************************/
7766
7767 #ifdef STAND_ALONE
7768
7769
7770 BOOL
7771 regex_match_and_setup(const pcre *re, uschar *subject, int options, int setup)
7772 {
7773 int ovector[3*(EXPAND_MAXN+1)];
7774 int n = pcre_exec(re, NULL, subject, Ustrlen(subject), 0, PCRE_EOPT|options,
7775 ovector, nelem(ovector));
7776 BOOL yield = n >= 0;
7777 if (n == 0) n = EXPAND_MAXN + 1;
7778 if (yield)
7779 {
7780 int nn;
7781 expand_nmax = (setup < 0)? 0 : setup + 1;
7782 for (nn = (setup < 0)? 0 : 2; nn < n*2; nn += 2)
7783 {
7784 expand_nstring[expand_nmax] = subject + ovector[nn];
7785 expand_nlength[expand_nmax++] = ovector[nn+1] - ovector[nn];
7786 }
7787 expand_nmax--;
7788 }
7789 return yield;
7790 }
7791
7792
7793 int main(int argc, uschar **argv)
7794 {
7795 int i;
7796 uschar buffer[1024];
7797
7798 debug_selector = D_v;
7799 debug_file = stderr;
7800 debug_fd = fileno(debug_file);
7801 big_buffer = malloc(big_buffer_size);
7802
7803 for (i = 1; i < argc; i++)
7804 {
7805 if (argv[i][0] == '+')
7806 {
7807 debug_trace_memory = 2;
7808 argv[i]++;
7809 }
7810 if (isdigit(argv[i][0]))
7811 debug_selector = Ustrtol(argv[i], NULL, 0);
7812 else
7813 if (Ustrspn(argv[i], "abcdefghijklmnopqrtsuvwxyz0123456789-.:/") ==
7814 Ustrlen(argv[i]))
7815 {
7816 #ifdef LOOKUP_LDAP
7817 eldap_default_servers = argv[i];
7818 #endif
7819 #ifdef LOOKUP_MYSQL
7820 mysql_servers = argv[i];
7821 #endif
7822 #ifdef LOOKUP_PGSQL
7823 pgsql_servers = argv[i];
7824 #endif
7825 #ifdef LOOKUP_REDIS
7826 redis_servers = argv[i];
7827 #endif
7828 }
7829 #ifdef EXIM_PERL
7830 else opt_perl_startup = argv[i];
7831 #endif
7832 }
7833
7834 printf("Testing string expansion: debug_level = %d\n\n", debug_level);
7835
7836 expand_nstring[1] = US"string 1....";
7837 expand_nlength[1] = 8;
7838 expand_nmax = 1;
7839
7840 #ifdef EXIM_PERL
7841 if (opt_perl_startup != NULL)
7842 {
7843 uschar *errstr;
7844 printf("Starting Perl interpreter\n");
7845 errstr = init_perl(opt_perl_startup);
7846 if (errstr != NULL)
7847 {
7848 printf("** error in perl_startup code: %s\n", errstr);
7849 return EXIT_FAILURE;
7850 }
7851 }
7852 #endif /* EXIM_PERL */
7853
7854 while (fgets(buffer, sizeof(buffer), stdin) != NULL)
7855 {
7856 void *reset_point = store_get(0);
7857 uschar *yield = expand_string(buffer);
7858 if (yield != NULL)
7859 {
7860 printf("%s\n", yield);
7861 store_reset(reset_point);
7862 }
7863 else
7864 {
7865 if (search_find_defer) printf("search_find deferred\n");
7866 printf("Failed: %s\n", expand_string_message);
7867 if (expand_string_forcedfail) printf("Forced failure\n");
7868 printf("\n");
7869 }
7870 }
7871
7872 search_tidyup();
7873
7874 return 0;
7875 }
7876
7877 #endif
7878
7879 /* vi: aw ai sw=2
7880 */
7881 /* End of expand.c */