1 /* $Cambridge: exim/src/src/expand.c,v 1.27 2005/06/16 20:01:29 tom Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2005 */
8 /* See the file NOTICE for conditions of use and distribution. */
11 /* Functions for handling string expansion. */
17 #ifndef SUPPORT_CRYPTEQ
18 #define SUPPORT_CRYPTEQ
22 #ifdef SUPPORT_CRYPTEQ
27 extern char* crypt16(char*, char*);
32 #include "lookups/ldap.h"
37 /* Recursively called function */
39 static uschar
*expand_string_internal(uschar
*, BOOL
, uschar
**, BOOL
);
43 /*************************************************
44 * Local statics and tables *
45 *************************************************/
47 /* Table of item names, and corresponding switch numbers. The names must be in
48 alphabetical order. */
50 static uschar
*item_table
[] = {
88 /* Tables of operator names, and corresponding switch numbers. The names must be
89 in alphabetical order. There are two tables, because underscore is used in some
90 cases to introduce arguments, whereas for other it is part of the name. This is
91 an historical mis-design. */
93 static uschar
*op_table_underscore
[] = {
102 EOP_QUOTE_LOCAL_PART
,
105 static uschar
*op_table_main
[] = {
136 EOP_ADDRESS
= sizeof(op_table_underscore
)/sizeof(uschar
*),
166 /* Table of condition names, and corresponding switch numbers. The names must
167 be in alphabetical order. */
169 static uschar
*cond_table
[] = {
173 US
"==", /* Backward compatibility */
198 US
"match_local_part",
220 ECOND_FIRST_DELIVERY
,
236 ECOND_MATCH_LOCAL_PART
,
246 /* Type for main variable table */
254 /* Type for entries pointing to address/length pairs. Not currently
262 /* Types of table entry */
265 vtype_int
, /* value is address of int */
266 vtype_filter_int
, /* ditto, but recognized only when filtering */
267 vtype_ino
, /* value is address of ino_t (not always an int) */
268 vtype_uid
, /* value is address of uid_t (not always an int) */
269 vtype_gid
, /* value is address of gid_t (not always an int) */
270 vtype_stringptr
, /* value is address of pointer to string */
271 vtype_msgbody
, /* as stringptr, but read when first required */
272 vtype_msgbody_end
, /* ditto, the end of the message */
273 vtype_msgheaders
, /* the message's headers */
274 vtype_localpart
, /* extract local part from string */
275 vtype_domain
, /* extract domain from string */
276 vtype_recipients
, /* extract recipients from recipients list */
277 /* (enabled only during system filtering */
278 vtype_todbsdin
, /* value not used; generate BSD inbox tod */
279 vtype_tode
, /* value not used; generate tod in epoch format */
280 vtype_todf
, /* value not used; generate full tod */
281 vtype_todl
, /* value not used; generate log tod */
282 vtype_todlf
, /* value not used; generate log file datestamp tod */
283 vtype_todzone
, /* value not used; generate time zone only */
284 vtype_todzulu
, /* value not used; generate zulu tod */
285 vtype_reply
, /* value not used; get reply from headers */
286 vtype_pid
, /* value not used; result is pid */
287 vtype_host_lookup
, /* value not used; get host name */
288 vtype_load_avg
, /* value not used; result is int from os_getloadavg */
289 vtype_pspace
, /* partition space; value is T/F for spool/log */
290 vtype_pinodes
/* partition inodes; value is T/F for spool/log */
291 #ifdef EXPERIMENTAL_DOMAINKEYS
292 ,vtype_dk_verify
/* Serve request out of DomainKeys verification structure */
296 /* This table must be kept in alphabetical order. */
298 static var_entry var_table
[] = {
299 { "acl_c0", vtype_stringptr
, &acl_var
[0] },
300 { "acl_c1", vtype_stringptr
, &acl_var
[1] },
301 { "acl_c2", vtype_stringptr
, &acl_var
[2] },
302 { "acl_c3", vtype_stringptr
, &acl_var
[3] },
303 { "acl_c4", vtype_stringptr
, &acl_var
[4] },
304 { "acl_c5", vtype_stringptr
, &acl_var
[5] },
305 { "acl_c6", vtype_stringptr
, &acl_var
[6] },
306 { "acl_c7", vtype_stringptr
, &acl_var
[7] },
307 { "acl_c8", vtype_stringptr
, &acl_var
[8] },
308 { "acl_c9", vtype_stringptr
, &acl_var
[9] },
309 { "acl_m0", vtype_stringptr
, &acl_var
[10] },
310 { "acl_m1", vtype_stringptr
, &acl_var
[11] },
311 { "acl_m2", vtype_stringptr
, &acl_var
[12] },
312 { "acl_m3", vtype_stringptr
, &acl_var
[13] },
313 { "acl_m4", vtype_stringptr
, &acl_var
[14] },
314 { "acl_m5", vtype_stringptr
, &acl_var
[15] },
315 { "acl_m6", vtype_stringptr
, &acl_var
[16] },
316 { "acl_m7", vtype_stringptr
, &acl_var
[17] },
317 { "acl_m8", vtype_stringptr
, &acl_var
[18] },
318 { "acl_m9", vtype_stringptr
, &acl_var
[19] },
319 { "acl_verify_message", vtype_stringptr
, &acl_verify_message
},
320 { "address_data", vtype_stringptr
, &deliver_address_data
},
321 { "address_file", vtype_stringptr
, &address_file
},
322 { "address_pipe", vtype_stringptr
, &address_pipe
},
323 { "authenticated_id", vtype_stringptr
, &authenticated_id
},
324 { "authenticated_sender",vtype_stringptr
, &authenticated_sender
},
325 { "authentication_failed",vtype_int
, &authentication_failed
},
326 #ifdef EXPERIMENTAL_BRIGHTMAIL
327 { "bmi_alt_location", vtype_stringptr
, &bmi_alt_location
},
328 { "bmi_base64_tracker_verdict", vtype_stringptr
, &bmi_base64_tracker_verdict
},
329 { "bmi_base64_verdict", vtype_stringptr
, &bmi_base64_verdict
},
330 { "bmi_deliver", vtype_int
, &bmi_deliver
},
332 { "body_linecount", vtype_int
, &body_linecount
},
333 { "body_zerocount", vtype_int
, &body_zerocount
},
334 { "bounce_recipient", vtype_stringptr
, &bounce_recipient
},
335 { "bounce_return_size_limit", vtype_int
, &bounce_return_size_limit
},
336 { "caller_gid", vtype_gid
, &real_gid
},
337 { "caller_uid", vtype_uid
, &real_uid
},
338 { "compile_date", vtype_stringptr
, &version_date
},
339 { "compile_number", vtype_stringptr
, &version_cnumber
},
340 { "csa_status", vtype_stringptr
, &csa_status
},
341 #ifdef WITH_OLD_DEMIME
342 { "demime_errorlevel", vtype_int
, &demime_errorlevel
},
343 { "demime_reason", vtype_stringptr
, &demime_reason
},
345 #ifdef EXPERIMENTAL_DOMAINKEYS
346 { "dk_domain", vtype_stringptr
, &dk_signing_domain
},
347 { "dk_is_signed", vtype_dk_verify
, NULL
},
348 { "dk_result", vtype_dk_verify
, NULL
},
349 { "dk_selector", vtype_stringptr
, &dk_signing_selector
},
350 { "dk_sender", vtype_dk_verify
, NULL
},
351 { "dk_sender_domain", vtype_dk_verify
, NULL
},
352 { "dk_sender_local_part",vtype_dk_verify
, NULL
},
353 { "dk_sender_source", vtype_dk_verify
, NULL
},
354 { "dk_signsall", vtype_dk_verify
, NULL
},
355 { "dk_status", vtype_dk_verify
, NULL
},
356 { "dk_testing", vtype_dk_verify
, NULL
},
358 { "dnslist_domain", vtype_stringptr
, &dnslist_domain
},
359 { "dnslist_text", vtype_stringptr
, &dnslist_text
},
360 { "dnslist_value", vtype_stringptr
, &dnslist_value
},
361 { "domain", vtype_stringptr
, &deliver_domain
},
362 { "domain_data", vtype_stringptr
, &deliver_domain_data
},
363 { "exim_gid", vtype_gid
, &exim_gid
},
364 { "exim_path", vtype_stringptr
, &exim_path
},
365 { "exim_uid", vtype_uid
, &exim_uid
},
366 #ifdef WITH_OLD_DEMIME
367 { "found_extension", vtype_stringptr
, &found_extension
},
369 { "home", vtype_stringptr
, &deliver_home
},
370 { "host", vtype_stringptr
, &deliver_host
},
371 { "host_address", vtype_stringptr
, &deliver_host_address
},
372 { "host_data", vtype_stringptr
, &host_data
},
373 { "host_lookup_deferred",vtype_int
, &host_lookup_deferred
},
374 { "host_lookup_failed", vtype_int
, &host_lookup_failed
},
375 { "inode", vtype_ino
, &deliver_inode
},
376 { "interface_address", vtype_stringptr
, &interface_address
},
377 { "interface_port", vtype_int
, &interface_port
},
379 { "ldap_dn", vtype_stringptr
, &eldap_dn
},
381 { "load_average", vtype_load_avg
, NULL
},
382 { "local_part", vtype_stringptr
, &deliver_localpart
},
383 { "local_part_data", vtype_stringptr
, &deliver_localpart_data
},
384 { "local_part_prefix", vtype_stringptr
, &deliver_localpart_prefix
},
385 { "local_part_suffix", vtype_stringptr
, &deliver_localpart_suffix
},
386 { "local_scan_data", vtype_stringptr
, &local_scan_data
},
387 { "local_user_gid", vtype_gid
, &local_user_gid
},
388 { "local_user_uid", vtype_uid
, &local_user_uid
},
389 { "localhost_number", vtype_int
, &host_number
},
390 { "log_inodes", vtype_pinodes
, (void *)FALSE
},
391 { "log_space", vtype_pspace
, (void *)FALSE
},
392 { "mailstore_basename", vtype_stringptr
, &mailstore_basename
},
393 #ifdef WITH_CONTENT_SCAN
394 { "malware_name", vtype_stringptr
, &malware_name
},
396 { "message_age", vtype_int
, &message_age
},
397 { "message_body", vtype_msgbody
, &message_body
},
398 { "message_body_end", vtype_msgbody_end
, &message_body_end
},
399 { "message_body_size", vtype_int
, &message_body_size
},
400 { "message_headers", vtype_msgheaders
, NULL
},
401 { "message_id", vtype_stringptr
, &message_id
},
402 { "message_linecount", vtype_int
, &message_linecount
},
403 { "message_size", vtype_int
, &message_size
},
404 #ifdef WITH_CONTENT_SCAN
405 { "mime_anomaly_level", vtype_int
, &mime_anomaly_level
},
406 { "mime_anomaly_text", vtype_stringptr
, &mime_anomaly_text
},
407 { "mime_boundary", vtype_stringptr
, &mime_boundary
},
408 { "mime_charset", vtype_stringptr
, &mime_charset
},
409 { "mime_content_description", vtype_stringptr
, &mime_content_description
},
410 { "mime_content_disposition", vtype_stringptr
, &mime_content_disposition
},
411 { "mime_content_id", vtype_stringptr
, &mime_content_id
},
412 { "mime_content_size", vtype_int
, &mime_content_size
},
413 { "mime_content_transfer_encoding",vtype_stringptr
, &mime_content_transfer_encoding
},
414 { "mime_content_type", vtype_stringptr
, &mime_content_type
},
415 { "mime_decoded_filename", vtype_stringptr
, &mime_decoded_filename
},
416 { "mime_filename", vtype_stringptr
, &mime_filename
},
417 { "mime_is_coverletter", vtype_int
, &mime_is_coverletter
},
418 { "mime_is_multipart", vtype_int
, &mime_is_multipart
},
419 { "mime_is_rfc822", vtype_int
, &mime_is_rfc822
},
420 { "mime_part_count", vtype_int
, &mime_part_count
},
422 { "n0", vtype_filter_int
, &filter_n
[0] },
423 { "n1", vtype_filter_int
, &filter_n
[1] },
424 { "n2", vtype_filter_int
, &filter_n
[2] },
425 { "n3", vtype_filter_int
, &filter_n
[3] },
426 { "n4", vtype_filter_int
, &filter_n
[4] },
427 { "n5", vtype_filter_int
, &filter_n
[5] },
428 { "n6", vtype_filter_int
, &filter_n
[6] },
429 { "n7", vtype_filter_int
, &filter_n
[7] },
430 { "n8", vtype_filter_int
, &filter_n
[8] },
431 { "n9", vtype_filter_int
, &filter_n
[9] },
432 { "original_domain", vtype_stringptr
, &deliver_domain_orig
},
433 { "original_local_part", vtype_stringptr
, &deliver_localpart_orig
},
434 { "originator_gid", vtype_gid
, &originator_gid
},
435 { "originator_uid", vtype_uid
, &originator_uid
},
436 { "parent_domain", vtype_stringptr
, &deliver_domain_parent
},
437 { "parent_local_part", vtype_stringptr
, &deliver_localpart_parent
},
438 { "pid", vtype_pid
, NULL
},
439 { "primary_hostname", vtype_stringptr
, &primary_hostname
},
440 { "prvscheck_address", vtype_stringptr
, &prvscheck_address
},
441 { "prvscheck_keynum", vtype_stringptr
, &prvscheck_keynum
},
442 { "prvscheck_result", vtype_stringptr
, &prvscheck_result
},
443 { "qualify_domain", vtype_stringptr
, &qualify_domain_sender
},
444 { "qualify_recipient", vtype_stringptr
, &qualify_domain_recipient
},
445 { "rcpt_count", vtype_int
, &rcpt_count
},
446 { "rcpt_defer_count", vtype_int
, &rcpt_defer_count
},
447 { "rcpt_fail_count", vtype_int
, &rcpt_fail_count
},
448 { "received_count", vtype_int
, &received_count
},
449 { "received_for", vtype_stringptr
, &received_for
},
450 { "received_protocol", vtype_stringptr
, &received_protocol
},
451 { "received_time", vtype_int
, &received_time
},
452 { "recipient_data", vtype_stringptr
, &recipient_data
},
453 { "recipient_verify_failure",vtype_stringptr
,&recipient_verify_failure
},
454 { "recipients", vtype_recipients
, NULL
},
455 { "recipients_count", vtype_int
, &recipients_count
},
456 #ifdef WITH_CONTENT_SCAN
457 { "regex_match_string", vtype_stringptr
, ®ex_match_string
},
459 { "reply_address", vtype_reply
, NULL
},
460 { "return_path", vtype_stringptr
, &return_path
},
461 { "return_size_limit", vtype_int
, &bounce_return_size_limit
},
462 { "runrc", vtype_int
, &runrc
},
463 { "self_hostname", vtype_stringptr
, &self_hostname
},
464 { "sender_address", vtype_stringptr
, &sender_address
},
465 { "sender_address_data", vtype_stringptr
, &sender_address_data
},
466 { "sender_address_domain", vtype_domain
, &sender_address
},
467 { "sender_address_local_part", vtype_localpart
, &sender_address
},
468 { "sender_data", vtype_stringptr
, &sender_data
},
469 { "sender_fullhost", vtype_stringptr
, &sender_fullhost
},
470 { "sender_helo_name", vtype_stringptr
, &sender_helo_name
},
471 { "sender_host_address", vtype_stringptr
, &sender_host_address
},
472 { "sender_host_authenticated",vtype_stringptr
, &sender_host_authenticated
},
473 { "sender_host_name", vtype_host_lookup
, NULL
},
474 { "sender_host_port", vtype_int
, &sender_host_port
},
475 { "sender_ident", vtype_stringptr
, &sender_ident
},
476 { "sender_rate", vtype_stringptr
, &sender_rate
},
477 { "sender_rate_limit", vtype_stringptr
, &sender_rate_limit
},
478 { "sender_rate_period", vtype_stringptr
, &sender_rate_period
},
479 { "sender_rcvhost", vtype_stringptr
, &sender_rcvhost
},
480 { "sender_verify_failure",vtype_stringptr
, &sender_verify_failure
},
481 { "smtp_active_hostname", vtype_stringptr
, &smtp_active_hostname
},
482 { "smtp_command_argument", vtype_stringptr
, &smtp_command_argument
},
483 { "sn0", vtype_filter_int
, &filter_sn
[0] },
484 { "sn1", vtype_filter_int
, &filter_sn
[1] },
485 { "sn2", vtype_filter_int
, &filter_sn
[2] },
486 { "sn3", vtype_filter_int
, &filter_sn
[3] },
487 { "sn4", vtype_filter_int
, &filter_sn
[4] },
488 { "sn5", vtype_filter_int
, &filter_sn
[5] },
489 { "sn6", vtype_filter_int
, &filter_sn
[6] },
490 { "sn7", vtype_filter_int
, &filter_sn
[7] },
491 { "sn8", vtype_filter_int
, &filter_sn
[8] },
492 { "sn9", vtype_filter_int
, &filter_sn
[9] },
493 #ifdef WITH_CONTENT_SCAN
494 { "spam_bar", vtype_stringptr
, &spam_bar
},
495 { "spam_report", vtype_stringptr
, &spam_report
},
496 { "spam_score", vtype_stringptr
, &spam_score
},
497 { "spam_score_int", vtype_stringptr
, &spam_score_int
},
499 #ifdef EXPERIMENTAL_SPF
500 { "spf_header_comment", vtype_stringptr
, &spf_header_comment
},
501 { "spf_received", vtype_stringptr
, &spf_received
},
502 { "spf_result", vtype_stringptr
, &spf_result
},
503 { "spf_smtp_comment", vtype_stringptr
, &spf_smtp_comment
},
505 { "spool_directory", vtype_stringptr
, &spool_directory
},
506 { "spool_inodes", vtype_pinodes
, (void *)TRUE
},
507 { "spool_space", vtype_pspace
, (void *)TRUE
},
508 #ifdef EXPERIMENTAL_SRS
509 { "srs_db_address", vtype_stringptr
, &srs_db_address
},
510 { "srs_db_key", vtype_stringptr
, &srs_db_key
},
511 { "srs_orig_recipient", vtype_stringptr
, &srs_orig_recipient
},
512 { "srs_orig_sender", vtype_stringptr
, &srs_orig_sender
},
513 { "srs_recipient", vtype_stringptr
, &srs_recipient
},
514 { "srs_status", vtype_stringptr
, &srs_status
},
516 { "thisaddress", vtype_stringptr
, &filter_thisaddress
},
517 { "tls_certificate_verified", vtype_int
, &tls_certificate_verified
},
518 { "tls_cipher", vtype_stringptr
, &tls_cipher
},
519 { "tls_peerdn", vtype_stringptr
, &tls_peerdn
},
520 { "tod_bsdinbox", vtype_todbsdin
, NULL
},
521 { "tod_epoch", vtype_tode
, NULL
},
522 { "tod_full", vtype_todf
, NULL
},
523 { "tod_log", vtype_todl
, NULL
},
524 { "tod_logfile", vtype_todlf
, NULL
},
525 { "tod_zone", vtype_todzone
, NULL
},
526 { "tod_zulu", vtype_todzulu
, NULL
},
527 { "value", vtype_stringptr
, &lookup_value
},
528 { "version_number", vtype_stringptr
, &version_string
},
529 { "warn_message_delay", vtype_stringptr
, &warnmsg_delay
},
530 { "warn_message_recipient",vtype_stringptr
, &warnmsg_recipients
},
531 { "warn_message_recipients",vtype_stringptr
,&warnmsg_recipients
},
532 { "warnmsg_delay", vtype_stringptr
, &warnmsg_delay
},
533 { "warnmsg_recipient", vtype_stringptr
, &warnmsg_recipients
},
534 { "warnmsg_recipients", vtype_stringptr
, &warnmsg_recipients
}
537 static int var_table_size
= sizeof(var_table
)/sizeof(var_entry
);
538 static uschar var_buffer
[256];
539 static BOOL malformed_header
;
541 /* For textual hashes */
543 static char *hashcodes
= "abcdefghijklmnopqrtsuvwxyz"
544 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
547 enum { HMAC_MD5
, HMAC_SHA1
};
549 /* For numeric hashes */
551 static unsigned int prime
[] = {
552 2, 3, 5, 7, 11, 13, 17, 19, 23, 29,
553 31, 37, 41, 43, 47, 53, 59, 61, 67, 71,
554 73, 79, 83, 89, 97, 101, 103, 107, 109, 113};
556 /* For printing modes in symbolic form */
558 static uschar
*mtable_normal
[] =
559 { US
"---", US
"--x", US
"-w-", US
"-wx", US
"r--", US
"r-x", US
"rw-", US
"rwx" };
561 static uschar
*mtable_setid
[] =
562 { US
"--S", US
"--s", US
"-wS", US
"-ws", US
"r-S", US
"r-s", US
"rwS", US
"rws" };
564 static uschar
*mtable_sticky
[] =
565 { US
"--T", US
"--t", US
"-wT", US
"-wt", US
"r-T", US
"r-t", US
"rwT", US
"rwt" };
569 /*************************************************
570 * Tables for UTF-8 support *
571 *************************************************/
573 /* Table of the number of extra characters, indexed by the first character
574 masked with 0x3f. The highest number for a valid UTF-8 character is in fact
577 static uschar utf8_table1
[] = {
578 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
579 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
580 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
581 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };
583 /* These are the masks for the data bits in the first byte of a character,
584 indexed by the number of additional bytes. */
586 static int utf8_table2
[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};
588 /* Get the next UTF-8 character, advancing the pointer. */
590 #define GETUTF8INC(c, ptr) \
592 if ((c & 0xc0) == 0xc0) \
594 int a = utf8_table1[c & 0x3f]; /* Number of additional bytes */ \
596 c = (c & utf8_table2[a]) << s; \
600 c |= (*ptr++ & 0x3f) << s; \
605 /*************************************************
606 * Binary chop search on a table *
607 *************************************************/
609 /* This is used for matching expansion items and operators.
612 name the name that is being sought
613 table the table to search
614 table_size the number of items in the table
616 Returns: the offset in the table, or -1
620 chop_match(uschar
*name
, uschar
**table
, int table_size
)
622 uschar
**bot
= table
;
623 uschar
**top
= table
+ table_size
;
627 uschar
**mid
= bot
+ (top
- bot
)/2;
628 int c
= Ustrcmp(name
, *mid
);
629 if (c
== 0) return mid
- table
;
630 if (c
> 0) bot
= mid
+ 1; else top
= mid
;
638 /*************************************************
639 * Check a condition string *
640 *************************************************/
642 /* This function is called to expand a string, and test the result for a "true"
643 or "false" value. Failure of the expansion yields FALSE; logged unless it was a
644 forced fail or lookup defer. All store used by the function can be released on
648 condition the condition string
649 m1 text to be incorporated in panic error
652 Returns: TRUE if condition is met, FALSE if not
656 expand_check_condition(uschar
*condition
, uschar
*m1
, uschar
*m2
)
659 void *reset_point
= store_get(0);
660 uschar
*ss
= expand_string(condition
);
663 if (!expand_string_forcedfail
&& !search_find_defer
)
664 log_write(0, LOG_MAIN
|LOG_PANIC
, "failed to expand condition \"%s\" "
665 "for %s %s: %s", condition
, m1
, m2
, expand_string_message
);
668 rc
= ss
[0] != 0 && Ustrcmp(ss
, "0") != 0 && strcmpic(ss
, US
"no") != 0 &&
669 strcmpic(ss
, US
"false") != 0;
670 store_reset(reset_point
);
676 /*************************************************
677 * Pick out a name from a string *
678 *************************************************/
680 /* If the name is too long, it is silently truncated.
683 name points to a buffer into which to put the name
684 max is the length of the buffer
685 s points to the first alphabetic character of the name
686 extras chars other than alphanumerics to permit
688 Returns: pointer to the first character after the name
690 Note: The test for *s != 0 in the while loop is necessary because
691 Ustrchr() yields non-NULL if the character is zero (which is not something
695 read_name(uschar
*name
, int max
, uschar
*s
, uschar
*extras
)
698 while (*s
!= 0 && (isalnum(*s
) || Ustrchr(extras
, *s
) != NULL
))
700 if (ptr
< max
-1) name
[ptr
++] = *s
;
709 /*************************************************
710 * Pick out the rest of a header name *
711 *************************************************/
713 /* A variable name starting $header_ (or just $h_ for those who like
714 abbreviations) might not be the complete header name because headers can
715 contain any printing characters in their names, except ':'. This function is
716 called to read the rest of the name, chop h[eader]_ off the front, and put ':'
717 on the end, if the name was terminated by white space.
720 name points to a buffer in which the name read so far exists
721 max is the length of the buffer
722 s points to the first character after the name so far, i.e. the
723 first non-alphameric character after $header_xxxxx
725 Returns: a pointer to the first character after the header name
729 read_header_name(uschar
*name
, int max
, uschar
*s
)
731 int prelen
= Ustrchr(name
, '_') - name
+ 1;
732 int ptr
= Ustrlen(name
) - prelen
;
733 if (ptr
> 0) memmove(name
, name
+prelen
, ptr
);
734 while (mac_isgraph(*s
) && *s
!= ':')
736 if (ptr
< max
-1) name
[ptr
++] = *s
;
747 /*************************************************
748 * Pick out a number from a string *
749 *************************************************/
752 n points to an integer into which to put the number
753 s points to the first digit of the number
755 Returns: a pointer to the character after the last digit
759 read_number(int *n
, uschar
*s
)
762 while (isdigit(*s
)) *n
= *n
* 10 + (*s
++ - '0');
768 /*************************************************
769 * Extract keyed subfield from a string *
770 *************************************************/
772 /* The yield is in dynamic store; NULL means that the key was not found.
775 key points to the name of the key
776 s points to the string from which to extract the subfield
778 Returns: NULL if the subfield was not found, or
779 a pointer to the subfield's data
783 expand_getkeyed(uschar
*key
, uschar
*s
)
785 int length
= Ustrlen(key
);
786 while (isspace(*s
)) s
++;
788 /* Loop to search for the key */
796 while (*s
!= 0 && *s
!= '=' && !isspace(*s
)) s
++;
797 dkeylength
= s
- dkey
;
798 while (isspace(*s
)) s
++;
799 if (*s
== '=') while (isspace((*(++s
))));
801 data
= string_dequote(&s
);
802 if (length
== dkeylength
&& strncmpic(key
, dkey
, length
) == 0)
805 while (isspace(*s
)) s
++;
814 /*************************************************
815 * Extract numbered subfield from string *
816 *************************************************/
818 /* Extracts a numbered field from a string that is divided by tokens - for
819 example a line from /etc/passwd is divided by colon characters. First field is
820 numbered one. Negative arguments count from the right. Zero returns the whole
821 string. Returns NULL if there are insufficient tokens in the string
824 Modifies final argument - this is a dynamically generated string, so that's OK.
827 field number of field to be extracted,
828 first field = 1, whole string = 0, last field = -1
829 separators characters that are used to break string into tokens
830 s points to the string from which to extract the subfield
832 Returns: NULL if the field was not found,
833 a pointer to the field's data inside s (modified to add 0)
837 expand_gettokened (int field
, uschar
*separators
, uschar
*s
)
842 uschar
*fieldtext
= NULL
;
844 if (field
== 0) return s
;
846 /* Break the line up into fields in place; for field > 0 we stop when we have
847 done the number of fields we want. For field < 0 we continue till the end of
848 the string, counting the number of fields. */
850 count
= (field
> 0)? field
: INT_MAX
;
856 /* Previous field was the last one in the string. For a positive field
857 number, this means there are not enough fields. For a negative field number,
858 check that there are enough, and scan back to find the one that is wanted. */
862 if (field
> 0 || (-field
) > (INT_MAX
- count
- 1)) return NULL
;
863 if ((-field
) == (INT_MAX
- count
- 1)) return s
;
867 while (ss
[-1] != 0) ss
--;
873 /* Previous field was not last in the string; save its start and put a
877 len
= Ustrcspn(ss
, separators
);
888 /*************************************************
889 * Extract a substring from a string *
890 *************************************************/
892 /* Perform the ${substr or ${length expansion operations.
895 subject the input string
896 value1 the offset from the start of the input string to the start of
897 the output string; if negative, count from the right.
898 value2 the length of the output string, or negative (-1) for unset
899 if value1 is positive, unset means "all after"
900 if value1 is negative, unset means "all before"
901 len set to the length of the returned string
903 Returns: pointer to the output string, or NULL if there is an error
907 extract_substr(uschar
*subject
, int value1
, int value2
, int *len
)
909 int sublen
= Ustrlen(subject
);
911 if (value1
< 0) /* count from right */
915 /* If the position is before the start, skip to the start, and adjust the
916 length. If the length ends up negative, the substring is null because nothing
917 can precede. This falls out naturally when the length is unset, meaning "all
923 if (value2
< 0) value2
= 0;
927 /* Otherwise an unset length => characters before value1 */
936 /* For a non-negative offset, if the starting position is past the end of the
937 string, the result will be the null string. Otherwise, an unset length means
938 "rest"; just set it to the maximum - it will be cut down below if necessary. */
947 else if (value2
< 0) value2
= sublen
;
950 /* Cut the length down to the maximum possible for the offset value, and get
951 the required characters. */
953 if (value1
+ value2
> sublen
) value2
= sublen
- value1
;
955 return subject
+ value1
;
961 /*************************************************
962 * Old-style hash of a string *
963 *************************************************/
965 /* Perform the ${hash expansion operation.
968 subject the input string (an expanded substring)
969 value1 the length of the output string; if greater or equal to the
970 length of the input string, the input string is returned
971 value2 the number of hash characters to use, or 26 if negative
972 len set to the length of the returned string
974 Returns: pointer to the output string, or NULL if there is an error
978 compute_hash(uschar
*subject
, int value1
, int value2
, int *len
)
980 int sublen
= Ustrlen(subject
);
982 if (value2
< 0) value2
= 26;
983 else if (value2
> Ustrlen(hashcodes
))
985 expand_string_message
=
986 string_sprintf("hash count \"%d\" too big", value2
);
990 /* Calculate the hash text. We know it is shorter than the original string, so
991 can safely place it in subject[] (we know that subject is always itself an
992 expanded substring). */
999 while ((c
= (subject
[j
])) != 0)
1001 int shift
= (c
+ j
++) & 7;
1002 subject
[i
] ^= (c
<< shift
) | (c
>> (8-shift
));
1003 if (++i
>= value1
) i
= 0;
1005 for (i
= 0; i
< value1
; i
++)
1006 subject
[i
] = hashcodes
[(subject
[i
]) % value2
];
1008 else value1
= sublen
;
1017 /*************************************************
1018 * Numeric hash of a string *
1019 *************************************************/
1021 /* Perform the ${nhash expansion operation. The first characters of the
1022 string are treated as most important, and get the highest prime numbers.
1025 subject the input string
1026 value1 the maximum value of the first part of the result
1027 value2 the maximum value of the second part of the result,
1028 or negative to produce only a one-part result
1029 len set to the length of the returned string
1031 Returns: pointer to the output string, or NULL if there is an error.
1035 compute_nhash (uschar
*subject
, int value1
, int value2
, int *len
)
1037 uschar
*s
= subject
;
1039 unsigned long int total
= 0; /* no overflow */
1043 if (i
== 0) i
= sizeof(prime
)/sizeof(int) - 1;
1044 total
+= prime
[i
--] * (unsigned int)(*s
++);
1047 /* If value2 is unset, just compute one number */
1051 s
= string_sprintf("%d", total
% value1
);
1054 /* Otherwise do a div/mod hash */
1058 total
= total
% (value1
* value2
);
1059 s
= string_sprintf("%d/%d", total
/value2
, total
% value2
);
1070 /*************************************************
1071 * Find the value of a header or headers *
1072 *************************************************/
1074 /* Multiple instances of the same header get concatenated, and this function
1075 can also return a concatenation of all the header lines. When concatenating
1076 specific headers that contain lists of addresses, a comma is inserted between
1077 them. Otherwise we use a straight concatenation. Because some messages can have
1078 pathologically large number of lines, there is a limit on the length that is
1079 returned. Also, to avoid massive store use which would result from using
1080 string_cat() as it copies and extends strings, we do a preliminary pass to find
1081 out exactly how much store will be needed. On "normal" messages this will be
1085 name the name of the header, without the leading $header_ or $h_,
1086 or NULL if a concatenation of all headers is required
1087 exists_only TRUE if called from a def: test; don't need to build a string;
1088 just return a string that is not "" and not "0" if the header
1090 newsize return the size of memory block that was obtained; may be NULL
1091 if exists_only is TRUE
1092 want_raw TRUE if called for $rh_ or $rheader_ variables; no processing,
1093 other than concatenating, will be done on the header
1094 charset name of charset to translate MIME words to; used only if
1095 want_raw is false; if NULL, no translation is done (this is
1096 used for $bh_ and $bheader_)
1098 Returns: NULL if the header does not exist, else a pointer to a new
1103 find_header(uschar
*name
, BOOL exists_only
, int *newsize
, BOOL want_raw
,
1106 BOOL found
= name
== NULL
;
1108 int len
= found
? 0 : Ustrlen(name
);
1110 uschar
*yield
= NULL
;
1113 /* Loop for two passes - saves code repetition */
1115 for (i
= 0; i
< 2; i
++)
1120 for (h
= header_list
; size
< header_insert_maxlen
&& h
!= NULL
; h
= h
->next
)
1122 if (h
->type
!= htype_old
&& h
->text
!= NULL
) /* NULL => Received: placeholder */
1124 if (name
== NULL
|| (len
<= h
->slen
&& strncmpic(name
, h
->text
, len
) == 0))
1129 if (exists_only
) return US
"1"; /* don't need actual string */
1131 t
= h
->text
+ len
; /* text to insert */
1132 if (!want_raw
) /* unless wanted raw, */
1133 while (isspace(*t
)) t
++; /* remove leading white space */
1134 ilen
= h
->slen
- (t
- h
->text
); /* length to insert */
1136 /* Set comma = 1 if handling a single header and it's one of those
1137 that contains an address list, except when asked for raw headers. Only
1138 need to do this once. */
1140 if (!want_raw
&& name
!= NULL
&& comma
== 0 &&
1141 Ustrchr("BCFRST", h
->type
) != NULL
)
1144 /* First pass - compute total store needed; second pass - compute
1145 total store used, including this header. */
1147 size
+= ilen
+ comma
;
1149 /* Second pass - concatentate the data, up to a maximum. Note that
1150 the loop stops when size hits the limit. */
1154 if (size
> header_insert_maxlen
)
1156 ilen
-= size
- header_insert_maxlen
;
1159 Ustrncpy(ptr
, t
, ilen
);
1161 if (comma
!= 0 && ilen
> 0)
1171 /* At end of first pass, truncate size if necessary, and get the buffer
1172 to hold the data, returning the buffer size. */
1176 if (!found
) return NULL
;
1177 if (size
> header_insert_maxlen
) size
= header_insert_maxlen
;
1178 *newsize
= size
+ 1;
1179 ptr
= yield
= store_get(*newsize
);
1183 /* Remove a redundant added comma if present */
1185 if (comma
!= 0 && ptr
> yield
) ptr
-= 2;
1187 /* That's all we do for raw header expansion. */
1194 /* Otherwise, we remove trailing whitespace, including newlines. Then we do RFC
1195 2047 decoding, translating the charset if requested. The rfc2047_decode2()
1196 function can return an error with decoded data if the charset translation
1197 fails. If decoding fails, it returns NULL. */
1201 uschar
*decoded
, *error
;
1202 while (ptr
> yield
&& isspace(ptr
[-1])) ptr
--;
1204 decoded
= rfc2047_decode2(yield
, TRUE
, charset
, '?', NULL
, newsize
, &error
);
1207 DEBUG(D_any
) debug_printf("*** error in RFC 2047 decoding: %s\n"
1208 " input was: %s\n", error
, yield
);
1210 if (decoded
!= NULL
) yield
= decoded
;
1219 /*************************************************
1220 * Find value of a variable *
1221 *************************************************/
1223 /* The table of variables is kept in alphabetic order, so we can search it
1224 using a binary chop. The "choplen" variable is nothing to do with the binary
1228 name the name of the variable being sought
1229 exists_only TRUE if this is a def: test; passed on to find_header()
1230 skipping TRUE => skip any processing evaluation; this is not the same as
1231 exists_only because def: may test for values that are first
1233 newsize pointer to an int which is initially zero; if the answer is in
1234 a new memory buffer, *newsize is set to its size
1236 Returns: NULL if the variable does not exist, or
1237 a pointer to the variable's contents, or
1238 something non-NULL if exists_only is TRUE
1242 find_variable(uschar
*name
, BOOL exists_only
, BOOL skipping
, int *newsize
)
1245 int last
= var_table_size
;
1247 while (last
> first
)
1251 int middle
= (first
+ last
)/2;
1252 int c
= Ustrcmp(name
, var_table
[middle
].name
);
1254 if (c
> 0) { first
= middle
+ 1; continue; }
1255 if (c
< 0) { last
= middle
; continue; }
1257 /* Found an existing variable. If in skipping state, the value isn't needed,
1258 and we want to avoid processing (such as looking up up the host name). */
1260 if (skipping
) return US
"";
1262 switch (var_table
[middle
].type
)
1264 case vtype_filter_int
:
1265 if (!filter_running
) return NULL
;
1268 #ifdef EXPERIMENTAL_DOMAINKEYS
1270 case vtype_dk_verify
:
1271 if (dk_verify_block
== NULL
) return US
"";
1273 if (Ustrcmp(var_table
[middle
].name
, "dk_result") == 0)
1274 s
= dk_verify_block
->result_string
;
1275 if (Ustrcmp(var_table
[middle
].name
, "dk_sender") == 0)
1276 s
= dk_verify_block
->address
;
1277 if (Ustrcmp(var_table
[middle
].name
, "dk_sender_domain") == 0)
1278 s
= dk_verify_block
->domain
;
1279 if (Ustrcmp(var_table
[middle
].name
, "dk_sender_local_part") == 0)
1280 s
= dk_verify_block
->local_part
;
1282 if (Ustrcmp(var_table
[middle
].name
, "dk_sender_source") == 0)
1283 switch(dk_verify_block
->address_source
) {
1284 case DK_EXIM_ADDRESS_NONE
: s
= "0"; break;
1285 case DK_EXIM_ADDRESS_FROM_FROM
: s
= "from"; break;
1286 case DK_EXIM_ADDRESS_FROM_SENDER
: s
= "sender"; break;
1289 if (Ustrcmp(var_table
[middle
].name
, "dk_status") == 0)
1290 switch(dk_verify_block
->result
) {
1291 case DK_EXIM_RESULT_ERR
: s
= "error"; break;
1292 case DK_EXIM_RESULT_BAD_FORMAT
: s
= "bad format"; break;
1293 case DK_EXIM_RESULT_NO_KEY
: s
= "no key"; break;
1294 case DK_EXIM_RESULT_NO_SIGNATURE
: s
= "no signature"; break;
1295 case DK_EXIM_RESULT_REVOKED
: s
= "revoked"; break;
1296 case DK_EXIM_RESULT_NON_PARTICIPANT
: s
= "non-participant"; break;
1297 case DK_EXIM_RESULT_GOOD
: s
= "good"; break;
1298 case DK_EXIM_RESULT_BAD
: s
= "bad"; break;
1301 if (Ustrcmp(var_table
[middle
].name
, "dk_signsall") == 0)
1302 s
= (dk_verify_block
->signsall
)? "1" : "0";
1304 if (Ustrcmp(var_table
[middle
].name
, "dk_testing") == 0)
1305 s
= (dk_verify_block
->testing
)? "1" : "0";
1307 if (Ustrcmp(var_table
[middle
].name
, "dk_is_signed") == 0)
1308 s
= (dk_verify_block
->is_signed
)? "1" : "0";
1310 return (s
== NULL
)? US
"" : s
;
1314 sprintf(CS var_buffer
, "%d", *(int *)(var_table
[middle
].value
)); /* Integer */
1318 sprintf(CS var_buffer
, "%ld", (long int)(*(ino_t
*)(var_table
[middle
].value
))); /* Inode */
1322 sprintf(CS var_buffer
, "%ld", (long int)(*(gid_t
*)(var_table
[middle
].value
))); /* gid */
1326 sprintf(CS var_buffer
, "%ld", (long int)(*(uid_t
*)(var_table
[middle
].value
))); /* uid */
1329 case vtype_stringptr
: /* Pointer to string */
1330 s
= *((uschar
**)(var_table
[middle
].value
));
1331 return (s
== NULL
)? US
"" : s
;
1334 sprintf(CS var_buffer
, "%d", (int)getpid()); /* pid */
1337 case vtype_load_avg
:
1338 sprintf(CS var_buffer
, "%d", os_getloadavg()); /* load_average */
1341 case vtype_host_lookup
: /* Lookup if not done so */
1342 if (sender_host_name
== NULL
&& sender_host_address
!= NULL
&&
1343 !host_lookup_failed
&& host_name_lookup() == OK
)
1344 host_build_sender_fullhost();
1345 return (sender_host_name
== NULL
)? US
"" : sender_host_name
;
1347 case vtype_localpart
: /* Get local part from address */
1348 s
= *((uschar
**)(var_table
[middle
].value
));
1349 if (s
== NULL
) return US
"";
1350 domain
= Ustrrchr(s
, '@');
1351 if (domain
== NULL
) return s
;
1352 if (domain
- s
> sizeof(var_buffer
) - 1)
1353 log_write(0, LOG_MAIN
|LOG_PANIC_DIE
, "local part longer than %d in "
1354 "string expansion", sizeof(var_buffer
));
1355 Ustrncpy(var_buffer
, s
, domain
- s
);
1356 var_buffer
[domain
- s
] = 0;
1359 case vtype_domain
: /* Get domain from address */
1360 s
= *((uschar
**)(var_table
[middle
].value
));
1361 if (s
== NULL
) return US
"";
1362 domain
= Ustrrchr(s
, '@');
1363 return (domain
== NULL
)? US
"" : domain
+ 1;
1365 case vtype_msgheaders
:
1366 return find_header(NULL
, exists_only
, newsize
, FALSE
, NULL
);
1368 case vtype_msgbody
: /* Pointer to msgbody string */
1369 case vtype_msgbody_end
: /* Ditto, the end of the msg */
1370 ss
= (uschar
**)(var_table
[middle
].value
);
1371 if (*ss
== NULL
&& deliver_datafile
>= 0) /* Read body when needed */
1374 off_t start_offset
= SPOOL_DATA_START_OFFSET
;
1375 int len
= message_body_visible
;
1376 if (len
> message_size
) len
= message_size
;
1377 *ss
= body
= store_malloc(len
+1);
1379 if (var_table
[middle
].type
== vtype_msgbody_end
)
1381 struct stat statbuf
;
1382 if (fstat(deliver_datafile
, &statbuf
) == 0)
1384 start_offset
= statbuf
.st_size
- len
;
1385 if (start_offset
< SPOOL_DATA_START_OFFSET
)
1386 start_offset
= SPOOL_DATA_START_OFFSET
;
1389 lseek(deliver_datafile
, start_offset
, SEEK_SET
);
1390 len
= read(deliver_datafile
, body
, len
);
1396 if (body
[--len
] == '\n' || body
[len
] == 0) body
[len
] = ' ';
1400 return (*ss
== NULL
)? US
"" : *ss
;
1402 case vtype_todbsdin
: /* BSD inbox time of day */
1403 return tod_stamp(tod_bsdin
);
1405 case vtype_tode
: /* Unix epoch time of day */
1406 return tod_stamp(tod_epoch
);
1408 case vtype_todf
: /* Full time of day */
1409 return tod_stamp(tod_full
);
1411 case vtype_todl
: /* Log format time of day */
1412 return tod_stamp(tod_log_bare
); /* (without timezone) */
1414 case vtype_todzone
: /* Time zone offset only */
1415 return tod_stamp(tod_zone
);
1417 case vtype_todzulu
: /* Zulu time */
1418 return tod_stamp(tod_zulu
);
1420 case vtype_todlf
: /* Log file datestamp tod */
1421 return tod_stamp(tod_log_datestamp
);
1423 case vtype_reply
: /* Get reply address */
1424 s
= find_header(US
"reply-to:", exists_only
, newsize
, FALSE
,
1426 if (s
== NULL
|| *s
== 0)
1427 s
= find_header(US
"from:", exists_only
, newsize
, FALSE
, headers_charset
);
1428 return (s
== NULL
)? US
"" : s
;
1430 /* A recipients list is available only during system message filtering,
1431 during ACL processing after DATA, and while expanding pipe commands
1432 generated from a system filter, but not elsewhere. */
1434 case vtype_recipients
:
1435 if (!enable_dollar_recipients
) return NULL
; else
1440 s
= store_get(size
);
1441 for (i
= 0; i
< recipients_count
; i
++)
1443 if (i
!= 0) s
= string_cat(s
, &size
, &ptr
, US
", ", 2);
1444 s
= string_cat(s
, &size
, &ptr
, recipients_list
[i
].address
,
1445 Ustrlen(recipients_list
[i
].address
));
1447 s
[ptr
] = 0; /* string_cat() leaves room */
1454 sprintf(CS var_buffer
, "%d",
1455 receive_statvfs(var_table
[middle
].value
== (void *)TRUE
, &inodes
));
1462 (void) receive_statvfs(var_table
[middle
].value
== (void *)TRUE
, &inodes
);
1463 sprintf(CS var_buffer
, "%d", inodes
);
1469 return NULL
; /* Unknown variable name */
1475 /*************************************************
1476 * Read and expand substrings *
1477 *************************************************/
1479 /* This function is called to read and expand argument substrings for various
1480 expansion items. Some have a minimum requirement that is less than the maximum;
1481 in these cases, the first non-present one is set to NULL.
1484 sub points to vector of pointers to set
1485 n maximum number of substrings
1487 sptr points to current string pointer
1488 skipping the skipping flag
1489 check_end if TRUE, check for final '}'
1490 name name of item, for error message
1492 Returns: 0 OK; string pointer updated
1493 1 curly bracketing error (too few arguments)
1494 2 too many arguments (only if check_end is set); message set
1495 3 other error (expansion failure)
1499 read_subs(uschar
**sub
, int n
, int m
, uschar
**sptr
, BOOL skipping
,
1500 BOOL check_end
, uschar
*name
)
1505 while (isspace(*s
)) s
++;
1506 for (i
= 0; i
< n
; i
++)
1510 if (i
< m
) return 1;
1514 sub
[i
] = expand_string_internal(s
+1, TRUE
, &s
, skipping
);
1515 if (sub
[i
] == NULL
) return 3;
1516 if (*s
++ != '}') return 1;
1517 while (isspace(*s
)) s
++;
1519 if (check_end
&& *s
++ != '}')
1523 expand_string_message
= string_sprintf("Too many arguments for \"%s\" "
1524 "(max is %d)", name
, n
);
1537 /*************************************************
1538 * Read and evaluate a condition *
1539 *************************************************/
1543 s points to the start of the condition text
1544 yield points to a BOOL to hold the result of the condition test;
1545 if NULL, we are just reading through a condition that is
1546 part of an "or" combination to check syntax, or in a state
1547 where the answer isn't required
1549 Returns: a pointer to the first character after the condition, or
1554 eval_condition(uschar
*s
, BOOL
*yield
)
1556 BOOL testfor
= TRUE
;
1557 BOOL tempcond
, combined_cond
;
1559 int i
, rc
, cond_type
, roffset
;
1561 struct stat statbuf
;
1566 const uschar
*rerror
;
1570 while (isspace(*s
)) s
++;
1571 if (*s
== '!') { testfor
= !testfor
; s
++; } else break;
1574 /* Numeric comparisons are symbolic */
1576 if (*s
== '=' || *s
== '>' || *s
== '<')
1588 /* All other conditions are named */
1590 else s
= read_name(name
, 256, s
, US
"_");
1592 /* If we haven't read a name, it means some non-alpha character is first. */
1596 expand_string_message
= string_sprintf("condition name expected, "
1597 "but found \"%.16s\"", s
);
1601 /* Find which condition we are dealing with, and switch on it */
1603 cond_type
= chop_match(name
, cond_table
, sizeof(cond_table
)/sizeof(uschar
*));
1606 /* def: tests for a non-empty variable, or for the existence of a header. If
1607 yield == NULL we are in a skipping state, and don't care about the answer. */
1612 expand_string_message
= US
"\":\" expected after \"def\"";
1616 s
= read_name(name
, 256, s
+1, US
"_");
1618 /* Test for a header's existence */
1620 if (Ustrncmp(name
, "h_", 2) == 0 ||
1621 Ustrncmp(name
, "rh_", 3) == 0 ||
1622 Ustrncmp(name
, "bh_", 3) == 0 ||
1623 Ustrncmp(name
, "header_", 7) == 0 ||
1624 Ustrncmp(name
, "rheader_", 8) == 0 ||
1625 Ustrncmp(name
, "bheader_", 8) == 0)
1627 s
= read_header_name(name
, 256, s
);
1628 if (yield
!= NULL
) *yield
=
1629 (find_header(name
, TRUE
, NULL
, FALSE
, NULL
) != NULL
) == testfor
;
1632 /* Test for a variable's having a non-empty value. A non-existent variable
1633 causes an expansion failure. */
1637 uschar
*value
= find_variable(name
, TRUE
, yield
== NULL
, NULL
);
1640 expand_string_message
= (name
[0] == 0)?
1641 string_sprintf("variable name omitted after \"def:\"") :
1642 string_sprintf("unknown variable \"%s\" after \"def:\"", name
);
1645 if (yield
!= NULL
) *yield
= (value
[0] != 0) == testfor
;
1651 /* first_delivery tests for first delivery attempt */
1653 case ECOND_FIRST_DELIVERY
:
1654 if (yield
!= NULL
) *yield
= deliver_firsttime
== testfor
;
1658 /* queue_running tests for any process started by a queue runner */
1660 case ECOND_QUEUE_RUNNING
:
1661 if (yield
!= NULL
) *yield
= (queue_run_pid
!= (pid_t
)0) == testfor
;
1665 /* exists: tests for file existence
1666 isip: tests for any IP address
1667 isip4: tests for an IPv4 address
1668 isip6: tests for an IPv6 address
1669 pam: does PAM authentication
1670 radius: does RADIUS authentication
1671 ldapauth: does LDAP authentication
1672 pwcheck: does Cyrus SASL pwcheck authentication
1681 case ECOND_LDAPAUTH
:
1684 while (isspace(*s
)) s
++;
1685 if (*s
!= '{') goto COND_FAILED_CURLY_START
;
1687 sub
[0] = expand_string_internal(s
+1, TRUE
, &s
, yield
== NULL
);
1688 if (sub
[0] == NULL
) return NULL
;
1689 if (*s
++ != '}') goto COND_FAILED_CURLY_END
;
1691 if (yield
== NULL
) return s
; /* No need to run the test if skipping */
1696 if ((expand_forbid
& RDO_EXISTS
) != 0)
1698 expand_string_message
= US
"File existence tests are not permitted";
1701 *yield
= (Ustat(sub
[0], &statbuf
) == 0) == testfor
;
1707 rc
= string_is_ip_address(sub
[0], NULL
);
1708 *yield
= ((cond_type
== ECOND_ISIP
)? (rc
> 0) :
1709 (cond_type
== ECOND_ISIP4
)? (rc
== 4) : (rc
== 6)) == testfor
;
1712 /* Various authentication tests - all optionally compiled */
1716 rc
= auth_call_pam(sub
[0], &expand_string_message
);
1719 goto COND_FAILED_NOT_COMPILED
;
1720 #endif /* SUPPORT_PAM */
1723 #ifdef RADIUS_CONFIG_FILE
1724 rc
= auth_call_radius(sub
[0], &expand_string_message
);
1727 goto COND_FAILED_NOT_COMPILED
;
1728 #endif /* RADIUS_CONFIG_FILE */
1730 case ECOND_LDAPAUTH
:
1733 /* Just to keep the interface the same */
1735 int old_pool
= store_pool
;
1736 store_pool
= POOL_SEARCH
;
1737 rc
= eldapauth_find((void *)(-1), NULL
, sub
[0], Ustrlen(sub
[0]), NULL
,
1738 &expand_string_message
, &do_cache
);
1739 store_pool
= old_pool
;
1743 goto COND_FAILED_NOT_COMPILED
;
1744 #endif /* LOOKUP_LDAP */
1747 #ifdef CYRUS_PWCHECK_SOCKET
1748 rc
= auth_call_pwcheck(sub
[0], &expand_string_message
);
1751 goto COND_FAILED_NOT_COMPILED
;
1752 #endif /* CYRUS_PWCHECK_SOCKET */
1754 #if defined(SUPPORT_PAM) || defined(RADIUS_CONFIG_FILE) || \
1755 defined(LOOKUP_LDAP) || defined(CYRUS_PWCHECK_SOCKET)
1757 if (rc
== ERROR
|| rc
== DEFER
) return NULL
;
1758 *yield
= (rc
== OK
) == testfor
;
1764 /* saslauthd: does Cyrus saslauthd authentication. Four parameters are used:
1766 ${if saslauthd {{username}{password}{service}{realm}} {yes}[no}}
1768 However, the last two are optional. That is why the whole set is enclosed
1769 in their own set or braces. */
1771 case ECOND_SASLAUTHD
:
1772 #ifndef CYRUS_SASLAUTHD_SOCKET
1773 goto COND_FAILED_NOT_COMPILED
;
1775 while (isspace(*s
)) s
++;
1776 if (*s
++ != '{') goto COND_FAILED_CURLY_START
;
1777 switch(read_subs(sub
, 4, 2, &s
, yield
== NULL
, TRUE
, US
"saslauthd"))
1779 case 1: expand_string_message
= US
"too few arguments or bracketing "
1780 "error for saslauthd";
1782 case 3: return NULL
;
1784 if (sub
[2] == NULL
) sub
[3] = NULL
; /* realm if no service */
1788 rc
= auth_call_saslauthd(sub
[0], sub
[1], sub
[2], sub
[3],
1789 &expand_string_message
);
1790 if (rc
== ERROR
|| rc
== DEFER
) return NULL
;
1791 *yield
= (rc
== OK
) == testfor
;
1794 #endif /* CYRUS_SASLAUTHD_SOCKET */
1797 /* symbolic operators for numeric and string comparison, and a number of
1798 other operators, all requiring two arguments.
1800 match: does a regular expression match and sets up the numerical
1801 variables if it succeeds
1802 match_address: matches in an address list
1803 match_domain: matches in a domain list
1804 match_local_part: matches in a local part list
1805 crypteq: encrypts plaintext and compares against an encrypted text,
1806 using crypt(), crypt16(), MD5 or SHA-1
1810 case ECOND_MATCH_ADDRESS
:
1811 case ECOND_MATCH_DOMAIN
:
1812 case ECOND_MATCH_LOCAL_PART
:
1815 case ECOND_NUM_L
: /* Numerical comparisons */
1822 case ECOND_STR_LT
: /* String comparisons */
1833 for (i
= 0; i
< 2; i
++)
1835 while (isspace(*s
)) s
++;
1838 if (i
== 0) goto COND_FAILED_CURLY_START
;
1839 expand_string_message
= string_sprintf("missing 2nd string in {} "
1840 "after \"%s\"", name
);
1843 sub
[i
] = expand_string_internal(s
+1, TRUE
, &s
, yield
== NULL
);
1844 if (sub
[i
] == NULL
) return NULL
;
1845 if (*s
++ != '}') goto COND_FAILED_CURLY_END
;
1847 /* Convert to numerical if required; we know that the names of all the
1848 conditions that compare numbers do not start with a letter. This just saves
1849 checking for them individually. */
1851 if (!isalpha(name
[0]))
1854 num
[i
] = (int)Ustrtol((const uschar
*)sub
[i
], &endptr
, 10);
1855 if (tolower(*endptr
) == 'k')
1860 else if (tolower(*endptr
) == 'm')
1862 num
[i
] *= 1024*1024;
1865 while (isspace(*endptr
)) endptr
++;
1868 expand_string_message
= string_sprintf("\"%s\" is not a number",
1875 /* Result not required */
1877 if (yield
== NULL
) return s
;
1879 /* Do an appropriate comparison */
1885 *yield
= (num
[0] == num
[1]) == testfor
;
1889 *yield
= (num
[0] > num
[1]) == testfor
;
1893 *yield
= (num
[0] >= num
[1]) == testfor
;
1897 *yield
= (num
[0] < num
[1]) == testfor
;
1901 *yield
= (num
[0] <= num
[1]) == testfor
;
1905 *yield
= (Ustrcmp(sub
[0], sub
[1]) < 0) == testfor
;
1909 *yield
= (strcmpic(sub
[0], sub
[1]) < 0) == testfor
;
1913 *yield
= (Ustrcmp(sub
[0], sub
[1]) <= 0) == testfor
;
1917 *yield
= (strcmpic(sub
[0], sub
[1]) <= 0) == testfor
;
1921 *yield
= (Ustrcmp(sub
[0], sub
[1]) == 0) == testfor
;
1925 *yield
= (strcmpic(sub
[0], sub
[1]) == 0) == testfor
;
1929 *yield
= (Ustrcmp(sub
[0], sub
[1]) > 0) == testfor
;
1933 *yield
= (strcmpic(sub
[0], sub
[1]) > 0) == testfor
;
1937 *yield
= (Ustrcmp(sub
[0], sub
[1]) >= 0) == testfor
;
1941 *yield
= (strcmpic(sub
[0], sub
[1]) >= 0) == testfor
;
1944 case ECOND_MATCH
: /* Regular expression match */
1945 re
= pcre_compile(CS sub
[1], PCRE_COPT
, (const char **)&rerror
, &roffset
,
1949 expand_string_message
= string_sprintf("regular expression error in "
1950 "\"%s\": %s at offset %d", sub
[1], rerror
, roffset
);
1953 *yield
= regex_match_and_setup(re
, sub
[0], 0, -1) == testfor
;
1956 case ECOND_MATCH_ADDRESS
: /* Match in an address list */
1957 rc
= match_address_list(sub
[0], TRUE
, FALSE
, &(sub
[1]), NULL
, -1, 0, NULL
);
1958 goto MATCHED_SOMETHING
;
1960 case ECOND_MATCH_DOMAIN
: /* Match in a domain list */
1961 rc
= match_isinlist(sub
[0], &(sub
[1]), 0, &domainlist_anchor
, NULL
,
1962 MCL_DOMAIN
+ MCL_NOEXPAND
, TRUE
, NULL
);
1963 goto MATCHED_SOMETHING
;
1965 case ECOND_MATCH_LOCAL_PART
:
1966 rc
= match_isinlist(sub
[0], &(sub
[1]), 0, &localpartlist_anchor
, NULL
,
1967 MCL_LOCALPART
+ MCL_NOEXPAND
, TRUE
, NULL
);
1982 expand_string_message
= string_sprintf("unable to complete match "
1983 "against \"%s\": %s", sub
[1], search_error_message
);
1989 /* Various "encrypted" comparisons. If the second string starts with
1990 "{" then an encryption type is given. Default to crypt() or crypt16()
1991 (build-time choice). */
1994 #ifndef SUPPORT_CRYPTEQ
1995 goto COND_FAILED_NOT_COMPILED
;
1997 if (strncmpic(sub
[1], US
"{md5}", 5) == 0)
1999 int sublen
= Ustrlen(sub
[1]+5);
2004 md5_end(&base
, (uschar
*)sub
[0], Ustrlen(sub
[0]), digest
);
2006 /* If the length that we are comparing against is 24, the MD5 digest
2007 is expressed as a base64 string. This is the way LDAP does it. However,
2008 some other software uses a straightforward hex representation. We assume
2009 this if the length is 32. Other lengths fail. */
2013 uschar
*coded
= auth_b64encode((uschar
*)digest
, 16);
2014 DEBUG(D_auth
) debug_printf("crypteq: using MD5+B64 hashing\n"
2015 " subject=%s\n crypted=%s\n", coded
, sub
[1]+5);
2016 *yield
= (Ustrcmp(coded
, sub
[1]+5) == 0) == testfor
;
2018 else if (sublen
== 32)
2022 for (i
= 0; i
< 16; i
++) sprintf(CS (coded
+2*i
), "%02X", digest
[i
]);
2024 DEBUG(D_auth
) debug_printf("crypteq: using MD5+hex hashing\n"
2025 " subject=%s\n crypted=%s\n", coded
, sub
[1]+5);
2026 *yield
= (strcmpic(coded
, sub
[1]+5) == 0) == testfor
;
2030 DEBUG(D_auth
) debug_printf("crypteq: length for MD5 not 24 or 32: "
2031 "fail\n crypted=%s\n", sub
[1]+5);
2036 else if (strncmpic(sub
[1], US
"{sha1}", 6) == 0)
2038 int sublen
= Ustrlen(sub
[1]+6);
2043 sha1_end(&base
, (uschar
*)sub
[0], Ustrlen(sub
[0]), digest
);
2045 /* If the length that we are comparing against is 28, assume the SHA1
2046 digest is expressed as a base64 string. If the length is 40, assume a
2047 straightforward hex representation. Other lengths fail. */
2051 uschar
*coded
= auth_b64encode((uschar
*)digest
, 20);
2052 DEBUG(D_auth
) debug_printf("crypteq: using SHA1+B64 hashing\n"
2053 " subject=%s\n crypted=%s\n", coded
, sub
[1]+6);
2054 *yield
= (Ustrcmp(coded
, sub
[1]+6) == 0) == testfor
;
2056 else if (sublen
== 40)
2060 for (i
= 0; i
< 20; i
++) sprintf(CS (coded
+2*i
), "%02X", digest
[i
]);
2062 DEBUG(D_auth
) debug_printf("crypteq: using SHA1+hex hashing\n"
2063 " subject=%s\n crypted=%s\n", coded
, sub
[1]+6);
2064 *yield
= (strcmpic(coded
, sub
[1]+6) == 0) == testfor
;
2068 DEBUG(D_auth
) debug_printf("crypteq: length for SHA-1 not 28 or 40: "
2069 "fail\n crypted=%s\n", sub
[1]+6);
2074 else /* {crypt} or {crypt16} and non-{ at start */
2079 if (strncmpic(sub
[1], US
"{crypt}", 7) == 0)
2084 else if (strncmpic(sub
[1], US
"{crypt16}", 9) == 0)
2089 else if (sub
[1][0] == '{')
2091 expand_string_message
= string_sprintf("unknown encryption mechanism "
2092 "in \"%s\"", sub
[1]);
2098 case 0: coded
= US
DEFAULT_CRYPT(CS sub
[0], CS sub
[1]); break;
2099 case 1: coded
= US
crypt(CS sub
[0], CS sub
[1]); break;
2100 default: coded
= US
crypt16(CS sub
[0], CS sub
[1]); break;
2104 #define XSTR(s) STR(s)
2105 DEBUG(D_auth
) debug_printf("crypteq: using %s()\n"
2106 " subject=%s\n crypted=%s\n",
2107 (which
== 0)? XSTR(DEFAULT_CRYPT
) : (which
== 1)? "crypt" : "crypt16",
2112 /* If the encrypted string contains fewer than two characters (for the
2113 salt), force failure. Otherwise we get false positives: with an empty
2114 string the yield of crypt() is an empty string! */
2116 *yield
= (Ustrlen(sub
[1]) < 2)? !testfor
:
2117 (Ustrcmp(coded
, sub
[1]) == 0) == testfor
;
2120 #endif /* SUPPORT_CRYPTEQ */
2121 } /* Switch for comparison conditions */
2123 return s
; /* End of comparison conditions */
2126 /* and/or: computes logical and/or of several conditions */
2130 subcondptr
= (yield
== NULL
)? NULL
: &tempcond
;
2131 combined_cond
= (cond_type
== ECOND_AND
);
2133 while (isspace(*s
)) s
++;
2134 if (*s
++ != '{') goto COND_FAILED_CURLY_START
;
2138 while (isspace(*s
)) s
++;
2139 if (*s
== '}') break;
2142 expand_string_message
= string_sprintf("each subcondition "
2143 "inside an \"%s{...}\" condition must be in its own {}", name
);
2147 s
= eval_condition(s
+1, subcondptr
);
2150 expand_string_message
= string_sprintf("%s inside \"%s{...}\" condition",
2151 expand_string_message
, name
);
2154 while (isspace(*s
)) s
++;
2158 expand_string_message
= string_sprintf("missing } at end of condition "
2159 "inside \"%s\" group", name
);
2165 if (cond_type
== ECOND_AND
)
2167 combined_cond
&= tempcond
;
2168 if (!combined_cond
) subcondptr
= NULL
; /* once false, don't */
2169 } /* evaluate any more */
2172 combined_cond
|= tempcond
;
2173 if (combined_cond
) subcondptr
= NULL
; /* once true, don't */
2174 } /* evaluate any more */
2178 if (yield
!= NULL
) *yield
= (combined_cond
== testfor
);
2182 /* Unknown condition */
2185 expand_string_message
= string_sprintf("unknown condition \"%s\"", name
);
2187 } /* End switch on condition type */
2189 /* Missing braces at start and end of data */
2191 COND_FAILED_CURLY_START
:
2192 expand_string_message
= string_sprintf("missing { after \"%s\"", name
);
2195 COND_FAILED_CURLY_END
:
2196 expand_string_message
= string_sprintf("missing } at end of \"%s\" condition",
2200 /* A condition requires code that is not compiled */
2202 #if !defined(SUPPORT_PAM) || !defined(RADIUS_CONFIG_FILE) || \
2203 !defined(LOOKUP_LDAP) || !defined(CYRUS_PWCHECK_SOCKET) || \
2204 !defined(SUPPORT_CRYPTEQ) || !defined(CYRUS_SASLAUTHD_SOCKET)
2205 COND_FAILED_NOT_COMPILED
:
2206 expand_string_message
= string_sprintf("support for \"%s\" not compiled",
2215 /*************************************************
2216 * Save numerical variables *
2217 *************************************************/
2219 /* This function is called from items such as "if" that want to preserve and
2220 restore the numbered variables.
2223 save_expand_string points to an array of pointers to set
2224 save_expand_nlength points to an array of ints for the lengths
2226 Returns: the value of expand max to save
2230 save_expand_strings(uschar
**save_expand_nstring
, int *save_expand_nlength
)
2233 for (i
= 0; i
<= expand_nmax
; i
++)
2235 save_expand_nstring
[i
] = expand_nstring
[i
];
2236 save_expand_nlength
[i
] = expand_nlength
[i
];
2243 /*************************************************
2244 * Restore numerical variables *
2245 *************************************************/
2247 /* This function restored saved values of numerical strings.
2250 save_expand_nmax the number of strings to restore
2251 save_expand_string points to an array of pointers
2252 save_expand_nlength points to an array of ints
2258 restore_expand_strings(int save_expand_nmax
, uschar
**save_expand_nstring
,
2259 int *save_expand_nlength
)
2262 expand_nmax
= save_expand_nmax
;
2263 for (i
= 0; i
<= expand_nmax
; i
++)
2265 expand_nstring
[i
] = save_expand_nstring
[i
];
2266 expand_nlength
[i
] = save_expand_nlength
[i
];
2274 /*************************************************
2275 * Handle yes/no substrings *
2276 *************************************************/
2278 /* This function is used by ${if}, ${lookup} and ${extract} to handle the
2279 alternative substrings that depend on whether or not the condition was true,
2280 or the lookup or extraction succeeded. The substrings always have to be
2281 expanded, to check their syntax, but "skipping" is set when the result is not
2282 needed - this avoids unnecessary nested lookups.
2285 skipping TRUE if we were skipping when this item was reached
2286 yes TRUE if the first string is to be used, else use the second
2287 save_lookup a value to put back into lookup_value before the 2nd expansion
2288 sptr points to the input string pointer
2289 yieldptr points to the output string pointer
2290 sizeptr points to the output string size
2291 ptrptr points to the output string pointer
2292 type "lookup" or "if" or "extract" or "run", for error message
2294 Returns: 0 OK; lookup_value has been reset to save_lookup
2296 2 expansion failed because of bracketing error
2300 process_yesno(BOOL skipping
, BOOL yes
, uschar
*save_lookup
, uschar
**sptr
,
2301 uschar
**yieldptr
, int *sizeptr
, int *ptrptr
, uschar
*type
)
2304 uschar
*s
= *sptr
; /* Local value */
2305 uschar
*sub1
, *sub2
;
2307 /* If there are no following strings, we substitute the contents of $value for
2308 lookups and for extractions in the success case. For the ${if item, the string
2309 "true" is substituted. In the fail case, nothing is substituted for all three
2312 while (isspace(*s
)) s
++;
2317 if (yes
) *yieldptr
= string_cat(*yieldptr
, sizeptr
, ptrptr
, US
"true", 4);
2321 if (yes
&& lookup_value
!= NULL
)
2322 *yieldptr
= string_cat(*yieldptr
, sizeptr
, ptrptr
, lookup_value
,
2323 Ustrlen(lookup_value
));
2324 lookup_value
= save_lookup
;
2330 /* The first following string must be braced. */
2332 if (*s
++ != '{') goto FAILED_CURLY
;
2334 /* Expand the first substring. Forced failures are noticed only if we actually
2335 want this string. Set skipping in the call in the fail case (this will always
2336 be the case if we were already skipping). */
2338 sub1
= expand_string_internal(s
, TRUE
, &s
, !yes
);
2339 if (sub1
== NULL
&& (yes
|| !expand_string_forcedfail
)) goto FAILED
;
2340 expand_string_forcedfail
= FALSE
;
2341 if (*s
++ != '}') goto FAILED_CURLY
;
2343 /* If we want the first string, add it to the output */
2346 *yieldptr
= string_cat(*yieldptr
, sizeptr
, ptrptr
, sub1
, Ustrlen(sub1
));
2348 /* If this is called from a lookup or an extract, we want to restore $value to
2349 what it was at the start of the item, so that it has this value during the
2350 second string expansion. For the call from "if" or "run" to this function,
2351 save_lookup is set to lookup_value, so that this statement does nothing. */
2353 lookup_value
= save_lookup
;
2355 /* There now follows either another substring, or "fail", or nothing. This
2356 time, forced failures are noticed only if we want the second string. We must
2357 set skipping in the nested call if we don't want this string, or if we were
2358 already skipping. */
2360 while (isspace(*s
)) s
++;
2363 sub2
= expand_string_internal(s
+1, TRUE
, &s
, yes
|| skipping
);
2364 if (sub2
== NULL
&& (!yes
|| !expand_string_forcedfail
)) goto FAILED
;
2365 expand_string_forcedfail
= FALSE
;
2366 if (*s
++ != '}') goto FAILED_CURLY
;
2368 /* If we want the second string, add it to the output */
2371 *yieldptr
= string_cat(*yieldptr
, sizeptr
, ptrptr
, sub2
, Ustrlen(sub2
));
2374 /* If there is no second string, but the word "fail" is present when the use of
2375 the second string is wanted, set a flag indicating it was a forced failure
2376 rather than a syntactic error. Swallow the terminating } in case this is nested
2377 inside another lookup or if or extract. */
2382 s
= read_name(name
, sizeof(name
), s
, US
"_");
2383 if (Ustrcmp(name
, "fail") == 0)
2385 if (!yes
&& !skipping
)
2387 while (isspace(*s
)) s
++;
2388 if (*s
++ != '}') goto FAILED_CURLY
;
2389 expand_string_message
=
2390 string_sprintf("\"%s\" failed and \"fail\" requested", type
);
2391 expand_string_forcedfail
= TRUE
;
2397 expand_string_message
=
2398 string_sprintf("syntax error in \"%s\" item - \"fail\" expected", type
);
2403 /* All we have to do now is to check on the final closing brace. */
2405 while (isspace(*s
)) s
++;
2406 if (*s
++ == '}') goto RETURN
;
2408 /* Get here if there is a bracketing failure */
2413 /* Get here for other failures */
2418 /* Update the input pointer value before returning */
2430 /*************************************************
2431 * Handle MD5 or SHA-1 computation for HMAC *
2432 *************************************************/
2434 /* These are some wrapping functions that enable the HMAC code to be a bit
2435 cleaner. A good compiler will spot the tail recursion.
2438 type HMAC_MD5 or HMAC_SHA1
2439 remaining are as for the cryptographic hash functions
2445 chash_start(int type
, void *base
)
2447 if (type
== HMAC_MD5
)
2448 md5_start((md5
*)base
);
2450 sha1_start((sha1
*)base
);
2454 chash_mid(int type
, void *base
, uschar
*string
)
2456 if (type
== HMAC_MD5
)
2457 md5_mid((md5
*)base
, string
);
2459 sha1_mid((sha1
*)base
, string
);
2463 chash_end(int type
, void *base
, uschar
*string
, int length
, uschar
*digest
)
2465 if (type
== HMAC_MD5
)
2466 md5_end((md5
*)base
, string
, length
, digest
);
2468 sha1_end((sha1
*)base
, string
, length
, digest
);
2475 /*************************************************
2476 * Join a file onto the output string *
2477 *************************************************/
2479 /* This is used for readfile and after a run expansion. It joins the contents
2480 of a file onto the output string, globally replacing newlines with a given
2481 string (optionally). The file is closed at the end.
2485 yield pointer to the expandable string
2486 sizep pointer to the current size
2487 ptrp pointer to the current position
2488 eol newline replacement string, or NULL
2490 Returns: new value of string pointer
2494 cat_file(FILE *f
, uschar
*yield
, int *sizep
, int *ptrp
, uschar
*eol
)
2497 uschar buffer
[1024];
2499 eollen
= (eol
== NULL
)? 0 : Ustrlen(eol
);
2501 while (Ufgets(buffer
, sizeof(buffer
), f
) != NULL
)
2503 int len
= Ustrlen(buffer
);
2504 if (eol
!= NULL
&& buffer
[len
-1] == '\n') len
--;
2505 yield
= string_cat(yield
, sizep
, ptrp
, buffer
, len
);
2506 if (buffer
[len
] != 0)
2507 yield
= string_cat(yield
, sizep
, ptrp
, eol
, eollen
);
2510 if (yield
!= NULL
) yield
[*ptrp
] = 0;
2518 /*************************************************
2519 * Evaluate numeric expression *
2520 *************************************************/
2522 /* This is a set of mutually recursive functions that evaluate a simple
2523 arithmetic expression involving only + - * / and parentheses. The only one that
2524 is called from elsewhere is eval_expr, whose interface is:
2527 sptr pointer to the pointer to the string - gets updated
2528 decimal TRUE if numbers are to be assumed decimal
2529 error pointer to where to put an error message - must be NULL on input
2530 endket TRUE if ')' must terminate - FALSE for external call
2533 Returns: on success: the value of the expression, with *error still NULL
2534 on failure: an undefined value, with *error = a message
2537 static int eval_sumterm(uschar
**, BOOL
, uschar
**);
2540 eval_expr(uschar
**sptr
, BOOL decimal
, uschar
**error
, BOOL endket
)
2543 int x
= eval_sumterm(&s
, decimal
, error
);
2546 while (*s
== '+' || *s
== '-')
2549 int y
= eval_sumterm(&s
, decimal
, error
);
2550 if (*error
!= NULL
) break;
2551 if (op
== '+') x
+= y
; else x
-= y
;
2558 *error
= US
"expecting closing parenthesis";
2560 while (isspace(*(++s
)));
2562 else if (*s
!= 0) *error
= US
"expecting + or -";
2571 eval_term(uschar
**sptr
, BOOL decimal
, uschar
**error
)
2576 while (isspace(*s
)) s
++;
2578 if (isdigit(c
) || ((c
== '-' || c
== '+') && isdigit(s
[1])))
2581 (void)sscanf(CS s
, (decimal
? "%d%n" : "%i%n"), &n
, &count
);
2583 if (tolower(*s
) == 'k') { n
*= 1024; s
++; }
2584 else if (tolower(*s
) == 'm') { n
*= 1024*1024; s
++; }
2585 while (isspace (*s
)) s
++;
2590 n
= eval_expr(&s
, decimal
, error
, 1);
2594 *error
= US
"expecting number or opening parenthesis";
2601 static int eval_sumterm(uschar
**sptr
, BOOL decimal
, uschar
**error
)
2604 int x
= eval_term(&s
, decimal
, error
);
2607 while (*s
== '*' || *s
== '/')
2610 int y
= eval_term(&s
, decimal
, error
);
2611 if (*error
!= NULL
) break;
2612 if (op
== '*') x
*= y
; else x
/= y
;
2622 /*************************************************
2624 *************************************************/
2626 /* Returns either an unchanged string, or the expanded string in stacking pool
2627 store. Interpreted sequences are:
2629 \... normal escaping rules
2630 $name substitutes the variable
2632 ${op:string} operates on the expanded string value
2633 ${item{arg1}{arg2}...} expands the args and then does the business
2634 some literal args are not enclosed in {}
2636 There are now far too many operators and item types to make it worth listing
2637 them here in detail any more.
2639 We use an internal routine recursively to handle embedded substrings. The
2640 external function follows. The yield is NULL if the expansion failed, and there
2641 are two cases: if something collapsed syntactically, or if "fail" was given
2642 as the action on a lookup failure. These can be distinguised by looking at the
2643 variable expand_string_forcedfail, which is TRUE in the latter case.
2645 The skipping flag is set true when expanding a substring that isn't actually
2646 going to be used (after "if" or "lookup") and it prevents lookups from
2647 happening lower down.
2649 Store usage: At start, a store block of the length of the input plus 64
2650 is obtained. This is expanded as necessary by string_cat(), which might have to
2651 get a new block, or might be able to expand the original. At the end of the
2652 function we can release any store above that portion of the yield block that
2653 was actually used. In many cases this will be optimal.
2655 However: if the first item in the expansion is a variable name or header name,
2656 we reset the store before processing it; if the result is in fresh store, we
2657 use that without copying. This is helpful for expanding strings like
2658 $message_headers which can get very long.
2661 string the string to be expanded
2662 ket_ends true if expansion is to stop at }
2663 left if not NULL, a pointer to the first character after the
2664 expansion is placed here (typically used with ket_ends)
2665 skipping TRUE for recursive calls when the value isn't actually going
2666 to be used (to allow for optimisation)
2668 Returns: NULL if expansion fails:
2669 expand_string_forcedfail is set TRUE if failure was forced
2670 expand_string_message contains a textual error message
2671 a pointer to the expanded string on success
2675 expand_string_internal(uschar
*string
, BOOL ket_ends
, uschar
**left
,
2679 int size
= Ustrlen(string
)+ 64;
2681 uschar
*yield
= store_get(size
);
2683 uschar
*save_expand_nstring
[EXPAND_MAXN
+1];
2684 int save_expand_nlength
[EXPAND_MAXN
+1];
2686 expand_string_forcedfail
= FALSE
;
2687 expand_string_message
= US
"";
2694 /* \ escapes the next character, which must exist, or else
2695 the expansion fails. There's a special escape, \N, which causes
2696 copying of the subject verbatim up to the next \N. Otherwise,
2697 the escapes are the standard set. */
2703 expand_string_message
= US
"\\ at end of string";
2710 for (s
= t
; *s
!= 0; s
++) if (*s
== '\\' && s
[1] == 'N') break;
2711 yield
= string_cat(yield
, &size
, &ptr
, t
, s
- t
);
2712 if (*s
!= 0) s
+= 2;
2718 ch
[0] = string_interpret_escape(&s
);
2720 yield
= string_cat(yield
, &size
, &ptr
, ch
, 1);
2726 /* Anything other than $ is just copied verbatim, unless we are
2727 looking for a terminating } character. */
2729 if (ket_ends
&& *s
== '}') break;
2733 yield
= string_cat(yield
, &size
, &ptr
, s
++, 1);
2737 /* No { after the $ - must be a plain name or a number for string
2738 match variable. There has to be a fudge for variables that are the
2739 names of header fields preceded by "$header_" because header field
2740 names can contain any printing characters except space and colon.
2741 For those that don't like typing this much, "$h_" is a synonym for
2742 "$header_". A non-existent header yields a NULL value; nothing is
2745 if (isalpha((*(++s
))))
2750 s
= read_name(name
, sizeof(name
), s
, US
"_");
2752 /* If this is the first thing to be expanded, release the pre-allocated
2755 if (ptr
== 0 && yield
!= NULL
)
2764 if (Ustrncmp(name
, "h_", 2) == 0 ||
2765 Ustrncmp(name
, "rh_", 3) == 0 ||
2766 Ustrncmp(name
, "bh_", 3) == 0 ||
2767 Ustrncmp(name
, "header_", 7) == 0 ||
2768 Ustrncmp(name
, "rheader_", 8) == 0 ||
2769 Ustrncmp(name
, "bheader_", 8) == 0)
2771 BOOL want_raw
= (name
[0] == 'r')? TRUE
: FALSE
;
2772 uschar
*charset
= (name
[0] == 'b')? NULL
: headers_charset
;
2773 s
= read_header_name(name
, sizeof(name
), s
);
2774 value
= find_header(name
, FALSE
, &newsize
, want_raw
, charset
);
2776 /* If we didn't find the header, and the header contains a closing brace
2777 characters, this may be a user error where the terminating colon
2778 has been omitted. Set a flag to adjust the error message in this case.
2779 But there is no error here - nothing gets inserted. */
2783 if (Ustrchr(name
, '}') != NULL
) malformed_header
= TRUE
;
2792 value
= find_variable(name
, FALSE
, skipping
, &newsize
);
2795 expand_string_message
=
2796 string_sprintf("unknown variable name \"%s\"", name
);
2801 /* If the data is known to be in a new buffer, newsize will be set to the
2802 size of that buffer. If this is the first thing in an expansion string,
2803 yield will be NULL; just point it at the new store instead of copying. Many
2804 expansion strings contain just one reference, so this is a useful
2805 optimization, especially for humungous headers. */
2807 len
= Ustrlen(value
);
2808 if (yield
== NULL
&& newsize
!= 0)
2814 else yield
= string_cat(yield
, &size
, &ptr
, value
, len
);
2822 s
= read_number(&n
, s
);
2823 if (n
>= 0 && n
<= expand_nmax
)
2824 yield
= string_cat(yield
, &size
, &ptr
, expand_nstring
[n
],
2829 /* Otherwise, if there's no '{' after $ it's an error. */
2833 expand_string_message
= US
"$ not followed by letter, digit, or {";
2837 /* After { there can be various things, but they all start with
2838 an initial word, except for a number for a string match variable. */
2840 if (isdigit((*(++s
))))
2843 s
= read_number(&n
, s
);
2846 expand_string_message
= US
"} expected after number";
2849 if (n
>= 0 && n
<= expand_nmax
)
2850 yield
= string_cat(yield
, &size
, &ptr
, expand_nstring
[n
],
2857 expand_string_message
= US
"letter or digit expected after ${";
2861 /* Allow "-" in names to cater for substrings with negative
2862 arguments. Since we are checking for known names after { this is
2865 s
= read_name(name
, sizeof(name
), s
, US
"_-");
2866 item_type
= chop_match(name
, item_table
, sizeof(item_table
)/sizeof(uschar
*));
2870 /* Handle conditionals - preserve the values of the numerical expansion
2871 variables in case they get changed by a regular expression match in the
2872 condition. If not, they retain their external settings. At the end
2873 of this "if" section, they get restored to their previous values. */
2879 int save_expand_nmax
=
2880 save_expand_strings(save_expand_nstring
, save_expand_nlength
);
2882 while (isspace(*s
)) s
++;
2883 next_s
= eval_condition(s
, skipping
? NULL
: &cond
);
2884 if (next_s
== NULL
) goto EXPAND_FAILED
; /* message already set */
2887 debug_printf("condition: %.*s\n result: %s\n", (int)(next_s
- s
), s
,
2888 cond
? "true" : "false");
2892 /* The handling of "yes" and "no" result strings is now in a separate
2893 function that is also used by ${lookup} and ${extract} and ${run}. */
2895 switch(process_yesno(
2896 skipping
, /* were previously skipping */
2897 cond
, /* success/failure indicator */
2898 lookup_value
, /* value to reset for string2 */
2899 &s
, /* input pointer */
2900 &yield
, /* output pointer */
2901 &size
, /* output size */
2902 &ptr
, /* output current point */
2903 US
"if")) /* condition type */
2905 case 1: goto EXPAND_FAILED
; /* when all is well, the */
2906 case 2: goto EXPAND_FAILED_CURLY
; /* returned value is 0 */
2909 /* Restore external setting of expansion variables for continuation
2912 restore_expand_strings(save_expand_nmax
, save_expand_nstring
,
2913 save_expand_nlength
);
2917 /* Handle database lookups unless locked out. If "skipping" is TRUE, we are
2918 expanding an internal string that isn't actually going to be used. All we
2919 need to do is check the syntax, so don't do a lookup at all. Preserve the
2920 values of the numerical expansion variables in case they get changed by a
2921 partial lookup. If not, they retain their external settings. At the end
2922 of this "lookup" section, they get restored to their previous values. */
2926 int stype
, partial
, affixlen
, starflags
;
2927 int expand_setup
= 0;
2929 uschar
*key
, *filename
, *affix
;
2930 uschar
*save_lookup_value
= lookup_value
;
2931 int save_expand_nmax
=
2932 save_expand_strings(save_expand_nstring
, save_expand_nlength
);
2934 if ((expand_forbid
& RDO_LOOKUP
) != 0)
2936 expand_string_message
= US
"lookup expansions are not permitted";
2940 /* Get the key we are to look up for single-key+file style lookups.
2941 Otherwise set the key NULL pro-tem. */
2943 while (isspace(*s
)) s
++;
2946 key
= expand_string_internal(s
+1, TRUE
, &s
, skipping
);
2947 if (key
== NULL
) goto EXPAND_FAILED
;
2948 if (*s
++ != '}') goto EXPAND_FAILED_CURLY
;
2949 while (isspace(*s
)) s
++;
2953 /* Find out the type of database */
2957 expand_string_message
= US
"missing lookup type";
2961 /* The type is a string that may contain special characters of various
2962 kinds. Allow everything except space or { to appear; the actual content
2963 is checked by search_findtype_partial. */
2965 while (*s
!= 0 && *s
!= '{' && !isspace(*s
))
2967 if (nameptr
< sizeof(name
) - 1) name
[nameptr
++] = *s
;
2971 while (isspace(*s
)) s
++;
2973 /* Now check for the individual search type and any partial or default
2974 options. Only those types that are actually in the binary are valid. */
2976 stype
= search_findtype_partial(name
, &partial
, &affix
, &affixlen
,
2980 expand_string_message
= search_error_message
;
2984 /* Check that a key was provided for those lookup types that need it,
2985 and was not supplied for those that use the query style. */
2987 if (!mac_islookup(stype
, lookup_querystyle
))
2991 expand_string_message
= string_sprintf("missing {key} for single-"
2992 "key \"%s\" lookup", name
);
3000 expand_string_message
= string_sprintf("a single key was given for "
3001 "lookup type \"%s\", which is not a single-key lookup type", name
);
3006 /* Get the next string in brackets and expand it. It is the file name for
3007 single-key+file lookups, and the whole query otherwise. */
3009 if (*s
!= '{') goto EXPAND_FAILED_CURLY
;
3010 filename
= expand_string_internal(s
+1, TRUE
, &s
, skipping
);
3011 if (filename
== NULL
) goto EXPAND_FAILED
;
3012 if (*s
++ != '}') goto EXPAND_FAILED_CURLY
;
3013 while (isspace(*s
)) s
++;
3015 /* If this isn't a single-key+file lookup, re-arrange the variables
3016 to be appropriate for the search_ functions. */
3024 /* If skipping, don't do the next bit - just lookup_value == NULL, as if
3025 the entry was not found. Note that there is no search_close() function.
3026 Files are left open in case of re-use. At suitable places in higher logic,
3027 search_tidyup() is called to tidy all open files. This can save opening
3028 the same file several times. However, files may also get closed when
3029 others are opened, if too many are open at once. The rule is that a
3030 handle should not be used after a second search_open().
3032 Request that a partial search sets up $1 and maybe $2 by passing
3033 expand_setup containing zero. If its value changes, reset expand_nmax,
3034 since new variables will have been set. Note that at the end of this
3035 "lookup" section, the old numeric variables are restored. */
3038 lookup_value
= NULL
;
3041 void *handle
= search_open(filename
, stype
, 0, NULL
, NULL
);
3044 expand_string_message
= search_error_message
;
3047 lookup_value
= search_find(handle
, filename
, key
, partial
, affix
,
3048 affixlen
, starflags
, &expand_setup
);
3049 if (search_find_defer
)
3051 expand_string_message
=
3052 string_sprintf("lookup of \"%s\" gave DEFER: %s", key
,
3053 search_error_message
);
3056 if (expand_setup
> 0) expand_nmax
= expand_setup
;
3059 /* The handling of "yes" and "no" result strings is now in a separate
3060 function that is also used by ${if} and ${extract}. */
3062 switch(process_yesno(
3063 skipping
, /* were previously skipping */
3064 lookup_value
!= NULL
, /* success/failure indicator */
3065 save_lookup_value
, /* value to reset for string2 */
3066 &s
, /* input pointer */
3067 &yield
, /* output pointer */
3068 &size
, /* output size */
3069 &ptr
, /* output current point */
3070 US
"lookup")) /* condition type */
3072 case 1: goto EXPAND_FAILED
; /* when all is well, the */
3073 case 2: goto EXPAND_FAILED_CURLY
; /* returned value is 0 */
3076 /* Restore external setting of expansion variables for carrying on
3077 at this level, and continue. */
3079 restore_expand_strings(save_expand_nmax
, save_expand_nstring
,
3080 save_expand_nlength
);
3084 /* If Perl support is configured, handle calling embedded perl subroutines,
3085 unless locked out at this time. Syntax is ${perl{sub}} or ${perl{sub}{arg}}
3086 or ${perl{sub}{arg1}{arg2}} or up to a maximum of EXIM_PERL_MAX_ARGS
3087 arguments (defined below). */
3089 #define EXIM_PERL_MAX_ARGS 8
3093 expand_string_message
= US
"\"${perl\" encountered, but this facility "
3094 "is not included in this binary";
3097 #else /* EXIM_PERL */
3099 uschar
*sub_arg
[EXIM_PERL_MAX_ARGS
+ 2];
3102 if ((expand_forbid
& RDO_PERL
) != 0)
3104 expand_string_message
= US
"Perl calls are not permitted";
3108 switch(read_subs(sub_arg
, EXIM_PERL_MAX_ARGS
+ 1, 1, &s
, skipping
, TRUE
,
3111 case 1: goto EXPAND_FAILED_CURLY
;
3113 case 3: goto EXPAND_FAILED
;
3116 /* If skipping, we don't actually do anything */
3118 if (skipping
) continue;
3120 /* Start the interpreter if necessary */
3122 if (!opt_perl_started
)
3125 if (opt_perl_startup
== NULL
)
3127 expand_string_message
= US
"A setting of perl_startup is needed when "
3128 "using the Perl interpreter";
3131 DEBUG(D_any
) debug_printf("Starting Perl interpreter\n");
3132 initerror
= init_perl(opt_perl_startup
);
3133 if (initerror
!= NULL
)
3135 expand_string_message
=
3136 string_sprintf("error in perl_startup code: %s\n", initerror
);
3139 opt_perl_started
= TRUE
;
3142 /* Call the function */
3144 sub_arg
[EXIM_PERL_MAX_ARGS
+ 1] = NULL
;
3145 new_yield
= call_perl_cat(yield
, &size
, &ptr
, &expand_string_message
,
3146 sub_arg
[0], sub_arg
+ 1);
3148 /* NULL yield indicates failure; if the message pointer has been set to
3149 NULL, the yield was undef, indicating a forced failure. Otherwise the
3150 message will indicate some kind of Perl error. */
3152 if (new_yield
== NULL
)
3154 if (expand_string_message
== NULL
)
3156 expand_string_message
=
3157 string_sprintf("Perl subroutine \"%s\" returned undef to force "
3158 "failure", sub_arg
[0]);
3159 expand_string_forcedfail
= TRUE
;
3164 /* Yield succeeded. Ensure forcedfail is unset, just in case it got
3165 set during a callback from Perl. */
3167 expand_string_forcedfail
= FALSE
;
3171 #endif /* EXIM_PERL */
3173 /* Transform email address to "prvs" scheme to use
3174 as BATV-signed return path */
3181 switch(read_subs(sub_arg
, 3, 2, &s
, skipping
, TRUE
, US
"prvs"))
3183 case 1: goto EXPAND_FAILED_CURLY
;
3185 case 3: goto EXPAND_FAILED
;
3188 /* If skipping, we don't actually do anything */
3189 if (skipping
) continue;
3191 /* sub_arg[0] is the address */
3192 domain
= Ustrrchr(sub_arg
[0],'@');
3193 if ( (domain
== NULL
) || (domain
== sub_arg
[0]) || (Ustrlen(domain
) == 1) )
3195 expand_string_message
= US
"first parameter must be a qualified email address";
3199 /* Calculate the hash */
3200 p
= prvs_hmac_sha1(sub_arg
[0],sub_arg
[1],sub_arg
[2],prvs_daystamp(7));
3203 expand_string_message
= US
"hmac-sha1 conversion failed";
3207 /* Now separate the domain from the local part */
3210 yield
= string_cat(yield
,&size
,&ptr
,US
"prvs=",5);
3211 string_cat(yield
,&size
,&ptr
,sub_arg
[0],Ustrlen(sub_arg
[0]));
3212 string_cat(yield
,&size
,&ptr
,US
"/",1);
3213 string_cat(yield
,&size
,&ptr
,(sub_arg
[2] != NULL
) ? sub_arg
[2] : US
"0", 1);
3214 string_cat(yield
,&size
,&ptr
,prvs_daystamp(7),3);
3215 string_cat(yield
,&size
,&ptr
,p
,6);
3216 string_cat(yield
,&size
,&ptr
,US
"@",1);
3217 string_cat(yield
,&size
,&ptr
,domain
,Ustrlen(domain
));
3222 /* Check a prvs-encoded address for validity */
3224 case EITEM_PRVSCHECK
:
3227 int mysize
= 0, myptr
= 0;
3230 /* Ugliness: We want to expand parameter 1 first, then set
3231 up expansion variables that are used in the expansion of
3232 parameter 2. So we clone the string for the first
3233 expansion, where we only expand paramter 1. */
3234 uschar
*s_backup
= string_copy(s
);
3236 /* Reset expansion variables */
3237 prvscheck_result
= NULL
;
3238 prvscheck_address
= NULL
;
3239 prvscheck_keynum
= NULL
;
3241 switch(read_subs(sub_arg
, 1, 1, &s_backup
, skipping
, FALSE
, US
"prvs"))
3243 case 1: goto EXPAND_FAILED_CURLY
;
3245 case 3: goto EXPAND_FAILED
;
3248 re
= regex_must_compile(US
"^prvs\\=(.+)\\/([0-9])([0-9]{3})([A-F0-9]{6})\\@(.+)$",
3251 if (regex_match_and_setup(re
,sub_arg
[0],0,-1)) {
3252 uschar
*local_part
= string_copyn(expand_nstring
[1],expand_nlength
[1]);
3253 uschar
*key_num
= string_copyn(expand_nstring
[2],expand_nlength
[2]);
3254 uschar
*daystamp
= string_copyn(expand_nstring
[3],expand_nlength
[3]);
3255 uschar
*hash
= string_copyn(expand_nstring
[4],expand_nlength
[4]);
3256 uschar
*domain
= string_copyn(expand_nstring
[5],expand_nlength
[5]);
3258 DEBUG(D_expand
) debug_printf("prvscheck localpart: %s\n", local_part
);
3259 DEBUG(D_expand
) debug_printf("prvscheck key number: %s\n", key_num
);
3260 DEBUG(D_expand
) debug_printf("prvscheck daystamp: %s\n", daystamp
);
3261 DEBUG(D_expand
) debug_printf("prvscheck hash: %s\n", hash
);
3262 DEBUG(D_expand
) debug_printf("prvscheck domain: %s\n", domain
);
3264 /* Set up expansion variables */
3265 prvscheck_address
= string_cat(NULL
, &mysize
, &myptr
, local_part
, Ustrlen(local_part
));
3266 string_cat(prvscheck_address
,&mysize
,&myptr
,"@",1);
3267 string_cat(prvscheck_address
,&mysize
,&myptr
,domain
,Ustrlen(domain
));
3268 prvscheck_address
[myptr
] = '\0';
3269 prvscheck_keynum
= string_copy(key_num
);
3271 /* Now re-expand all arguments in the usual manner */
3272 switch(read_subs(sub_arg
, 3, 3, &s
, skipping
, TRUE
, US
"prvs"))
3274 case 1: goto EXPAND_FAILED_CURLY
;
3276 case 3: goto EXPAND_FAILED
;
3279 if (*sub_arg
[2] == '\0')
3280 yield
= string_cat(yield
,&size
,&ptr
,prvscheck_address
,Ustrlen(prvscheck_address
));
3282 yield
= string_cat(yield
,&size
,&ptr
,sub_arg
[2],Ustrlen(sub_arg
[2]));
3284 /* Now we have the key and can check the address. */
3285 p
= prvs_hmac_sha1(prvscheck_address
, sub_arg
[1], prvscheck_keynum
, daystamp
);
3288 expand_string_message
= US
"hmac-sha1 conversion failed";
3292 DEBUG(D_expand
) debug_printf("prvscheck: received hash is %s\n", hash
);
3293 DEBUG(D_expand
) debug_printf("prvscheck: own hash is %s\n", p
);
3294 if (Ustrcmp(p
,hash
) == 0)
3296 /* Success, valid BATV address. Now check the expiry date. */
3297 uschar
*now
= prvs_daystamp(0);
3298 unsigned int inow
= 0,iexpire
= 1;
3300 sscanf(now
,"%u",&inow
);
3301 sscanf(daystamp
,"%u",&iexpire
);
3303 /* When "iexpire" is < 7, a "flip" has occured.
3304 Adjust "inow" accordingly. */
3305 if ( (iexpire
< 7) && (inow
>= 993) ) inow
= 0;
3309 prvscheck_result
= US
"1";
3310 DEBUG(D_expand
) debug_printf("prvscheck: success, $pvrs_result set to 1\n");
3314 prvscheck_result
= NULL
;
3315 DEBUG(D_expand
) debug_printf("prvscheck: signature expired, $pvrs_result unset\n");
3320 prvscheck_result
= NULL
;
3321 DEBUG(D_expand
) debug_printf("prvscheck: hash failure, $pvrs_result unset\n");
3326 /* Does not look like a prvs encoded address, return the empty string.
3327 We need to make sure all subs are expanded first. */
3328 switch(read_subs(sub_arg
, 3, 3, &s
, skipping
, TRUE
, US
"prvs"))
3330 case 1: goto EXPAND_FAILED_CURLY
;
3332 case 3: goto EXPAND_FAILED
;
3339 /* Handle "readfile" to insert an entire file */
3341 case EITEM_READFILE
:
3346 if ((expand_forbid
& RDO_READFILE
) != 0)
3348 expand_string_message
= US
"file insertions are not permitted";
3352 switch(read_subs(sub_arg
, 2, 1, &s
, skipping
, TRUE
, US
"readfile"))
3354 case 1: goto EXPAND_FAILED_CURLY
;
3356 case 3: goto EXPAND_FAILED
;
3359 /* If skipping, we don't actually do anything */
3361 if (skipping
) continue;
3363 /* Open the file and read it */
3365 f
= Ufopen(sub_arg
[0], "rb");
3368 expand_string_message
= string_open_failed(errno
, "%s", sub_arg
[0]);
3372 yield
= cat_file(f
, yield
, &size
, &ptr
, sub_arg
[1]);
3377 /* Handle "readsocket" to insert data from a Unix domain socket */
3379 case EITEM_READSOCK
:
3385 struct sockaddr_un sockun
; /* don't call this "sun" ! */
3389 if ((expand_forbid
& RDO_READSOCK
) != 0)
3391 expand_string_message
= US
"socket insertions are not permitted";
3395 /* Read up to 4 arguments, but don't do the end of item check afterwards,
3396 because there may be a string for expansion on failure. */
3398 switch(read_subs(sub_arg
, 4, 2, &s
, skipping
, FALSE
, US
"readsocket"))
3400 case 1: goto EXPAND_FAILED_CURLY
;
3401 case 2: /* Won't occur: no end check */
3402 case 3: goto EXPAND_FAILED
;
3405 /* Sort out timeout, if given */
3407 if (sub_arg
[2] != NULL
)
3409 timeout
= readconf_readtime(sub_arg
[2], 0, FALSE
);
3412 expand_string_message
= string_sprintf("bad time value %s",
3417 else sub_arg
[3] = NULL
; /* No eol if no timeout */
3419 /* If skipping, we don't actually do anything */
3423 /* Make a connection to the socket */
3425 if ((fd
= socket(PF_UNIX
, SOCK_STREAM
, 0)) == -1)
3427 expand_string_message
= string_sprintf("failed to create socket: %s",
3432 sockun
.sun_family
= AF_UNIX
;
3433 sprintf(sockun
.sun_path
, "%.*s", (int)(sizeof(sockun
.sun_path
)-1),
3435 if(connect(fd
, (struct sockaddr
*)(&sockun
), sizeof(sockun
)) == -1)
3437 expand_string_message
= string_sprintf("failed to connect to socket "
3438 "%s: %s", sub_arg
[0], strerror(errno
));
3441 DEBUG(D_expand
) debug_printf("connected to socket %s\n", sub_arg
[0]);
3443 /* Write the request string, if not empty */
3445 if (sub_arg
[1][0] != 0)
3447 int len
= Ustrlen(sub_arg
[1]);
3448 DEBUG(D_expand
) debug_printf("writing \"%s\" to socket\n",
3450 if (write(fd
, sub_arg
[1], len
) != len
)
3452 expand_string_message
= string_sprintf("request write to socket "
3453 "failed: %s", strerror(errno
));
3458 /* Now we need to read from the socket, under a timeout. The function
3459 that reads a file can be used. */
3461 f
= fdopen(fd
, "rb");
3462 sigalrm_seen
= FALSE
;
3464 yield
= cat_file(f
, yield
, &size
, &ptr
, sub_arg
[3]);
3468 /* After a timeout, we restore the pointer in the result, that is,
3469 make sure we add nothing from the socket. */
3474 expand_string_message
= US
"socket read timed out";
3479 /* The whole thing has worked (or we were skipping). If there is a
3480 failure string following, we need to skip it. */
3484 if (expand_string_internal(s
+1, TRUE
, &s
, TRUE
) == NULL
)
3486 if (*s
++ != '}') goto EXPAND_FAILED_CURLY
;
3487 while (isspace(*s
)) s
++;
3489 if (*s
++ != '}') goto EXPAND_FAILED_CURLY
;
3492 /* Come here on failure to create socket, connect socket, write to the
3493 socket, or timeout on reading. If another substring follows, expand and
3494 use it. Otherwise, those conditions give expand errors. */
3497 if (*s
!= '{') goto EXPAND_FAILED
;
3498 DEBUG(D_any
) debug_printf("%s\n", expand_string_message
);
3499 arg
= expand_string_internal(s
+1, TRUE
, &s
, FALSE
);
3500 if (arg
== NULL
) goto EXPAND_FAILED
;
3501 yield
= string_cat(yield
, &size
, &ptr
, arg
, Ustrlen(arg
));
3502 if (*s
++ != '}') goto EXPAND_FAILED_CURLY
;
3503 while (isspace(*s
)) s
++;
3504 if (*s
++ != '}') goto EXPAND_FAILED_CURLY
;
3508 /* Handle "run" to execute a program. */
3520 if ((expand_forbid
& RDO_RUN
) != 0)
3522 expand_string_message
= US
"running a command is not permitted";
3526 while (isspace(*s
)) s
++;
3527 if (*s
!= '{') goto EXPAND_FAILED_CURLY
;
3528 arg
= expand_string_internal(s
+1, TRUE
, &s
, skipping
);
3529 if (arg
== NULL
) goto EXPAND_FAILED
;
3530 while (isspace(*s
)) s
++;
3531 if (*s
++ != '}') goto EXPAND_FAILED_CURLY
;
3533 if (skipping
) /* Just pretend it worked when we're skipping */
3539 if (!transport_set_up_command(&argv
, /* anchor for arg list */
3540 arg
, /* raw command */
3541 FALSE
, /* don't expand the arguments */
3542 0, /* not relevant when... */
3543 NULL
, /* no transporting address */
3544 US
"${run} expansion", /* for error messages */
3545 &expand_string_message
)) /* where to put error message */
3550 /* Create the child process, making it a group leader. */
3552 pid
= child_open(argv
, NULL
, 0077, &fd_in
, &fd_out
, TRUE
);
3556 expand_string_message
=
3557 string_sprintf("couldn't create child process: %s", strerror(errno
));
3561 /* Nothing is written to the standard input. */
3565 /* Wait for the process to finish, applying the timeout, and inspect its
3566 return code for serious disasters. Simple non-zero returns are passed on.
3569 if ((runrc
= child_close(pid
, 60)) < 0)
3573 expand_string_message
= string_sprintf("command timed out");
3574 killpg(pid
, SIGKILL
); /* Kill the whole process group */
3577 else if (runrc
== -257)
3578 expand_string_message
= string_sprintf("wait() failed: %s",
3582 expand_string_message
= string_sprintf("command killed by signal %d",
3588 /* Read the pipe to get the command's output into $value (which is kept
3589 in lookup_value). */
3591 f
= fdopen(fd_out
, "rb");
3592 lookup_value
= NULL
;
3593 lookup_value
= cat_file(f
, lookup_value
, &lsize
, &lptr
, NULL
);
3597 /* Process the yes/no strings; $value may be useful in both cases */
3599 switch(process_yesno(
3600 skipping
, /* were previously skipping */
3601 runrc
== 0, /* success/failure indicator */
3602 lookup_value
, /* value to reset for string2 */
3603 &s
, /* input pointer */
3604 &yield
, /* output pointer */
3605 &size
, /* output size */
3606 &ptr
, /* output current point */
3607 US
"run")) /* condition type */
3609 case 1: goto EXPAND_FAILED
; /* when all is well, the */
3610 case 2: goto EXPAND_FAILED_CURLY
; /* returned value is 0 */
3616 /* Handle character translation for "tr" */
3624 switch(read_subs(sub
, 3, 3, &s
, skipping
, TRUE
, US
"tr"))
3626 case 1: goto EXPAND_FAILED_CURLY
;
3628 case 3: goto EXPAND_FAILED
;
3631 yield
= string_cat(yield
, &size
, &ptr
, sub
[0], Ustrlen(sub
[0]));
3632 o2m
= Ustrlen(sub
[2]) - 1;
3634 if (o2m
>= 0) for (; oldptr
< ptr
; oldptr
++)
3636 uschar
*m
= Ustrrchr(sub
[1], yield
[oldptr
]);
3640 yield
[oldptr
] = sub
[2][(o
< o2m
)? o
: o2m
];
3647 /* Handle "hash", "length", "nhash", and "substr" when they are given with
3648 expanded arguments. */
3658 int val
[2] = { 0, -1 };
3661 /* "length" takes only 2 arguments whereas the others take 2 or 3.
3662 Ensure that sub[2] is set in the ${length case. */
3665 switch(read_subs(sub
, (item_type
== EITEM_LENGTH
)? 2:3, 2, &s
, skipping
,
3668 case 1: goto EXPAND_FAILED_CURLY
;
3670 case 3: goto EXPAND_FAILED
;
3673 /* Juggle the arguments if there are only two of them: always move the
3674 string to the last position and make ${length{n}{str}} equivalent to
3675 ${substr{0}{n}{str}}. See the defaults for val[] above. */
3681 if (item_type
== EITEM_LENGTH
)
3688 for (i
= 0; i
< 2; i
++)
3690 if (sub
[i
] == NULL
) continue;
3691 val
[i
] = (int)Ustrtol(sub
[i
], &ret
, 10);
3692 if (*ret
!= 0 || (i
!= 0 && val
[i
] < 0))
3694 expand_string_message
= string_sprintf("\"%s\" is not a%s number "
3695 "(in \"%s\" expansion)", sub
[i
], (i
!= 0)? " positive" : "", name
);
3701 (item_type
== EITEM_HASH
)?
3702 compute_hash(sub
[2], val
[0], val
[1], &len
) :
3703 (item_type
== EITEM_NHASH
)?
3704 compute_nhash(sub
[2], val
[0], val
[1], &len
) :
3705 extract_substr(sub
[2], val
[0], val
[1], &len
);
3707 if (ret
== NULL
) goto EXPAND_FAILED
;
3708 yield
= string_cat(yield
, &size
, &ptr
, ret
, len
);
3712 /* Handle HMAC computation: ${hmac{<algorithm>}{<secret>}{<text>}}
3713 This code originally contributed by Steve Haslam. It currently supports
3714 the use of MD5 and SHA-1 hashes.
3716 We need some workspace that is large enough to handle all the supported
3717 hash types. Use macros to set the sizes rather than be too elaborate. */
3719 #define MAX_HASHLEN 20
3720 #define MAX_HASHBLOCKLEN 64
3729 int hashlen
; /* Number of octets for the hash algorithm's output */
3730 int hashblocklen
; /* Number of octets the hash algorithm processes */
3732 unsigned int keylen
;
3734 uschar keyhash
[MAX_HASHLEN
];
3735 uschar innerhash
[MAX_HASHLEN
];
3736 uschar finalhash
[MAX_HASHLEN
];
3737 uschar finalhash_hex
[2*MAX_HASHLEN
];
3738 uschar innerkey
[MAX_HASHBLOCKLEN
];
3739 uschar outerkey
[MAX_HASHBLOCKLEN
];
3741 switch (read_subs(sub
, 3, 3, &s
, skipping
, TRUE
, name
))
3743 case 1: goto EXPAND_FAILED_CURLY
;
3745 case 3: goto EXPAND_FAILED
;
3748 if (Ustrcmp(sub
[0], "md5") == 0)
3751 use_base
= &md5_base
;
3755 else if (Ustrcmp(sub
[0], "sha1") == 0)
3758 use_base
= &sha1_base
;
3764 expand_string_message
=
3765 string_sprintf("hmac algorithm \"%s\" is not recognised", sub
[0]);
3770 keylen
= Ustrlen(keyptr
);
3772 /* If the key is longer than the hash block length, then hash the key
3775 if (keylen
> hashblocklen
)
3777 chash_start(type
, use_base
);
3778 chash_end(type
, use_base
, keyptr
, keylen
, keyhash
);
3783 /* Now make the inner and outer key values */
3785 memset(innerkey
, 0x36, hashblocklen
);
3786 memset(outerkey
, 0x5c, hashblocklen
);
3788 for (i
= 0; i
< keylen
; i
++)
3790 innerkey
[i
] ^= keyptr
[i
];
3791 outerkey
[i
] ^= keyptr
[i
];
3794 /* Now do the hashes */
3796 chash_start(type
, use_base
);
3797 chash_mid(type
, use_base
, innerkey
);
3798 chash_end(type
, use_base
, sub
[2], Ustrlen(sub
[2]), innerhash
);
3800 chash_start(type
, use_base
);
3801 chash_mid(type
, use_base
, outerkey
);
3802 chash_end(type
, use_base
, innerhash
, hashlen
, finalhash
);
3804 /* Encode the final hash as a hex string */
3807 for (i
= 0; i
< hashlen
; i
++)
3809 *p
++ = hex_digits
[(finalhash
[i
] & 0xf0) >> 4];
3810 *p
++ = hex_digits
[finalhash
[i
] & 0x0f];
3813 DEBUG(D_any
) debug_printf("HMAC[%s](%.*s,%.*s)=%.*s\n", sub
[0],
3814 (int)keylen
, keyptr
, Ustrlen(sub
[2]), sub
[2], hashlen
*2, finalhash_hex
);
3816 yield
= string_cat(yield
, &size
, &ptr
, finalhash_hex
, hashlen
*2);
3821 /* Handle global substitution for "sg" - like Perl's s/xxx/yyy/g operator.
3822 We have to save the numerical variables and restore them afterwards. */
3827 int moffset
, moffsetextra
, slen
;
3830 const uschar
*rerror
;
3833 int save_expand_nmax
=
3834 save_expand_strings(save_expand_nstring
, save_expand_nlength
);
3836 switch(read_subs(sub
, 3, 3, &s
, skipping
, TRUE
, US
"sg"))
3838 case 1: goto EXPAND_FAILED_CURLY
;
3840 case 3: goto EXPAND_FAILED
;
3843 /* Compile the regular expression */
3845 re
= pcre_compile(CS sub
[1], PCRE_COPT
, (const char **)&rerror
, &roffset
,
3850 expand_string_message
= string_sprintf("regular expression error in "
3851 "\"%s\": %s at offset %d", sub
[1], rerror
, roffset
);
3855 /* Now run a loop to do the substitutions as often as necessary. It ends
3856 when there are no more matches. Take care over matches of the null string;
3857 do the same thing as Perl does. */
3860 slen
= Ustrlen(sub
[0]);
3861 moffset
= moffsetextra
= 0;
3866 int ovector
[3*(EXPAND_MAXN
+1)];
3867 int n
= pcre_exec(re
, NULL
, CS subject
, slen
, moffset
+ moffsetextra
,
3868 PCRE_EOPT
| emptyopt
, ovector
, sizeof(ovector
)/sizeof(int));
3872 /* No match - if we previously set PCRE_NOTEMPTY after a null match, this
3873 is not necessarily the end. We want to repeat the match from one
3874 character further along, but leaving the basic offset the same (for
3875 copying below). We can't be at the end of the string - that was checked
3876 before setting PCRE_NOTEMPTY. If PCRE_NOTEMPTY is not set, we are
3877 finished; copy the remaining string and end the loop. */
3887 yield
= string_cat(yield
, &size
, &ptr
, subject
+moffset
, slen
-moffset
);
3891 /* Match - set up for expanding the replacement. */
3893 if (n
== 0) n
= EXPAND_MAXN
+ 1;
3895 for (nn
= 0; nn
< n
*2; nn
+= 2)