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