Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
[citadel.git] / citadel / domain.c
1 /*
2  * DNS lookup for SMTP sender
3  *
4  * Copyright (c) 1987-2011 by the citadel.org team
5  *
6  * This program is open source software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License, version 3.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include "sysdep.h"
16 #include <stdio.h>
17 #include <syslog.h>
18 #ifdef HAVE_RESOLV_H
19 #include <arpa/nameser.h>
20 #ifdef HAVE_ARPA_NAMESER_COMPAT_H
21 #include <arpa/nameser_compat.h>
22 #endif
23 #include <resolv.h>
24 #endif
25 #include <libcitadel.h>
26 #include "sysdep_decls.h"
27 #include "citadel.h"
28 #include "domain.h"
29 #include "internet_addressing.h"
30
31
32 /*
33  * get_hosts() checks the Internet configuration for various types of
34  * entries and returns them in the same format as getmx() does -- fill the
35  * buffer with a delimited list of hosts and return the number of hosts.
36  * 
37  * This is used to fetch MX smarthosts, SpamAssassin hosts, etc.
38  */
39 int get_hosts(char *mxbuf, char *rectype) {
40         int config_lines;
41         int i;
42         char buf[256];
43         char host[256], type[256];
44         int total_smarthosts = 0;
45
46         if (inetcfg == NULL) return(0);
47         strcpy(mxbuf, "");
48
49         config_lines = num_tokens(inetcfg, '\n');
50         for (i=0; i<config_lines; ++i) {
51                 extract_token(buf, inetcfg, i, '\n', sizeof buf);
52                 extract_token(host, buf, 0, '|', sizeof host);
53                 extract_token(type, buf, 1, '|', sizeof type);
54
55                 if (!strcasecmp(type, rectype)) {
56                         strcat(mxbuf, host);
57                         strcat(mxbuf, "|");
58                         ++total_smarthosts;
59                 }
60         }
61
62         return(total_smarthosts);
63 }
64
65
66 /*
67  * Compare the preference of two MX records.  First check by the actual
68  * number listed in the MX record.  If they're identical, randomize the
69  * result.
70  */
71 int mx_compare_pref(const void *mx1, const void *mx2) {
72         int pref1;
73         int pref2;
74
75         pref1 = ((const struct mx *)mx1)->pref;
76         pref2 = ((const struct mx *)mx2)->pref;
77
78         if (pref1 > pref2) {
79                 return(1);
80         }
81         else if (pref1 < pref2) {
82                 return(0);
83         }
84         else {
85                 return(rand() % 2);
86         }
87 }
88
89
90 /* 
91  * getmx()
92  *
93  * Return one or more MX's for a mail destination.
94  *
95  * Upon success, it fills 'mxbuf' with one or more MX hosts, separated by
96  * vertical bar characters, and returns the number of hosts as its return
97  * value.  If no MX's are found, it returns 0.
98  *
99  */
100 int getmx(char *mxbuf, char *dest) {
101
102 #ifdef HAVE_RESOLV_H
103         union {
104                         u_char bytes[1024];
105                         HEADER header;
106     } answer;
107 #endif
108
109         int ret;
110         unsigned char *startptr, *endptr, *ptr;
111         char expanded_buf[1024];
112         unsigned short pref, type;
113         int n = 0;
114         int qdcount;
115
116         struct mx *mxrecs = NULL;
117         int num_mxrecs = 0;
118         
119         /* If we're configured to send all mail to a smart-host, then our
120          * job here is really easy.
121          */
122         n = get_hosts(mxbuf, "smarthost");
123         if (n > 0) return(n);
124
125         /*
126          * No smart-host?  Look up the best MX for a site.
127          * Make a call to the resolver library.
128          */
129
130         ret = res_query(
131                 dest,
132                 C_IN, T_MX, (unsigned char *)answer.bytes, sizeof(answer)  );
133
134         if (ret < 0) {
135                 mxrecs = malloc(sizeof(struct mx));
136                 mxrecs[0].pref = 0;
137                 strcpy(mxrecs[0].host, dest);
138                 num_mxrecs = 1;
139         }
140         else {
141
142                 /* If we had to truncate, shrink the number to avoid fireworks */
143                 if (ret > sizeof(answer))
144                         ret = sizeof(answer);
145         
146                 startptr = &answer.bytes[0];            /* start and end of buffer */
147                 endptr = &answer.bytes[ret];
148                 ptr = startptr + HFIXEDSZ;      /* advance past header */
149         
150                 for (qdcount = ntohs(answer.header.qdcount); qdcount--; ptr += ret + QFIXEDSZ) {
151                         if ((ret = dn_skipname(ptr, endptr)) < 0) {
152                                 syslog(LOG_DEBUG, "dn_skipname error\n");
153                                 return(0);
154                         }
155                 }
156         
157                 while(1) {
158                         memset(expanded_buf, 0, sizeof(expanded_buf));
159                         ret = dn_expand(startptr,
160                                         endptr,
161                                         ptr,
162                                         expanded_buf,
163                                         sizeof(expanded_buf)
164                                         );
165                         if (ret < 0) break;
166                         ptr += ret;
167         
168                         GETSHORT(type, ptr);
169                         ptr += INT16SZ + INT32SZ;
170                         GETSHORT(n, ptr);
171         
172                         if (type != T_MX) {
173                                 ptr += n;
174                         }
175         
176                         else {
177                                 GETSHORT(pref, ptr);
178                                 ret = dn_expand(startptr,
179                                                 endptr,
180                                                 ptr,
181                                                 expanded_buf,
182                                                 sizeof(expanded_buf)
183                                                 );
184                                 ptr += ret;
185         
186                                 ++num_mxrecs;
187                                 if (mxrecs == NULL) {
188                                         mxrecs = malloc(sizeof(struct mx));
189                                 }
190                                 else {
191                                         mxrecs = realloc(mxrecs,
192                                             (sizeof(struct mx) * num_mxrecs) );
193                                 }
194         
195                                 mxrecs[num_mxrecs - 1].pref = pref;
196                                 strcpy(mxrecs[num_mxrecs - 1].host,
197                                        expanded_buf);
198                         }
199                 }
200         }
201
202         /* Sort the MX records by preference */
203         if (num_mxrecs > 1) {
204                 qsort(mxrecs, num_mxrecs, sizeof(struct mx), mx_compare_pref);
205         }
206
207         strcpy(mxbuf, "");
208         for (n=0; n<num_mxrecs; ++n) {
209                 strcat(mxbuf, mxrecs[n].host);
210                 strcat(mxbuf, "|");
211         }
212         free(mxrecs);
213
214         /* Append any fallback smart hosts we have configured.
215          */
216         num_mxrecs += get_hosts(&mxbuf[strlen(mxbuf)], "fallbackhost");
217         return(num_mxrecs);
218 }