1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 Copyright (c) Todd Lyons <tlyons@exim.org> 2012 - 2014
6 Copyright (c) The Exim Maintainers 2019
9 /* Portions Copyright (c) 2012, 2013, The Trusted Domain Project;
10 All rights reserved, licensed for use per LICENSE.opendmarc. */
12 /* Code for calling dmarc checks via libopendmarc. Called from acl.c. */
16 # if !defined SUPPORT_SPF
17 # error SPF must also be enabled for DMARC
18 # elif defined DISABLE_DKIM
19 # error DKIM must also be enabled for DMARC
22 # include "functions.h"
24 # include "pdkim/pdkim.h"
26 OPENDMARC_LIB_T dmarc_ctx;
27 DMARC_POLICY_T *dmarc_pctx = NULL;
28 OPENDMARC_STATUS_T libdm_status, action, dmarc_policy;
29 OPENDMARC_STATUS_T da, sa, action;
30 BOOL dmarc_abort = FALSE;
31 uschar *dmarc_pass_fail = US"skipped";
32 header_line *from_header = NULL;
33 extern SPF_response_t *spf_response;
34 int dmarc_spf_ares_result = 0;
35 uschar *spf_sender_domain = NULL;
36 uschar *spf_human_readable = NULL;
37 u_char *header_from_sender = NULL;
38 int history_file_status = DMARC_HIST_OK;
39 uschar *dkim_history_buffer= NULL;
41 typedef struct dmarc_exim_p {
46 static dmarc_exim_p dmarc_policy_description[] = {
48 { US"", DMARC_RECORD_P_UNSPECIFIED },
49 { US"none", DMARC_RECORD_P_NONE },
50 { US"quarantine", DMARC_RECORD_P_QUARANTINE },
51 { US"reject", DMARC_RECORD_P_REJECT },
54 /* Accept an error_block struct, initialize if empty, parse to the
55 * end, and append the two strings passed to it. Used for adding
56 * variable amounts of value:pair data to the forensic emails. */
59 add_to_eblock(error_block *eblock, uschar *t1, uschar *t2)
61 error_block *eb = store_malloc(sizeof(error_block));
66 /* Find the end of the eblock struct and point it at eb */
67 error_block *tmp = eblock;
68 while(tmp->next != NULL)
78 /* dmarc_init sets up a context that can be re-used for several
79 messages on the same SMTP connection (that come from the
80 same host with the same HELO string) */
85 int *netmask = NULL; /* Ignored */
88 /* Set some sane defaults. Also clears previous results when
89 * multiple messages in one connection. */
91 dmarc_status = US"none";
93 dmarc_pass_fail = US"skipped";
94 dmarc_used_domain = US"";
95 f.dmarc_has_been_checked = FALSE;
96 header_from_sender = NULL;
97 spf_sender_domain = NULL;
98 spf_human_readable = NULL;
100 /* ACLs have "control=dmarc_disable_verify" */
101 if (f.dmarc_disable_verify == TRUE)
104 (void) memset(&dmarc_ctx, '\0', sizeof dmarc_ctx);
105 dmarc_ctx.nscount = 0;
106 libdm_status = opendmarc_policy_library_init(&dmarc_ctx);
107 if (libdm_status != DMARC_PARSE_OKAY)
109 log_write(0, LOG_MAIN|LOG_PANIC, "DMARC failure to init library: %s",
110 opendmarc_policy_status_to_str(libdm_status));
113 if (!dmarc_tld_file || !*dmarc_tld_file)
115 DEBUG(D_receive) debug_printf("DMARC: no dmarc_tld_file\n");
118 else if (opendmarc_tld_read_file(CS dmarc_tld_file, NULL, NULL, NULL))
120 log_write(0, LOG_MAIN|LOG_PANIC, "DMARC failure to load tld list '%s': %s",
121 dmarc_tld_file, strerror(errno));
124 if (!sender_host_address)
126 DEBUG(D_receive) debug_printf("DMARC: no sender_host_address\n");
129 /* This catches locally originated email and startup errors above. */
132 is_ipv6 = string_is_ip_address(sender_host_address, netmask) == 6;
133 if (!(dmarc_pctx = opendmarc_policy_connect_init(sender_host_address, is_ipv6)))
135 log_write(0, LOG_MAIN|LOG_PANIC,
136 "DMARC failure creating policy context: ip=%s", sender_host_address);
145 /* dmarc_store_data stores the header data so that subsequent
146 dmarc_process can access the data */
149 dmarc_store_data(header_line *hdr)
151 /* No debug output because would change every test debug output */
152 if (!f.dmarc_disable_verify)
159 dmarc_send_forensic_report(u_char **ruf)
161 uschar *recipient, *save_sender;
162 BOOL send_status = FALSE;
163 error_block *eblock = NULL;
164 FILE *message_file = NULL;
166 /* Earlier ACL does not have *required* control=dmarc_enable_forensic */
167 if (!f.dmarc_enable_forensic)
170 if ( dmarc_policy == DMARC_POLICY_REJECT && action == DMARC_RESULT_REJECT
171 || dmarc_policy == DMARC_POLICY_QUARANTINE && action == DMARC_RESULT_QUARANTINE
172 || dmarc_policy == DMARC_POLICY_NONE && action == DMARC_RESULT_REJECT
173 || dmarc_policy == DMARC_POLICY_NONE && action == DMARC_RESULT_QUARANTINE
177 eblock = add_to_eblock(eblock, US"Sender Domain", dmarc_used_domain);
178 eblock = add_to_eblock(eblock, US"Sender IP Address", sender_host_address);
179 eblock = add_to_eblock(eblock, US"Received Date", tod_stamp(tod_full));
180 eblock = add_to_eblock(eblock, US"SPF Alignment",
181 sa == DMARC_POLICY_SPF_ALIGNMENT_PASS ? US"yes" : US"no");
182 eblock = add_to_eblock(eblock, US"DKIM Alignment",
183 da == DMARC_POLICY_DKIM_ALIGNMENT_PASS ? US"yes" : US"no");
184 eblock = add_to_eblock(eblock, US"DMARC Results", dmarc_status_text);
186 for (int c = 0; ruf[c]; c++)
188 recipient = string_copylc(ruf[c]);
189 if (Ustrncmp(recipient, "mailto:",7))
191 /* Move to first character past the colon */
194 debug_printf("DMARC forensic report to %s%s\n", recipient,
195 (host_checking || f.running_in_test_harness) ? " (not really)" : "");
196 if (host_checking || f.running_in_test_harness)
199 if (!moan_send_message(recipient, ERRMESS_DMARC_FORENSIC, eblock,
200 header_list, message_file, NULL))
201 log_write(0, LOG_MAIN|LOG_PANIC,
202 "failure to send DMARC forensic report to %s", recipient);
208 /* Look up a DNS dmarc record for the given domain. Return it or NULL */
211 dmarc_dns_lookup(uschar * dom)
213 dns_answer * dnsa = store_get_dns_answer();
215 int rc = dns_lookup(dnsa, string_sprintf("_dmarc.%s", dom), T_TXT, NULL);
217 if (rc == DNS_SUCCEED)
218 for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
219 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT))
220 if (rr->type == T_TXT && rr->size > 3)
221 return string_copyn(US rr->data, rr->size);
227 dmarc_write_history_file()
232 u_char **rua; /* aggregate report addressees */
233 uschar *history_buffer = NULL;
235 if (!dmarc_history_file)
237 DEBUG(D_receive) debug_printf("DMARC history file not set\n");
238 return DMARC_HIST_DISABLED;
240 history_file_fd = log_create(dmarc_history_file);
242 if (history_file_fd < 0)
244 log_write(0, LOG_MAIN|LOG_PANIC, "failure to create DMARC history file: %s",
246 return DMARC_HIST_FILE_ERR;
249 /* Generate the contents of the history file */
250 history_buffer = string_sprintf(
251 "job %s\nreporter %s\nreceived %ld\nipaddr %s\nfrom %s\nmfrom %s\n",
252 message_id, primary_hostname, time(NULL), sender_host_address,
253 header_from_sender, expand_string(US"$sender_address_domain"));
256 history_buffer = string_sprintf("%sspf %d\n", history_buffer, dmarc_spf_ares_result);
257 /* history_buffer = string_sprintf("%sspf -1\n", history_buffer); */
259 history_buffer = string_sprintf(
260 "%s%spdomain %s\npolicy %d\n",
261 history_buffer, dkim_history_buffer, dmarc_used_domain, dmarc_policy);
263 if ((rua = opendmarc_policy_fetch_rua(dmarc_pctx, NULL, 0, 1)))
264 for (tmp_ans = 0; rua[tmp_ans]; tmp_ans++)
265 history_buffer = string_sprintf("%srua %s\n", history_buffer, rua[tmp_ans]);
267 history_buffer = string_sprintf("%srua -\n", history_buffer);
269 opendmarc_policy_fetch_pct(dmarc_pctx, &tmp_ans);
270 history_buffer = string_sprintf("%spct %d\n", history_buffer, tmp_ans);
272 opendmarc_policy_fetch_adkim(dmarc_pctx, &tmp_ans);
273 history_buffer = string_sprintf("%sadkim %d\n", history_buffer, tmp_ans);
275 opendmarc_policy_fetch_aspf(dmarc_pctx, &tmp_ans);
276 history_buffer = string_sprintf("%saspf %d\n", history_buffer, tmp_ans);
278 opendmarc_policy_fetch_p(dmarc_pctx, &tmp_ans);
279 history_buffer = string_sprintf("%sp %d\n", history_buffer, tmp_ans);
281 opendmarc_policy_fetch_sp(dmarc_pctx, &tmp_ans);
282 history_buffer = string_sprintf("%ssp %d\n", history_buffer, tmp_ans);
284 history_buffer = string_sprintf(
285 "%salign_dkim %d\nalign_spf %d\naction %d\n",
286 history_buffer, da, sa, action);
288 /* Write the contents to the history file */
290 debug_printf("DMARC logging history data for opendmarc reporting%s\n",
291 (host_checking || f.running_in_test_harness) ? " (not really)" : "");
292 if (host_checking || f.running_in_test_harness)
295 debug_printf("DMARC history data for debugging:\n%s", history_buffer);
299 written_len = write_to_fd_buf(history_file_fd,
301 Ustrlen(history_buffer));
302 if (written_len == 0)
304 log_write(0, LOG_MAIN|LOG_PANIC, "failure to write to DMARC history file: %s",
306 return DMARC_HIST_WRITE_ERR;
308 (void)close(history_file_fd);
310 return DMARC_HIST_OK;
314 /* dmarc_process adds the envelope sender address to the existing
315 context (if any), retrieves the result, sets up expansion
316 strings and evaluates the condition outcome. */
321 int sr, origin; /* used in SPF section */
322 int dmarc_spf_result = 0; /* stores spf into dmarc conn ctx */
324 pdkim_signature * sig = dkim_signatures;
326 BOOL has_dmarc_record = TRUE;
327 u_char **ruf; /* forensic report addressees, if called for */
329 /* ACLs have "control=dmarc_disable_verify" */
330 if (f.dmarc_disable_verify)
333 /* Store the header From: sender domain for this part of DMARC.
334 * If there is no from_header struct, then it's likely this message
335 * is locally generated and relying on fixups to add it. Just skip
336 * the entire DMARC system if we can't find a From: header....or if
337 * there was a previous error.
341 DEBUG(D_receive) debug_printf("DMARC: no From: header\n");
344 else if (!dmarc_abort)
351 f.parse_allow_group = TRUE;
352 p = parse_find_address_end(from_header->text, FALSE);
353 saveend = *p; *p = '\0';
354 if ((header_from_sender = parse_extract_address(from_header->text, &errormsg,
355 &dummy, &dummy, &domain, FALSE)))
356 header_from_sender += domain;
359 /* The opendmarc library extracts the domain from the email address, but
360 * only try to store it if it's not empty. Otherwise, skip out of DMARC. */
361 if (!header_from_sender || (strcmp( CCS header_from_sender, "") == 0))
363 libdm_status = dmarc_abort
365 : opendmarc_policy_store_from_domain(dmarc_pctx, header_from_sender);
366 if (libdm_status != DMARC_PARSE_OKAY)
368 log_write(0, LOG_MAIN|LOG_PANIC,
369 "failure to store header From: in DMARC: %s, header was '%s'",
370 opendmarc_policy_status_to_str(libdm_status), from_header->text);
375 /* Skip DMARC if connection is SMTP Auth. Temporarily, admin should
376 * instead do this in the ACLs. */
377 if (!dmarc_abort && !sender_host_authenticated)
379 uschar * dmarc_domain;
381 /* Use the envelope sender domain for this part of DMARC */
382 spf_sender_domain = expand_string(US"$sender_address_domain");
385 /* No spf data means null envelope sender so generate a domain name
386 * from the sender_helo_name */
387 if (!spf_sender_domain)
389 spf_sender_domain = sender_helo_name;
390 log_write(0, LOG_MAIN, "DMARC using synthesized SPF sender domain = %s\n",
393 debug_printf("DMARC using synthesized SPF sender domain = %s\n",
396 dmarc_spf_result = DMARC_POLICY_SPF_OUTCOME_NONE;
397 dmarc_spf_ares_result = ARES_RESULT_UNKNOWN;
398 origin = DMARC_POLICY_SPF_ORIGIN_HELO;
399 spf_human_readable = US"";
403 sr = spf_response->result;
404 dmarc_spf_result = sr == SPF_RESULT_NEUTRAL ? DMARC_POLICY_SPF_OUTCOME_NONE :
405 sr == SPF_RESULT_PASS ? DMARC_POLICY_SPF_OUTCOME_PASS :
406 sr == SPF_RESULT_FAIL ? DMARC_POLICY_SPF_OUTCOME_FAIL :
407 sr == SPF_RESULT_SOFTFAIL ? DMARC_POLICY_SPF_OUTCOME_TMPFAIL :
408 DMARC_POLICY_SPF_OUTCOME_NONE;
409 dmarc_spf_ares_result = sr == SPF_RESULT_NEUTRAL ? ARES_RESULT_NEUTRAL :
410 sr == SPF_RESULT_PASS ? ARES_RESULT_PASS :
411 sr == SPF_RESULT_FAIL ? ARES_RESULT_FAIL :
412 sr == SPF_RESULT_SOFTFAIL ? ARES_RESULT_SOFTFAIL :
413 sr == SPF_RESULT_NONE ? ARES_RESULT_NONE :
414 sr == SPF_RESULT_TEMPERROR ? ARES_RESULT_TEMPERROR :
415 sr == SPF_RESULT_PERMERROR ? ARES_RESULT_PERMERROR :
417 origin = DMARC_POLICY_SPF_ORIGIN_MAILFROM;
418 spf_human_readable = US spf_response->header_comment;
420 debug_printf("DMARC using SPF sender domain = %s\n", spf_sender_domain);
422 if (strcmp( CCS spf_sender_domain, "") == 0)
426 libdm_status = opendmarc_policy_store_spf(dmarc_pctx, spf_sender_domain,
427 dmarc_spf_result, origin, spf_human_readable);
428 if (libdm_status != DMARC_PARSE_OKAY)
429 log_write(0, LOG_MAIN|LOG_PANIC, "failure to store spf for DMARC: %s",
430 opendmarc_policy_status_to_str(libdm_status));
433 /* Now we cycle through the dkim signature results and put into
434 * the opendmarc context, further building the DMARC reply. */
435 dkim_history_buffer = US"";
438 int dkim_result, dkim_ares_result, vs, ves;
440 vs = sig->verify_status & ~PDKIM_VERIFY_POLICY;
441 ves = sig->verify_ext_status;
442 dkim_result = vs == PDKIM_VERIFY_PASS ? DMARC_POLICY_DKIM_OUTCOME_PASS :
443 vs == PDKIM_VERIFY_FAIL ? DMARC_POLICY_DKIM_OUTCOME_FAIL :
444 vs == PDKIM_VERIFY_INVALID ? DMARC_POLICY_DKIM_OUTCOME_TMPFAIL :
445 DMARC_POLICY_DKIM_OUTCOME_NONE;
446 libdm_status = opendmarc_policy_store_dkim(dmarc_pctx, US sig->domain,
449 debug_printf("DMARC adding DKIM sender domain = %s\n", sig->domain);
450 if (libdm_status != DMARC_PARSE_OKAY)
451 log_write(0, LOG_MAIN|LOG_PANIC,
452 "failure to store dkim (%s) for DMARC: %s",
453 sig->domain, opendmarc_policy_status_to_str(libdm_status));
456 vs == PDKIM_VERIFY_PASS ? ARES_RESULT_PASS :
457 vs == PDKIM_VERIFY_FAIL ? ARES_RESULT_FAIL :
458 vs == PDKIM_VERIFY_NONE ? ARES_RESULT_NONE :
459 vs == PDKIM_VERIFY_INVALID ?
460 ves == PDKIM_VERIFY_INVALID_PUBKEY_UNAVAILABLE ? ARES_RESULT_PERMERROR :
461 ves == PDKIM_VERIFY_INVALID_BUFFER_SIZE ? ARES_RESULT_PERMERROR :
462 ves == PDKIM_VERIFY_INVALID_PUBKEY_DNSRECORD ? ARES_RESULT_PERMERROR :
463 ves == PDKIM_VERIFY_INVALID_PUBKEY_IMPORT ? ARES_RESULT_PERMERROR :
464 ARES_RESULT_UNKNOWN :
466 dkim_history_buffer = string_sprintf("%sdkim %s %d\n", dkim_history_buffer,
467 sig->domain, dkim_ares_result);
471 /* Look up DMARC policy record in DNS. We do this explicitly, rather than
472 letting the dmarc library do it with opendmarc_policy_query_dmarc(), so that
473 our dns access path is used for debug tracing and for the testsuite
476 libdm_status = (rr = dmarc_dns_lookup(header_from_sender))
477 ? opendmarc_policy_store_dmarc(dmarc_pctx, rr, header_from_sender, NULL)
478 : DMARC_DNS_ERROR_NO_RECORD;
479 switch (libdm_status)
481 case DMARC_DNS_ERROR_NXDOMAIN:
482 case DMARC_DNS_ERROR_NO_RECORD:
484 debug_printf("DMARC no record found for %s\n", header_from_sender);
485 has_dmarc_record = FALSE;
487 case DMARC_PARSE_OKAY:
489 debug_printf("DMARC record found for %s\n", header_from_sender);
491 case DMARC_PARSE_ERROR_BAD_VALUE:
493 debug_printf("DMARC record parse error for %s\n", header_from_sender);
494 has_dmarc_record = FALSE;
497 /* everything else, skip dmarc */
499 debug_printf("DMARC skipping (%d), unsure what to do with %s",
500 libdm_status, from_header->text);
501 has_dmarc_record = FALSE;
505 /* Store the policy string in an expandable variable. */
507 libdm_status = opendmarc_policy_fetch_p(dmarc_pctx, &tmp_ans);
508 for (c = 0; dmarc_policy_description[c].name; c++)
509 if (tmp_ans == dmarc_policy_description[c].value)
511 dmarc_domain_policy = string_sprintf("%s",dmarc_policy_description[c].name);
515 /* Can't use exim's string manipulation functions so allocate memory
516 for libopendmarc using its max hostname length definition. */
518 dmarc_domain = store_get(DMARC_MAXHOSTNAMELEN, TRUE);
519 libdm_status = opendmarc_policy_fetch_utilized_domain(dmarc_pctx,
520 dmarc_domain, DMARC_MAXHOSTNAMELEN-1);
521 store_release_above(dmarc_domain + Ustrlen(dmarc_domain)+1);
522 dmarc_used_domain = dmarc_domain;
524 if (libdm_status != DMARC_PARSE_OKAY)
525 log_write(0, LOG_MAIN|LOG_PANIC,
526 "failure to read domainname used for DMARC lookup: %s",
527 opendmarc_policy_status_to_str(libdm_status));
529 dmarc_policy = libdm_status = opendmarc_get_policy_to_enforce(dmarc_pctx);
532 case DMARC_POLICY_ABSENT: /* No DMARC record found */
533 dmarc_status = US"norecord";
534 dmarc_pass_fail = US"none";
535 dmarc_status_text = US"No DMARC record";
536 action = DMARC_RESULT_ACCEPT;
538 case DMARC_FROM_DOMAIN_ABSENT: /* No From: domain */
539 dmarc_status = US"nofrom";
540 dmarc_pass_fail = US"temperror";
541 dmarc_status_text = US"No From: domain found";
542 action = DMARC_RESULT_ACCEPT;
544 case DMARC_POLICY_NONE: /* Accept and report */
545 dmarc_status = US"none";
546 dmarc_pass_fail = US"none";
547 dmarc_status_text = US"None, Accept";
548 action = DMARC_RESULT_ACCEPT;
550 case DMARC_POLICY_PASS: /* Explicit accept */
551 dmarc_status = US"accept";
552 dmarc_pass_fail = US"pass";
553 dmarc_status_text = US"Accept";
554 action = DMARC_RESULT_ACCEPT;
556 case DMARC_POLICY_REJECT: /* Explicit reject */
557 dmarc_status = US"reject";
558 dmarc_pass_fail = US"fail";
559 dmarc_status_text = US"Reject";
560 action = DMARC_RESULT_REJECT;
562 case DMARC_POLICY_QUARANTINE: /* Explicit quarantine */
563 dmarc_status = US"quarantine";
564 dmarc_pass_fail = US"fail";
565 dmarc_status_text = US"Quarantine";
566 action = DMARC_RESULT_QUARANTINE;
569 dmarc_status = US"temperror";
570 dmarc_pass_fail = US"temperror";
571 dmarc_status_text = US"Internal Policy Error";
572 action = DMARC_RESULT_TEMPFAIL;
576 libdm_status = opendmarc_policy_fetch_alignment(dmarc_pctx, &da, &sa);
577 if (libdm_status != DMARC_PARSE_OKAY)
578 log_write(0, LOG_MAIN|LOG_PANIC, "failure to read DMARC alignment: %s",
579 opendmarc_policy_status_to_str(libdm_status));
581 if (has_dmarc_record)
583 log_write(0, LOG_MAIN, "DMARC results: spf_domain=%s dmarc_domain=%s "
584 "spf_align=%s dkim_align=%s enforcement='%s'",
585 spf_sender_domain, dmarc_used_domain,
586 sa==DMARC_POLICY_SPF_ALIGNMENT_PASS ?"yes":"no",
587 da==DMARC_POLICY_DKIM_ALIGNMENT_PASS ?"yes":"no",
589 history_file_status = dmarc_write_history_file();
590 /* Now get the forensic reporting addresses, if any */
591 ruf = opendmarc_policy_fetch_ruf(dmarc_pctx, NULL, 0, 1);
592 dmarc_send_forensic_report(ruf);
596 /* shut down libopendmarc */
598 (void) opendmarc_policy_connect_shutdown(dmarc_pctx);
599 if (!f.dmarc_disable_verify)
600 (void) opendmarc_policy_library_shutdown(&dmarc_ctx);
606 dmarc_exim_expand_query(int what)
608 if (f.dmarc_disable_verify || !dmarc_pctx)
609 return dmarc_exim_expand_defaults(what);
611 if (what == DMARC_VERIFY_STATUS)
617 dmarc_exim_expand_defaults(int what)
619 if (what == DMARC_VERIFY_STATUS)
620 return f.dmarc_disable_verify ? US"off" : US"none";
626 authres_dmarc(gstring * g)
628 if (f.dmarc_has_been_checked)
630 g = string_append(g, 2, US";\n\tdmarc=", dmarc_pass_fail);
631 if (header_from_sender)
632 g = string_append(g, 2, US" header.from=", header_from_sender);
637 # endif /* SUPPORT_SPF */
638 #endif /* SUPPORT_DMARC */