6 #include "auto_qmail.h"
22 #include "rcpthosts.h"
23 #include "timeoutread.h"
24 #include "timeoutwrite.h"
28 unsigned int databytes = 0;
31 int safewrite(fd,buf,len) int fd; char *buf; int len;
34 r = timeoutwrite(timeout,fd,buf,len);
40 substdio ssout = SUBSTDIO_FDBUF(safewrite,1,ssoutbuf,sizeof ssoutbuf);
42 void flush() { substdio_flush(&ssout); }
43 void out(s) char *s; { substdio_puts(&ssout,s); }
45 void die_read() { _exit(1); }
46 void die_alarm() { out("451 timeout (#4.4.2)\r\n"); flush(); _exit(1); }
47 void die_nomem() { out("421 out of memory (#4.3.0)\r\n"); flush(); _exit(1); }
48 void die_control() { out("421 unable to read controls (#4.3.0)\r\n"); flush(); _exit(1); }
49 void die_ipme() { out("421 unable to figure out my IP addresses (#4.3.0)\r\n"); flush(); _exit(1); }
50 void straynewline() { out("451 See http://pobox.com/~djb/docs/smtplf.html.\r\n"); flush(); _exit(1); }
52 void err_bmf() { out("553 sorry, your envelope sender is in my badmailfrom list (#5.7.1)\r\n"); }
53 void err_nogateway() { out("553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)\r\n"); }
54 void err_unimpl() { out("502 unimplemented (#5.5.1)\r\n"); }
55 void err_syntax() { out("555 syntax error (#5.5.4)\r\n"); }
56 void err_wantmail() { out("503 MAIL first (#5.5.1)\r\n"); }
57 void err_wantrcpt() { out("503 RCPT first (#5.5.1)\r\n"); }
58 void err_noop() { out("250 ok\r\n"); }
59 void err_vrfy() { out("252 send some mail, i'll try my best\r\n"); }
60 void err_qqt() { out("451 qqt failure (#4.3.0)\r\n"); }
63 stralloc greeting = {0};
65 void smtp_greet(code) char *code;
67 substdio_puts(&ssout,code);
68 substdio_put(&ssout,greeting.s,greeting.len);
72 out("214 qmail home page: http://pobox.com/~djb/qmail.html\r\n");
76 smtp_greet("221 "); out("\r\n"); flush(); _exit(0);
85 stralloc helohost = {0};
86 char *fakehelo; /* pointer into helohost, or 0 */
88 void 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;
95 stralloc liphost = {0};
97 stralloc relayhosts = {0};
98 struct constmap maprelayhosts;
101 struct constmap mapbmf;
108 if (control_init() == -1) die_control();
109 if (control_rldef(&greeting,"control/smtpgreeting",1,(char *) 0) != 1)
111 liphostok = control_rldef(&liphost,"control/localiphost",1,(char *) 0);
112 if (liphostok == -1) die_control();
113 if (control_readint(&timeout,"control/timeoutsmtpd") == -1) die_control();
114 if (timeout <= 0) timeout = 1;
116 if (rcpthosts_init() == -1) die_control();
118 bmfok = control_readfile(&bmf,"control/badmailfrom",0);
119 if (bmfok == -1) die_control();
121 if (!constmap_init(&mapbmf,bmf.s,bmf.len,0)) die_nomem();
123 switch (control_readfile(&relayhosts, "control/relayhosts", 0)) {
128 if (!constmap_init(&maprelayhosts, relayhosts.s, relayhosts.len, 1))
133 if (control_readint(&databytes,"control/databytes") == -1) die_control();
134 x = env_get("DATABYTES");
135 if (x) { scan_ulong(x,&u); databytes = u; }
136 if (!(databytes + 1)) --databytes;
138 remoteip = env_get("TCPREMOTEIP");
139 if (!remoteip) remoteip = "unknown";
140 local = env_get("TCPLOCALHOST");
141 if (!local) local = env_get("TCPLOCALIP");
142 if (!local) local = "unknown";
143 remotehost = env_get("TCPREMOTEHOST");
144 if (!remotehost) remotehost = "unknown";
145 remoteinfo = env_get("TCPREMOTEINFO");
146 relayclient = env_get("RELAYCLIENT");
147 if (!relayclient && relayhostsok) {
149 int l = str_len(remotehost);
150 relayclient = constmap(&maprelayhosts, remotehost, l);
151 if (!relayclient) for (j = 0; j < l; ++j) {
152 if (remotehost[j] == '.' &&
153 (relayclient = constmap(&maprelayhosts,
163 stralloc addr = {0}; /* will be 0-terminated, if addrparse returns 1 */
171 struct ip_address ip;
176 i = str_chr(arg,'<');
179 else { /* partner should go read rfc 821 */
181 arg += str_chr(arg,':');
182 if (*arg == ':') ++arg;
183 while (*arg == ' ') ++arg;
186 /* strip source route */
187 if (*arg == '@') while (*arg) if (*arg++ == ':') break;
189 if (!stralloc_copys(&addr,"")) die_nomem();
192 for (i = 0;ch = arg[i];++i) { /* copy arg to addr, stripping quotes */
194 if (!stralloc_append(&addr,&ch)) die_nomem();
198 if (!flagquoted && (ch == terminator)) break;
200 case '\\': flagesc = 1; break;
201 case '"': flagquoted = !flagquoted; break;
202 default: if (!stralloc_append(&addr,&ch)) die_nomem();
206 /* could check for termination failure here, but why bother? */
207 if (!stralloc_append(&addr,"")) die_nomem();
210 i = byte_rchr(addr.s,addr.len,'@');
211 if (i < addr.len) /* if not, partner should go read rfc 821 */
212 if (addr.s[i + 1] == '[')
213 if (!addr.s[i + 1 + ip_scanbracket(addr.s + i + 1,&ip)])
216 if (!stralloc_cat(&addr,&liphost)) die_nomem();
217 if (!stralloc_0(&addr)) die_nomem();
221 if (addr.len > 900) return 0;
228 if (!bmfok) return 0;
229 if (constmap(&mapbmf,addr.s,addr.len - 1)) return 1;
230 j = byte_rchr(addr.s,addr.len,'@');
232 if (constmap(&mapbmf,addr.s + j,addr.len - j - 1)) return 1;
239 r = rcpthosts(addr.s,str_len(addr.s));
240 if (r == -1) die_control();
246 int flagbarf; /* defined if seenmail */
247 stralloc mailfrom = {0};
248 stralloc rcptto = {0};
250 void smtp_helo(arg) char *arg;
252 smtp_greet("250 "); out("\r\n");
253 seenmail = 0; dohelo(arg);
255 void smtp_ehlo(arg) char *arg;
257 smtp_greet("250-"); out("\r\n250-PIPELINING\r\n250 8BITMIME\r\n");
258 seenmail = 0; dohelo(arg);
263 out("250 flushed\r\n");
265 void smtp_mail(arg) char *arg;
267 if (!addrparse(arg)) { err_syntax(); return; }
268 flagbarf = bmfcheck();
270 if (!stralloc_copys(&rcptto,"")) die_nomem();
271 if (!stralloc_copys(&mailfrom,addr.s)) die_nomem();
272 if (!stralloc_0(&mailfrom)) die_nomem();
275 void smtp_rcpt(arg) char *arg; {
276 if (!seenmail) { err_wantmail(); return; }
277 if (!addrparse(arg)) { err_syntax(); return; }
278 if (flagbarf) { err_bmf(); return; }
281 if (!stralloc_cats(&addr,relayclient)) die_nomem();
282 if (!stralloc_0(&addr)) die_nomem();
285 if (!addrallowed()) { err_nogateway(); return; }
286 if (!stralloc_cats(&rcptto,"T")) die_nomem();
287 if (!stralloc_cats(&rcptto,addr.s)) die_nomem();
288 if (!stralloc_0(&rcptto)) die_nomem();
293 int saferead(fd,buf,len) int fd; char *buf; int len;
297 r = timeoutread(timeout,fd,buf,len);
298 if (r == -1) if (errno == error_timeout) die_alarm();
299 if (r <= 0) die_read();
304 substdio ssin = SUBSTDIO_FDBUF(saferead,0,ssinbuf,sizeof ssinbuf);
307 unsigned int bytestooverflow = 0;
313 if (!--bytestooverflow)
315 qmail_put(&qqt,ch,1);
324 int pos; /* number of bytes since most recent \n, if fih */
325 int flagmaybex; /* 1 if this line might match RECEIVED, if fih */
326 int flagmaybey; /* 1 if this line might match \r\n, if fih */
327 int flagmaybez; /* 1 if this line might match DELIVERED, if fih */
332 pos = 0; flagmaybex = flagmaybey = flagmaybez = 1;
334 substdio_get(&ssin,&ch,1);
337 if (ch != "delivered"[pos]) if (ch != "DELIVERED"[pos]) flagmaybez = 0;
338 if (flagmaybez) if (pos == 8) ++*hops;
340 if (ch != "received"[pos]) if (ch != "RECEIVED"[pos]) flagmaybex = 0;
341 if (flagmaybex) if (pos == 7) ++*hops;
342 if (pos < 2) if (ch != "\r\n"[pos]) flagmaybey = 0;
343 if (flagmaybey) if (pos == 1) flaginheader = 0;
346 if (ch == '\n') { pos = 0; flagmaybex = flagmaybey = flagmaybez = 1; }
350 if (ch == '\n') straynewline();
351 if (ch == '\r') { state = 4; continue; }
354 if (ch == '\n') straynewline();
355 if (ch == '.') { state = 2; continue; }
356 if (ch == '\r') { state = 4; continue; }
359 case 2: /* \r\n + . */
360 if (ch == '\n') straynewline();
361 if (ch == '\r') { state = 3; continue; }
364 case 3: /* \r\n + .\r */
365 if (ch == '\n') return;
368 if (ch == '\r') { state = 4; continue; }
372 if (ch == '\n') { state = 1; break; }
373 if (ch != '\r') { put("\r"); state = 0; }
379 char accept_buf[FMT_ULONG];
380 void acceptmessage(qp) unsigned long qp;
385 accept_buf[fmt_ulong(accept_buf,(unsigned long) when)] = 0;
388 accept_buf[fmt_ulong(accept_buf,qp)] = 0;
398 if (!seenmail) { err_wantmail(); return; }
399 if (!rcptto.len) { err_wantrcpt(); return; }
401 if (databytes) bytestooverflow = databytes + 1;
402 if (qmail_open(&qqt) == -1) { err_qqt(); return; }
404 out("354 go ahead\r\n");
406 received(&qqt,"SMTP",local,remoteip,remotehost,remoteinfo,fakehelo);
408 hops = (hops >= MAXHOPS);
409 if (hops) qmail_fail(&qqt);
410 qmail_from(&qqt,mailfrom.s);
411 qmail_put(&qqt,rcptto.s,rcptto.len);
413 qqx = qmail_close(&qqt);
414 if (!*qqx) { acceptmessage(qp); return; }
415 if (hops) { out("554 too many hops, this message is looping (#5.4.6)\r\n"); return; }
416 if (databytes) if (!bytestooverflow) { out("552 sorry, that message size exceeds my databytes limit (#5.3.4)\r\n"); return; }
417 if (*qqx == 'D') out("554 "); else out("451 ");
422 struct commands smtpcommands[] = {
423 { "rcpt", smtp_rcpt, 0 }
424 , { "mail", smtp_mail, 0 }
425 , { "data", smtp_data, flush }
426 , { "quit", smtp_quit, flush }
427 , { "helo", smtp_helo, flush }
428 , { "ehlo", smtp_ehlo, flush }
429 , { "rset", smtp_rset, 0 }
430 , { "help", smtp_help, flush }
431 , { "noop", err_noop, flush }
432 , { "vrfy", err_vrfy, flush }
433 , { 0, err_unimpl, flush }
439 if (chdir(auto_qmail) == -1) die_control();
441 if (ipme_init() != 1) die_ipme();
444 if (commands(&ssin,&smtpcommands) == 0) die_read();