LDAP: Fix debug messages
[exim.git] / src / src / spf.c
CommitLineData
8523533c
TK
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
8e669ac1 4
8523533c 5/* Experimental SPF support.
5a66c31b 6 Copyright (c) Tom Kistner <tom@duncanthrax.net> 2004 - 2014
8523533c 7 License: GPL */
8e669ac1 8
8523533c
TK
9/* Code for calling spf checks via libspf-alt. Called from acl.c. */
10
11#include "exim.h"
12#ifdef EXPERIMENTAL_SPF
13
6d06cf48
TK
14/* must be kept in numeric order */
15static spf_result_id spf_result_id_list[] = {
16 { US"invalid", 0},
17 { US"neutral", 1 },
18 { US"pass", 2 },
19 { US"fail", 3 },
20 { US"softfail", 4 },
21 { US"none", 5 },
982650ec
TL
22 { US"err_temp", 6 }, /* Deprecated Apr 2014 */
23 { US"err_perm", 7 }, /* Deprecated Apr 2014 */
24 { US"temperror", 6 }, /* RFC 4408 defined */
25 { US"permerror", 7 } /* RFC 4408 defined */
6d06cf48
TK
26};
27
384152a6
TK
28SPF_server_t *spf_server = NULL;
29SPF_request_t *spf_request = NULL;
30SPF_response_t *spf_response = NULL;
31SPF_response_t *spf_response_2mx = NULL;
8523533c
TK
32
33/* spf_init sets up a context that can be re-used for several
34 messages on the same SMTP connection (that come from the
35 same host with the same HELO string) */
8e669ac1 36
8523533c 37int spf_init(uschar *spf_helo_domain, uschar *spf_remote_addr) {
8e669ac1 38
92f1b170 39 spf_server = SPF_server_new(SPF_DNS_CACHE, 0);
8e669ac1 40
384152a6
TK
41 if ( spf_server == NULL ) {
42 debug_printf("spf: SPF_server_new() failed.\n");
43 return 0;
8523533c
TK
44 }
45
7156b1ef 46 if (SPF_server_set_rec_dom(spf_server, CS primary_hostname)) {
6f7fe114 47 debug_printf("spf: SPF_server_set_rec_dom(\"%s\") failed.\n", primary_hostname);
7b3a77e5
TK
48 spf_server = NULL;
49 return 0;
50 }
51
384152a6 52 spf_request = SPF_request_new(spf_server);
8523533c 53
6f7fe114
PP
54 if (SPF_request_set_ipv4_str(spf_request, CS spf_remote_addr)
55 && SPF_request_set_ipv6_str(spf_request, CS spf_remote_addr)) {
56 debug_printf("spf: SPF_request_set_ipv4_str() and SPF_request_set_ipv6_str() failed [%s]\n", spf_remote_addr);
384152a6
TK
57 spf_server = NULL;
58 spf_request = NULL;
59 return 0;
8523533c
TK
60 }
61
7156b1ef 62 if (SPF_request_set_helo_dom(spf_request, CS spf_helo_domain)) {
6f7fe114 63 debug_printf("spf: SPF_set_helo_dom(\"%s\") failed.\n", spf_helo_domain);
384152a6
TK
64 spf_server = NULL;
65 spf_request = NULL;
66 return 0;
8523533c 67 }
8e669ac1 68
8523533c
TK
69 return 1;
70}
71
72
73/* spf_process adds the envelope sender address to the existing
74 context (if any), retrieves the result, sets up expansion
75 strings and evaluates the condition outcome. */
76
65a7d8c3 77int spf_process(uschar **listptr, uschar *spf_envelope_sender, int action) {
8523533c
TK
78 int sep = 0;
79 uschar *list = *listptr;
80 uschar *spf_result_id;
81 uschar spf_result_id_buffer[128];
384152a6 82 int rc = SPF_RESULT_PERMERROR;
8e669ac1 83
384152a6 84 if (!(spf_server && spf_request)) {
8523533c 85 /* no global context, assume temp error and skip to evaluation */
384152a6 86 rc = SPF_RESULT_PERMERROR;
8523533c
TK
87 goto SPF_EVALUATE;
88 };
89
7156b1ef 90 if (SPF_request_set_env_from(spf_request, CS spf_envelope_sender)) {
8523533c 91 /* Invalid sender address. This should be a real rare occurence */
384152a6 92 rc = SPF_RESULT_PERMERROR;
8523533c 93 goto SPF_EVALUATE;
8e669ac1 94 }
8523533c
TK
95
96 /* get SPF result */
65a7d8c3 97 if (action == SPF_PROCESS_FALLBACK)
7156b1ef 98 SPF_request_query_fallback(spf_request, &spf_response, CS spf_guess);
65a7d8c3
NM
99 else
100 SPF_request_query_mailfrom(spf_request, &spf_response);
8523533c
TK
101
102 /* set up expansion items */
384152a6
TK
103 spf_header_comment = (uschar *)SPF_response_get_header_comment(spf_response);
104 spf_received = (uschar *)SPF_response_get_received_spf(spf_response);
105 spf_result = (uschar *)SPF_strresult(SPF_response_result(spf_response));
106 spf_smtp_comment = (uschar *)SPF_response_get_smtp_comment(spf_response);
8523533c 107
384152a6 108 rc = SPF_response_result(spf_response);
8523533c
TK
109
110 /* We got a result. Now see if we should return OK or FAIL for it */
111 SPF_EVALUATE:
112 debug_printf("SPF result is %s (%d)\n", SPF_strresult(rc), rc);
65a7d8c3
NM
113
114 if (action == SPF_PROCESS_GUESS && (!strcmp (SPF_strresult(rc), "none")))
115 return spf_process(listptr, spf_envelope_sender, SPF_PROCESS_FALLBACK);
116
8523533c
TK
117 while ((spf_result_id = string_nextinlist(&list, &sep,
118 spf_result_id_buffer,
119 sizeof(spf_result_id_buffer))) != NULL) {
120 int negate = 0;
121 int result = 0;
122
123 /* Check for negation */
124 if (spf_result_id[0] == '!') {
125 negate = 1;
126 spf_result_id++;
127 };
128
129 /* Check the result identifier */
130 result = Ustrcmp(spf_result_id, spf_result_id_list[rc].name);
131 if (!negate && result==0) return OK;
132 if (negate && result!=0) return OK;
133 };
134
135 /* no match */
136 return FAIL;
137}
138
139#endif