Merge branch 'mdw/bounce-msgid'
[qmail] / qmail-smtpd.c
CommitLineData
2117e02e
MW
1#include "sig.h"
2#include "readwrite.h"
2117e02e
MW
3#include "stralloc.h"
4#include "substdio.h"
5#include "alloc.h"
6#include "auto_qmail.h"
7#include "control.h"
8#include "received.h"
9#include "constmap.h"
10#include "error.h"
11#include "ipme.h"
12#include "ip.h"
13#include "qmail.h"
14#include "str.h"
15#include "fmt.h"
212b6f5d 16#include "scan.h"
2117e02e
MW
17#include "byte.h"
18#include "case.h"
19#include "env.h"
20#include "now.h"
21#include "exit.h"
212b6f5d
MW
22#include "rcpthosts.h"
23#include "timeoutread.h"
24#include "timeoutwrite.h"
25#include "commands.h"
2117e02e
MW
26
27#define MAXHOPS 100
212b6f5d 28unsigned int databytes = 0;
2117e02e
MW
29int timeout = 1200;
30
212b6f5d 31int safewrite(fd,buf,len) int fd; char *buf; int len;
2117e02e 32{
212b6f5d
MW
33 int r;
34 r = timeoutwrite(timeout,fd,buf,len);
35 if (r <= 0) _exit(1);
36 return r;
2117e02e
MW
37}
38
212b6f5d
MW
39char ssoutbuf[512];
40substdio ssout = SUBSTDIO_FDBUF(safewrite,1,ssoutbuf,sizeof ssoutbuf);
2117e02e 41
212b6f5d
MW
42void flush() { substdio_flush(&ssout); }
43void out(s) char *s; { substdio_puts(&ssout,s); }
2117e02e 44
212b6f5d
MW
45void die_read() { _exit(1); }
46void die_alarm() { out("451 timeout (#4.4.2)\r\n"); flush(); _exit(1); }
47void die_nomem() { out("421 out of memory (#4.3.0)\r\n"); flush(); _exit(1); }
48void die_control() { out("421 unable to read controls (#4.3.0)\r\n"); flush(); _exit(1); }
49void die_ipme() { out("421 unable to figure out my IP addresses (#4.3.0)\r\n"); flush(); _exit(1); }
50void straynewline() { out("451 See http://pobox.com/~djb/docs/smtplf.html.\r\n"); flush(); _exit(1); }
2117e02e 51
212b6f5d
MW
52void err_bmf() { out("553 sorry, your envelope sender is in my badmailfrom list (#5.7.1)\r\n"); }
53void err_nogateway() { out("553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)\r\n"); }
54void err_unimpl() { out("502 unimplemented (#5.5.1)\r\n"); }
55void err_syntax() { out("555 syntax error (#5.5.4)\r\n"); }
56void err_wantmail() { out("503 MAIL first (#5.5.1)\r\n"); }
57void err_wantrcpt() { out("503 RCPT first (#5.5.1)\r\n"); }
58void err_noop() { out("250 ok\r\n"); }
59void err_vrfy() { out("252 send some mail, i'll try my best\r\n"); }
60void err_qqt() { out("451 qqt failure (#4.3.0)\r\n"); }
2117e02e 61
2117e02e 62
212b6f5d
MW
63stralloc greeting = {0};
64
65void smtp_greet(code) char *code;
66{
67 substdio_puts(&ssout,code);
68 substdio_put(&ssout,greeting.s,greeting.len);
69}
70void smtp_help()
71{
72 out("214 qmail home page: http://pobox.com/~djb/qmail.html\r\n");
73}
74void smtp_quit()
75{
76 smtp_greet("221 "); out("\r\n"); flush(); _exit(0);
77}
2117e02e
MW
78
79char *remoteip;
80char *remotehost;
81char *remoteinfo;
82char *local;
83char *relayclient;
84
212b6f5d
MW
85stralloc helohost = {0};
86char *fakehelo; /* pointer into helohost, or 0 */
2117e02e 87
212b6f5d
MW
88void dohelo(arg) char *arg; {
89 if (!stralloc_copys(&helohost,arg)) die_nomem();
90 if (!stralloc_0(&helohost)) die_nomem();
91 fakehelo = case_diffs(remotehost,helohost.s) ? helohost.s : 0;
2117e02e
MW
92}
93
212b6f5d
MW
94int liphostok = 0;
95stralloc liphost = {0};
96int bmfok = 0;
97stralloc bmf = {0};
98struct constmap mapbmf;
2117e02e 99
212b6f5d 100void setup()
2117e02e 101{
212b6f5d
MW
102 char *x;
103 unsigned long u;
104
105 if (control_init() == -1) die_control();
106 if (control_rldef(&greeting,"control/smtpgreeting",1,(char *) 0) != 1)
107 die_control();
108 liphostok = control_rldef(&liphost,"control/localiphost",1,(char *) 0);
109 if (liphostok == -1) die_control();
110 if (control_readint(&timeout,"control/timeoutsmtpd") == -1) die_control();
111 if (timeout <= 0) timeout = 1;
112
113 if (rcpthosts_init() == -1) die_control();
114
115 bmfok = control_readfile(&bmf,"control/badmailfrom",0);
116 if (bmfok == -1) die_control();
117 if (bmfok)
118 if (!constmap_init(&mapbmf,bmf.s,bmf.len,0)) die_nomem();
119
120 if (control_readint(&databytes,"control/databytes") == -1) die_control();
121 x = env_get("DATABYTES");
122 if (x) { scan_ulong(x,&u); databytes = u; }
123 if (!(databytes + 1)) --databytes;
124
125 remoteip = env_get("TCPREMOTEIP");
126 if (!remoteip) remoteip = "unknown";
127 local = env_get("TCPLOCALHOST");
128 if (!local) local = env_get("TCPLOCALIP");
129 if (!local) local = "unknown";
130 remotehost = env_get("TCPREMOTEHOST");
131 if (!remotehost) remotehost = "unknown";
132 remoteinfo = env_get("TCPREMOTEINFO");
133 relayclient = env_get("RELAYCLIENT");
134 dohelo(remotehost);
2117e02e
MW
135}
136
212b6f5d
MW
137
138stralloc addr = {0}; /* will be 0-terminated, if addrparse returns 1 */
139
2117e02e
MW
140int addrparse(arg)
141char *arg;
142{
212b6f5d
MW
143 int i;
144 char ch;
145 char terminator;
146 struct ip_address ip;
147 int flagesc;
148 int flagquoted;
149
150 terminator = '>';
151 i = str_chr(arg,'<');
152 if (arg[i])
153 arg += i + 1;
154 else { /* partner should go read rfc 821 */
155 terminator = ' ';
156 arg += str_chr(arg,':');
157 if (*arg == ':') ++arg;
158 while (*arg == ' ') ++arg;
159 }
160
161 /* strip source route */
162 if (*arg == '@') while (*arg) if (*arg++ == ':') break;
163
164 if (!stralloc_copys(&addr,"")) die_nomem();
165 flagesc = 0;
166 flagquoted = 0;
167 for (i = 0;ch = arg[i];++i) { /* copy arg to addr, stripping quotes */
168 if (flagesc) {
169 if (!stralloc_append(&addr,&ch)) die_nomem();
170 flagesc = 0;
171 }
172 else {
173 if (!flagquoted && (ch == terminator)) break;
174 switch(ch) {
175 case '\\': flagesc = 1; break;
176 case '"': flagquoted = !flagquoted; break;
177 default: if (!stralloc_append(&addr,&ch)) die_nomem();
2117e02e
MW
178 }
179 }
180 }
212b6f5d
MW
181 /* could check for termination failure here, but why bother? */
182 if (!stralloc_append(&addr,"")) die_nomem();
183
184 if (liphostok) {
185 i = byte_rchr(addr.s,addr.len,'@');
186 if (i < addr.len) /* if not, partner should go read rfc 821 */
187 if (addr.s[i + 1] == '[')
188 if (!addr.s[i + 1 + ip_scanbracket(addr.s + i + 1,&ip)])
189 if (ipme_is(&ip)) {
190 addr.len = i + 1;
191 if (!stralloc_cat(&addr,&liphost)) die_nomem();
192 if (!stralloc_0(&addr)) die_nomem();
2117e02e
MW
193 }
194 }
195
212b6f5d
MW
196 if (addr.len > 900) return 0;
197 return 1;
2117e02e
MW
198}
199
212b6f5d 200int bmfcheck()
2117e02e 201{
212b6f5d
MW
202 int j;
203 if (!bmfok) return 0;
204 if (constmap(&mapbmf,addr.s,addr.len - 1)) return 1;
205 j = byte_rchr(addr.s,addr.len,'@');
206 if (j < addr.len)
207 if (constmap(&mapbmf,addr.s + j,addr.len - j - 1)) return 1;
208 return 0;
2117e02e
MW
209}
210
212b6f5d 211int addrallowed()
2117e02e 212{
212b6f5d
MW
213 int r;
214 r = rcpthosts(addr.s,str_len(addr.s));
215 if (r == -1) die_control();
216 return r;
2117e02e
MW
217}
218
212b6f5d
MW
219
220int seenmail = 0;
221int flagbarf; /* defined if seenmail */
222stralloc mailfrom = {0};
223stralloc rcptto = {0};
224
225void smtp_helo(arg) char *arg;
226{
227 smtp_greet("250 "); out("\r\n");
228 seenmail = 0; dohelo(arg);
229}
230void smtp_ehlo(arg) char *arg;
231{
232 smtp_greet("250-"); out("\r\n250-PIPELINING\r\n250 8BITMIME\r\n");
233 seenmail = 0; dohelo(arg);
234}
235void smtp_rset()
236{
237 seenmail = 0;
238 out("250 flushed\r\n");
239}
240void smtp_mail(arg) char *arg;
241{
242 if (!addrparse(arg)) { err_syntax(); return; }
243 flagbarf = bmfcheck();
244 seenmail = 1;
245 if (!stralloc_copys(&rcptto,"")) die_nomem();
246 if (!stralloc_copys(&mailfrom,addr.s)) die_nomem();
247 if (!stralloc_0(&mailfrom)) die_nomem();
248 out("250 ok\r\n");
249}
2117e02e 250void smtp_rcpt(arg) char *arg; {
212b6f5d
MW
251 if (!seenmail) { err_wantmail(); return; }
252 if (!addrparse(arg)) { err_syntax(); return; }
253 if (flagbarf) { err_bmf(); return; }
254 if (relayclient) {
255 --addr.len;
256 if (!stralloc_cats(&addr,relayclient)) die_nomem();
257 if (!stralloc_0(&addr)) die_nomem();
2117e02e 258 }
212b6f5d
MW
259 else
260 if (!addrallowed()) { err_nogateway(); return; }
261 if (!stralloc_cats(&rcptto,"T")) die_nomem();
262 if (!stralloc_cats(&rcptto,addr.s)) die_nomem();
263 if (!stralloc_0(&rcptto)) die_nomem();
264 out("250 ok\r\n");
265}
2117e02e 266
212b6f5d
MW
267
268int saferead(fd,buf,len) int fd; char *buf; int len;
2117e02e 269{
212b6f5d
MW
270 int r;
271 flush();
272 r = timeoutread(timeout,fd,buf,len);
273 if (r == -1) if (errno == error_timeout) die_alarm();
274 if (r <= 0) die_read();
275 return r;
2117e02e
MW
276}
277
212b6f5d
MW
278char ssinbuf[1024];
279substdio ssin = SUBSTDIO_FDBUF(saferead,0,ssinbuf,sizeof ssinbuf);
280
281struct qmail qqt;
282unsigned int bytestooverflow = 0;
283
284void put(ch)
285char *ch;
286{
287 if (bytestooverflow)
288 if (!--bytestooverflow)
289 qmail_fail(&qqt);
290 qmail_put(&qqt,ch,1);
2117e02e
MW
291}
292
212b6f5d
MW
293void blast(hops)
294int *hops;
2117e02e 295{
212b6f5d
MW
296 char ch;
297 int state;
298 int flaginheader;
299 int pos; /* number of bytes since most recent \n, if fih */
300 int flagmaybex; /* 1 if this line might match RECEIVED, if fih */
301 int flagmaybey; /* 1 if this line might match \r\n, if fih */
302 int flagmaybez; /* 1 if this line might match DELIVERED, if fih */
303
304 state = 1;
305 *hops = 0;
306 flaginheader = 1;
307 pos = 0; flagmaybex = flagmaybey = flagmaybez = 1;
308 for (;;) {
309 substdio_get(&ssin,&ch,1);
310 if (flaginheader) {
311 if (pos < 9) {
312 if (ch != "delivered"[pos]) if (ch != "DELIVERED"[pos]) flagmaybez = 0;
313 if (flagmaybez) if (pos == 8) ++*hops;
314 if (pos < 8)
315 if (ch != "received"[pos]) if (ch != "RECEIVED"[pos]) flagmaybex = 0;
316 if (flagmaybex) if (pos == 7) ++*hops;
317 if (pos < 2) if (ch != "\r\n"[pos]) flagmaybey = 0;
318 if (flagmaybey) if (pos == 1) flaginheader = 0;
2117e02e 319 }
212b6f5d
MW
320 ++pos;
321 if (ch == '\n') { pos = 0; flagmaybex = flagmaybey = flagmaybez = 1; }
322 }
323 switch(state) {
324 case 0:
325 if (ch == '\n') straynewline();
326 if (ch == '\r') { state = 4; continue; }
327 break;
328 case 1: /* \r\n */
329 if (ch == '\n') straynewline();
330 if (ch == '.') { state = 2; continue; }
331 if (ch == '\r') { state = 4; continue; }
332 state = 0;
333 break;
334 case 2: /* \r\n + . */
335 if (ch == '\n') straynewline();
336 if (ch == '\r') { state = 3; continue; }
337 state = 0;
338 break;
339 case 3: /* \r\n + .\r */
340 if (ch == '\n') return;
341 put(".");
342 put("\r");
343 if (ch == '\r') { state = 4; continue; }
344 state = 0;
345 break;
346 case 4: /* + \r */
347 if (ch == '\n') { state = 1; break; }
348 if (ch != '\r') { put("\r"); state = 0; }
349 }
350 put(&ch);
2117e02e 351 }
2117e02e
MW
352}
353
212b6f5d
MW
354char accept_buf[FMT_ULONG];
355void acceptmessage(qp) unsigned long qp;
2117e02e 356{
212b6f5d
MW
357 datetime_sec when;
358 when = now();
359 out("250 ok ");
360 accept_buf[fmt_ulong(accept_buf,(unsigned long) when)] = 0;
361 out(accept_buf);
362 out(" qp ");
363 accept_buf[fmt_ulong(accept_buf,qp)] = 0;
364 out(accept_buf);
365 out("\r\n");
366}
367
368void smtp_data() {
369 int hops;
370 unsigned long qp;
371 char *qqx;
372
373 if (!seenmail) { err_wantmail(); return; }
374 if (!rcptto.len) { err_wantrcpt(); return; }
375 seenmail = 0;
376 if (databytes) bytestooverflow = databytes + 1;
377 if (qmail_open(&qqt) == -1) { err_qqt(); return; }
378 qp = qmail_qp(&qqt);
379 out("354 go ahead\r\n");
380
381 received(&qqt,"SMTP",local,remoteip,remotehost,remoteinfo,fakehelo);
382 blast(&hops);
383 hops = (hops >= MAXHOPS);
384 if (hops) qmail_fail(&qqt);
385 qmail_from(&qqt,mailfrom.s);
386 qmail_put(&qqt,rcptto.s,rcptto.len);
387
388 qqx = qmail_close(&qqt);
389 if (!*qqx) { acceptmessage(qp); return; }
390 if (hops) { out("554 too many hops, this message is looping (#5.4.6)\r\n"); return; }
391 if (databytes) if (!bytestooverflow) { out("552 sorry, that message size exceeds my databytes limit (#5.3.4)\r\n"); return; }
392 if (*qqx == 'D') out("554 "); else out("451 ");
393 out(qqx + 1);
394 out("\r\n");
2117e02e
MW
395}
396
212b6f5d
MW
397struct commands smtpcommands[] = {
398 { "rcpt", smtp_rcpt, 0 }
399, { "mail", smtp_mail, 0 }
400, { "data", smtp_data, flush }
401, { "quit", smtp_quit, flush }
402, { "helo", smtp_helo, flush }
403, { "ehlo", smtp_ehlo, flush }
404, { "rset", smtp_rset, 0 }
405, { "help", smtp_help, flush }
406, { "noop", err_noop, flush }
407, { "vrfy", err_vrfy, flush }
408, { 0, err_unimpl, flush }
409} ;
410
2117e02e
MW
411void main()
412{
212b6f5d
MW
413 sig_pipeignore();
414 if (chdir(auto_qmail) == -1) die_control();
415 setup();
416 if (ipme_init() != 1) die_ipme();
417 smtp_greet("220 ");
418 out(" ESMTP\r\n");
419 if (commands(&ssin,&smtpcommands) == 0) die_read();
420 die_nomem();
2117e02e 421}