1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Experimental SPF support.
6 Copyright (c) Tom Kistner <tom@duncanthrax.net> 2004 - 2014
8 Copyright (c) The Exim Maintainers 2015 - 2018
11 /* Code for calling spf checks via libspf-alt. Called from acl.c. */
16 /* must be kept in numeric order */
17 static spf_result_id spf_result_id_list
[] = {
25 { US
"err_temp", 6 }, /* Deprecated Apr 2014 */
26 { US
"err_perm", 7 }, /* Deprecated Apr 2014 */
27 { US
"temperror", 6 }, /* RFC 4408 defined */
28 { US
"permerror", 7 } /* RFC 4408 defined */
31 SPF_server_t
*spf_server
= NULL
;
32 SPF_request_t
*spf_request
= NULL
;
33 SPF_response_t
*spf_response
= NULL
;
34 SPF_response_t
*spf_response_2mx
= NULL
;
37 /* spf_init sets up a context that can be re-used for several
38 messages on the same SMTP connection (that come from the
39 same host with the same HELO string)
41 Return: Boolean success */
44 spf_init(uschar
*spf_helo_domain
, uschar
*spf_remote_addr
)
46 spf_server
= SPF_server_new(SPF_DNS_CACHE
, 0);
50 DEBUG(D_receive
) debug_printf("spf: SPF_server_new() failed.\n");
54 if (SPF_server_set_rec_dom(spf_server
, CS primary_hostname
))
56 DEBUG(D_receive
) debug_printf("spf: SPF_server_set_rec_dom(\"%s\") failed.\n",
62 spf_request
= SPF_request_new(spf_server
);
64 if ( SPF_request_set_ipv4_str(spf_request
, CS spf_remote_addr
)
65 && SPF_request_set_ipv6_str(spf_request
, CS spf_remote_addr
)
69 debug_printf("spf: SPF_request_set_ipv4_str() and "
70 "SPF_request_set_ipv6_str() failed [%s]\n", spf_remote_addr
);
76 if (SPF_request_set_helo_dom(spf_request
, CS spf_helo_domain
))
78 DEBUG(D_receive
) debug_printf("spf: SPF_set_helo_dom(\"%s\") failed.\n",
89 /* spf_process adds the envelope sender address to the existing
90 context (if any), retrieves the result, sets up expansion
91 strings and evaluates the condition outcome.
96 spf_process(const uschar
**listptr
, uschar
*spf_envelope_sender
, int action
)
99 const uschar
*list
= *listptr
;
100 uschar
*spf_result_id
;
101 int rc
= SPF_RESULT_PERMERROR
;
103 if (!(spf_server
&& spf_request
))
104 /* no global context, assume temp error and skip to evaluation */
105 rc
= SPF_RESULT_PERMERROR
;
107 else if (SPF_request_set_env_from(spf_request
, CS spf_envelope_sender
))
108 /* Invalid sender address. This should be a real rare occurence */
109 rc
= SPF_RESULT_PERMERROR
;
114 if (action
== SPF_PROCESS_FALLBACK
)
115 SPF_request_query_fallback(spf_request
, &spf_response
, CS spf_guess
);
117 SPF_request_query_mailfrom(spf_request
, &spf_response
);
119 /* set up expansion items */
120 spf_header_comment
= US
SPF_response_get_header_comment(spf_response
);
121 spf_received
= US
SPF_response_get_received_spf(spf_response
);
122 spf_result
= US
SPF_strresult(SPF_response_result(spf_response
));
123 spf_smtp_comment
= US
SPF_response_get_smtp_comment(spf_response
);
125 rc
= SPF_response_result(spf_response
);
128 /* We got a result. Now see if we should return OK or FAIL for it */
129 DEBUG(D_acl
) debug_printf("SPF result is %s (%d)\n", SPF_strresult(rc
), rc
);
131 if (action
== SPF_PROCESS_GUESS
&& (!strcmp (SPF_strresult(rc
), "none")))
132 return spf_process(listptr
, spf_envelope_sender
, SPF_PROCESS_FALLBACK
);
134 while ((spf_result_id
= string_nextinlist(&list
, &sep
, NULL
, 0)))
138 if ((negate
= spf_result_id
[0] == '!'))
141 result
= Ustrcmp(spf_result_id
, spf_result_id_list
[rc
].name
) == 0;
142 if (negate
!= result
) return OK
;
152 authres_spf(gstring
* g
)
154 if (!spf_result
) return g
;
156 return string_append(g
, 4, US
";\n\tspf=", spf_result
,
157 US
" smtp.mailfrom=", expand_string(US
"$sender_address_domain"));