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