AUTH PLAIN: password length has to be its own variable, else it may contain invalid...
[citadel.git] / citadel / modules / smtp / serv_smtp.c
1 /*
2  * This module is an SMTP and ESMTP server for the Citadel system.
3  * It is compliant with all of the following:
4  *
5  * RFC  821 - Simple Mail Transfer Protocol
6  * RFC  876 - Survey of SMTP Implementations
7  * RFC 1047 - Duplicate messages and SMTP
8  * RFC 1652 - 8 bit MIME
9  * RFC 1869 - Extended Simple Mail Transfer Protocol
10  * RFC 1870 - SMTP Service Extension for Message Size Declaration
11  * RFC 2033 - Local Mail Transfer Protocol
12  * RFC 2197 - SMTP Service Extension for Command Pipelining
13  * RFC 2476 - Message Submission
14  * RFC 2487 - SMTP Service Extension for Secure SMTP over TLS
15  * RFC 2554 - SMTP Service Extension for Authentication
16  * RFC 2821 - Simple Mail Transfer Protocol
17  * RFC 2822 - Internet Message Format
18  * RFC 2920 - SMTP Service Extension for Command Pipelining
19  *  
20  * The VRFY and EXPN commands have been removed from this implementation
21  * because nobody uses these commands anymore, except for spammers.
22  *
23  * Copyright (c) 1998-2013 by the citadel.org team
24  *
25  * This program is open source software; you can redistribute it and/or modify
26  * it under the terms of the GNU General Public License version 3.
27  *  
28  * This program is distributed in the hope that it will be useful,
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31  * GNU General Public License for more details.
32  */
33
34 #include "sysdep.h"
35 #include <stdlib.h>
36 #include <unistd.h>
37 #include <stdio.h>
38 #include <termios.h>
39 #include <fcntl.h>
40 #include <signal.h>
41 #include <pwd.h>
42 #include <errno.h>
43 #include <sys/types.h>
44 #include <syslog.h>
45
46 #if TIME_WITH_SYS_TIME
47 # include <sys/time.h>
48 # include <time.h>
49 #else
50 # if HAVE_SYS_TIME_H
51 #  include <sys/time.h>
52 # else
53 #  include <time.h>
54 # endif
55 #endif
56
57 #include <sys/wait.h>
58 #include <ctype.h>
59 #include <string.h>
60 #include <limits.h>
61 #include <sys/socket.h>
62 #include <netinet/in.h>
63 #include <arpa/inet.h>
64 #include <libcitadel.h>
65 #include "citadel.h"
66 #include "server.h"
67 #include "citserver.h"
68 #include "support.h"
69 #include "config.h"
70 #include "control.h"
71 #include "user_ops.h"
72 #include "room_ops.h"
73 #include "database.h"
74 #include "msgbase.h"
75 #include "internet_addressing.h"
76 #include "genstamp.h"
77 #include "domain.h"
78 #include "clientsocket.h"
79 #include "locate_host.h"
80 #include "citadel_dirs.h"
81 #include "ctdl_module.h"
82
83 #include "smtp_util.h"
84 enum {                          /* Command states for login authentication */
85         smtp_command,
86         smtp_user,
87         smtp_password,
88         smtp_plain
89 };
90
91 enum SMTP_FLAGS {
92         HELO,
93         EHLO,
94         LHLO
95 };
96
97 typedef void (*smtp_handler)(long offest, long Flags);
98
99 typedef struct _smtp_handler_hook {
100         smtp_handler h;
101         int Flags;
102 } smtp_handler_hook;
103
104 HashList *SMTPCmds = NULL;
105 #define MaxSMTPCmdLen 10
106
107 #define RegisterSmtpCMD(First, H, Flags) \
108         registerSmtpCMD(HKEY(First), H, Flags)
109 void registerSmtpCMD(const char *First, long FLen, 
110                      smtp_handler H,
111                      int Flags)
112 {
113         smtp_handler_hook *h;
114
115         if (FLen >= MaxSMTPCmdLen)
116                 cit_panic_backtrace (0);
117
118         h = (smtp_handler_hook*) malloc(sizeof(smtp_handler_hook));
119         memset(h, 0, sizeof(smtp_handler_hook));
120
121         h->Flags = Flags;
122         h->h = H;
123         Put(SMTPCmds, First, FLen, h, NULL);
124 }
125
126 void smtp_cleanup(void)
127 {
128         DeleteHash(&SMTPCmds);
129 }
130
131 /*
132  * Here's where our SMTP session begins its happy day.
133  */
134 void smtp_greeting(int is_msa)
135 {
136         citsmtp *sSMTP;
137         char message_to_spammer[1024];
138
139         strcpy(CC->cs_clientname, "SMTP session");
140         CC->internal_pgm = 1;
141         CC->cs_flags |= CS_STEALTH;
142         CC->session_specific_data = malloc(sizeof(citsmtp));
143         memset(SMTP, 0, sizeof(citsmtp));
144         sSMTP = SMTP;
145         sSMTP->is_msa = is_msa;
146         sSMTP->Cmd = NewStrBufPlain(NULL, SIZ);
147         sSMTP->helo_node = NewStrBuf();
148         sSMTP->from = NewStrBufPlain(NULL, SIZ);
149         sSMTP->recipients = NewStrBufPlain(NULL, SIZ);
150         sSMTP->OneRcpt = NewStrBufPlain(NULL, SIZ);
151         sSMTP->preferred_sender_email = NULL;
152         sSMTP->preferred_sender_name = NULL;
153
154         /* If this config option is set, reject connections from problem
155          * addresses immediately instead of after they execute a RCPT
156          */
157         if ( (config.c_rbl_at_greeting) && (sSMTP->is_msa == 0) ) {
158                 if (rbl_check(message_to_spammer)) {
159                         if (server_shutting_down)
160                                 cprintf("421 %s\r\n", message_to_spammer);
161                         else
162                                 cprintf("550 %s\r\n", message_to_spammer);
163                         CC->kill_me = KILLME_SPAMMER;
164                         /* no need to free_recipients(valid), it's not allocated yet */
165                         return;
166                 }
167         }
168
169         /* Otherwise we're either clean or we check later. */
170
171         if (CC->nologin==1) {
172                 cprintf("451 Too many connections are already open; please try again later.\r\n");
173                 CC->kill_me = KILLME_MAX_SESSIONS_EXCEEDED;
174                 /* no need to free_recipients(valid), it's not allocated yet */
175                 return;
176         }
177
178         /* Note: the FQDN *must* appear as the first thing after the 220 code.
179          * Some clients (including citmail.c) depend on it being there.
180          */
181         cprintf("220 %s ESMTP Citadel server ready.\r\n", config.c_fqdn);
182 }
183
184
185 /*
186  * SMTPS is just like SMTP, except it goes crypto right away.
187  */
188 void smtps_greeting(void) {
189         CtdlModuleStartCryptoMsgs(NULL, NULL, NULL);
190 #ifdef HAVE_OPENSSL
191         if (!CC->redirect_ssl) CC->kill_me = KILLME_NO_CRYPTO;          /* kill session if no crypto */
192 #endif
193         smtp_greeting(0);
194 }
195
196
197 /*
198  * SMTP MSA port requires authentication.
199  */
200 void smtp_msa_greeting(void) {
201         smtp_greeting(1);
202 }
203
204
205 /*
206  * LMTP is like SMTP but with some extra bonus footage added.
207  */
208 void lmtp_greeting(void) {
209
210         smtp_greeting(0);
211         SMTP->is_lmtp = 1;
212 }
213
214
215 /* 
216  * Generic SMTP MTA greeting
217  */
218 void smtp_mta_greeting(void) {
219         smtp_greeting(0);
220 }
221
222
223 /*
224  * We also have an unfiltered LMTP socket that bypasses spam filters.
225  */
226 void lmtp_unfiltered_greeting(void) {
227         citsmtp *sSMTP;
228
229         smtp_greeting(0);
230         sSMTP = SMTP;
231         sSMTP->is_lmtp = 1;
232         sSMTP->is_unfiltered = 1;
233 }
234
235
236 /*
237  * Login greeting common to all auth methods
238  */
239 void smtp_auth_greeting(long offset, long Flags) {
240         cprintf("235 Hello, %s\r\n", CC->user.fullname);
241         syslog(LOG_NOTICE, "SMTP authenticated %s\n", CC->user.fullname);
242         CC->internal_pgm = 0;
243         CC->cs_flags &= ~CS_STEALTH;
244 }
245
246
247 /*
248  * Implement HELO and EHLO commands.
249  *
250  * which_command:  0=HELO, 1=EHLO, 2=LHLO
251  */
252 void smtp_hello(long offset, long which_command)
253 {
254         citsmtp *sSMTP = SMTP;
255
256         StrBufAppendBuf (sSMTP->helo_node, sSMTP->Cmd, offset);
257
258         if ( (which_command != LHLO) && (sSMTP->is_lmtp) ) {
259                 cprintf("500 Only LHLO is allowed when running LMTP\r\n");
260                 return;
261         }
262
263         if ( (which_command == LHLO) && (sSMTP->is_lmtp == 0) ) {
264                 cprintf("500 LHLO is only allowed when running LMTP\r\n");
265                 return;
266         }
267
268         if (which_command == HELO) {
269                 cprintf("250 Hello %s (%s [%s])\r\n",
270                         ChrPtr(sSMTP->helo_node),
271                         CC->cs_host,
272                         CC->cs_addr
273                 );
274         }
275         else {
276                 if (which_command == EHLO) {
277                         cprintf("250-Hello %s (%s [%s])\r\n",
278                                 ChrPtr(sSMTP->helo_node),
279                                 CC->cs_host,
280                                 CC->cs_addr
281                         );
282                 }
283                 else {
284                         cprintf("250-Greetings and joyous salutations.\r\n");
285                 }
286                 cprintf("250-HELP\r\n");
287                 cprintf("250-SIZE %ld\r\n", config.c_maxmsglen);
288
289 #ifdef HAVE_OPENSSL
290                 /*
291                  * Offer TLS, but only if TLS is not already active.
292                  * Furthermore, only offer TLS when running on
293                  * the SMTP-MSA port, not on the SMTP-MTA port, due to
294                  * questionable reliability of TLS in certain sending MTA's.
295                  */
296                 if ( (!CC->redirect_ssl) && (sSMTP->is_msa) ) {
297                         cprintf("250-STARTTLS\r\n");
298                 }
299 #endif  /* HAVE_OPENSSL */
300
301                 cprintf("250-AUTH LOGIN PLAIN\r\n"
302                         "250-AUTH=LOGIN PLAIN\r\n"
303                         "250 8BITMIME\r\n"
304                 );
305         }
306 }
307
308
309 /*
310  * Backend function for smtp_webcit_preferences_hack().
311  * Look at a message and determine if it's the preferences file.
312  */
313 void smtp_webcit_preferences_hack_backend(long msgnum, void *userdata) {
314         struct CtdlMessage *msg;
315         char **webcit_conf = (char **) userdata;
316
317         if (*webcit_conf) {
318                 return; // already got it
319         }
320
321         msg = CtdlFetchMessage(msgnum, 1);
322         if (msg == NULL) {
323                 return;
324         }
325
326         if ( !CM_IsEmpty(msg, eMsgSubject) &&
327              (!strcasecmp(msg->cm_fields[eMsgSubject], "__ WebCit Preferences __")))
328         {
329                 /* This is it!  Change ownership of the message text so it doesn't get freed. */
330                 *webcit_conf = (char *)msg->cm_fields[eMesageText];
331                 msg->cm_fields[eMesageText] = NULL;
332         }
333         CM_Free(msg);
334 }
335
336
337 /*
338  * The configuration item for the user's preferred display name for outgoing email is, unfortunately,
339  * stored in the account's WebCit configuration.  We have to fetch it now.
340  */
341 void smtp_webcit_preferences_hack(void) {
342         char config_roomname[ROOMNAMELEN];
343         char *webcit_conf = NULL;
344         citsmtp *sSMTP = SMTP;
345
346         snprintf(config_roomname, sizeof config_roomname, "%010ld.%s", CC->user.usernum, USERCONFIGROOM);
347         if (CtdlGetRoom(&CC->room, config_roomname) != 0) {
348                 return;
349         }
350
351         /*
352          * Find the WebCit configuration message
353          */
354
355         CtdlForEachMessage(MSGS_ALL, 1, NULL, NULL, NULL, smtp_webcit_preferences_hack_backend, (void *)&webcit_conf);
356
357         if (!webcit_conf) {
358                 return;
359         }
360
361         /* Parse the webcit configuration and attempt to do something useful with it */
362         char *str = webcit_conf;
363         char *saveptr = str;
364         char *this_line = NULL;
365         while (this_line = strtok_r(str, "\n", &saveptr), this_line != NULL) {
366                 str = NULL;
367                 if (!strncasecmp(this_line, "defaultfrom|", 12)) {
368                         sSMTP->preferred_sender_email = NewStrBufPlain(&this_line[12], -1);
369                 }
370                 if (!strncasecmp(this_line, "defaultname|", 12)) {
371                         sSMTP->preferred_sender_name = NewStrBufPlain(&this_line[12], -1);
372                 }
373                 if ((!strncasecmp(this_line, "defaultname|", 12)) && (sSMTP->preferred_sender_name == NULL)) {
374                         sSMTP->preferred_sender_name = NewStrBufPlain(&this_line[12], -1);
375                 }
376
377         }
378         free(webcit_conf);
379 }
380
381
382
383 /*
384  * Implement HELP command.
385  */
386 void smtp_help(long offset, long Flags) {
387         cprintf("214 RTFM http://www.ietf.org/rfc/rfc2821.txt\r\n");
388 }
389
390
391 /*
392  *
393  */
394 void smtp_get_user(long offset)
395 {
396         char buf[SIZ];
397         char username[SIZ];
398         citsmtp *sSMTP = SMTP;
399
400         CtdlDecodeBase64(username, ChrPtr(sSMTP->Cmd) + offset, SIZ);
401         /* syslog(LOG_DEBUG, "Trying <%s>\n", username); */
402         if (CtdlLoginExistingUser(NULL, username) == login_ok) {
403                 CtdlEncodeBase64(buf, "Password:", 9, 0);
404                 cprintf("334 %s\r\n", buf);
405                 sSMTP->command_state = smtp_password;
406         }
407         else {
408                 cprintf("500 No such user.\r\n");
409                 sSMTP->command_state = smtp_command;
410         }
411 }
412
413
414 /*
415  *
416  */
417 void smtp_get_pass(long offset, long Flags)
418 {
419         citsmtp *sSMTP = SMTP;
420         char password[SIZ];
421         long len;
422
423         memset(password, 0, sizeof(password));  
424         len = CtdlDecodeBase64(password, ChrPtr(sSMTP->Cmd), SIZ);
425         /* syslog(LOG_DEBUG, "Trying <%s>\n", password); */
426         if (CtdlTryPassword(password, len) == pass_ok) {
427                 smtp_auth_greeting(offset, Flags);
428         }
429         else {
430                 cprintf("535 Authentication failed.\r\n");
431         }
432         sSMTP->command_state = smtp_command;
433 }
434
435
436 /*
437  * Back end for PLAIN auth method (either inline or multistate)
438  */
439 void smtp_try_plain(long offset, long Flags)
440 {
441         citsmtp *sSMTP = SMTP;
442         const char*decoded_authstring;
443         char ident[256] = "";
444         char user[256] = "";
445         char pass[256] = "";
446         int result;
447
448         long decoded_len;
449         long len = 0;
450         long plen = 0;
451
452         memset(pass, 0, sizeof(pass));
453         decoded_len = StrBufDecodeBase64(sSMTP->Cmd);
454
455         if (decoded_len > 0)
456         {
457                 decoded_authstring = ChrPtr(sSMTP->Cmd);
458
459                 len = safestrncpy(ident, decoded_authstring, sizeof ident);
460
461                 decoded_len -= len - 1;
462                 decoded_authstring += len + 1;
463
464                 if (decoded_len > 0)
465                 {
466                         len = safestrncpy(user, decoded_authstring, sizeof user);
467
468                         decoded_authstring += len + 1;
469                         decoded_len -= len - 1;
470                 }
471
472                 if (decoded_len > 0)
473                 {
474                         plen = safestrncpy(pass, decoded_authstring, sizeof pass);
475
476                         if (plen < 0)
477                                 plen = sizeof(pass) - 1;
478                 }
479         }
480
481         sSMTP->command_state = smtp_command;
482
483         if (!IsEmptyStr(ident)) {
484                 result = CtdlLoginExistingUser(user, ident);
485         }
486         else {
487                 result = CtdlLoginExistingUser(NULL, user);
488         }
489
490         if (result == login_ok) {
491                 if (CtdlTryPassword(pass, plen) == pass_ok) {
492                         smtp_webcit_preferences_hack();
493                         smtp_auth_greeting(offset, Flags);
494                         return;
495                 }
496         }
497         cprintf("504 Authentication failed.\r\n");
498 }
499
500
501 /*
502  * Attempt to perform authenticated SMTP
503  */
504 void smtp_auth(long offset, long Flags)
505 {
506         citsmtp *sSMTP = SMTP;
507         char username_prompt[64];
508         char method[64];
509         char encoded_authstring[1024];
510
511         if (CC->logged_in) {
512                 cprintf("504 Already logged in.\r\n");
513                 return;
514         }
515
516         extract_token(method, ChrPtr(sSMTP->Cmd) + offset, 0, ' ', sizeof method);
517
518         if (!strncasecmp(method, "login", 5) ) {
519                 if (StrLength(sSMTP->Cmd) - offset >= 7) {
520                         smtp_get_user(6);
521                 }
522                 else {
523                         CtdlEncodeBase64(username_prompt, "Username:", 9, 0);
524                         cprintf("334 %s\r\n", username_prompt);
525                         sSMTP->command_state = smtp_user;
526                 }
527                 return;
528         }
529
530         if (!strncasecmp(method, "plain", 5) ) {
531                 long len;
532                 if (num_tokens(ChrPtr(sSMTP->Cmd) + offset, ' ') < 2) {
533                         cprintf("334 \r\n");
534                         SMTP->command_state = smtp_plain;
535                         return;
536                 }
537
538                 len = extract_token(encoded_authstring, 
539                                     ChrPtr(sSMTP->Cmd) + offset,
540                                     1, ' ',
541                                     sizeof encoded_authstring);
542                 StrBufPlain(sSMTP->Cmd, encoded_authstring, len);
543                 smtp_try_plain(0, Flags);
544                 return;
545         }
546
547         if (strncasecmp(method, "login", 5) ) {
548                 cprintf("504 Unknown authentication method.\r\n");
549                 return;
550         }
551
552 }
553
554
555 /*
556  * Implements the RSET (reset state) command.
557  * Currently this just zeroes out the state buffer.  If pointers to data
558  * allocated with malloc() are ever placed in the state buffer, we have to
559  * be sure to free() them first!
560  *
561  * Set do_response to nonzero to output the SMTP RSET response code.
562  */
563 void smtp_rset(long offset, long do_response) {
564         citsmtp *sSMTP = SMTP;
565
566         /*
567          * Our entire SMTP state is discarded when a RSET command is issued,
568          * but we need to preserve this one little piece of information, so
569          * we save it for later.
570          */
571
572         FlushStrBuf(sSMTP->Cmd);
573         FlushStrBuf(sSMTP->helo_node);
574         FlushStrBuf(sSMTP->from);
575         FlushStrBuf(sSMTP->recipients);
576         FlushStrBuf(sSMTP->OneRcpt);
577
578         sSMTP->command_state = 0;
579         sSMTP->number_of_recipients = 0;
580         sSMTP->delivery_mode = 0;
581         sSMTP->message_originated_locally = 0;
582         sSMTP->is_msa = 0;
583         /*
584          * we must remember is_lmtp & is_unfiltered.
585          */
586
587         /*
588          * It is somewhat ambiguous whether we want to log out when a RSET
589          * command is issued.  Here's the code to do it.  It is commented out
590          * because some clients (such as Pine) issue RSET commands before
591          * each message, but still expect to be logged in.
592          *
593          * if (CC->logged_in) {
594          *      logout(CC);
595          * }
596          */
597
598         if (do_response) {
599                 cprintf("250 Zap!\r\n");
600         }
601 }
602
603 /*
604  * Clear out the portions of the state buffer that need to be cleared out
605  * after the DATA command finishes.
606  */
607 void smtp_data_clear(long offset, long flags)
608 {
609         citsmtp *sSMTP = SMTP;
610
611         FlushStrBuf(sSMTP->from);
612         FlushStrBuf(sSMTP->recipients);
613         FlushStrBuf(sSMTP->OneRcpt);
614         sSMTP->number_of_recipients = 0;
615         sSMTP->delivery_mode = 0;
616         sSMTP->message_originated_locally = 0;
617 }
618
619 /*
620  * Implements the "MAIL FROM:" command
621  */
622 void smtp_mail(long offset, long flags) {
623         char user[SIZ];
624         char node[SIZ];
625         char name[SIZ];
626         citsmtp *sSMTP = SMTP;
627
628         if (StrLength(sSMTP->from) > 0) {
629                 cprintf("503 Only one sender permitted\r\n");
630                 return;
631         }
632
633         if (strncasecmp(ChrPtr(sSMTP->Cmd) + offset, "From:", 5)) {
634                 cprintf("501 Syntax error\r\n");
635                 return;
636         }
637
638         StrBufAppendBuf(sSMTP->from, sSMTP->Cmd, offset);
639         StrBufTrim(sSMTP->from);
640         if (strchr(ChrPtr(sSMTP->from), '<') != NULL) {
641                 StrBufStripAllBut(sSMTP->from, '<', '>');
642         }
643
644         /* We used to reject empty sender names, until it was brought to our
645          * attention that RFC1123 5.2.9 requires that this be allowed.  So now
646          * we allow it, but replace the empty string with a fake
647          * address so we don't have to contend with the empty string causing
648          * other code to fail when it's expecting something there.
649          */
650         if (StrLength(sSMTP->from) == 0) {
651                 StrBufPlain(sSMTP->from, HKEY("someone@example.com"));
652         }
653
654         /* If this SMTP connection is from a logged-in user, force the 'from'
655          * to be the user's Internet e-mail address as Citadel knows it.
656          */
657         if (CC->logged_in) {
658                 StrBufPlain(sSMTP->from, CC->cs_inet_email, -1);
659                 cprintf("250 Sender ok <%s>\r\n", ChrPtr(sSMTP->from));
660                 sSMTP->message_originated_locally = 1;
661                 return;
662         }
663
664         else if (sSMTP->is_lmtp) {
665                 /* Bypass forgery checking for LMTP */
666         }
667
668         /* Otherwise, make sure outsiders aren't trying to forge mail from
669          * this system (unless, of course, c_allow_spoofing is enabled)
670          */
671         else if (config.c_allow_spoofing == 0) {
672                 process_rfc822_addr(ChrPtr(sSMTP->from), user, node, name);
673                 syslog(LOG_DEBUG, "Claimed envelope sender is '%s' == '%s' @ '%s' ('%s')",
674                         ChrPtr(sSMTP->from), user, node, name
675                 );
676                 if (CtdlHostAlias(node) != hostalias_nomatch) {
677                         cprintf("550 You must log in to send mail from %s\r\n", node);
678                         FlushStrBuf(sSMTP->from);
679                         syslog(LOG_DEBUG, "Rejecting unauthenticated mail from %s", node);
680                         return;
681                 }
682         }
683
684         cprintf("250 Sender ok\r\n");
685 }
686
687
688
689 /*
690  * Implements the "RCPT To:" command
691  */
692 void smtp_rcpt(long offset, long flags)
693 {
694         struct CitContext *CCC = CC;
695         char message_to_spammer[SIZ];
696         recptypes *valid = NULL;
697         citsmtp *sSMTP = SMTP;
698
699         if (StrLength(sSMTP->from) == 0) {
700                 cprintf("503 Need MAIL before RCPT\r\n");
701                 return;
702         }
703         
704         if (strncasecmp(ChrPtr(sSMTP->Cmd) + offset, "To:", 3)) {
705                 cprintf("501 Syntax error\r\n");
706                 return;
707         }
708
709         if ( (sSMTP->is_msa) && (!CCC->logged_in) ) {
710                 cprintf("550 You must log in to send mail on this port.\r\n");
711                 FlushStrBuf(sSMTP->from);
712                 return;
713         }
714         FlushStrBuf(sSMTP->OneRcpt);
715         StrBufAppendBuf(sSMTP->OneRcpt, sSMTP->Cmd, offset + 3);
716         StrBufTrim(sSMTP->OneRcpt);
717         StrBufStripAllBut(sSMTP->OneRcpt, '<', '>');
718
719         if ( (StrLength(sSMTP->OneRcpt) + StrLength(sSMTP->recipients)) >= SIZ) {
720                 cprintf("452 Too many recipients\r\n");
721                 return;
722         }
723
724         /* RBL check */
725         if ( (!CCC->logged_in)  /* Don't RBL authenticated users */
726            && (!sSMTP->is_lmtp) ) {     /* Don't RBL LMTP clients */
727                 if (config.c_rbl_at_greeting == 0) {    /* Don't RBL again if we already did it */
728                         if (rbl_check(message_to_spammer)) {
729                                 if (server_shutting_down)
730                                         cprintf("421 %s\r\n", message_to_spammer);
731                                 else
732                                         cprintf("550 %s\r\n", message_to_spammer);
733                                 /* no need to free_recipients(valid), it's not allocated yet */
734                                 return;
735                         }
736                 }
737         }
738
739         valid = validate_recipients(
740                 ChrPtr(sSMTP->OneRcpt), 
741                 smtp_get_Recipients(),
742                 (sSMTP->is_lmtp)? POST_LMTP: (CCC->logged_in)? POST_LOGGED_IN: POST_EXTERNAL
743         );
744         if (valid->num_error != 0) {
745                 cprintf("550 %s\r\n", valid->errormsg);
746                 free_recipients(valid);
747                 return;
748         }
749
750         if (valid->num_internet > 0) {
751                 if (CCC->logged_in) {
752                         if (CtdlCheckInternetMailPermission(&CCC->user)==0) {
753                                 cprintf("551 <%s> - you do not have permission to send Internet mail\r\n", 
754                                         ChrPtr(sSMTP->OneRcpt));
755                                 free_recipients(valid);
756                                 return;
757                         }
758                 }
759         }
760
761         if (valid->num_internet > 0) {
762                 if ( (sSMTP->message_originated_locally == 0)
763                    && (sSMTP->is_lmtp == 0) ) {
764                         cprintf("551 <%s> - relaying denied\r\n", ChrPtr(sSMTP->OneRcpt));
765                         free_recipients(valid);
766                         return;
767                 }
768         }
769
770         cprintf("250 RCPT ok <%s>\r\n", ChrPtr(sSMTP->OneRcpt));
771         if (StrLength(sSMTP->recipients) > 0) {
772                 StrBufAppendBufPlain(sSMTP->recipients, HKEY(","), 0);
773         }
774         StrBufAppendBuf(sSMTP->recipients, sSMTP->OneRcpt, 0);
775         sSMTP->number_of_recipients ++;
776         if (valid != NULL)  {
777                 free_recipients(valid);
778         }
779 }
780
781
782
783
784 /*
785  * Implements the DATA command
786  */
787 void smtp_data(long offset, long flags)
788 {
789         struct CitContext *CCC = CC;
790         StrBuf *body;
791         StrBuf *defbody; 
792         struct CtdlMessage *msg = NULL;
793         long msgnum = (-1L);
794         char nowstamp[SIZ];
795         recptypes *valid;
796         int scan_errors;
797         int i;
798         citsmtp *sSMTP = SMTP;
799
800         if (StrLength(sSMTP->from) == 0) {
801                 cprintf("503 Need MAIL command first.\r\n");
802                 return;
803         }
804
805         if (sSMTP->number_of_recipients < 1) {
806                 cprintf("503 Need RCPT command first.\r\n");
807                 return;
808         }
809
810         cprintf("354 Transmit message now - terminate with '.' by itself\r\n");
811         
812         datestring(nowstamp, sizeof nowstamp, time(NULL), DATESTRING_RFC822);
813         defbody = NewStrBufPlain(NULL, SIZ);
814
815         if (defbody != NULL) {
816                 if (sSMTP->is_lmtp && (CCC->cs_UDSclientUID != -1)) {
817                         StrBufPrintf(
818                                 defbody,
819                                 "Received: from %s (Citadel from userid %ld)\n"
820                                 "       by %s; %s\n",
821                                 ChrPtr(sSMTP->helo_node),
822                                 (long int) CCC->cs_UDSclientUID,
823                                 config.c_fqdn,
824                                 nowstamp);
825                 }
826                 else {
827                         StrBufPrintf(
828                                 defbody,
829                                 "Received: from %s (%s [%s])\n"
830                                 "       by %s; %s\n",
831                                 ChrPtr(sSMTP->helo_node),
832                                 CCC->cs_host,
833                                 CCC->cs_addr,
834                                 config.c_fqdn,
835                                 nowstamp);
836                 }
837         }
838         body = CtdlReadMessageBodyBuf(HKEY("."), config.c_maxmsglen, defbody, 1, NULL);
839         FreeStrBuf(&defbody);
840         if (body == NULL) {
841                 cprintf("550 Unable to save message: internal error.\r\n");
842                 return;
843         }
844
845         syslog(LOG_DEBUG, "Converting message...\n");
846         msg = convert_internet_message_buf(&body);
847
848         /* If the user is locally authenticated, FORCE the From: header to
849          * show up as the real sender.  Yes, this violates the RFC standard,
850          * but IT MAKES SENSE.  If you prefer strict RFC adherence over
851          * common sense, you can disable this in the configuration.
852          *
853          * We also set the "message room name" ('O' field) to MAILROOM
854          * (which is Mail> on most systems) to prevent it from getting set
855          * to something ugly like "0000058008.Sent Items>" when the message
856          * is read with a Citadel client.
857          */
858         if ( (CCC->logged_in) && (config.c_rfc822_strict_from != CFG_SMTP_FROM_NOFILTER) ) {
859                 int validemail = 0;
860                 
861                 if (!CM_IsEmpty(msg, erFc822Addr)       &&
862                     ((config.c_rfc822_strict_from == CFG_SMTP_FROM_CORRECT) || 
863                      (config.c_rfc822_strict_from == CFG_SMTP_FROM_REJECT)    )  )
864                 {
865                         if (!IsEmptyStr(CCC->cs_inet_email))
866                                 validemail = strcmp(CCC->cs_inet_email, msg->cm_fields[erFc822Addr]) == 0;
867                         if ((!validemail) && 
868                             (!IsEmptyStr(CCC->cs_inet_other_emails)))
869                         {
870                                 int num_secondary_emails = 0;
871                                 int i;
872                                 num_secondary_emails = num_tokens(CCC->cs_inet_other_emails, '|');
873                                 for (i=0; i < num_secondary_emails && !validemail; ++i) {
874                                         char buf[256];
875                                         extract_token(buf, CCC->cs_inet_other_emails,i,'|',sizeof CCC->cs_inet_other_emails);
876                                         validemail = strcmp(buf, msg->cm_fields[erFc822Addr]) == 0;
877                                 }
878                         }
879                 }
880
881                 if (!validemail && (config.c_rfc822_strict_from == CFG_SMTP_FROM_REJECT)) {
882                         syslog(LOG_ERR, "invalid sender '%s' - rejecting this message", msg->cm_fields[erFc822Addr]);
883                         cprintf("550 Invalid sender '%s' - rejecting this message.\r\n", msg->cm_fields[erFc822Addr]);
884                         return;
885                 }
886
887                 CM_SetField(msg, eNodeName, CFG_KEY(c_nodename));
888                 CM_SetField(msg, eHumanNode, CFG_KEY(c_humannode));
889                 CM_SetField(msg, eOriginalRoom, HKEY(MAILROOM));
890                 if (sSMTP->preferred_sender_name != NULL)
891                         CM_SetField(msg, eAuthor, SKEY(sSMTP->preferred_sender_name));
892                 else 
893                         CM_SetField(msg, eAuthor, CCC->user.fullname, strlen(CCC->user.fullname));
894
895                 if (!validemail) {
896                         if (sSMTP->preferred_sender_email != NULL)
897                                 CM_SetField(msg, erFc822Addr, SKEY(sSMTP->preferred_sender_email));
898                         else
899                                 CM_SetField(msg, erFc822Addr, CCC->cs_inet_email, strlen(CCC->cs_inet_email));
900                 }
901         }
902
903         /* Set the "envelope from" address */
904         CM_SetField(msg, eMessagePath, SKEY(sSMTP->from));
905
906         /* Set the "envelope to" address */
907         CM_SetField(msg, eenVelopeTo, SKEY(sSMTP->recipients));
908
909         /* Submit the message into the Citadel system. */
910         valid = validate_recipients(
911                 ChrPtr(sSMTP->recipients),
912                 smtp_get_Recipients(),
913                 (sSMTP->is_lmtp)? POST_LMTP: (CCC->logged_in)? POST_LOGGED_IN: POST_EXTERNAL
914         );
915
916         /* If there are modules that want to scan this message before final
917          * submission (such as virus checkers or spam filters), call them now
918          * and give them an opportunity to reject the message.
919          */
920         if (sSMTP->is_unfiltered) {
921                 scan_errors = 0;
922         }
923         else {
924                 scan_errors = PerformMessageHooks(msg, valid, EVT_SMTPSCAN);
925         }
926
927         if (scan_errors > 0) {  /* We don't want this message! */
928
929                 if (CM_IsEmpty(msg, eErrorMsg)) {
930                         CM_SetField(msg, eErrorMsg, HKEY("Message rejected by filter"));
931                 }
932
933                 StrBufPrintf(sSMTP->OneRcpt, "550 %s\r\n", msg->cm_fields[eErrorMsg]);
934         }
935         
936         else {                  /* Ok, we'll accept this message. */
937                 msgnum = CtdlSubmitMsg(msg, valid, "", 0);
938                 if (msgnum > 0L) {
939                         StrBufPrintf(sSMTP->OneRcpt, "250 Message accepted.\r\n");
940                 }
941                 else {
942                         StrBufPrintf(sSMTP->OneRcpt, "550 Internal delivery error\r\n");
943                 }
944         }
945
946         /* For SMTP and ESMTP, just print the result message.  For LMTP, we
947          * have to print one result message for each recipient.  Since there
948          * is nothing in Citadel which would cause different recipients to
949          * have different results, we can get away with just spitting out the
950          * same message once for each recipient.
951          */
952         if (sSMTP->is_lmtp) {
953                 for (i=0; i<sSMTP->number_of_recipients; ++i) {
954                         cputbuf(sSMTP->OneRcpt);
955                 }
956         }
957         else {
958                 cputbuf(sSMTP->OneRcpt);
959         }
960
961         /* Write something to the syslog(which may or may not be where the
962          * rest of the Citadel logs are going; some sysadmins want LOG_MAIL).
963          */
964         syslog((LOG_MAIL | LOG_INFO),
965                "%ld: from=<%s>, nrcpts=%d, relay=%s [%s], stat=%s",
966                msgnum,
967                ChrPtr(sSMTP->from),
968                sSMTP->number_of_recipients,
969                CCC->cs_host,
970                CCC->cs_addr,
971                ChrPtr(sSMTP->OneRcpt)
972         );
973
974         /* Clean up */
975         CM_Free(msg);
976         free_recipients(valid);
977         smtp_data_clear(0, 0);  /* clear out the buffers now */
978 }
979
980
981 /*
982  * implements the STARTTLS command
983  */
984 void smtp_starttls(long offset, long flags)
985 {
986         char ok_response[SIZ];
987         char nosup_response[SIZ];
988         char error_response[SIZ];
989
990         sprintf(ok_response, "220 Begin TLS negotiation now\r\n");
991         sprintf(nosup_response, "554 TLS not supported here\r\n");
992         sprintf(error_response, "554 Internal error\r\n");
993         CtdlModuleStartCryptoMsgs(ok_response, nosup_response, error_response);
994         smtp_rset(0, 0);
995 }
996
997
998 /* 
999  * Main command loop for SMTP server sessions.
1000  */
1001 void smtp_command_loop(void)
1002 {
1003         struct CitContext *CCC = CC;
1004         citsmtp *sSMTP = SMTP;
1005         const char *pch, *pchs;
1006         long i;
1007         char CMD[MaxSMTPCmdLen + 1];
1008
1009         if (sSMTP == NULL) {
1010                 syslog(LOG_EMERG, "Session SMTP data is null.  WTF?  We will crash now.\n");
1011                 return cit_panic_backtrace (0);
1012         }
1013
1014         time(&CCC->lastcmd);
1015         if (CtdlClientGetLine(sSMTP->Cmd) < 1) {
1016                 syslog(LOG_CRIT, "SMTP: client disconnected: ending session.\n");
1017                 CC->kill_me = KILLME_CLIENT_DISCONNECTED;
1018                 return;
1019         }
1020         syslog(LOG_DEBUG, "SMTP server: %s\n", ChrPtr(sSMTP->Cmd));
1021
1022         if (sSMTP->command_state == smtp_user) {
1023                 smtp_get_user(0);
1024                 return;
1025         }
1026
1027         else if (sSMTP->command_state == smtp_password) {
1028                 smtp_get_pass(0, 0);
1029                 return;
1030         }
1031
1032         else if (sSMTP->command_state == smtp_plain) {
1033                 smtp_try_plain(0, 0);
1034                 return;
1035         }
1036
1037         pchs = pch = ChrPtr(sSMTP->Cmd);
1038         i = 0;
1039         while ((*pch != '\0') &&
1040                (!isblank(*pch)) && 
1041                (pch - pchs <= MaxSMTPCmdLen))
1042         {
1043                 CMD[i] = toupper(*pch);
1044                 pch ++;
1045                 i++;
1046         }
1047         CMD[i] = '\0';
1048
1049         if ((*pch == '\0') ||
1050             (isblank(*pch)))
1051         {
1052                 void *v;
1053
1054                 if (GetHash(SMTPCmds, CMD, i, &v) &&
1055                     (v != NULL))
1056                 {
1057                         smtp_handler_hook *h = (smtp_handler_hook*) v;
1058
1059                         if (isblank(pchs[i]))
1060                                 i++;
1061
1062                         h->h(i, h->Flags);
1063
1064                         return;
1065                 }
1066         }
1067         cprintf("502 I'm afraid I can't do that.\r\n");
1068 }
1069
1070 void smtp_noop(long offest, long Flags)
1071 {
1072         cprintf("250 NOOP\r\n");
1073 }
1074
1075 void smtp_quit(long offest, long Flags)
1076 {
1077         cprintf("221 Goodbye...\r\n");
1078         CC->kill_me = KILLME_CLIENT_LOGGED_OUT;
1079 }
1080
1081 /*****************************************************************************/
1082 /*                      MODULE INITIALIZATION STUFF                          */
1083 /*****************************************************************************/
1084 /*
1085  * This cleanup function blows away the temporary memory used by
1086  * the SMTP server.
1087  */
1088 void smtp_cleanup_function(void)
1089 {
1090         citsmtp *sSMTP = SMTP;
1091
1092         /* Don't do this stuff if this is not an SMTP session! */
1093         if (CC->h_command_function != smtp_command_loop) return;
1094
1095         syslog(LOG_DEBUG, "Performing SMTP cleanup hook\n");
1096
1097         FreeStrBuf(&sSMTP->Cmd);
1098         FreeStrBuf(&sSMTP->helo_node);
1099         FreeStrBuf(&sSMTP->from);
1100         FreeStrBuf(&sSMTP->recipients);
1101         FreeStrBuf(&sSMTP->OneRcpt);
1102         FreeStrBuf(&sSMTP->preferred_sender_email);
1103         FreeStrBuf(&sSMTP->preferred_sender_name);
1104
1105         free(sSMTP);
1106 }
1107
1108 const char *CitadelServiceSMTP_MTA="SMTP-MTA";
1109 const char *CitadelServiceSMTPS_MTA="SMTPs-MTA";
1110 const char *CitadelServiceSMTP_MSA="SMTP-MSA";
1111 const char *CitadelServiceSMTP_LMTP="LMTP";
1112 const char *CitadelServiceSMTP_LMTP_UNF="LMTP-UnF";
1113
1114 CTDL_MODULE_INIT(smtp)
1115 {
1116         if (!threading)
1117         {
1118                 SMTPCmds = NewHash(1, NULL);
1119                 
1120                 RegisterSmtpCMD("AUTH", smtp_auth, 0);
1121                 RegisterSmtpCMD("DATA", smtp_data, 0);
1122                 RegisterSmtpCMD("HELO", smtp_hello, HELO);
1123                 RegisterSmtpCMD("EHLO", smtp_hello, EHLO);
1124                 RegisterSmtpCMD("LHLO", smtp_hello, LHLO);
1125                 RegisterSmtpCMD("HELP", smtp_help, 0);
1126                 RegisterSmtpCMD("MAIL", smtp_mail, 0);
1127                 RegisterSmtpCMD("NOOP", smtp_noop, 0);
1128                 RegisterSmtpCMD("QUIT", smtp_quit, 0);
1129                 RegisterSmtpCMD("RCPT", smtp_rcpt, 0);
1130                 RegisterSmtpCMD("RSET", smtp_rset, 1);
1131 #ifdef HAVE_OPENSSL
1132                 RegisterSmtpCMD("STARTTLS", smtp_starttls, 0);
1133 #endif
1134
1135
1136                 CtdlRegisterServiceHook(config.c_smtp_port,     /* SMTP MTA */
1137                                         NULL,
1138                                         smtp_mta_greeting,
1139                                         smtp_command_loop,
1140                                         NULL, 
1141                                         CitadelServiceSMTP_MTA);
1142
1143 #ifdef HAVE_OPENSSL
1144                 CtdlRegisterServiceHook(config.c_smtps_port,
1145                                         NULL,
1146                                         smtps_greeting,
1147                                         smtp_command_loop,
1148                                         NULL,
1149                                         CitadelServiceSMTPS_MTA);
1150 #endif
1151
1152                 CtdlRegisterServiceHook(config.c_msa_port,      /* SMTP MSA */
1153                                         NULL,
1154                                         smtp_msa_greeting,
1155                                         smtp_command_loop,
1156                                         NULL,
1157                                         CitadelServiceSMTP_MSA);
1158
1159                 CtdlRegisterServiceHook(0,                      /* local LMTP */
1160                                         file_lmtp_socket,
1161                                         lmtp_greeting,
1162                                         smtp_command_loop,
1163                                         NULL,
1164                                         CitadelServiceSMTP_LMTP);
1165
1166                 CtdlRegisterServiceHook(0,                      /* local LMTP */
1167                                         file_lmtp_unfiltered_socket,
1168                                         lmtp_unfiltered_greeting,
1169                                         smtp_command_loop,
1170                                         NULL,
1171                                         CitadelServiceSMTP_LMTP_UNF);
1172
1173                 CtdlRegisterCleanupHook(smtp_cleanup);
1174                 CtdlRegisterSessionHook(smtp_cleanup_function, EVT_STOP, PRIO_STOP + 250);
1175         }
1176         
1177         /* return our module name for the log */
1178         return "smtp";
1179 }