Added acl_not_smtp_mime. This involved a bit of refactoring of the
[exim.git] / src / src / readconf.c
1 /* $Cambridge: exim/src/src/readconf.c,v 1.6 2005/04/04 10:33:49 ph10 Exp $ */
2
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
6
7 /* Copyright (c) University of Cambridge 1995 - 2005 */
8 /* See the file NOTICE for conditions of use and distribution. */
9
10 /* Functions for reading the configuration file, and for displaying
11 overall configuration values. Thanks to Brian Candler for the original
12 implementation of the conditional .ifdef etc. */
13
14 #include "exim.h"
15
16 #define CSTATE_STACK_SIZE 10
17
18
19 /* Structure for chain (stack) of .included files */
20
21 typedef struct config_file_item {
22 struct config_file_item *next;
23 uschar *filename;
24 FILE *file;
25 int lineno;
26 } config_file_item;
27
28 /* Structure of table of conditional words and their state transitions */
29
30 typedef struct cond_item {
31 uschar *name;
32 int namelen;
33 int action1;
34 int action2;
35 int pushpop;
36 } cond_item;
37
38 /* Structure of table of syslog facility names and values */
39
40 typedef struct syslog_fac_item {
41 uschar *name;
42 int value;
43 } syslog_fac_item;
44
45
46 /* Static variables */
47
48 static config_file_item *config_file_stack = NULL; /* For includes */
49
50 static uschar *syslog_facility_str = NULL;
51 static uschar next_section[24];
52 static uschar time_buffer[24];
53
54 /* State variables for conditional loading (.ifdef / .else / .endif) */
55
56 static int cstate = 0;
57 static int cstate_stack_ptr = -1;
58 static int cstate_stack[CSTATE_STACK_SIZE];
59
60 /* Table of state transitions for handling conditional inclusions. There are
61 four possible state transitions:
62
63 .ifdef true
64 .ifdef false
65 .elifdef true (or .else)
66 .elifdef false
67
68 .endif just causes the previous cstate to be popped off the stack */
69
70 static int next_cstate[3][4] =
71 {
72 /* State 0: reading from file, or reading until next .else or .endif */
73 { 0, 1, 2, 2 },
74 /* State 1: condition failed, skipping until next .else or .endif */
75 { 2, 2, 0, 1 },
76 /* State 2: skipping until .endif */
77 { 2, 2, 2, 2 },
78 };
79
80 /* Table of conditionals and the states to set. For each name, there are four
81 values: the length of the name (to save computing it each time), the state to
82 set if a macro was found in the line, the state to set if a macro was not found
83 in the line, and a stack manipulation setting which is:
84
85 -1 pull state value off the stack
86 0 don't alter the stack
87 +1 push value onto stack, before setting new state
88 */
89
90 static cond_item cond_list[] = {
91 { US"ifdef", 5, 0, 1, 1 },
92 { US"ifndef", 6, 1, 0, 1 },
93 { US"elifdef", 7, 2, 3, 0 },
94 { US"elifndef", 8, 3, 2, 0 },
95 { US"else", 4, 2, 2, 0 },
96 { US"endif", 5, 0, 0, -1 }
97 };
98
99 static int cond_list_size = sizeof(cond_list)/sizeof(cond_item);
100
101 /* Table of syslog facility names and their values */
102
103 static syslog_fac_item syslog_list[] = {
104 { US"mail", LOG_MAIL },
105 { US"user", LOG_USER },
106 { US"news", LOG_NEWS },
107 { US"uucp", LOG_UUCP },
108 { US"local0", LOG_LOCAL0 },
109 { US"local1", LOG_LOCAL1 },
110 { US"local2", LOG_LOCAL2 },
111 { US"local3", LOG_LOCAL3 },
112 { US"local4", LOG_LOCAL4 },
113 { US"local5", LOG_LOCAL5 },
114 { US"local6", LOG_LOCAL6 },
115 { US"local7", LOG_LOCAL7 },
116 { US"daemon", LOG_DAEMON }
117 };
118
119 static int syslog_list_size = sizeof(syslog_list)/sizeof(syslog_fac_item);
120
121
122
123
124 /*************************************************
125 * Main configuration options *
126 *************************************************/
127
128 /* The list of options that can be set in the main configuration file. This
129 must be in alphabetic order because it is searched by binary chop. */
130
131 static optionlist optionlist_config[] = {
132 { "*set_exim_group", opt_bool|opt_hidden, &exim_gid_set },
133 { "*set_exim_user", opt_bool|opt_hidden, &exim_uid_set },
134 { "*set_system_filter_group", opt_bool|opt_hidden, &system_filter_gid_set },
135 { "*set_system_filter_user", opt_bool|opt_hidden, &system_filter_uid_set },
136 { "accept_8bitmime", opt_bool, &accept_8bitmime },
137 { "acl_not_smtp", opt_stringptr, &acl_not_smtp },
138 #ifdef WITH_CONTENT_SCAN
139 { "acl_not_smtp_mime", opt_stringptr, &acl_not_smtp_mime },
140 #endif
141 { "acl_smtp_auth", opt_stringptr, &acl_smtp_auth },
142 { "acl_smtp_connect", opt_stringptr, &acl_smtp_connect },
143 { "acl_smtp_data", opt_stringptr, &acl_smtp_data },
144 { "acl_smtp_etrn", opt_stringptr, &acl_smtp_etrn },
145 { "acl_smtp_expn", opt_stringptr, &acl_smtp_expn },
146 { "acl_smtp_helo", opt_stringptr, &acl_smtp_helo },
147 { "acl_smtp_mail", opt_stringptr, &acl_smtp_mail },
148 { "acl_smtp_mailauth", opt_stringptr, &acl_smtp_mailauth },
149 #ifdef WITH_CONTENT_SCAN
150 { "acl_smtp_mime", opt_stringptr, &acl_smtp_mime },
151 #endif
152 { "acl_smtp_predata", opt_stringptr, &acl_smtp_predata },
153 { "acl_smtp_quit", opt_stringptr, &acl_smtp_quit },
154 { "acl_smtp_rcpt", opt_stringptr, &acl_smtp_rcpt },
155 #ifdef SUPPORT_TLS
156 { "acl_smtp_starttls", opt_stringptr, &acl_smtp_starttls },
157 #endif
158 { "acl_smtp_vrfy", opt_stringptr, &acl_smtp_vrfy },
159 { "admin_groups", opt_gidlist, &admin_groups },
160 { "allow_domain_literals", opt_bool, &allow_domain_literals },
161 { "allow_mx_to_ip", opt_bool, &allow_mx_to_ip },
162 { "allow_utf8_domains", opt_bool, &allow_utf8_domains },
163 { "auth_advertise_hosts", opt_stringptr, &auth_advertise_hosts },
164 { "auto_thaw", opt_time, &auto_thaw },
165 #ifdef WITH_CONTENT_SCAN
166 { "av_scanner", opt_stringptr, &av_scanner },
167 #endif
168 { "bi_command", opt_stringptr, &bi_command },
169 #ifdef EXPERIMENTAL_BRIGHTMAIL
170 { "bmi_config_file", opt_stringptr, &bmi_config_file },
171 #endif
172 { "bounce_message_file", opt_stringptr, &bounce_message_file },
173 { "bounce_message_text", opt_stringptr, &bounce_message_text },
174 { "bounce_return_body", opt_bool, &bounce_return_body },
175 { "bounce_return_message", opt_bool, &bounce_return_message },
176 { "bounce_return_size_limit", opt_mkint, &bounce_return_size_limit },
177 { "bounce_sender_authentication",opt_stringptr,&bounce_sender_authentication },
178 { "callout_domain_negative_expire", opt_time, &callout_cache_domain_negative_expire },
179 { "callout_domain_positive_expire", opt_time, &callout_cache_domain_positive_expire },
180 { "callout_negative_expire", opt_time, &callout_cache_negative_expire },
181 { "callout_positive_expire", opt_time, &callout_cache_positive_expire },
182 { "callout_random_local_part",opt_stringptr, &callout_random_local_part },
183 { "check_log_inodes", opt_int, &check_log_inodes },
184 { "check_log_space", opt_Kint, &check_log_space },
185 { "check_spool_inodes", opt_int, &check_spool_inodes },
186 { "check_spool_space", opt_Kint, &check_spool_space },
187 { "daemon_smtp_port", opt_stringptr|opt_hidden, &daemon_smtp_port },
188 { "daemon_smtp_ports", opt_stringptr, &daemon_smtp_port },
189 { "delay_warning", opt_timelist, &delay_warning },
190 { "delay_warning_condition", opt_stringptr, &delay_warning_condition },
191 { "deliver_drop_privilege", opt_bool, &deliver_drop_privilege },
192 { "deliver_queue_load_max", opt_fixed, &deliver_queue_load_max },
193 { "delivery_date_remove", opt_bool, &delivery_date_remove },
194 { "dns_again_means_nonexist", opt_stringptr, &dns_again_means_nonexist },
195 { "dns_check_names_pattern", opt_stringptr, &check_dns_names_pattern },
196 { "dns_ipv4_lookup", opt_stringptr, &dns_ipv4_lookup },
197 { "dns_retrans", opt_time, &dns_retrans },
198 { "dns_retry", opt_int, &dns_retry },
199 /* This option is now a no-op, retained for compability */
200 { "drop_cr", opt_bool, &drop_cr },
201 /*********************************************************/
202 { "envelope_to_remove", opt_bool, &envelope_to_remove },
203 { "errors_copy", opt_stringptr, &errors_copy },
204 { "errors_reply_to", opt_stringptr, &errors_reply_to },
205 { "exim_group", opt_gid, &exim_gid },
206 { "exim_path", opt_stringptr, &exim_path },
207 { "exim_user", opt_uid, &exim_uid },
208 { "extra_local_interfaces", opt_stringptr, &extra_local_interfaces },
209 { "extract_addresses_remove_arguments", opt_bool, &extract_addresses_remove_arguments },
210 { "finduser_retries", opt_int, &finduser_retries },
211 { "freeze_tell", opt_stringptr, &freeze_tell },
212 { "gecos_name", opt_stringptr, &gecos_name },
213 { "gecos_pattern", opt_stringptr, &gecos_pattern },
214 { "header_line_maxsize", opt_int, &header_line_maxsize },
215 { "header_maxsize", opt_int, &header_maxsize },
216 { "headers_charset", opt_stringptr, &headers_charset },
217 { "helo_accept_junk_hosts", opt_stringptr, &helo_accept_junk_hosts },
218 { "helo_allow_chars", opt_stringptr, &helo_allow_chars },
219 { "helo_lookup_domains", opt_stringptr, &helo_lookup_domains },
220 { "helo_try_verify_hosts", opt_stringptr, &helo_try_verify_hosts },
221 { "helo_verify_hosts", opt_stringptr, &helo_verify_hosts },
222 { "hold_domains", opt_stringptr, &hold_domains },
223 { "host_lookup", opt_stringptr, &host_lookup },
224 { "host_lookup_order", opt_stringptr, &host_lookup_order },
225 { "host_reject_connection", opt_stringptr, &host_reject_connection },
226 { "hosts_connection_nolog", opt_stringptr, &hosts_connection_nolog },
227 { "hosts_treat_as_local", opt_stringptr, &hosts_treat_as_local },
228 #ifdef LOOKUP_IBASE
229 { "ibase_servers", opt_stringptr, &ibase_servers },
230 #endif
231 { "ignore_bounce_errors_after", opt_time, &ignore_bounce_errors_after },
232 { "ignore_fromline_hosts", opt_stringptr, &ignore_fromline_hosts },
233 { "ignore_fromline_local", opt_bool, &ignore_fromline_local },
234 { "keep_malformed", opt_time, &keep_malformed },
235 #ifdef LOOKUP_LDAP
236 { "ldap_default_servers", opt_stringptr, &eldap_default_servers },
237 { "ldap_version", opt_int, &eldap_version },
238 #endif
239 { "local_from_check", opt_bool, &local_from_check },
240 { "local_from_prefix", opt_stringptr, &local_from_prefix },
241 { "local_from_suffix", opt_stringptr, &local_from_suffix },
242 { "local_interfaces", opt_stringptr, &local_interfaces },
243 { "local_scan_timeout", opt_time, &local_scan_timeout },
244 { "local_sender_retain", opt_bool, &local_sender_retain },
245 { "localhost_number", opt_stringptr, &host_number_string },
246 { "log_file_path", opt_stringptr, &log_file_path },
247 { "log_selector", opt_stringptr, &log_selector_string },
248 { "log_timezone", opt_bool, &log_timezone },
249 { "lookup_open_max", opt_int, &lookup_open_max },
250 { "max_username_length", opt_int, &max_username_length },
251 { "message_body_visible", opt_mkint, &message_body_visible },
252 { "message_id_header_domain", opt_stringptr, &message_id_domain },
253 { "message_id_header_text", opt_stringptr, &message_id_text },
254 { "message_logs", opt_bool, &message_logs },
255 { "message_size_limit", opt_stringptr, &message_size_limit },
256 #ifdef SUPPORT_MOVE_FROZEN_MESSAGES
257 { "move_frozen_messages", opt_bool, &move_frozen_messages },
258 #endif
259 { "mua_wrapper", opt_bool, &mua_wrapper },
260 #ifdef LOOKUP_MYSQL
261 { "mysql_servers", opt_stringptr, &mysql_servers },
262 #endif
263 { "never_users", opt_uidlist, &never_users },
264 #ifdef LOOKUP_ORACLE
265 { "oracle_servers", opt_stringptr, &oracle_servers },
266 #endif
267 { "percent_hack_domains", opt_stringptr, &percent_hack_domains },
268 #ifdef EXIM_PERL
269 { "perl_at_start", opt_bool, &opt_perl_at_start },
270 { "perl_startup", opt_stringptr, &opt_perl_startup },
271 #endif
272 #ifdef LOOKUP_PGSQL
273 { "pgsql_servers", opt_stringptr, &pgsql_servers },
274 #endif
275 { "pid_file_path", opt_stringptr, &pid_file_path },
276 { "pipelining_advertise_hosts", opt_stringptr, &pipelining_advertise_hosts },
277 { "preserve_message_logs", opt_bool, &preserve_message_logs },
278 { "primary_hostname", opt_stringptr, &primary_hostname },
279 { "print_topbitchars", opt_bool, &print_topbitchars },
280 { "process_log_path", opt_stringptr, &process_log_path },
281 { "prod_requires_admin", opt_bool, &prod_requires_admin },
282 { "qualify_domain", opt_stringptr, &qualify_domain_sender },
283 { "qualify_recipient", opt_stringptr, &qualify_domain_recipient },
284 { "queue_domains", opt_stringptr, &queue_domains },
285 { "queue_list_requires_admin",opt_bool, &queue_list_requires_admin },
286 { "queue_only", opt_bool, &queue_only },
287 { "queue_only_file", opt_stringptr, &queue_only_file },
288 { "queue_only_load", opt_fixed, &queue_only_load },
289 { "queue_only_override", opt_bool, &queue_only_override },
290 { "queue_run_in_order", opt_bool, &queue_run_in_order },
291 { "queue_run_max", opt_int, &queue_run_max },
292 { "queue_smtp_domains", opt_stringptr, &queue_smtp_domains },
293 { "receive_timeout", opt_time, &receive_timeout },
294 { "received_header_text", opt_stringptr, &received_header_text },
295 { "received_headers_max", opt_int, &received_headers_max },
296 { "recipient_unqualified_hosts", opt_stringptr, &recipient_unqualified_hosts },
297 { "recipients_max", opt_int, &recipients_max },
298 { "recipients_max_reject", opt_bool, &recipients_max_reject },
299 { "remote_max_parallel", opt_int, &remote_max_parallel },
300 { "remote_sort_domains", opt_stringptr, &remote_sort_domains },
301 { "retry_data_expire", opt_time, &retry_data_expire },
302 { "retry_interval_max", opt_time, &retry_interval_max },
303 { "return_path_remove", opt_bool, &return_path_remove },
304 { "return_size_limit", opt_mkint|opt_hidden, &bounce_return_size_limit },
305 { "rfc1413_hosts", opt_stringptr, &rfc1413_hosts },
306 { "rfc1413_query_timeout", opt_time, &rfc1413_query_timeout },
307 { "sender_unqualified_hosts", opt_stringptr, &sender_unqualified_hosts },
308 { "smtp_accept_keepalive", opt_bool, &smtp_accept_keepalive },
309 { "smtp_accept_max", opt_int, &smtp_accept_max },
310 { "smtp_accept_max_nonmail", opt_int, &smtp_accept_max_nonmail },
311 { "smtp_accept_max_nonmail_hosts", opt_stringptr, &smtp_accept_max_nonmail_hosts },
312 { "smtp_accept_max_per_connection", opt_int, &smtp_accept_max_per_connection },
313 { "smtp_accept_max_per_host", opt_stringptr, &smtp_accept_max_per_host },
314 { "smtp_accept_queue", opt_int, &smtp_accept_queue },
315 { "smtp_accept_queue_per_connection", opt_int, &smtp_accept_queue_per_connection },
316 { "smtp_accept_reserve", opt_int, &smtp_accept_reserve },
317 { "smtp_active_hostname", opt_stringptr, &raw_active_hostname },
318 { "smtp_banner", opt_stringptr, &smtp_banner },
319 { "smtp_check_spool_space", opt_bool, &smtp_check_spool_space },
320 { "smtp_connect_backlog", opt_int, &smtp_connect_backlog },
321 { "smtp_enforce_sync", opt_bool, &smtp_enforce_sync },
322 { "smtp_etrn_command", opt_stringptr, &smtp_etrn_command },
323 { "smtp_etrn_serialize", opt_bool, &smtp_etrn_serialize },
324 { "smtp_load_reserve", opt_fixed, &smtp_load_reserve },
325 { "smtp_max_synprot_errors", opt_int, &smtp_max_synprot_errors },
326 { "smtp_max_unknown_commands",opt_int, &smtp_max_unknown_commands },
327 { "smtp_ratelimit_hosts", opt_stringptr, &smtp_ratelimit_hosts },
328 { "smtp_ratelimit_mail", opt_stringptr, &smtp_ratelimit_mail },
329 { "smtp_ratelimit_rcpt", opt_stringptr, &smtp_ratelimit_rcpt },
330 { "smtp_receive_timeout", opt_time, &smtp_receive_timeout },
331 { "smtp_reserve_hosts", opt_stringptr, &smtp_reserve_hosts },
332 { "smtp_return_error_details",opt_bool, &smtp_return_error_details },
333 #ifdef WITH_CONTENT_SCAN
334 { "spamd_address", opt_stringptr, &spamd_address },
335 #endif
336 { "split_spool_directory", opt_bool, &split_spool_directory },
337 { "spool_directory", opt_stringptr, &spool_directory },
338 #ifdef EXPERIMENTAL_SRS
339 { "srs_config", opt_stringptr, &srs_config },
340 #endif
341 { "strip_excess_angle_brackets", opt_bool, &strip_excess_angle_brackets },
342 { "strip_trailing_dot", opt_bool, &strip_trailing_dot },
343 { "syslog_duplication", opt_bool, &syslog_duplication },
344 { "syslog_facility", opt_stringptr, &syslog_facility_str },
345 { "syslog_processname", opt_stringptr, &syslog_processname },
346 { "syslog_timestamp", opt_bool, &syslog_timestamp },
347 { "system_filter", opt_stringptr, &system_filter },
348 { "system_filter_directory_transport", opt_stringptr,&system_filter_directory_transport },
349 { "system_filter_file_transport",opt_stringptr,&system_filter_file_transport },
350 { "system_filter_group", opt_gid, &system_filter_gid },
351 { "system_filter_pipe_transport",opt_stringptr,&system_filter_pipe_transport },
352 { "system_filter_reply_transport",opt_stringptr,&system_filter_reply_transport },
353 { "system_filter_user", opt_uid, &system_filter_uid },
354 { "tcp_nodelay", opt_bool, &tcp_nodelay },
355 { "timeout_frozen_after", opt_time, &timeout_frozen_after },
356 { "timezone", opt_stringptr, &timezone_string },
357 #ifdef SUPPORT_TLS
358 { "tls_advertise_hosts", opt_stringptr, &tls_advertise_hosts },
359 { "tls_certificate", opt_stringptr, &tls_certificate },
360 { "tls_crl", opt_stringptr, &tls_crl },
361 { "tls_dhparam", opt_stringptr, &tls_dhparam },
362 { "tls_on_connect_ports", opt_stringptr, &tls_on_connect_ports },
363 { "tls_privatekey", opt_stringptr, &tls_privatekey },
364 { "tls_remember_esmtp", opt_bool, &tls_remember_esmtp },
365 { "tls_require_ciphers", opt_stringptr, &tls_require_ciphers },
366 { "tls_try_verify_hosts", opt_stringptr, &tls_try_verify_hosts },
367 { "tls_verify_certificates", opt_stringptr, &tls_verify_certificates },
368 { "tls_verify_hosts", opt_stringptr, &tls_verify_hosts },
369 #endif
370 { "trusted_groups", opt_gidlist, &trusted_groups },
371 { "trusted_users", opt_uidlist, &trusted_users },
372 { "unknown_login", opt_stringptr, &unknown_login },
373 { "unknown_username", opt_stringptr, &unknown_username },
374 { "untrusted_set_sender", opt_stringptr, &untrusted_set_sender },
375 { "uucp_from_pattern", opt_stringptr, &uucp_from_pattern },
376 { "uucp_from_sender", opt_stringptr, &uucp_from_sender },
377 { "warn_message_file", opt_stringptr, &warn_message_file },
378 { "write_rejectlog", opt_bool, &write_rejectlog }
379 };
380
381 static int optionlist_config_size =
382 sizeof(optionlist_config)/sizeof(optionlist);
383
384
385
386 /*************************************************
387 * Find the name of an option *
388 *************************************************/
389
390 /* This function is to aid debugging. Various functions take arguments that are
391 pointer variables in the options table or in option tables for various drivers.
392 For debugging output, it is useful to be able to find the name of the option
393 which is currently being processed. This function finds it, if it exists, by
394 searching the table(s).
395
396 Arguments: a value that is presumed to be in the table above
397 Returns: the option name, or an empty string
398 */
399
400 uschar *
401 readconf_find_option(void *p)
402 {
403 int i;
404 router_instance *r;
405 transport_instance *t;
406
407 for (i = 0; i < optionlist_config_size; i++)
408 if (p == optionlist_config[i].value) return US optionlist_config[i].name;
409
410 for (r = routers; r != NULL; r = r->next)
411 {
412 router_info *ri = r->info;
413 for (i = 0; i < ri->options_count[0]; i++)
414 {
415 if ((ri->options[i].type & opt_mask) != opt_stringptr) continue;
416 if (p == (char *)(r->options_block) + (long int)(ri->options[i].value))
417 return US ri->options[i].name;
418 }
419 }
420
421 for (t = transports; t != NULL; t = t->next)
422 {
423 transport_info *ti = t->info;
424 for (i = 0; i < ti->options_count[0]; i++)
425 {
426 if ((ti->options[i].type & opt_mask) != opt_stringptr) continue;
427 if (p == (char *)(t->options_block) + (long int)(ti->options[i].value))
428 return US ti->options[i].name;
429 }
430 }
431
432 return US"";
433 }
434
435
436
437
438
439 /*************************************************
440 * Read configuration line *
441 *************************************************/
442
443 /* A logical line of text is read from the configuration file into the big
444 buffer, taking account of macros, .includes, and continuations. The size of
445 big_buffer is increased if necessary. The count of configuration lines is
446 maintained. Physical input lines starting with # (ignoring leading white space,
447 and after macro replacement) and empty logical lines are always ignored.
448 Leading and trailing spaces are removed.
449
450 If we hit a line of the form "begin xxxx", the xxxx is placed in the
451 next_section vector, and the function returns NULL, indicating the end of a
452 configuration section. On end-of-file, NULL is returned with next_section
453 empty.
454
455 Arguments: none
456
457 Returns: a pointer to the first non-blank in the line,
458 or NULL if eof or end of section is reached
459 */
460
461 static uschar *
462 get_config_line(void)
463 {
464 int startoffset = 0; /* To first non-blank char in logical line */
465 int len = 0; /* Of logical line so far */
466 int newlen;
467 uschar *s, *ss;
468 macro_item *m;
469 BOOL macro_found;
470
471 /* Loop for handling continuation lines, skipping comments, and dealing with
472 .include files. */
473
474 for (;;)
475 {
476 if (Ufgets(big_buffer+len, big_buffer_size-len, config_file) == NULL)
477 {
478 if (config_file_stack != NULL) /* EOF inside .include */
479 {
480 fclose(config_file);
481 config_file = config_file_stack->file;
482 config_filename = config_file_stack->filename;
483 config_lineno = config_file_stack->lineno;
484 config_file_stack = config_file_stack->next;
485 continue;
486 }
487
488 /* EOF at top level */
489
490 if (cstate_stack_ptr >= 0)
491 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
492 "Unexpected end of configuration file: .endif missing");
493
494 if (len != 0) break; /* EOF after continuation */
495 next_section[0] = 0; /* EOF at start of logical line */
496 return NULL;
497 }
498
499 config_lineno++;
500 newlen = len + Ustrlen(big_buffer + len);
501
502 /* Handle pathologically long physical lines - yes, it did happen - by
503 extending big_buffer at this point. The code also copes with very long
504 logical lines. */
505
506 while (newlen == big_buffer_size - 1 && big_buffer[newlen - 1] != '\n')
507 {
508 uschar *newbuffer;
509 big_buffer_size += BIG_BUFFER_SIZE;
510 newbuffer = store_malloc(big_buffer_size);
511
512 /* This use of strcpy is OK because we know that the string in the old
513 buffer is shorter than the new buffer. */
514
515 Ustrcpy(newbuffer, big_buffer);
516 store_free(big_buffer);
517 big_buffer = newbuffer;
518 if (Ufgets(big_buffer+newlen, big_buffer_size-newlen, config_file) == NULL)
519 break;
520 newlen += Ustrlen(big_buffer + newlen);
521 }
522
523 /* Find the true start of the physical line - leading spaces are always
524 ignored. */
525
526 ss = big_buffer + len;
527 while (isspace(*ss)) ss++;
528
529 /* Process the physical line for macros. If this is the start of the logical
530 line, skip over initial text at the start of the line if it starts with an
531 upper case character followed by a sequence of name characters and an equals
532 sign, because that is the definition of a new macro, and we don't do
533 replacement therein. */
534
535 s = ss;
536 if (len == 0 && isupper(*s))
537 {
538 while (isalnum(*s) || *s == '_') s++;
539 while (isspace(*s)) s++;
540 if (*s != '=') s = ss; /* Not a macro definition */
541 }
542
543 /* For each defined macro, scan the line (from after XXX= if present),
544 replacing all occurrences of the macro. */
545
546 macro_found = FALSE;
547 for (m = macros; m != NULL; m = m->next)
548 {
549 uschar *p, *pp;
550 uschar *t = s;
551
552 while ((p = Ustrstr(t, m->name)) != NULL)
553 {
554 int moveby;
555 int namelen = Ustrlen(m->name);
556 int replen = Ustrlen(m->replacement);
557
558 /* Expand the buffer if necessary */
559
560 while (newlen - namelen + replen + 1 > big_buffer_size)
561 {
562 int newsize = big_buffer_size + BIG_BUFFER_SIZE;
563 uschar *newbuffer = store_malloc(newsize);
564 memcpy(newbuffer, big_buffer, newlen + 1);
565 p = newbuffer + (p - big_buffer);
566 s = newbuffer + (s - big_buffer);
567 ss = newbuffer + (ss - big_buffer);
568 t = newbuffer + (t - big_buffer);
569 big_buffer_size = newsize;
570 store_free(big_buffer);
571 big_buffer = newbuffer;
572 }
573
574 /* Shuffle the remaining characters up or down in the buffer before
575 copying in the replacement text. Don't rescan the replacement for this
576 same macro. */
577
578 pp = p + namelen;
579 moveby = replen - namelen;
580 if (moveby != 0)
581 {
582 memmove(p + replen, pp, (big_buffer + newlen) - pp + 1);
583 newlen += moveby;
584 }
585 Ustrncpy(p, m->replacement, replen);
586 t = p + replen;
587 macro_found = TRUE;
588 }
589 }
590
591 /* An empty macro replacement at the start of a line could mean that ss no
592 longer points to the first non-blank character. */
593
594 while (isspace(*ss)) ss++;
595
596 /* Check for comment lines - these are physical lines. */
597
598 if (*ss == '#') continue;
599
600 /* Handle conditionals, which are also applied to physical lines. Conditions
601 are of the form ".ifdef ANYTEXT" and are treated as true if any macro
602 expansion occured on the rest of the line. A preliminary test for the leading
603 '.' saves effort on most lines. */
604
605 if (*ss == '.')
606 {
607 int i;
608
609 /* Search the list of conditional directives */
610
611 for (i = 0; i < cond_list_size; i++)
612 {
613 int n;
614 cond_item *c = cond_list+i;
615 if (Ustrncmp(ss+1, c->name, c->namelen) != 0) continue;
616
617 /* The following character must be white space or end of string */
618
619 n = ss[1 + c->namelen];
620 if (n != ' ' && n != 't' && n != '\n' && n != 0) break;
621
622 /* .ifdef and .ifndef push the current state onto the stack, then set
623 a new one from the table. Stack overflow is an error */
624
625 if (c->pushpop > 0)
626 {
627 if (cstate_stack_ptr >= CSTATE_STACK_SIZE - 1)
628 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
629 ".%s nested too deeply", c->name);
630 cstate_stack[++cstate_stack_ptr] = cstate;
631 cstate = next_cstate[cstate][macro_found? c->action1 : c->action2];
632 }
633
634 /* For any of the others, stack underflow is an error. The next state
635 comes either from the stack (.endif) or from the table. */
636
637 else
638 {
639 if (cstate_stack_ptr < 0)
640 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
641 ".%s without matching .ifdef", c->name);
642 cstate = (c->pushpop < 0)? cstate_stack[cstate_stack_ptr--] :
643 next_cstate[cstate][macro_found? c->action1 : c->action2];
644 }
645
646 /* Having dealt with a directive, break the loop */
647
648 break;
649 }
650
651 /* If we have handled a conditional directive, continue with the next
652 physical line. Otherwise, fall through. */
653
654 if (i < cond_list_size) continue;
655 }
656
657 /* If the conditional state is not 0 (actively using these lines), ignore
658 this input line. */
659
660 if (cstate != 0) continue; /* Conditional skip */
661
662 /* Handle .include lines - these are also physical lines. */
663
664 if (Ustrncmp(ss, ".include", 8) == 0 &&
665 (isspace(ss[8]) ||
666 (Ustrncmp(ss+8, "_if_exists", 10) == 0 && isspace(ss[18]))))
667 {
668 uschar *t;
669 int include_if_exists = isspace(ss[8])? 0 : 10;
670 config_file_item *save;
671 struct stat statbuf;
672
673 ss += 9 + include_if_exists;
674 while (isspace(*ss)) ss++;
675 t = ss + Ustrlen(ss);
676 while (t > ss && isspace(t[-1])) t--;
677 if (*ss == '\"' && t[-1] == '\"')
678 {
679 ss++;
680 t--;
681 }
682 *t = 0;
683
684 if (include_if_exists != 0 && (Ustat(ss, &statbuf) != 0)) continue;
685
686 save = store_get(sizeof(config_file_item));
687 save->next = config_file_stack;
688 config_file_stack = save;
689 save->file = config_file;
690 save->filename = config_filename;
691 save->lineno = config_lineno;
692
693 config_file = Ufopen(ss, "rb");
694 if (config_file == NULL)
695 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "failed to open included "
696 "configuration file %s", ss);
697 config_filename = string_copy(ss);
698 config_lineno = 0;
699 continue;
700 }
701
702 /* If this is the start of the logical line, remember where the non-blank
703 data starts. Otherwise shuffle down continuation lines to remove leading
704 white space. */
705
706 if (len == 0)
707 startoffset = ss - big_buffer;
708 else
709 {
710 s = big_buffer + len;
711 if (ss > s)
712 {
713 memmove(s, ss, (newlen - len) - (ss - s) + 1);
714 newlen -= ss - s;
715 }
716 }
717
718 /* Accept the new addition to the line. Remove trailing white space. */
719
720 len = newlen;
721 while (len > 0 && isspace(big_buffer[len-1])) len--;
722 big_buffer[len] = 0;
723
724 /* We are done if the line does not end in backslash and contains some data.
725 Empty logical lines are ignored. For continuations, remove the backslash and
726 go round the loop to read the continuation line. */
727
728 if (len > 0)
729 {
730 if (big_buffer[len-1] != '\\') break; /* End of logical line */
731 big_buffer[--len] = 0; /* Remove backslash */
732 }
733 } /* Loop for reading multiple physical lines */
734
735 /* We now have a logical line. Test for the end of a configuration section (or,
736 more accurately, for the start of the next section). Place the name of the next
737 section in next_section, and return NULL. If the name given is longer than
738 next_section, truncate it. It will be unrecognized later, because all the known
739 section names do fit. Leave space for pluralizing. */
740
741 s = big_buffer + startoffset; /* First non-space character */
742 if (strncmpic(s, US"begin ", 6) == 0)
743 {
744 s += 6;
745 while (isspace(*s)) s++;
746 if (big_buffer + len - s > sizeof(next_section) - 2)
747 s[sizeof(next_section) - 2] = 0;
748 Ustrcpy(next_section, s);
749 return NULL;
750 }
751
752 /* Return the first non-blank character. */
753
754 return s;
755 }
756
757
758
759 /*************************************************
760 * Read a name *
761 *************************************************/
762
763 /* The yield is the pointer to the next uschar. Names longer than the
764 output space are silently truncated. This function is also used from acl.c when
765 parsing ACLs.
766
767 Arguments:
768 name where to put the name
769 len length of name
770 s input pointer
771
772 Returns: new input pointer
773 */
774
775 uschar *
776 readconf_readname(uschar *name, int len, uschar *s)
777 {
778 int p = 0;
779 while (isspace(*s)) s++;
780 if (isalpha(*s))
781 {
782 while (isalnum(*s) || *s == '_')
783 {
784 if (p < len-1) name[p++] = *s;
785 s++;
786 }
787 }
788 name[p] = 0;
789 while (isspace(*s)) s++;
790 return s;
791 }
792
793
794
795
796 /*************************************************
797 * Read a time value *
798 *************************************************/
799
800 /* This function is also called from outside, to read argument
801 time values. The format of a time value is:
802
803 [<n>w][<n>d][<n>h][<n>m][<n>s]
804
805 as long as at least one is present. If a format error is encountered,
806 return a negative value. The value must be terminated by the given
807 terminator.
808
809 Arguments:
810 s input pointer
811 terminator required terminating character
812 return_msec if TRUE, allow fractional seconds and return milliseconds
813
814 Returns: the time value, or -1 on syntax error
815 value is seconds if return_msec is FALSE
816 value is milliseconds if return_msec is TRUE
817 */
818
819 int
820 readconf_readtime(uschar *s, int terminator, BOOL return_msec)
821 {
822 int yield = 0;
823 for (;;)
824 {
825 int value, count;
826 double fraction;
827
828 if (!isdigit(*s)) return -1;
829 (void)sscanf(CS s, "%d%n", &value, &count);
830 s += count;
831
832 switch (*s)
833 {
834 case 'w': value *= 7;
835 case 'd': value *= 24;
836 case 'h': value *= 60;
837 case 'm': value *= 60;
838 case 's': s++;
839 break;
840
841 case '.':
842 if (!return_msec) return -1;
843 (void)sscanf(CS s, "%lf%n", &fraction, &count);
844 s += count;
845 if (*s++ != 's') return -1;
846 yield += (int)(fraction * 1000.0);
847 break;
848
849 default: return -1;
850 }
851
852 if (return_msec) value *= 1000;
853 yield += value;
854 if (*s == terminator) return yield;
855 }
856 /* Control never reaches here. */
857 }
858
859
860
861 /*************************************************
862 * Read a fixed point value *
863 *************************************************/
864
865 /* The value is returned *1000
866
867 Arguments:
868 s input pointer
869 terminator required terminator
870
871 Returns: the value, or -1 on error
872 */
873
874 static int
875 readconf_readfixed(uschar *s, int terminator)
876 {
877 int yield = 0;
878 int value, count;
879 if (!isdigit(*s)) return -1;
880 (void)sscanf(CS s, "%d%n", &value, &count);
881 s += count;
882 yield = value * 1000;
883 if (*s == '.')
884 {
885 int m = 100;
886 while (isdigit((*(++s))))
887 {
888 yield += (*s - '0') * m;
889 m /= 10;
890 }
891 }
892
893 return (*s == terminator)? yield : (-1);
894 }
895
896
897
898 /*************************************************
899 * Find option in list *
900 *************************************************/
901
902 /* The lists are always in order, so binary chop can be used.
903
904 Arguments:
905 name the option name to search for
906 ol the first entry in the option list
907 last one more than the offset of the last entry in the option list
908
909 Returns: pointer to an option entry, or NULL if not found
910 */
911
912 static optionlist *
913 find_option(uschar *name, optionlist *ol, int last)
914 {
915 int first = 0;
916 while (last > first)
917 {
918 int middle = (first + last)/2;
919 int c = Ustrcmp(name, ol[middle].name);
920 if (c == 0) return ol + middle;
921 else if (c > 0) first = middle + 1;
922 else last = middle;
923 }
924 return NULL;
925 }
926
927
928
929 /*************************************************
930 * Find a set flag in option list *
931 *************************************************/
932
933 /* Because some versions of Unix make no restrictions on the values of uids and
934 gids (even negative ones), we cannot represent "unset" by a special value.
935 There is therefore a separate boolean variable for each one indicating whether
936 a value is set or not. This function returns a pointer to the boolean, given
937 the original option name. It is a major disaster if the flag cannot be found.
938
939 Arguments:
940 name the name of the uid or gid option
941 oltop points to the start of the relevant option list
942 last one more than the offset of the last item in the option list
943 data_block NULL when reading main options => data values in the option
944 list are absolute addresses; otherwise they are byte offsets
945 in data_block (used for driver options)
946
947 Returns: a pointer to the boolean flag.
948 */
949
950 static BOOL *
951 get_set_flag(uschar *name, optionlist *oltop, int last, void *data_block)
952 {
953 optionlist *ol;
954 uschar name2[64];
955 sprintf(CS name2, "*set_%.50s", name);
956 ol = find_option(name2, oltop, last);
957 if (ol == NULL) log_write(0, LOG_MAIN|LOG_PANIC_DIE,
958 "Exim internal error: missing set flag for %s", name);
959 return (data_block == NULL)? (BOOL *)(ol->value) :
960 (BOOL *)((uschar *)data_block + (long int)(ol->value));
961 }
962
963
964
965
966 /*************************************************
967 * Output extra characters message and die *
968 *************************************************/
969
970 /* Called when an option line has junk on the end. Sometimes this is because
971 the sysadmin thinks comments are permitted.
972
973 Arguments:
974 s points to the extra characters
975 t1..t3 strings to insert in the log message
976
977 Returns: doesn't return; dies
978 */
979
980 static void
981 extra_chars_error(uschar *s, uschar *t1, uschar *t2, uschar *t3)
982 {
983 uschar *comment = US"";
984 if (*s == '#') comment = US" (# is comment only at line start)";
985 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
986 "extra characters follow %s%s%s%s", t1, t2, t3, comment);
987 }
988
989
990
991 /*************************************************
992 * Read rewrite information *
993 *************************************************/
994
995 /* Each line of rewrite information contains:
996
997 . A complete address in the form user@domain, possibly with
998 leading * for each part; or alternatively, a regex.
999
1000 . A replacement string (which will be expanded).
1001
1002 . An optional sequence of one-letter flags, indicating which
1003 headers etc. to apply this rule to.
1004
1005 All this is decoded and placed into a control block. The OR of the flags is
1006 maintained in a common word.
1007
1008 Arguments:
1009 p points to the string that makes up the rule
1010 existflags points to the overall flag word
1011 isglobal TRUE if reading global rewrite rules
1012
1013 Returns: the control block for the parsed rule.
1014 */
1015
1016 static rewrite_rule *
1017 readconf_one_rewrite(uschar *p, int *existflags, BOOL isglobal)
1018 {
1019 rewrite_rule *next = store_get(sizeof(rewrite_rule));
1020
1021 next->next = NULL;
1022 next->key = string_dequote(&p);
1023
1024 while (isspace(*p)) p++;
1025 if (*p == 0)
1026 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1027 "missing rewrite replacement string");
1028
1029 next->flags = 0;
1030 next->replacement = string_dequote(&p);
1031
1032 while (*p != 0) switch (*p++)
1033 {
1034 case ' ': case '\t': break;
1035
1036 case 'q': next->flags |= rewrite_quit; break;
1037 case 'w': next->flags |= rewrite_whole; break;
1038
1039 case 'h': next->flags |= rewrite_all_headers; break;
1040 case 's': next->flags |= rewrite_sender; break;
1041 case 'f': next->flags |= rewrite_from; break;
1042 case 't': next->flags |= rewrite_to; break;
1043 case 'c': next->flags |= rewrite_cc; break;
1044 case 'b': next->flags |= rewrite_bcc; break;
1045 case 'r': next->flags |= rewrite_replyto; break;
1046
1047 case 'E': next->flags |= rewrite_all_envelope; break;
1048 case 'F': next->flags |= rewrite_envfrom; break;
1049 case 'T': next->flags |= rewrite_envto; break;
1050
1051 case 'Q': next->flags |= rewrite_qualify; break;
1052 case 'R': next->flags |= rewrite_repeat; break;
1053
1054 case 'S':
1055 next->flags |= rewrite_smtp;
1056 if (next->key[0] != '^' && Ustrncmp(next->key, "\\N^", 3) != 0)
1057 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1058 "rewrite rule has the S flag but is not a regular expression");
1059 break;
1060
1061 default:
1062 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1063 "unknown rewrite flag character '%c' "
1064 "(could be missing quotes round replacement item)", p[-1]);
1065 break;
1066 }
1067
1068 /* If no action flags are set, set all the "normal" rewrites. */
1069
1070 if ((next->flags & (rewrite_all | rewrite_smtp)) == 0)
1071 next->flags |= isglobal? rewrite_all : rewrite_all_headers;
1072
1073 /* Remember which exist, for optimization, and return the rule */
1074
1075 *existflags |= next->flags;
1076 return next;
1077 }
1078
1079
1080
1081
1082 /*************************************************
1083 * Read global rewrite information *
1084 *************************************************/
1085
1086 /* Each line is a single rewrite rule; it is parsed into a control block
1087 by readconf_one_rewrite(), and its flags are ORed into the global flag
1088 word rewrite_existflags. */
1089
1090 void
1091 readconf_rewrites(void)
1092 {
1093 rewrite_rule **chain = &global_rewrite_rules;
1094 uschar *p;
1095
1096 while ((p = get_config_line()) != NULL)
1097 {
1098 rewrite_rule *next = readconf_one_rewrite(p, &rewrite_existflags, TRUE);
1099 *chain = next;
1100 chain = &(next->next);
1101 }
1102 }
1103
1104
1105
1106 /*************************************************
1107 * Read a string *
1108 *************************************************/
1109
1110 /* Strings are read into the normal store pool. As long we aren't too
1111 near the end of the current block, the string will just use what is necessary
1112 on the top of the stacking pool, because string_cat() uses the extension
1113 mechanism.
1114
1115 Argument:
1116 s the rest of the input line
1117 name the option name (for errors)
1118
1119 Returns: pointer to the string
1120 */
1121
1122 static uschar *
1123 read_string(uschar *s, uschar *name)
1124 {
1125 uschar *yield;
1126 uschar *ss;
1127
1128 if (*s != '\"') return string_copy(s);
1129
1130 ss = s;
1131 yield = string_dequote(&s);
1132
1133 if (s == ss+1 || s[-1] != '\"')
1134 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1135 "missing quote at end of string value for %s", name);
1136
1137 if (*s != 0) extra_chars_error(s, US"string value for ", name, US"");
1138
1139 return yield;
1140 }
1141
1142
1143 /*************************************************
1144 * Handle option line *
1145 *************************************************/
1146
1147 /* This function is called from several places to process a line containing the
1148 setting of an option. The first argument is the line to be decoded; it has been
1149 checked not to be empty and not to start with '#'. Trailing newlines and white
1150 space have been removed. The second argument is a pointer to the list of
1151 variable names that are to be recognized, together with their types and
1152 locations, and the third argument gives the number of entries in the list.
1153
1154 The fourth argument is a pointer to a data block. If it is NULL, then the data
1155 values in the options list are absolute addresses. Otherwise, they are byte
1156 offsets in the data block.
1157
1158 String option data may continue onto several lines; this function reads further
1159 data from config_file if necessary.
1160
1161 The yield of this function is normally zero. If a string continues onto
1162 multiple lines, then the data value is permitted to be followed by a comma
1163 or a semicolon (for use in drivers) and the yield is that character.
1164
1165 Arguments:
1166 buffer contains the configuration line to be handled
1167 oltop points to the start of the relevant option list
1168 last one more than the offset of the last item in the option list
1169 data_block NULL when reading main options => data values in the option
1170 list are absolute addresses; otherwise they are byte offsets
1171 in data_block when they have opt_public set; otherwise
1172 they are byte offsets in data_block->options_block.
1173 unknown_txt format string to use in panic message for unknown option;
1174 must contain %s for option name
1175 if given as NULL, don't panic on unknown option
1176
1177 Returns: TRUE if an option was read successfully,
1178 FALSE false for an unknown option if unknown_txt == NULL,
1179 otherwise panic and die on an unknown option
1180 */
1181
1182 static BOOL
1183 readconf_handle_option(uschar *buffer, optionlist *oltop, int last,
1184 void *data_block, uschar *unknown_txt)
1185 {
1186 int ptr = 0;
1187 int offset = 0;
1188 int n, count, type, value;
1189 int issecure = 0;
1190 uid_t uid;
1191 gid_t gid;
1192 BOOL boolvalue = TRUE;
1193 BOOL freesptr = TRUE;
1194 optionlist *ol, *ol2;
1195 struct passwd *pw;
1196 void *reset_point;
1197 int intbase = 0;
1198 uschar *inttype = US"";
1199 uschar *sptr;
1200 uschar *s = buffer;
1201 uschar name[64];
1202 uschar name2[64];
1203
1204 /* There may be leading spaces; thereafter, we expect an option name starting
1205 with a letter. */
1206
1207 while (isspace(*s)) s++;
1208 if (!isalpha(*s))
1209 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "option setting expected: %s", s);
1210
1211 /* Read the name of the option, and skip any subsequent white space. If
1212 it turns out that what we read was "hide", set the flag indicating that
1213 this is a secure option, and loop to read the next word. */
1214
1215 for (n = 0; n < 2; n++)
1216 {
1217 while (isalnum(*s) || *s == '_')
1218 {
1219 if (ptr < sizeof(name)-1) name[ptr++] = *s;
1220 s++;
1221 }
1222 name[ptr] = 0;
1223 while (isspace(*s)) s++;
1224 if (Ustrcmp(name, "hide") != 0) break;
1225 issecure = opt_secure;
1226 ptr = 0;
1227 }
1228
1229 /* Deal with "no_" or "not_" here for booleans */
1230
1231 if (Ustrncmp(name, "no_", 3) == 0)
1232 {
1233 boolvalue = FALSE;
1234 offset = 3;
1235 }
1236
1237 if (Ustrncmp(name, "not_", 4) == 0)
1238 {
1239 boolvalue = FALSE;
1240 offset = 4;
1241 }
1242
1243 /* Search the list for the given name. A non-existent name, or an option that
1244 is set twice, is a disaster. */
1245
1246 ol = find_option(name + offset, oltop, last);
1247
1248 if (ol == NULL)
1249 {
1250 if (unknown_txt == NULL) return FALSE;
1251 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, CS unknown_txt, name);
1252 }
1253
1254 if ((ol->type & opt_set) != 0)
1255 {
1256 uschar *mname = name;
1257 if (Ustrncmp(mname, "no_", 3) == 0) mname += 3;
1258 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1259 "\"%s\" option set for the second time", mname);
1260 }
1261
1262 ol->type |= opt_set | issecure;
1263 type = ol->type & opt_mask;
1264
1265 /* Types with data values must be followed by '='; the "no[t]_" prefix
1266 applies only to boolean values. */
1267
1268 if (type < opt_bool || type > opt_bool_last)
1269 {
1270 if (offset != 0)
1271 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1272 "negation prefix applied to a non-boolean option");
1273 if (*s == 0)
1274 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1275 "unexpected end of line (data missing) after %s", name);
1276 if (*s != '=')
1277 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "missing \"=\" after %s", name);
1278 }
1279
1280 /* If a boolean wasn't preceded by "no[t]_" it can be followed by = and
1281 true/false/yes/no, or, in the case of opt_expanded_bool, a general string that
1282 ultimately expands to one of those values. */
1283
1284 else if (*s != 0 && (offset != 0 || *s != '='))
1285 extra_chars_error(s, US"boolean option ", name, US"");
1286
1287 /* Skip white space after = */
1288
1289 if (*s == '=') while (isspace((*(++s))));
1290
1291 /* If there is a data block and the opt_public flag is not set, change
1292 the data block pointer to the private options block. */
1293
1294 if (data_block != NULL && (ol->type & opt_public) == 0)
1295 data_block = (void *)(((driver_instance *)data_block)->options_block);
1296
1297 /* Now get the data according to the type. */
1298
1299 switch (type)
1300 {
1301 /* If a string value is not enclosed in quotes, it consists of
1302 the rest of the current line, verbatim. Otherwise, string escapes
1303 are processed.
1304
1305 A transport is specified as a string, which is then looked up in the
1306 list of transports. A search type is specified as one of a number of
1307 known strings.
1308
1309 A set or rewrite rules for a driver is specified as a string, which is
1310 then parsed into a suitable chain of control blocks.
1311
1312 Uids and gids are specified as strings which are then looked up in the
1313 passwd file. Lists of uids and gids are similarly specified as colon-
1314 separated strings. */
1315
1316 case opt_stringptr:
1317 case opt_uid:
1318 case opt_gid:
1319 case opt_expand_uid:
1320 case opt_expand_gid:
1321 case opt_uidlist:
1322 case opt_gidlist:
1323 case opt_rewrite:
1324
1325 reset_point = sptr = read_string(s, name);
1326
1327 /* Having read a string, we now have several different ways of using it,
1328 depending on the data type, so do another switch. If keeping the actual
1329 string is not required (because it is interpreted), freesptr is set TRUE,
1330 and at the end we reset the pool. */
1331
1332 switch (type)
1333 {
1334 /* If this was a string, set the variable to point to the new string,
1335 and set the flag so its store isn't reclaimed. If it was a list of rewrite
1336 rules, we still keep the string (for printing), and parse the rules into a
1337 control block and flags word. */
1338
1339 case opt_stringptr:
1340 case opt_rewrite:
1341 if (data_block == NULL)
1342 *((uschar **)(ol->value)) = sptr;
1343 else
1344 *((uschar **)((uschar *)data_block + (long int)(ol->value))) = sptr;
1345 freesptr = FALSE;
1346 if (type == opt_rewrite)
1347 {
1348 int sep = 0;
1349 int *flagptr;
1350 uschar *p = sptr;
1351 rewrite_rule **chain;
1352 optionlist *ol3;
1353
1354 sprintf(CS name2, "*%.50s_rules", name);
1355 ol2 = find_option(name2, oltop, last);
1356 sprintf(CS name2, "*%.50s_flags", name);
1357 ol3 = find_option(name2, oltop, last);
1358
1359 if (ol2 == NULL || ol3 == NULL)
1360 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1361 "rewrite rules not available for driver");
1362
1363 if (data_block == NULL)
1364 {
1365 chain = (rewrite_rule **)(ol2->value);
1366 flagptr = (int *)(ol3->value);
1367 }
1368 else
1369 {
1370 chain = (rewrite_rule **)((uschar *)data_block + (long int)(ol2->value));
1371 flagptr = (int *)((uschar *)data_block + (long int)(ol3->value));
1372 }
1373
1374 while ((p = string_nextinlist(&sptr, &sep, big_buffer, BIG_BUFFER_SIZE))
1375 != NULL)
1376 {
1377 rewrite_rule *next = readconf_one_rewrite(p, flagptr, FALSE);
1378 *chain = next;
1379 chain = &(next->next);
1380 }
1381
1382 if ((*flagptr & (rewrite_all_envelope | rewrite_smtp)) != 0)
1383 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "rewrite rule specifies a "
1384 "non-header rewrite - not allowed at transport time -");
1385 }
1386 break;
1387
1388 /* If it was an expanded uid, see if there is any expansion to be
1389 done by checking for the presence of a $ character. If there is, save it
1390 in the corresponding *expand_user option field. Otherwise, fall through
1391 to treat it as a fixed uid. Ensure mutual exclusivity of the two kinds
1392 of data. */
1393
1394 case opt_expand_uid:
1395 sprintf(CS name2, "*expand_%.50s", name);
1396 ol2 = find_option(name2, oltop, last);
1397 if (ol2 != NULL)
1398 {
1399 uschar *ss = (Ustrchr(sptr, '$') != NULL)? sptr : NULL;
1400
1401 if (data_block == NULL)
1402 *((uschar **)(ol2->value)) = ss;
1403 else
1404 *((uschar **)((uschar *)data_block + (long int)(ol2->value))) = ss;
1405
1406 if (ss != NULL)
1407 {
1408 *(get_set_flag(name, oltop, last, data_block)) = FALSE;
1409 freesptr = FALSE;
1410 break;
1411 }
1412 }
1413
1414 /* Look up a fixed uid, and also make use of the corresponding gid
1415 if a passwd entry is returned and the gid has not been set. */
1416
1417 case opt_uid:
1418 if (!route_finduser(sptr, &pw, &uid))
1419 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "user %s was not found", sptr);
1420 if (data_block == NULL)
1421 *((uid_t *)(ol->value)) = uid;
1422 else
1423 *((uid_t *)((uschar *)data_block + (long int)(ol->value))) = uid;
1424
1425 /* Set the flag indicating a fixed value is set */
1426
1427 *(get_set_flag(name, oltop, last, data_block)) = TRUE;
1428
1429 /* Handle matching gid if we have a passwd entry: done by finding the
1430 same name with terminating "user" changed to "group"; if not found,
1431 ignore. Also ignore if the value is already set. */
1432
1433 if (pw == NULL) break;
1434 Ustrcpy(name+Ustrlen(name)-4, "group");
1435 ol2 = find_option(name, oltop, last);
1436 if (ol2 != NULL && ((ol2->type & opt_mask) == opt_gid ||
1437 (ol2->type & opt_mask) == opt_expand_gid))
1438 {
1439 BOOL *set_flag = get_set_flag(name, oltop, last, data_block);
1440 if (! *set_flag)
1441 {
1442 if (data_block == NULL)
1443 *((gid_t *)(ol2->value)) = pw->pw_gid;
1444 else
1445 *((gid_t *)((uschar *)data_block + (long int)(ol2->value))) = pw->pw_gid;
1446 *set_flag = TRUE;
1447 }
1448 }
1449 break;
1450
1451 /* If it was an expanded gid, see if there is any expansion to be
1452 done by checking for the presence of a $ character. If there is, save it
1453 in the corresponding *expand_user option field. Otherwise, fall through
1454 to treat it as a fixed gid. Ensure mutual exclusivity of the two kinds
1455 of data. */
1456
1457 case opt_expand_gid:
1458 sprintf(CS name2, "*expand_%.50s", name);
1459 ol2 = find_option(name2, oltop, last);
1460 if (ol2 != NULL)
1461 {
1462 uschar *ss = (Ustrchr(sptr, '$') != NULL)? sptr : NULL;
1463
1464 if (data_block == NULL)
1465 *((uschar **)(ol2->value)) = ss;
1466 else
1467 *((uschar **)((uschar *)data_block + (long int)(ol2->value))) = ss;
1468
1469 if (ss != NULL)
1470 {
1471 *(get_set_flag(name, oltop, last, data_block)) = FALSE;
1472 freesptr = FALSE;
1473 break;
1474 }
1475 }
1476
1477 /* Handle freestanding gid */
1478
1479 case opt_gid:
1480 if (!route_findgroup(sptr, &gid))
1481 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "group %s was not found", sptr);
1482 if (data_block == NULL)
1483 *((gid_t *)(ol->value)) = gid;
1484 else
1485 *((gid_t *)((uschar *)data_block + (long int)(ol->value))) = gid;
1486 *(get_set_flag(name, oltop, last, data_block)) = TRUE;
1487 break;
1488
1489 /* If it was a uid list, look up each individual entry, and build
1490 a vector of uids, with a count in the first element. Put the vector
1491 in malloc store so we can free the string. (We are reading into
1492 permanent store already.) */
1493
1494 case opt_uidlist:
1495 {
1496 int count = 1;
1497 uid_t *list;
1498 int ptr = 0;
1499 uschar *p = sptr;
1500
1501 if (*p != 0) count++;
1502 while (*p != 0) if (*p++ == ':') count++;
1503 list = store_malloc(count*sizeof(uid_t));
1504 list[ptr++] = (uid_t)(count - 1);
1505
1506 if (data_block == NULL)
1507 *((uid_t **)(ol->value)) = list;
1508 else
1509 *((uid_t **)((uschar *)data_block + (long int)(ol->value))) = list;
1510
1511 p = sptr;
1512 while (count-- > 1)
1513 {
1514 int sep = 0;
1515 (void)string_nextinlist(&p, &sep, big_buffer, BIG_BUFFER_SIZE);
1516 if (!route_finduser(big_buffer, NULL, &uid))
1517 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "user %s was not found",
1518 big_buffer);
1519 list[ptr++] = uid;
1520 }
1521 }
1522 break;
1523
1524 /* If it was a gid list, look up each individual entry, and build
1525 a vector of gids, with a count in the first element. Put the vector
1526 in malloc store so we can free the string. (We are reading into permanent
1527 store already.) */
1528
1529 case opt_gidlist:
1530 {
1531 int count = 1;
1532 gid_t *list;
1533 int ptr = 0;
1534 uschar *p = sptr;
1535
1536 if (*p != 0) count++;
1537 while (*p != 0) if (*p++ == ':') count++;
1538 list = store_malloc(count*sizeof(gid_t));
1539 list[ptr++] = (gid_t)(count - 1);
1540
1541 if (data_block == NULL)
1542 *((gid_t **)(ol->value)) = list;
1543 else
1544 *((gid_t **)((uschar *)data_block + (long int)(ol->value))) = list;
1545
1546 p = sptr;
1547 while (count-- > 1)
1548 {
1549 int sep = 0;
1550 (void)string_nextinlist(&p, &sep, big_buffer, BIG_BUFFER_SIZE);
1551 if (!route_findgroup(big_buffer, &gid))
1552 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "group %s was not found",
1553 big_buffer);
1554 list[ptr++] = gid;
1555 }
1556 }
1557 break;
1558 }
1559
1560 /* Release store if the value of the string doesn't need to be kept. */
1561
1562 if (freesptr) store_reset(reset_point);
1563 break;
1564
1565 /* Expanded boolean: if no characters follow, or if there are no dollar
1566 characters, this is a fixed-valued boolean, and we fall through. Otherwise,
1567 save the string for later expansion in the alternate place. */
1568
1569 case opt_expand_bool:
1570 if (*s != 0 && Ustrchr(s, '$') != 0)
1571 {
1572 sprintf(CS name2, "*expand_%.50s", name);
1573 ol2 = find_option(name2, oltop, last);
1574 if (ol2 != NULL)
1575 {
1576 reset_point = sptr = read_string(s, name);
1577 if (data_block == NULL)
1578 *((uschar **)(ol2->value)) = sptr;
1579 else
1580 *((uschar **)((uschar *)data_block + (long int)(ol2->value))) = sptr;
1581 freesptr = FALSE;
1582 break;
1583 }
1584 }
1585 /* Fall through */
1586
1587 /* Boolean: if no characters follow, the value is boolvalue. Otherwise
1588 look for yes/not/true/false. Some booleans are stored in a single bit in
1589 a single int. There's a special fudge for verify settings; without a suffix
1590 they set both xx_sender and xx_recipient. The table points to the sender
1591 value; search subsequently for the recipient. There's another special case:
1592 opt_bool_set also notes when a boolean has been set. */
1593
1594 case opt_bool:
1595 case opt_bit:
1596 case opt_bool_verify:
1597 case opt_bool_set:
1598 if (*s != 0)
1599 {
1600 s = readconf_readname(name2, 64, s);
1601 if (strcmpic(name2, US"true") == 0 || strcmpic(name2, US"yes") == 0)
1602 boolvalue = TRUE;
1603 else if (strcmpic(name2, US"false") == 0 || strcmpic(name2, US"no") == 0)
1604 boolvalue = FALSE;
1605 else log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1606 "\"%s\" is not a valid value for the \"%s\" option", name2, name);
1607 if (*s != 0) extra_chars_error(s, string_sprintf("\"%s\" ", name2),
1608 US"for boolean option ", name);
1609 }
1610
1611 /* Handle single-bit type. */
1612
1613 if (type == opt_bit)
1614 {
1615 int bit = 1 << ((ol->type >> 16) & 31);
1616 int *ptr = (data_block == NULL)?
1617 (int *)(ol->value) :
1618 (int *)((uschar *)data_block + (long int)ol->value);
1619 if (boolvalue) *ptr |= bit; else *ptr &= ~bit;
1620 break;
1621 }
1622
1623 /* Handle full BOOL types */
1624
1625 if (data_block == NULL)
1626 *((BOOL *)(ol->value)) = boolvalue;
1627 else
1628 *((BOOL *)((uschar *)data_block + (long int)(ol->value))) = boolvalue;
1629
1630 /* Verify fudge */
1631
1632 if (type == opt_bool_verify)
1633 {
1634 sprintf(CS name2, "%.50s_recipient", name + offset);
1635 ol2 = find_option(name2, oltop, last);
1636 if (ol2 != NULL)
1637 {
1638 if (data_block == NULL)
1639 *((BOOL *)(ol2->value)) = boolvalue;
1640 else
1641 *((BOOL *)((uschar *)data_block + (long int)(ol2->value))) = boolvalue;
1642 }
1643 }
1644
1645 /* Note that opt_bool_set type is set, if there is somewhere to do so */
1646
1647 else if (type == opt_bool_set)
1648 {
1649 sprintf(CS name2, "*set_%.50s", name + offset);
1650 ol2 = find_option(name2, oltop, last);
1651 if (ol2 != NULL)
1652 {
1653 if (data_block == NULL)
1654 *((BOOL *)(ol2->value)) = TRUE;
1655 else
1656 *((BOOL *)((uschar *)data_block + (long int)(ol2->value))) = TRUE;
1657 }
1658 }
1659 break;
1660
1661 /* Octal integer */
1662
1663 case opt_octint:
1664 intbase = 8;
1665 inttype = US"octal ";
1666
1667 /* Integer: a simple(ish) case; allow octal and hex formats, and
1668 suffixes K and M. The different types affect output, not input. */
1669
1670 case opt_mkint:
1671 case opt_int:
1672 {
1673 uschar *endptr;
1674 errno = 0;
1675 value = strtol(CS s, CSS &endptr, intbase);
1676
1677 if (endptr == s)
1678 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "%sinteger expected for %s",
1679 inttype, name);
1680
1681 if (errno != ERANGE)
1682 {
1683 if (tolower(*endptr) == 'k')
1684 {
1685 if (value > INT_MAX/1024 || value < INT_MIN/1024) errno = ERANGE;
1686 else value *= 1024;
1687 endptr++;
1688 }
1689 else if (tolower(*endptr) == 'm')
1690 {
1691 if (value > INT_MAX/(1024*1024) || value < INT_MIN/(1024*1024))
1692 errno = ERANGE;
1693 else value *= 1024*1024;
1694 endptr++;
1695 }
1696 }
1697
1698 if (errno == ERANGE) log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1699 "absolute value of integer \"%s\" is too large (overflow)", s);
1700
1701 while (isspace(*endptr)) endptr++;
1702 if (*endptr != 0)
1703 extra_chars_error(endptr, inttype, US"integer value for ", name);
1704 }
1705
1706 if (data_block == NULL)
1707 *((int *)(ol->value)) = value;
1708 else
1709 *((int *)((uschar *)data_block + (long int)(ol->value))) = value;
1710 break;
1711
1712 /* Integer held in K: again, allow octal and hex formats, and suffixes K and
1713 M. */
1714
1715 case opt_Kint:
1716 {
1717 uschar *endptr;
1718 errno = 0;
1719 value = strtol(CS s, CSS &endptr, intbase);
1720
1721 if (endptr == s)
1722 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "%sinteger expected for %s",
1723 inttype, name);
1724
1725 if (errno != ERANGE)
1726 {
1727 if (tolower(*endptr) == 'm')
1728 {
1729 if (value > INT_MAX/1024 || value < INT_MIN/1024) errno = ERANGE;
1730 else value *= 1024;
1731 endptr++;
1732 }
1733 else if (tolower(*endptr) == 'k')
1734 {
1735 endptr++;
1736 }
1737 else
1738 {
1739 value = (value + 512)/1024;
1740 }
1741 }
1742
1743 if (errno == ERANGE) log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1744 "absolute value of integer \"%s\" is too large (overflow)", s);
1745
1746 while (isspace(*endptr)) endptr++;
1747 if (*endptr != 0)
1748 extra_chars_error(endptr, inttype, US"integer value for ", name);
1749 }
1750
1751 if (data_block == NULL)
1752 *((int *)(ol->value)) = value;
1753 else
1754 *((int *)((uschar *)data_block + (long int)(ol->value))) = value;
1755 break;
1756
1757 /* Fixed-point number: held to 3 decimal places. */
1758
1759 case opt_fixed:
1760 if (sscanf(CS s, "%d%n", &value, &count) != 1)
1761 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1762 "fixed-point number expected for %s", name);
1763
1764 if (value < 0) log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1765 "integer \"%s\" is too large (overflow)", s);
1766
1767 value *= 1000;
1768
1769 if (value < 0) log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1770 "integer \"%s\" is too large (overflow)", s);
1771
1772 if (s[count] == '.')
1773 {
1774 int d = 100;
1775 while (isdigit(s[++count]))
1776 {
1777 value += (s[count] - '0') * d;
1778 d /= 10;
1779 }
1780 }
1781
1782 while (isspace(s[count])) count++;
1783
1784 if (s[count] != 0)
1785 extra_chars_error(s+count, US"fixed-point value for ", name, US"");
1786
1787 if (data_block == NULL)
1788 *((int *)(ol->value)) = value;
1789 else
1790 *((int *)((uschar *)data_block + (long int)(ol->value))) = value;
1791 break;
1792
1793 /* There's a special routine to read time values. */
1794
1795 case opt_time:
1796 value = readconf_readtime(s, 0, FALSE);
1797 if (value < 0)
1798 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "invalid time value for %s",
1799 name);
1800 if (data_block == NULL)
1801 *((int *)(ol->value)) = value;
1802 else
1803 *((int *)((uschar *)data_block + (long int)(ol->value))) = value;
1804 break;
1805
1806 /* A time list is a list of colon-separated times, with the first
1807 element holding the size of the list and the second the number of
1808 entries used. */
1809
1810 case opt_timelist:
1811 {
1812 int count = 0;
1813 int *list = (data_block == NULL)?
1814 (int *)(ol->value) :
1815 (int *)((uschar *)data_block + (long int)(ol->value));
1816
1817 if (*s != 0) for (count = 1; count <= list[0] - 2; count++)
1818 {
1819 int terminator = 0;
1820 uschar *snext = Ustrchr(s, ':');
1821 if (snext != NULL)
1822 {
1823 uschar *ss = snext;
1824 while (ss > s && isspace(ss[-1])) ss--;
1825 terminator = *ss;
1826 }
1827 value = readconf_readtime(s, terminator, FALSE);
1828 if (value < 0)
1829 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "invalid time value for %s",
1830 name);
1831 if (count > 1 && value <= list[count])
1832 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
1833 "time value out of order for %s", name);
1834 list[count+1] = value;
1835 if (snext == NULL) break;
1836 s = snext + 1;
1837 while (isspace(*s)) s++;
1838 }
1839
1840 if (count > list[0] - 2)
1841 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "too many time values for %s",
1842 name);
1843 if (count > 0 && list[2] == 0) count = 0;
1844 list[1] = count;
1845 }
1846
1847 break;
1848 }
1849
1850 return TRUE;
1851 }
1852
1853
1854
1855 /*************************************************
1856 * Print a time value *
1857 *************************************************/
1858
1859 /*
1860 Argument: a time value in seconds
1861 Returns: pointer to a fixed buffer containing the time as a string,
1862 in readconf_readtime() format
1863 */
1864
1865 uschar *
1866 readconf_printtime(int t)
1867 {
1868 int s, m, h, d, w;
1869 uschar *p = time_buffer;
1870
1871 s = t % 60;
1872 t /= 60;
1873 m = t % 60;
1874 t /= 60;
1875 h = t % 24;
1876 t /= 24;
1877 d = t % 7;
1878 w = t/7;
1879
1880 if (w > 0) { sprintf(CS p, "%dw", w); while (*p) p++; }
1881 if (d > 0) { sprintf(CS p, "%dd", d); while (*p) p++; }
1882 if (h > 0) { sprintf(CS p, "%dh", h); while (*p) p++; }
1883 if (m > 0) { sprintf(CS p, "%dm", m); while (*p) p++; }
1884 if (s > 0 || p == time_buffer) sprintf(CS p, "%ds", s);
1885
1886 return time_buffer;
1887 }
1888
1889
1890
1891 /*************************************************
1892 * Print an individual option value *
1893 *************************************************/
1894
1895 /* This is used by the -bP option, so prints to the standard output.
1896 The entire options list is passed in as an argument, because some options come
1897 in pairs - typically uid/gid settings, which can either be explicit numerical
1898 values, or strings to be expanded later. If the numerical value is unset,
1899 search for "*expand_<name>" to see if there is a string equivalent.
1900
1901 Arguments:
1902 ol option entry, or NULL for an unknown option
1903 name option name
1904 options_block NULL for main configuration options; otherwise points to
1905 a driver block; if the option doesn't have opt_public
1906 set, then options_block->options_block is where the item
1907 resides.
1908 oltop points to the option list in which ol exists
1909 last one more than the offset of the last entry in optop
1910
1911 Returns: nothing
1912 */
1913
1914 static void
1915 print_ol(optionlist *ol, uschar *name, void *options_block,
1916 optionlist *oltop, int last)
1917 {
1918 struct passwd *pw;
1919 struct group *gr;
1920 optionlist *ol2;
1921 void *value;
1922 uid_t *uidlist;
1923 gid_t *gidlist;
1924 uschar *s;
1925 uschar name2[64];
1926
1927 if (ol == NULL)
1928 {
1929 printf("%s is not a known option\n", name);
1930 return;
1931 }
1932
1933 /* Non-admin callers cannot see options that have been flagged secure by the
1934 "hide" prefix. */
1935
1936 if (!admin_user && (ol->type & opt_secure) != 0)
1937 {
1938 printf("%s = <value not displayable>\n", name);
1939 return;
1940 }
1941
1942 /* Else show the value of the option */
1943
1944 value = ol->value;
1945 if (options_block != NULL)
1946 {
1947 if ((ol->type & opt_public) == 0)
1948 options_block = (void *)(((driver_instance *)options_block)->options_block);
1949 value = (void *)((uschar *)options_block + (long int)value);
1950 }
1951
1952 switch(ol->type & opt_mask)
1953 {
1954 case opt_stringptr:
1955 case opt_rewrite: /* Show the text value */
1956 s = *((uschar **)value);
1957 printf("%s = %s\n", name, (s == NULL)? US"" : string_printing2(s, FALSE));
1958 break;
1959
1960 case opt_int:
1961 printf("%s = %d\n", name, *((int *)value));
1962 break;
1963
1964 case opt_mkint:
1965 {
1966 int x = *((int *)value);
1967 if (x != 0 && (x & 1023) == 0)
1968 {
1969 int c = 'K';
1970 x >>= 10;
1971 if ((x & 1023) == 0)
1972 {
1973 c = 'M';
1974 x >>= 10;
1975 }
1976 printf("%s = %d%c\n", name, x, c);
1977 }
1978 else printf("%s = %d\n", name, x);
1979 }
1980 break;
1981
1982 case opt_Kint:
1983 {
1984 int x = *((int *)value);
1985 if (x == 0) printf("%s = 0\n", name);
1986 else if ((x & 1023) == 0) printf("%s = %dM\n", name, x >> 10);
1987 else printf("%s = %dK\n", name, x);
1988 }
1989 break;
1990
1991 case opt_octint:
1992 printf("%s = %#o\n", name, *((int *)value));
1993 break;
1994
1995 /* Can be negative only when "unset", in which case integer */
1996
1997 case opt_fixed:
1998 {
1999 int x = *((int *)value);
2000 int f = x % 1000;
2001 int d = 100;
2002 if (x < 0) printf("%s =\n", name); else
2003 {
2004 printf("%s = %d.", name, x/1000);
2005 do
2006 {
2007 printf("%d", f/d);
2008 f %= d;
2009 d /= 10;
2010 }
2011 while (f != 0);
2012 printf("\n");
2013 }
2014 }
2015 break;
2016
2017 /* If the numerical value is unset, try for the string value */
2018
2019 case opt_expand_uid:
2020 if (! *get_set_flag(name, oltop, last, options_block))
2021 {
2022 sprintf(CS name2, "*expand_%.50s", name);
2023 ol2 = find_option(name2, oltop, last);
2024 if (ol2 != NULL)
2025 {
2026 void *value2 = ol2->value;
2027 if (options_block != NULL)
2028 value2 = (void *)((uschar *)options_block + (long int)value2);
2029 s = *((uschar **)value2);
2030 printf("%s = %s\n", name, (s == NULL)? US"" : string_printing(s));
2031 break;
2032 }
2033 }
2034
2035 /* Else fall through */
2036
2037 case opt_uid:
2038 if (! *get_set_flag(name, oltop, last, options_block))
2039 printf("%s =\n", name);
2040 else
2041 {
2042 pw = getpwuid(*((uid_t *)value));
2043 if (pw == NULL)
2044 printf("%s = %ld\n", name, (long int)(*((uid_t *)value)));
2045 else printf("%s = %s\n", name, pw->pw_name);
2046 }
2047 break;
2048
2049 /* If the numerical value is unset, try for the string value */
2050
2051 case opt_expand_gid:
2052 if (! *get_set_flag(name, oltop, last, options_block))
2053 {
2054 sprintf(CS name2, "*expand_%.50s", name);
2055 ol2 = find_option(name2, oltop, last);
2056 if (ol2 != NULL && (ol2->type & opt_mask) == opt_stringptr)
2057 {
2058 void *value2 = ol2->value;
2059 if (options_block != NULL)
2060 value2 = (void *)((uschar *)options_block + (long int)value2);
2061 s = *((uschar **)value2);
2062 printf("%s = %s\n", name, (s == NULL)? US"" : string_printing(s));
2063 break;
2064 }
2065 }
2066
2067 /* Else fall through */
2068
2069 case opt_gid:
2070 if (! *get_set_flag(name, oltop, last, options_block))
2071 printf("%s =\n", name);
2072 else
2073 {
2074 gr = getgrgid(*((int *)value));
2075 if (gr == NULL)
2076 printf("%s = %ld\n", name, (long int)(*((int *)value)));
2077 else printf("%s = %s\n", name, gr->gr_name);
2078 }
2079 break;
2080
2081 case opt_uidlist:
2082 uidlist = *((uid_t **)value);
2083 printf("%s =", name);
2084 if (uidlist != NULL)
2085 {
2086 int i;
2087 uschar sep = ' ';
2088 for (i = 1; i <= (int)(uidlist[0]); i++)
2089 {
2090 uschar *name = NULL;
2091 pw = getpwuid(uidlist[i]);
2092 if (pw != NULL) name = US pw->pw_name;
2093 if (name != NULL) printf("%c%s", sep, name);
2094 else printf("%c%ld", sep, (long int)(uidlist[i]));
2095 sep = ':';
2096 }
2097 }
2098 printf("\n");
2099 break;
2100
2101 case opt_gidlist:
2102 gidlist = *((gid_t **)value);
2103 printf("%s =", name);
2104 if (gidlist != NULL)
2105 {
2106 int i;
2107 uschar sep = ' ';
2108 for (i = 1; i <= (int)(gidlist[0]); i++)
2109 {
2110 uschar *name = NULL;
2111 gr = getgrgid(gidlist[i]);
2112 if (gr != NULL) name = US gr->gr_name;
2113 if (name != NULL) printf("%c%s", sep, name);
2114 else printf("%c%ld", sep, (long int)(gidlist[i]));
2115 sep = ':';
2116 }
2117 }
2118 printf("\n");
2119 break;
2120
2121 case opt_time:
2122 printf("%s = %s\n", name, readconf_printtime(*((int *)value)));
2123 break;
2124
2125 case opt_timelist:
2126 {
2127 int i;
2128 int *list = (int *)value;
2129 printf("%s = ", name);
2130 for (i = 0; i < list[1]; i++)
2131 printf("%s%s", (i == 0)? "" : ":", readconf_printtime(list[i+2]));
2132 printf("\n");
2133 }
2134 break;
2135
2136 case opt_bit:
2137 printf("%s%s\n", ((*((int *)value)) & (1 << ((ol->type >> 16) & 31)))?
2138 "" : "no_", name);
2139 break;
2140
2141 case opt_expand_bool:
2142 sprintf(CS name2, "*expand_%.50s", name);
2143 ol2 = find_option(name2, oltop, last);
2144 if (ol2 != NULL && ol2->value != NULL)
2145 {
2146 void *value2 = ol2->value;
2147 if (options_block != NULL)
2148 value2 = (void *)((uschar *)options_block + (long int)value2);
2149 s = *((uschar **)value2);
2150 if (s != NULL)
2151 {
2152 printf("%s = %s\n", name, string_printing(s));
2153 break;
2154 }
2155 /* s == NULL => string not set; fall through */
2156 }
2157
2158 /* Fall through */
2159
2160 case opt_bool:
2161 case opt_bool_verify:
2162 case opt_bool_set:
2163 printf("%s%s\n", (*((BOOL *)value))? "" : "no_", name);
2164 break;
2165 }
2166 }
2167
2168
2169
2170 /*************************************************
2171 * Print value from main configuration *
2172 *************************************************/
2173
2174 /* This function, called as a result of encountering the -bP option,
2175 causes the value of any main configuration variable to be output if the
2176 second argument is NULL. There are some special values:
2177
2178 all print all main configuration options
2179 configure_file print the name of the configuration file
2180 routers print the routers' configurations
2181 transports print the transports' configuration
2182 authenticators print the authenticators' configuration
2183 router_list print a list of router names
2184 transport_list print a list of transport names
2185 authenticator_list print a list of authentication mechanism names
2186 +name print a named list item
2187 local_scan print the local_scan options
2188
2189 If the second argument is not NULL, it must be one of "router", "transport", or
2190 "authenticator" in which case the first argument identifies the driver whose
2191 options are to be printed.
2192
2193 Arguments:
2194 name option name if type == NULL; else driver name
2195 type NULL or driver type name, as described above
2196
2197 Returns: nothing
2198 */
2199
2200 void
2201 readconf_print(uschar *name, uschar *type)
2202 {
2203 BOOL names_only = FALSE;
2204 optionlist *ol;
2205 optionlist *ol2 = NULL;
2206 driver_instance *d = NULL;
2207 int size = 0;
2208
2209 if (type == NULL)
2210 {
2211 if (*name == '+')
2212 {
2213 int i;
2214 tree_node *t;
2215 BOOL found = FALSE;
2216 static uschar *types[] = { US"address", US"domain", US"host",
2217 US"localpart" };
2218 static tree_node **anchors[] = { &addresslist_anchor, &domainlist_anchor,
2219 &hostlist_anchor, &localpartlist_anchor };
2220
2221 for (i = 0; i < 4; i++)
2222 {
2223 t = tree_search(*(anchors[i]), name+1);
2224 if (t != NULL)
2225 {
2226 found = TRUE;
2227 printf("%slist %s = %s\n", types[i], name+1,
2228 ((namedlist_block *)(t->data.ptr))->string);
2229 }
2230 }
2231
2232 if (!found)
2233 printf("no address, domain, host, or local part list called \"%s\" "
2234 "exists\n", name+1);
2235
2236 return;
2237 }
2238
2239 if (Ustrcmp(name, "configure_file") == 0)
2240 {
2241 printf("%s\n", CS config_main_filename);
2242 return;
2243 }
2244
2245 if (Ustrcmp(name, "all") == 0)
2246 {
2247 for (ol = optionlist_config;
2248 ol < optionlist_config + optionlist_config_size; ol++)
2249 {
2250 if ((ol->type & opt_hidden) == 0)
2251 print_ol(ol, US ol->name, NULL, optionlist_config, optionlist_config_size);
2252 }
2253 return;
2254 }
2255
2256 if (Ustrcmp(name, "local_scan") == 0)
2257 {
2258 #ifndef LOCAL_SCAN_HAS_OPTIONS
2259 printf("local_scan() options are not supported\n");
2260 #else
2261 for (ol = local_scan_options;
2262 ol < local_scan_options + local_scan_options_count; ol++)
2263 {
2264 print_ol(ol, US ol->name, NULL, local_scan_options,
2265 local_scan_options_count);
2266 }
2267 #endif
2268 return;
2269 }
2270
2271 if (Ustrcmp(name, "routers") == 0)
2272 {
2273 type = US"router";
2274 name = NULL;
2275 }
2276 else if (Ustrcmp(name, "transports") == 0)
2277 {
2278 type = US"transport";
2279 name = NULL;
2280 }
2281
2282 else if (Ustrcmp(name, "authenticators") == 0)
2283 {
2284 type = US"authenticator";
2285 name = NULL;
2286 }
2287
2288 else if (Ustrcmp(name, "authenticator_list") == 0)
2289 {
2290 type = US"authenticator";
2291 name = NULL;
2292 names_only = TRUE;
2293 }
2294
2295 else if (Ustrcmp(name, "router_list") == 0)
2296 {
2297 type = US"router";
2298 name = NULL;
2299 names_only = TRUE;
2300 }
2301 else if (Ustrcmp(name, "transport_list") == 0)
2302 {
2303 type = US"transport";
2304 name = NULL;
2305 names_only = TRUE;
2306 }
2307 else
2308 {
2309 print_ol(find_option(name, optionlist_config, optionlist_config_size),
2310 name, NULL, optionlist_config, optionlist_config_size);
2311 return;
2312 }
2313 }
2314
2315 /* Handle the options for a router or transport. Skip options that are flagged
2316 as hidden. Some of these are options with names starting with '*', used for
2317 internal alternative representations of other options (which the printing
2318 function will sort out). Others are synonyms kept for backward compatibility.
2319 */
2320
2321 if (Ustrcmp(type, "router") == 0)
2322 {
2323 d = (driver_instance *)routers;
2324 ol2 = optionlist_routers;
2325 size = optionlist_routers_size;
2326 }
2327 else if (Ustrcmp(type, "transport") == 0)
2328 {
2329 d = (driver_instance *)transports;
2330 ol2 = optionlist_transports;
2331 size = optionlist_transports_size;
2332 }
2333 else if (Ustrcmp(type, "authenticator") == 0)
2334 {
2335 d = (driver_instance *)auths;
2336 ol2 = optionlist_auths;
2337 size = optionlist_auths_size;
2338 }
2339
2340 if (names_only)
2341 {
2342 for (; d != NULL; d = d->next) printf("%s\n", CS d->name);
2343 return;
2344 }
2345
2346 /* Either search for a given driver, or print all of them */
2347
2348 for (; d != NULL; d = d->next)
2349 {
2350 if (name == NULL)
2351 printf("\n%s %s:\n", d->name, type);
2352 else if (Ustrcmp(d->name, name) != 0) continue;
2353
2354 for (ol = ol2; ol < ol2 + size; ol++)
2355 {
2356 if ((ol->type & opt_hidden) == 0)
2357 print_ol(ol, US ol->name, d, ol2, size);
2358 }
2359
2360 for (ol = d->info->options;
2361 ol < d->info->options + *(d->info->options_count); ol++)
2362 {
2363 if ((ol->type & opt_hidden) == 0)
2364 print_ol(ol, US ol->name, d, d->info->options, *(d->info->options_count));
2365 }
2366 if (name != NULL) return;
2367 }
2368 if (name != NULL) printf("%s %s not found\n", type, name);
2369 }
2370
2371
2372
2373 /*************************************************
2374 * Read a named list item *
2375 *************************************************/
2376
2377 /* This function reads a name and a list (i.e. string). The name is used to
2378 save the list in a tree, sorted by its name. Each entry also has a number,
2379 which can be used for caching tests, but if the string contains any expansion
2380 items other than $key, the number is set negative to inhibit caching. This
2381 mechanism is used for domain, host, and address lists that are referenced by
2382 the "+name" syntax.
2383
2384 Arguments:
2385 anchorp points to the tree anchor
2386 numberp points to the current number for this tree
2387 max the maximum number permitted
2388 s the text of the option line, starting immediately after the name
2389 of the list type
2390 tname the name of the list type, for messages
2391
2392 Returns: nothing
2393 */
2394
2395 static void
2396 read_named_list(tree_node **anchorp, int *numberp, int max, uschar *s,
2397 uschar *tname)
2398 {
2399 BOOL forcecache = FALSE;
2400 uschar *ss;
2401 tree_node *t;
2402 namedlist_block *nb = store_get(sizeof(namedlist_block));
2403
2404 if (Ustrncmp(s, "_cache", 6) == 0)
2405 {
2406 forcecache = TRUE;
2407 s += 6;
2408 }
2409
2410 if (!isspace(*s))
2411 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "unrecognized configuration line");
2412
2413 if (*numberp >= max)
2414 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "too many named %ss (max is %d)\n",
2415 tname, max);
2416
2417 while (isspace(*s)) s++;
2418 ss = s;
2419 while (isalnum(*s) || *s == '_') s++;
2420 t = store_get(sizeof(tree_node) + s-ss);
2421 Ustrncpy(t->name, ss, s-ss);
2422 t->name[s-ss] = 0;
2423 while (isspace(*s)) s++;
2424
2425 if (!tree_insertnode(anchorp, t))
2426 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
2427 "duplicate name \"%s\" for a named %s", t->name, tname);
2428
2429 t->data.ptr = nb;
2430 nb->number = *numberp;
2431 *numberp += 1;
2432
2433 if (*s++ != '=') log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
2434 "missing '=' after \"%s\"", t->name);
2435 while (isspace(*s)) s++;
2436 nb->string = read_string(s, t->name);
2437 nb->cache_data = NULL;
2438
2439 /* Check the string for any expansions; if any are found, mark this list
2440 uncacheable unless the user has explicited forced caching. */
2441
2442 if (!forcecache && Ustrchr(nb->string, '$') != NULL) nb->number = -1;
2443 }
2444
2445
2446
2447
2448 /*************************************************
2449 * Unpick data for a rate limit *
2450 *************************************************/
2451
2452 /* This function is called to unpick smtp_ratelimit_{mail,rcpt} into four
2453 separate values.
2454
2455 Arguments:
2456 s string, in the form t,b,f,l
2457 where t is the threshold (integer)
2458 b is the initial delay (time)
2459 f is the multiplicative factor (fixed point)
2460 k is the maximum time (time)
2461 threshold where to store threshold
2462 base where to store base in milliseconds
2463 factor where to store factor in milliseconds
2464 limit where to store limit
2465
2466 Returns: nothing (panics on error)
2467 */
2468
2469 static void
2470 unpick_ratelimit(uschar *s, int *threshold, int *base, double *factor,
2471 int *limit)
2472 {
2473 uschar bstring[16], lstring[16];
2474
2475 if (sscanf(CS s, "%d, %15[0123456789smhdw.], %lf, %15s", threshold, bstring,
2476 factor, lstring) == 4)
2477 {
2478 *base = readconf_readtime(bstring, 0, TRUE);
2479 *limit = readconf_readtime(lstring, 0, TRUE);
2480 if (*base >= 0 && *limit >= 0) return;
2481 }
2482 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "malformed ratelimit data: %s", s);
2483 }
2484
2485
2486
2487
2488 /*************************************************
2489 * Read main configuration options *
2490 *************************************************/
2491
2492 /* This function is the first to be called for configuration reading. It
2493 opens the configuration file and reads general configuration settings until
2494 it reaches the end of the configuration section. The file is then left open so
2495 that the remaining configuration data can subsequently be read if needed for
2496 this run of Exim.
2497
2498 The configuration file must be owned either by root or exim, and be writeable
2499 only by root or uid/gid exim. The values for Exim's uid and gid can be changed
2500 in the config file, so the test is done on the compiled in values. A slight
2501 anomaly, to be carefully documented.
2502
2503 The name of the configuration file is taken from a list that is included in the
2504 binary of Exim. It can be altered from the command line, but if that is done,
2505 root privilege is immediately withdrawn unless the caller is root or exim.
2506 The first file on the list that exists is used.
2507
2508 For use on multiple systems that share file systems, first look for a
2509 configuration file whose name has the current node name on the end. If that is
2510 not found, try the generic name. For really contorted configurations, that run
2511 multiple Exims with different uid settings, first try adding the effective uid
2512 before the node name. These complications are going to waste resources on most
2513 systems. Therefore they are available only when requested by compile-time
2514 options. */
2515
2516 void
2517 readconf_main(void)
2518 {
2519 int sep = 0;
2520 struct stat statbuf;
2521 uschar *s, *filename;
2522 uschar *list = config_main_filelist;
2523
2524 /* Loop through the possible file names */
2525
2526 while((filename = string_nextinlist(&list, &sep, big_buffer, big_buffer_size))
2527 != NULL)
2528 {
2529 /* Cut out all the fancy processing unless specifically wanted */
2530
2531 #if defined(CONFIGURE_FILE_USE_NODE) || defined(CONFIGURE_FILE_USE_EUID)
2532 uschar *suffix = filename + Ustrlen(filename);
2533
2534 /* Try for the node-specific file if a node name exists */
2535
2536 #ifdef CONFIGURE_FILE_USE_NODE
2537 struct utsname uts;
2538 if (uname(&uts) >= 0)
2539 {
2540 #ifdef CONFIGURE_FILE_USE_EUID
2541 sprintf(CS suffix, ".%ld.%.256s", (long int)original_euid, uts.nodename);
2542 config_file = Ufopen(filename, "rb");
2543 if (config_file == NULL)
2544 #endif /* CONFIGURE_FILE_USE_EUID */
2545 {
2546 sprintf(CS suffix, ".%.256s", uts.nodename);
2547 config_file = Ufopen(filename, "rb");
2548 }
2549 }
2550 #endif /* CONFIGURE_FILE_USE_NODE */
2551
2552 /* Otherwise, try the generic name, possibly with the euid added */
2553
2554 #ifdef CONFIGURE_FILE_USE_EUID
2555 if (config_file == NULL)
2556 {
2557 sprintf(CS suffix, ".%ld", (long int)original_euid);
2558 config_file = Ufopen(filename, "rb");
2559 }
2560 #endif /* CONFIGURE_FILE_USE_EUID */
2561
2562 /* Finally, try the unadorned name */
2563
2564 if (config_file == NULL)
2565 {
2566 *suffix = 0;
2567 config_file = Ufopen(filename, "rb");
2568 }
2569 #else /* if neither defined */
2570
2571 /* This is the common case when the fancy processing is not included. */
2572
2573 config_file = Ufopen(filename, "rb");
2574 #endif
2575
2576 /* If the file does not exist, continue to try any others. For any other
2577 error, break out (and die). */
2578
2579 if (config_file != NULL || errno != ENOENT) break;
2580 }
2581
2582 /* On success, save the name for verification; config_filename is used when
2583 logging configuration errors (it changes for .included files) whereas
2584 config_main_filename is the name shown by -bP. Failure to open a configuration
2585 file is a serious disaster. */
2586
2587 if (config_file != NULL)
2588 {
2589 config_filename = config_main_filename = string_copy(filename);
2590 }
2591 else
2592 {
2593 if (filename == NULL)
2594 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "non-existent configuration file(s): "
2595 "%s", config_main_filelist);
2596 else
2597 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "%s", string_open_failed(errno,
2598 "configuration file %s", filename));
2599 }
2600
2601 /* Check the status of the file we have opened, unless it was specified on
2602 the command line, in which case privilege was given away at the start. */
2603
2604 if (!config_changed)
2605 {
2606 if (fstat(fileno(config_file), &statbuf) != 0)
2607 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to stat configuration file %s",
2608 big_buffer);
2609
2610 if ((statbuf.st_uid != root_uid && /* owner not root */
2611 statbuf.st_uid != exim_uid /* owner not exim */
2612 #ifdef CONFIGURE_OWNER
2613 && statbuf.st_uid != config_uid /* owner not the special one */
2614 #endif
2615 ) || /* or */
2616 (statbuf.st_gid != exim_gid /* group not exim & */
2617 #ifdef CONFIGURE_GROUP
2618 && statbuf.st_gid != config_gid /* group not the special one */
2619 #endif
2620 && (statbuf.st_mode & 020) != 0) || /* group writeable */
2621 /* or */
2622 ((statbuf.st_mode & 2) != 0)) /* world writeable */
2623
2624 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Exim configuration file %s has the "
2625 "wrong owner, group, or mode", big_buffer);
2626 }
2627
2628 /* Process the main configuration settings. They all begin with a lower case
2629 letter. If we see something starting with an upper case letter, it is taken as
2630 a macro definition. */
2631
2632 while ((s = get_config_line()) != NULL)
2633 {
2634 if (isupper(s[0]))
2635 {
2636 macro_item *m;
2637 macro_item *mlast = NULL;
2638 uschar name[64];
2639 int namelen = 0;
2640
2641 while (isalnum(*s) || *s == '_')
2642 {
2643 if (namelen >= sizeof(name) - 1)
2644 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
2645 "macro name too long (maximum is %d characters)", sizeof(name) - 1);
2646 name[namelen++] = *s++;
2647 }
2648 name[namelen] = 0;
2649 while (isspace(*s)) s++;
2650 if (*s++ != '=') log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
2651 "malformed macro definition");
2652 while (isspace(*s)) s++;
2653
2654 /* If an existing macro of the same name was defined on the command line,
2655 we just skip this definition. Otherwise it's an error to attempt to
2656 redefine a macro. It is also an error to define a macro whose name begins
2657 with the name of a previously-defined macro. */
2658
2659 for (m = macros; m != NULL; m = m->next)
2660 {
2661 int len = Ustrlen(m->name);
2662
2663 if (Ustrcmp(m->name, name) == 0)
2664 {
2665 if (m->command_line) break;
2666 log_write(0, LOG_CONFIG|LOG_PANIC_DIE, "macro \"%s\" is already "
2667 "defined", name);
2668 }
2669
2670 if (len < namelen && Ustrstr(name, m->name) != NULL)
2671 log_write(0, LOG_CONFIG|LOG_PANIC_DIE, "\"%s\" cannot be defined as "
2672 "a macro because previously defined macro \"%s\" is a substring",
2673 name, m->name);
2674
2675 mlast = m;
2676 }
2677 if (m != NULL) continue; /* Found an overriding command-line definition */
2678
2679 m = store_get(sizeof(macro_item) + namelen);
2680 m->next = NULL;
2681 m->command_line = FALSE;
2682 if (mlast == NULL) macros = m; else mlast->next = m;
2683
2684 /* This use of strcpy() is OK because we have obtained a block of store
2685 whose size is based on the length of "name". The definition of the
2686 macro_item structure includes a final vector called "name" which is one
2687 byte long. Thus, adding "namelen" gives us enough room to store the "name"
2688 string. */
2689
2690 Ustrcpy(m->name, name);
2691 m->replacement = string_copy(s);
2692 }
2693
2694 else if (Ustrncmp(s, "domainlist", 10) == 0)
2695 read_named_list(&domainlist_anchor, &domainlist_count,
2696 MAX_NAMED_LIST, s+10, US"domain list");
2697
2698 else if (Ustrncmp(s, "hostlist", 8) == 0)
2699 read_named_list(&hostlist_anchor, &hostlist_count,
2700 MAX_NAMED_LIST, s+8, US"host list");
2701
2702 else if (Ustrncmp(s, US"addresslist", 11) == 0)
2703 read_named_list(&addresslist_anchor, &addresslist_count,
2704 MAX_NAMED_LIST, s+11, US"address list");
2705
2706 else if (Ustrncmp(s, US"localpartlist", 13) == 0)
2707 read_named_list(&localpartlist_anchor, &localpartlist_count,
2708 MAX_NAMED_LIST, s+13, US"local part list");
2709
2710 else
2711 (void) readconf_handle_option(s, optionlist_config, optionlist_config_size,
2712 NULL, US"main option \"%s\" unknown");
2713 }
2714
2715
2716 /* If local_sender_retain is set, local_from_check must be unset. */
2717
2718 if (local_sender_retain && local_from_check)
2719 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "both local_from_check and "
2720 "local_sender_retain are set; this combination is not allowed");
2721
2722 /* If the timezone string is empty, set it to NULL, implying no TZ variable
2723 wanted. */
2724
2725 if (timezone_string != NULL && *timezone_string == 0) timezone_string = NULL;
2726
2727 /* remote_max_parallel must be > 0 */
2728
2729 if (remote_max_parallel <= 0) remote_max_parallel = 1;
2730
2731 /* The primary host name may be required for expansion of spool_directory
2732 and log_file_path, so make sure it is set asap. It is obtained from uname(),
2733 but if that yields an unqualified value, make a FQDN by using gethostbyname to
2734 canonize it. Some people like upper case letters in their host names, so we
2735 don't force the case. */
2736
2737 if (primary_hostname == NULL)
2738 {
2739 uschar *hostname;
2740 struct utsname uts;
2741 if (uname(&uts) < 0)
2742 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "uname() failed to yield host name");
2743 hostname = US uts.nodename;
2744
2745 if (Ustrchr(hostname, '.') == NULL)
2746 {
2747 int af = AF_INET;
2748 struct hostent *hostdata;
2749
2750 #if HAVE_IPV6
2751 if (dns_ipv4_lookup == NULL ||
2752 match_isinlist(hostname, &dns_ipv4_lookup, 0, NULL, NULL, MCL_DOMAIN,
2753 TRUE, NULL) != OK)
2754 af = AF_INET6;
2755 #else
2756 af = AF_INET;
2757 #endif
2758
2759 for (;;)
2760 {
2761 #if HAVE_IPV6
2762 #if HAVE_GETIPNODEBYNAME
2763 int error_num;
2764 hostdata = getipnodebyname(CS hostname, af, 0, &error_num);
2765 #else
2766 hostdata = gethostbyname2(CS hostname, af);
2767 #endif
2768 #else
2769 hostdata = gethostbyname(CS hostname);
2770 #endif
2771
2772 if (hostdata != NULL)
2773 {
2774 hostname = US hostdata->h_name;
2775 break;
2776 }
2777
2778 if (af == AF_INET) break;
2779 af = AF_INET;
2780 }
2781 }
2782
2783 primary_hostname = string_copy(hostname);
2784 }
2785
2786 /* Set up default value for smtp_active_hostname */
2787
2788 smtp_active_hostname = primary_hostname;
2789
2790 /* If spool_directory wasn't set in the build-time configuration, it must have
2791 got set above. Of course, writing to the log may not work if log_file_path is
2792 not set, but it will at least get to syslog or somewhere, with any luck. */
2793
2794 if (*spool_directory == 0)
2795 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "spool_directory undefined: cannot "
2796 "proceed");
2797
2798 /* Expand the spool directory name; it may, for example, contain the primary
2799 host name. Same comment about failure. */
2800
2801 s = expand_string(spool_directory);
2802 if (s == NULL)
2803 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to expand spool_directory "
2804 "\"%s\": %s", spool_directory, expand_string_message);
2805 spool_directory = s;
2806
2807 /* Expand log_file_path, which must contain "%s" in any component that isn't
2808 the null string or "syslog". It is also allowed to contain one instance of %D.
2809 However, it must NOT contain % followed by anything else. */
2810
2811 if (*log_file_path != 0)
2812 {
2813 uschar *ss, *sss;
2814 int sep = ':'; /* Fixed for log file path */
2815 s = expand_string(log_file_path);
2816 if (s == NULL)
2817 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to expand log_file_path "
2818 "\"%s\": %s", log_file_path, expand_string_message);
2819
2820 ss = s;
2821 while ((sss = string_nextinlist(&ss,&sep,big_buffer,big_buffer_size)) != NULL)
2822 {
2823 uschar *t;
2824 if (sss[0] == 0 || Ustrcmp(sss, "syslog") == 0) continue;
2825 t = Ustrstr(sss, "%s");
2826 if (t == NULL)
2827 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "log_file_path \"%s\" does not "
2828 "contain \"%%s\"", sss);
2829 *t = 'X';
2830 t = Ustrchr(sss, '%');
2831 if (t != NULL)
2832 {
2833 if (t[1] != 'D' || Ustrchr(t+2, '%') != NULL)
2834 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "log_file_path \"%s\" contains "
2835 "unexpected \"%%\" character", s);
2836 }
2837 }
2838
2839 log_file_path = s;
2840 }
2841
2842 /* Interpret syslog_facility into an integer argument for 'ident' param to
2843 openlog(). Default is LOG_MAIL set in globals.c. Allow the user to omit the
2844 leading "log_". */
2845
2846 if (syslog_facility_str != NULL)
2847 {
2848 int i;
2849 uschar *s = syslog_facility_str;
2850
2851 if ((Ustrlen(syslog_facility_str) >= 4) &&
2852 (strncmpic(syslog_facility_str, US"log_", 4) == 0))
2853 s += 4;
2854
2855 for (i = 0; i < syslog_list_size; i++)
2856 {
2857 if (strcmpic(s, syslog_list[i].name) == 0)
2858 {
2859 syslog_facility = syslog_list[i].value;
2860 break;
2861 }
2862 }
2863
2864 if (i >= syslog_list_size)
2865 {
2866 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
2867 "failed to interpret syslog_facility \"%s\"", syslog_facility_str);
2868 }
2869 }
2870
2871 /* Expand pid_file_path */
2872
2873 if (*pid_file_path != 0)
2874 {
2875 s = expand_string(pid_file_path);
2876 if (s == NULL)
2877 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to expand pid_file_path "
2878 "\"%s\": %s", pid_file_path, expand_string_message);
2879 pid_file_path = s;
2880 }
2881
2882 /* Compile the regex for matching a UUCP-style "From_" line in an incoming
2883 message. */
2884
2885 regex_From = regex_must_compile(uucp_from_pattern, FALSE, TRUE);
2886
2887 /* Unpick the SMTP rate limiting options, if set */
2888
2889 if (smtp_ratelimit_mail != NULL)
2890 {
2891 unpick_ratelimit(smtp_ratelimit_mail, &smtp_rlm_threshold,
2892 &smtp_rlm_base, &smtp_rlm_factor, &smtp_rlm_limit);
2893 }
2894
2895 if (smtp_ratelimit_rcpt != NULL)
2896 {
2897 unpick_ratelimit(smtp_ratelimit_rcpt, &smtp_rlr_threshold,
2898 &smtp_rlr_base, &smtp_rlr_factor, &smtp_rlr_limit);
2899 }
2900
2901 /* The qualify domains default to the primary host name */
2902
2903 if (qualify_domain_sender == NULL)
2904 qualify_domain_sender = primary_hostname;
2905 if (qualify_domain_recipient == NULL)
2906 qualify_domain_recipient = qualify_domain_sender;
2907
2908 /* Setting system_filter_user in the configuration sets the gid as well if a
2909 name is given, but a numerical value does not. */
2910
2911 if (system_filter_uid_set && !system_filter_gid_set)
2912 {
2913 struct passwd *pw = getpwuid(system_filter_uid);
2914 if (pw == NULL)
2915 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Failed to look up uid %ld",
2916 (long int)system_filter_uid);
2917 system_filter_gid = pw->pw_gid;
2918 system_filter_gid_set = TRUE;
2919 }
2920
2921 /* If the errors_reply_to field is set, check that it is syntactically valid
2922 and ensure it contains a domain. */
2923
2924 if (errors_reply_to != NULL)
2925 {
2926 uschar *errmess;
2927 int start, end, domain;
2928 uschar *recipient = parse_extract_address(errors_reply_to, &errmess,
2929 &start, &end, &domain, FALSE);
2930
2931 if (recipient == NULL)
2932 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
2933 "error in errors_reply_to (%s): %s", errors_reply_to, errmess);
2934
2935 if (domain == 0)
2936 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
2937 "errors_reply_to (%s) does not contain a domain", errors_reply_to);
2938 }
2939
2940 /* If smtp_accept_queue or smtp_accept_max_per_host is set, then
2941 smtp_accept_max must also be set. */
2942
2943 if (smtp_accept_max == 0 &&
2944 (smtp_accept_queue > 0 || smtp_accept_max_per_host != NULL))
2945 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
2946 "smtp_accept_max must be set if smtp_accept_queue or "
2947 "smtp_accept_max_per_host is set");
2948
2949 /* Set up the host number if anything is specified. It is an expanded string
2950 so that it can be computed from the host name, for example. We do this last
2951 so as to ensure that everything else is set up before the expansion. */
2952
2953 if (host_number_string != NULL)
2954 {
2955 uschar *end;
2956 uschar *s = expand_string(host_number_string);
2957 long int n = Ustrtol(s, &end, 0);
2958 while (isspace(*end)) end++;
2959 if (*end != 0)
2960 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
2961 "localhost_number value is not a number: %s", s);
2962 if (n > LOCALHOST_MAX)
2963 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
2964 "localhost_number is greater than the maximum allowed value (%d)",
2965 LOCALHOST_MAX);
2966 host_number = n;
2967 }
2968
2969 #ifdef SUPPORT_TLS
2970 /* If tls_verify_hosts is set, tls_verify_certificates must also be set */
2971
2972 if ((tls_verify_hosts != NULL || tls_try_verify_hosts != NULL) &&
2973 tls_verify_certificates == NULL)
2974 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
2975 "tls_%sverify_hosts is set, but tls_verify_certificates is not set",
2976 (tls_verify_hosts != NULL)? "" : "try_");
2977 #endif
2978 }
2979
2980
2981
2982 /*************************************************
2983 * Initialize one driver *
2984 *************************************************/
2985
2986 /* This is called once the driver's generic options, if any, have been read.
2987 We can now find the driver, set up defaults for the private options, and
2988 unset any "set" bits in the private options table (which might have been
2989 set by another incarnation of the same driver).
2990
2991 Arguments:
2992 d pointer to driver instance block, with generic
2993 options filled in
2994 drivers_available vector of available drivers
2995 size_of_info size of each block in drivers_available
2996 class class of driver, for error message
2997
2998 Returns: pointer to the driver info block
2999 */
3000
3001 static driver_info *
3002 init_driver(driver_instance *d, driver_info *drivers_available,
3003 int size_of_info, uschar *class)
3004 {
3005 driver_info *dd;
3006
3007 for (dd = drivers_available; dd->driver_name[0] != 0;
3008 dd = (driver_info *)(((uschar *)dd) + size_of_info))
3009 {
3010 if (Ustrcmp(d->driver_name, dd->driver_name) == 0)
3011 {
3012 int i;
3013 int len = dd->options_len;
3014 d->info = dd;
3015 d->options_block = store_get(len);
3016 memcpy(d->options_block, dd->options_block, len);
3017 for (i = 0; i < *(dd->options_count); i++)
3018 dd->options[i].type &= ~opt_set;
3019 return dd;
3020 }
3021 }
3022
3023 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
3024 "%s %s: cannot find %s driver \"%s\"", class, d->name, class, d->driver_name);
3025
3026 return NULL; /* never obeyed */
3027 }
3028
3029
3030
3031
3032 /*************************************************
3033 * Initialize driver list *
3034 *************************************************/
3035
3036 /* This function is called for routers, transports, and authentication
3037 mechanisms. It reads the data from the current point in the configuration file
3038 up to the end of the section, and sets up a chain of instance blocks according
3039 to the file's contents. The file will already have been opened by a call to
3040 readconf_main, and must be left open for subsequent reading of further data.
3041
3042 Any errors cause a panic crash. Note that the blocks with names driver_info and
3043 driver_instance must map the first portions of all the _info and _instance
3044 blocks for this shared code to work.
3045
3046 Arguments:
3047 class "router", "transport", or "authenticator"
3048 anchor &routers, &transports, &auths
3049 drivers_available available drivers
3050 size_of_info size of each info block
3051 instance_default points to default data for an instance
3052 instance_size size of instance block
3053 driver_optionlist generic option list
3054 driver_optionlist_count count of generic option list
3055
3056 Returns: nothing
3057 */
3058
3059 void
3060 readconf_driver_init(
3061 uschar *class,
3062 driver_instance **anchor,
3063 driver_info *drivers_available,
3064 int size_of_info,
3065 void *instance_default,
3066 int instance_size,
3067 optionlist *driver_optionlist,
3068 int driver_optionlist_count)
3069 {
3070 driver_instance **p = anchor;
3071 driver_instance *d = NULL;
3072 uschar *buffer;
3073
3074 /* Now process the configuration lines */
3075
3076 while ((buffer = get_config_line()) != NULL)
3077 {
3078 uschar name[64];
3079
3080 /* Read the first name on the line and test for the start of a new driver.
3081 If this isn't the start of a new driver, the line will be re-read. */
3082
3083 uschar *s = readconf_readname(name, sizeof(name), buffer);
3084
3085 /* If the line starts with a name terminated by a colon, we are at the
3086 start of the definition of a new driver. The rest of the line must be
3087 blank. */
3088
3089 if (*s++ == ':')
3090 {
3091 int i;
3092
3093 /* Finish off initializing the previous driver. */
3094
3095 if (d != NULL)
3096 {
3097 if (d->driver_name == NULL)
3098 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
3099 "no driver defined for %s \"%s\"", class, d->name);
3100 (d->info->init)(d);
3101 }
3102
3103 /* Check that we haven't already got a driver of this name */
3104
3105 for (d = *anchor; d != NULL; d = d->next)
3106 if (Ustrcmp(name, d->name) == 0)
3107 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
3108 "there are two %ss called \"%s\"", class, name);
3109
3110 /* Set up a new driver instance data block on the chain, with
3111 its default values installed. */
3112
3113 d = store_get(instance_size);
3114 memcpy(d, instance_default, instance_size);
3115 *p = d;
3116 p = &(d->next);
3117 d->name = string_copy(name);
3118
3119 /* Clear out the "set" bits in the generic options */
3120
3121 for (i = 0; i < driver_optionlist_count; i++)
3122 driver_optionlist[i].type &= ~opt_set;
3123
3124 /* Check nothing more on this line, then do the next loop iteration. */
3125
3126 while (isspace(*s)) s++;
3127 if (*s != 0) extra_chars_error(s, US"driver name ", name, US"");
3128 continue;
3129 }
3130
3131 /* Give an error if we have not set up a current driver yet. */
3132
3133 if (d == NULL) log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
3134 "%s name missing", class);
3135
3136 /* First look to see if this is a generic option; if it is "driver",
3137 initialize the driver. If is it not a generic option, we can look for a
3138 private option provided that the driver has been previously set up. */
3139
3140 if (readconf_handle_option(buffer, driver_optionlist,
3141 driver_optionlist_count, d, NULL))
3142 {
3143 if (d->info == NULL && d->driver_name != NULL)
3144 init_driver(d, drivers_available, size_of_info, class);
3145 }
3146
3147 /* Handle private options - pass the generic block because some may
3148 live therein. A flag with each option indicates if it is in the public
3149 block. */
3150
3151 else if (d->info != NULL)
3152 {
3153 readconf_handle_option(buffer, d->info->options,
3154 *(d->info->options_count), d, US"option \"%s\" unknown");
3155 }
3156
3157 /* The option is not generic and the driver name has not yet been given. */
3158
3159 else log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "option \"%s\" unknown "
3160 "(\"driver\" must be specified before any private options)", name);
3161 }
3162
3163 /* Run the initialization function for the final driver. */
3164
3165 if (d != NULL)
3166 {
3167 if (d->driver_name == NULL)
3168 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
3169 "no driver defined for %s \"%s\"", class, d->name);
3170 (d->info->init)(d);
3171 }
3172 }
3173
3174
3175
3176 /*************************************************
3177 * Check driver dependency *
3178 *************************************************/
3179
3180 /* This function is passed a driver instance and a string. It checks whether
3181 any of the string options for the driver contains the given string as an
3182 expansion variable.
3183
3184 Arguments:
3185 d points to a driver instance block
3186 s the string to search for
3187
3188 Returns: TRUE if a dependency is found
3189 */
3190
3191 BOOL
3192 readconf_depends(driver_instance *d, uschar *s)
3193 {
3194 int count = *(d->info->options_count);
3195 optionlist *ol;
3196 uschar *ss;
3197
3198 for (ol = d->info->options; ol < d->info->options + count; ol++)
3199 {
3200 void *options_block;
3201 uschar *value;
3202 int type = ol->type & opt_mask;
3203 if (type != opt_stringptr) continue;
3204 options_block = ((ol->type & opt_public) == 0)? d->options_block : (void *)d;
3205 value = *(uschar **)((uschar *)options_block + (long int)(ol->value));
3206 if (value != NULL && (ss = Ustrstr(value, s)) != NULL)
3207 {
3208 if (ss <= value || (ss[-1] != '$' && ss[-1] != '{') ||
3209 isalnum(ss[Ustrlen(s)])) continue;
3210 DEBUG(D_transport) debug_printf("driver %s: \"%s\" option depends on %s\n",
3211 d->name, ol->name, s);
3212 return TRUE;
3213 }
3214 }
3215
3216 DEBUG(D_transport) debug_printf("driver %s does not depend on %s\n", d->name, s);
3217 return FALSE;
3218 }
3219
3220
3221
3222
3223 /*************************************************
3224 * Decode an error type for retries *
3225 *************************************************/
3226
3227 /* This function is global because it is also called from the main
3228 program when testing retry information. It decodes strings such as "quota_7d"
3229 into numerical error codes.
3230
3231 Arguments:
3232 pp points to start of text
3233 p points past end of text
3234 basic_errno points to an int to receive the main error number
3235 more_errno points to an int to receive the secondary error data
3236
3237 Returns: NULL if decoded correctly; else points to error text
3238 */
3239
3240 uschar *
3241 readconf_retry_error(uschar *pp, uschar *p, int *basic_errno, int *more_errno)
3242 {
3243 int len;
3244 uschar *q = pp;
3245 while (q < p && *q != '_') q++;
3246 len = q - pp;
3247
3248 if (len == 5 && strncmpic(pp, US"quota", len) == 0)
3249 {
3250 *basic_errno = ERRNO_EXIMQUOTA;
3251 if (q != p && (*more_errno = readconf_readtime(q+1, *p, FALSE)) < 0)
3252 return US"bad time value";
3253 }
3254
3255 else if (len == 7 && strncmpic(pp, US"refused", len) == 0)
3256 {
3257 *basic_errno = ECONNREFUSED;
3258 if (q != p)
3259 {
3260 if (strncmpic(q+1, US"MX", p-q-1) == 0) *more_errno = 'M';
3261 else if (strncmpic(q+1, US"A", p-q-1) == 0) *more_errno = 'A';
3262 else return US"A or MX expected after \"refused\"";
3263 }
3264 }
3265
3266 else if (len == 7 && strncmpic(pp, US"timeout", len) == 0)
3267 {
3268 *basic_errno = ETIMEDOUT;
3269 if (q != p)
3270 {
3271 int i;
3272 int xlen = p - q - 1;
3273 uschar *x = q + 1;
3274
3275 static uschar *extras[] =
3276 { US"A", US"MX", US"connect", US"connect_A", US"connect_MX" };
3277 static int values[] =
3278 { 'A', 'M', RTEF_CTOUT, RTEF_CTOUT|'A', RTEF_CTOUT|'M' };
3279
3280 for (i = 0; i < sizeof(extras)/sizeof(uschar *); i++)
3281 {
3282 if (strncmpic(x, extras[i], xlen) == 0)
3283 {
3284 *more_errno = values[i];
3285 break;
3286 }
3287 }
3288
3289 if (i >= sizeof(extras)/sizeof(uschar *))
3290 {
3291 if (strncmpic(x, US"DNS", xlen) == 0)
3292 {
3293 log_write(0, LOG_MAIN|LOG_PANIC, "\"timeout_dns\" is no longer "
3294 "available in retry rules (it has never worked) - treated as "
3295 "\"timeout\"");
3296 }
3297 else return US"\"A\", \"MX\", or \"connect\" expected after \"timeout\"";
3298 }
3299 }
3300 }
3301
3302 else if (strncmpic(pp, US"rcpt_4", 6) == 0)
3303 {
3304 BOOL bad = FALSE;
3305 int x = 255; /* means "any 4xx code" */
3306 if (p != pp + 8) bad = TRUE; else
3307 {
3308 int a = pp[6], b = pp[7];
3309 if (isdigit(a))
3310 {
3311 x = (a - '0') * 10;
3312 if (isdigit(b)) x += b - '0';
3313 else if (b == 'x') x += 100;
3314 else bad = TRUE;
3315 }
3316 else if (a != 'x' || b != 'x') bad = TRUE;
3317 }
3318
3319 if (bad) return US"rcpt_4 must be followed by xx, dx, or dd, where "
3320 "x is literal and d is any digit";
3321
3322 *basic_errno = ERRNO_RCPT4XX;
3323 *more_errno = x << 8;
3324 }
3325
3326 else if (len == 4 && strncmpic(pp, US"auth", len) == 0 &&
3327 strncmpic(q+1, US"failed", p-q-1) == 0)
3328 {
3329 *basic_errno = ERRNO_AUTHFAIL;
3330 }
3331
3332 else if (len != 1 || Ustrncmp(pp, "*", 1) != 0)
3333 return string_sprintf("unknown or malformed retry error \"%.*s\"", p-pp, pp);
3334
3335 return NULL;
3336 }
3337
3338
3339
3340
3341 /*************************************************
3342 * Read retry information *
3343 *************************************************/
3344
3345 /* Each line of retry information contains:
3346
3347 . A domain name pattern or an address pattern;
3348
3349 . An error name, possibly with additional data, or *;
3350
3351 . An optional sequence of retry items, each consisting of an identifying
3352 letter, a cutoff time, and optional parameters.
3353
3354 All this is decoded and placed into a control block. */
3355
3356
3357 /* Subroutine to read an argument, preceded by a comma and terminated
3358 by comma, semicolon, whitespace, or newline. The types are: 0 = time value,
3359 1 = fixed point number (returned *1000).
3360
3361 Arguments:
3362 paddr pointer to pointer to current character; updated
3363 type 0 => read a time; 1 => read a fixed point number
3364
3365 Returns: time in seconds or fixed point number * 1000
3366 */
3367
3368 static int
3369 retry_arg(uschar **paddr, int type)
3370 {
3371 uschar *p = *paddr;
3372 uschar *pp;
3373
3374 if (*p++ != ',') log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "comma expected");
3375
3376 while (isspace(*p)) p++;
3377 pp = p;
3378 while (isalnum(*p) || (type == 1 && *p == '.')) p++;
3379
3380 if (*p != 0 && !isspace(*p) && *p != ',' && *p != ';')
3381 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "comma or semicolon expected");
3382
3383 *paddr = p;
3384 switch (type)
3385 {
3386 case 0:
3387 return readconf_readtime(pp, *p, FALSE);
3388 case 1:
3389 return readconf_readfixed(pp, *p);
3390 }
3391 return 0; /* Keep picky compilers happy */
3392 }
3393
3394 /* The function proper */
3395
3396 void
3397 readconf_retries(void)
3398 {
3399 retry_config **chain = &retries;
3400 retry_config *next;
3401 uschar *p;
3402
3403 while ((p = get_config_line()) != NULL)
3404 {
3405 retry_rule **rchain;
3406 uschar *pp, *error;
3407
3408 next = store_get(sizeof(retry_config));
3409 next->next = NULL;
3410 *chain = next;
3411 chain = &(next->next);
3412 next->basic_errno = next->more_errno = 0;
3413 next->senders = NULL;
3414 next->rules = NULL;
3415 rchain = &(next->rules);
3416
3417 next->pattern = string_dequote(&p);
3418 while (isspace(*p)) p++;
3419 pp = p;
3420 while (mac_isgraph(*p)) p++;
3421 if (p - pp <= 0) log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
3422 "missing error type");
3423
3424 /* Test error names for things we understand. */
3425
3426 if ((error = readconf_retry_error(pp, p, &(next->basic_errno),
3427 &(next->more_errno))) != NULL)
3428 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "%s", error);
3429
3430 /* There may be an optional address list of senders to be used as another
3431 constraint on the rule. This was added later, so the syntax is a bit of a
3432 fudge. Anything that is not a retry rule starting "F," or "G," is treated as
3433 an address list. */
3434
3435 while (isspace(*p)) p++;
3436 if (Ustrncmp(p, "senders", 7) == 0)
3437 {
3438 p += 7;
3439 while (isspace(*p)) p++;
3440 if (*p++ != '=') log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
3441 "\"=\" expected after \"senders\" in retry rule");
3442 while (isspace(*p)) p++;
3443 next->senders = string_dequote(&p);
3444 }
3445
3446 /* Now the retry rules. Keep the maximum timeout encountered. */
3447
3448 while (isspace(*p)) p++;
3449
3450 while (*p != 0)
3451 {
3452 retry_rule *rule = store_get(sizeof(retry_rule));
3453 *rchain = rule;
3454 rchain = &(rule->next);
3455 rule->next = NULL;
3456 rule->rule = toupper(*p++);
3457 rule->timeout = retry_arg(&p, 0);
3458 if (rule->timeout > retry_maximum_timeout)
3459 retry_maximum_timeout = rule->timeout;
3460
3461 switch (rule->rule)
3462 {
3463 case 'F': /* Fixed interval */
3464 rule->p1 = retry_arg(&p, 0);
3465 break;
3466
3467 case 'G': /* Geometrically increasing intervals */
3468 rule->p1 = retry_arg(&p, 0);
3469 rule->p2 = retry_arg(&p, 1);
3470 break;
3471
3472 default:
3473 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "unknown retry rule letter");
3474 break;
3475 }
3476
3477 if (rule->timeout <= 0 || rule->p1 <= 0 ||
3478 (rule->rule == 'G' && rule->p2 < 1000))
3479 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
3480 "bad parameters for retry rule");
3481
3482 while (isspace(*p)) p++;
3483 if (*p == ';')
3484 {
3485 p++;
3486 while (isspace(*p)) p++;
3487 }
3488 else if (*p != 0)
3489 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "semicolon expected");
3490 }
3491 }
3492 }
3493
3494
3495
3496 /*************************************************
3497 * Initialize authenticators *
3498 *************************************************/
3499
3500 /* Read the authenticators section of the configuration file.
3501
3502 Arguments: none
3503 Returns: nothing
3504 */
3505
3506 static void
3507 auths_init(void)
3508 {
3509 auth_instance *au, *bu;
3510 readconf_driver_init(US"authenticator",
3511 (driver_instance **)(&auths), /* chain anchor */
3512 (driver_info *)auths_available, /* available drivers */
3513 sizeof(auth_info), /* size of info block */
3514 &auth_defaults, /* default values for generic options */
3515 sizeof(auth_instance), /* size of instance block */
3516 optionlist_auths, /* generic options */
3517 optionlist_auths_size);
3518
3519 for (au = auths; au != NULL; au = au->next)
3520 {
3521 if (au->public_name == NULL)
3522 log_write(0, LOG_PANIC_DIE|LOG_CONFIG, "no public name specified for "
3523 "the %s authenticator", au->name);
3524 for (bu = au->next; bu != NULL; bu = bu->next)
3525 {
3526 if (strcmpic(au->public_name, bu->public_name) == 0)
3527 {
3528 if ((au->client && bu->client) || (au->server && bu->server))
3529 log_write(0, LOG_PANIC_DIE|LOG_CONFIG, "two %s authenticators "
3530 "(%s and %s) have the same public name (%s)",
3531 (au->client)? US"client" : US"server", au->name, bu->name,
3532 au->public_name);
3533 }
3534 }
3535 }
3536 }
3537
3538
3539
3540
3541 /*************************************************
3542 * Read ACL information *
3543 *************************************************/
3544
3545 /* If this run of Exim is not doing something that involves receiving a
3546 message, we can just skip over the ACL information. No need to parse it.
3547
3548 First, we have a function for acl_read() to call back to get the next line. We
3549 need to remember the line we passed, because at the end it will contain the
3550 name of the next ACL. */
3551
3552 static uschar *acl_line;
3553
3554 static uschar *
3555 acl_callback(void)
3556 {
3557 acl_line = get_config_line();
3558 return acl_line;
3559 }
3560
3561
3562 /* Now the main function:
3563
3564 Arguments:
3565 skip TRUE when this Exim process is doing something that will
3566 not need the ACL data
3567
3568 Returns: nothing
3569 */
3570
3571 static void
3572 readconf_acl(BOOL skip)
3573 {
3574 uschar *p;
3575
3576 /* Not receiving messages, don't need to parse the ACL data */
3577
3578 if (skip)
3579 {
3580 DEBUG(D_acl) debug_printf("skipping ACL configuration - not needed\n");
3581 while ((p = get_config_line()) != NULL);
3582 return;
3583 }
3584
3585 /* Read each ACL and add it into the tree */
3586
3587 acl_line = get_config_line();
3588
3589 while(acl_line != NULL)
3590 {
3591 uschar name[64];
3592 tree_node *node;
3593 uschar *error;
3594
3595 p = readconf_readname(name, sizeof(name), acl_line);
3596 if (*p != ':')
3597 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "missing ACL name");
3598
3599 node = store_get(sizeof(tree_node) + Ustrlen(name));
3600 Ustrcpy(node->name, name);
3601 if (!tree_insertnode(&acl_anchor, node))
3602 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
3603 "there are two ACLs called \"%s\"", name);
3604
3605 node->data.ptr = acl_read(acl_callback, &error);
3606
3607 if (node->data.ptr == NULL && error != NULL)
3608 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "error in ACL: %s", error);
3609 }
3610 }
3611
3612
3613
3614 /*************************************************
3615 * Read configuration for local_scan() *
3616 *************************************************/
3617
3618 /* This function is called after "begin local_scan" is encountered in the
3619 configuration file. If the local_scan() function allows for configuration
3620 options, we can process them. Otherwise, we expire in a panic.
3621
3622 Arguments: none
3623 Returns: nothing
3624 */
3625
3626 static void
3627 local_scan_init(void)
3628 {
3629 #ifndef LOCAL_SCAN_HAS_OPTIONS
3630 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN, "local_scan() options not supported: "
3631 "(LOCAL_SCAN_HAS_OPTIONS not defined in Local/Makefile)");
3632 #else
3633
3634 uschar *p;
3635 while ((p = get_config_line()) != NULL)
3636 {
3637 (void) readconf_handle_option(p, local_scan_options, local_scan_options_count,
3638 NULL, US"local_scan option \"%s\" unknown");
3639 }
3640 #endif
3641 }
3642
3643
3644
3645 /*************************************************
3646 * Read rest of configuration (after main) *
3647 *************************************************/
3648
3649 /* This function reads the rest of the runtime configuration, after the main
3650 configuration. It is called only when actually needed. Each subsequent section
3651 of the configuration starts with a line of the form
3652
3653 begin name
3654
3655 where the name is "routers", "transports", etc. A section is terminated by
3656 hitting the next "begin" line, and the next name is left in next_section.
3657 Because it may confuse people as to whether the names are singular or plural,
3658 we add "s" if it's missing. There is always enough room in next_section for
3659 this. This function is basically just a switch.
3660
3661 Arguments:
3662 skip_acl TRUE if ACL information is not needed
3663
3664 Returns: nothing
3665 */
3666
3667 static uschar *section_list[] = {
3668 US"acls",
3669 US"authenticators",
3670 US"local_scans",
3671 US"retrys",
3672 US"rewrites",
3673 US"routers",
3674 US"transports"};
3675
3676 void
3677 readconf_rest(BOOL skip_acl)
3678 {
3679 int had = 0;
3680
3681 while(next_section[0] != 0)
3682 {
3683 int bit;
3684 int first = 0;
3685 int last = sizeof(section_list) / sizeof(uschar *);
3686 int mid = last/2;
3687 int n = Ustrlen(next_section);
3688
3689 if (tolower(next_section[n-1]) != 's') Ustrcpy(next_section+n, "s");
3690
3691 for (;;)
3692 {
3693 int c = strcmpic(next_section, section_list[mid]);
3694 if (c == 0) break;
3695 if (c > 0) first = mid + 1; else last = mid;
3696 if (first >= last)
3697 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
3698 "\"%.*s\" is not a known configuration section name", n, next_section);
3699 mid = (last + first)/2;
3700 }
3701
3702 bit = 1 << mid;
3703 if (((had ^= bit) & bit) == 0)
3704 log_write(0, LOG_PANIC_DIE|LOG_CONFIG_IN,
3705 "\"%.*s\" section is repeated in the configuration file", n,
3706 next_section);
3707
3708 switch(mid)
3709 {
3710 case 0: readconf_acl(skip_acl); break;
3711 case 1: auths_init(); break;
3712 case 2: local_scan_init(); break;
3713 case 3: readconf_retries(); break;
3714 case 4: readconf_rewrites(); break;
3715 case 5: route_init(); break;
3716 case 6: transport_init(); break;
3717 }
3718 }
3719
3720 fclose(config_file);
3721 }
3722
3723 /* End of readconf.c */