Now the escaping of a single dot on a line of its own is done in CtdlOutputPreloadedMsg()
[citadel.git] / citadel / modules / pop3 / serv_pop3.c
1 /*
2  * $Id$ 
3  *
4  * POP3 service for the Citadel system
5  * Copyright (C) 1998-2001 by Art Cancro and others.
6  * This code is released under the terms of the GNU General Public License.
7  *
8  * Current status of standards conformance:
9  *
10  * -> All required POP3 commands described in RFC1939 are implemented.
11  * -> All optional POP3 commands described in RFC1939 are also implemented.
12  * -> The deprecated "LAST" command is included in this implementation, because
13  *    there exist mail clients which insist on using it (such as Bynari
14  *    TradeMail, and certain versions of Eudora).
15  * -> Capability detection via the method described in RFC2449 is implemented.
16  * 
17  */
18
19 #include "sysdep.h"
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <stdio.h>
23 #include <fcntl.h>
24 #include <signal.h>
25 #include <pwd.h>
26 #include <errno.h>
27 #include <sys/types.h>
28
29 #if TIME_WITH_SYS_TIME
30 # include <sys/time.h>
31 # include <time.h>
32 #else
33 # if HAVE_SYS_TIME_H
34 #  include <sys/time.h>
35 # else
36 #  include <time.h>
37 # endif
38 #endif
39
40 #include <sys/wait.h>
41 #include <string.h>
42 #include <limits.h>
43 #include <ctype.h>
44 #include <libcitadel.h>
45 #include "citadel.h"
46 #include "server.h"
47 #include "citserver.h"
48 #include "support.h"
49 #include "config.h"
50 #include "room_ops.h"
51 #include "user_ops.h"
52 #include "policy.h"
53 #include "database.h"
54 #include "msgbase.h"
55 #include "internet_addressing.h"
56 #include "serv_pop3.h"
57 #include "md5.h"
58
59
60
61 #include "ctdl_module.h"
62
63
64
65 /*
66  * This cleanup function blows away the temporary memory and files used by
67  * the POP3 server.
68  */
69 void pop3_cleanup_function(void) {
70
71         /* Don't do this stuff if this is not a POP3 session! */
72         if (CC->h_command_function != pop3_command_loop) return;
73
74         CtdlLogPrintf(CTDL_DEBUG, "Performing POP3 cleanup hook\n");
75         if (POP3->msgs != NULL) free(POP3->msgs);
76
77         free(POP3);
78 }
79
80
81
82 /*
83  * Here's where our POP3 session begins its happy day.
84  */
85 void pop3_greeting(void) {
86         strcpy(CC->cs_clientname, "POP3 session");
87         CC->internal_pgm = 1;
88         CC->session_specific_data = malloc(sizeof(struct citpop3));
89         memset(POP3, 0, sizeof(struct citpop3));
90
91         cprintf("+OK Citadel POP3 server %s\r\n",
92                 CC->cs_nonce);
93 }
94
95
96 /*
97  * POP3S is just like POP3, except it goes crypto right away.
98  */
99 void pop3s_greeting(void) {
100         CtdlModuleStartCryptoMsgs(NULL, NULL, NULL);
101
102 /* kill session if no crypto */
103 #ifdef HAVE_OPENSSL
104         if (!CC->redirect_ssl) CC->kill_me = 1;
105 #else
106         CC->kill_me = 1;
107 #endif
108
109         pop3_greeting();
110 }
111
112
113
114 /*
115  * Specify user name (implements POP3 "USER" command)
116  */
117 void pop3_user(char *argbuf) {
118         char username[SIZ];
119
120         if (CC->logged_in) {
121                 cprintf("-ERR You are already logged in.\r\n");
122                 return;
123         }
124
125         strcpy(username, argbuf);
126         striplt(username);
127
128         /* CtdlLogPrintf(CTDL_DEBUG, "Trying <%s>\n", username); */
129         if (CtdlLoginExistingUser(NULL, username) == login_ok) {
130                 cprintf("+OK Password required for %s\r\n", username);
131         }
132         else {
133                 cprintf("-ERR No such user.\r\n");
134         }
135 }
136
137
138
139 /*
140  * Back end for pop3_grab_mailbox()
141  */
142 void pop3_add_message(long msgnum, void *userdata) {
143         struct MetaData smi;
144
145         ++POP3->num_msgs;
146         if (POP3->num_msgs < 2) POP3->msgs = malloc(sizeof(struct pop3msg));
147         else POP3->msgs = realloc(POP3->msgs, 
148                 (POP3->num_msgs * sizeof(struct pop3msg)) ) ;
149         POP3->msgs[POP3->num_msgs-1].msgnum = msgnum;
150         POP3->msgs[POP3->num_msgs-1].deleted = 0;
151
152         /* We need to know the length of this message when it is printed in
153          * RFC822 format.  Perhaps we have cached this length in the message's
154          * metadata record.  If so, great; if not, measure it and then cache
155          * it for next time.
156          */
157         GetMetaData(&smi, msgnum);
158         if (smi.meta_rfc822_length <= 0L) {
159                 CC->redirect_buffer = malloc(SIZ);
160                 CC->redirect_len = 0;
161                 CC->redirect_alloc = SIZ;
162                 CtdlOutputMsg(msgnum, MT_RFC822, HEADERS_ALL, 0, 1, NULL, 0);
163                 smi.meta_rfc822_length = CC->redirect_len;
164                 free(CC->redirect_buffer);
165                 CC->redirect_buffer = NULL;
166                 CC->redirect_len = 0;
167                 CC->redirect_alloc = 0;
168                 PutMetaData(&smi);
169         }
170         POP3->msgs[POP3->num_msgs-1].rfc822_length = smi.meta_rfc822_length;
171 }
172
173
174
175 /*
176  * Open the inbox and read its contents.
177  * (This should be called only once, by pop3_pass(), and returns the number
178  * of messages in the inbox, or -1 for error)
179  */
180 int pop3_grab_mailbox(void) {
181         struct visit vbuf;
182         int i;
183
184         if (getroom(&CC->room, MAILROOM) != 0) return(-1);
185
186         /* Load up the messages */
187         CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL,
188                 pop3_add_message, NULL);
189
190         /* Figure out which are old and which are new */
191         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
192         POP3->lastseen = (-1);
193         if (POP3->num_msgs) for (i=0; i<POP3->num_msgs; ++i) {
194                 if (is_msg_in_sequence_set(vbuf.v_seen,
195                    (POP3->msgs[POP3->num_msgs-1].msgnum) )) {
196                         POP3->lastseen = i;
197                 }
198         }
199
200         return(POP3->num_msgs);
201 }
202
203 void pop3_login(void)
204 {
205         int msgs;
206         
207         msgs = pop3_grab_mailbox();
208         if (msgs >= 0) {
209                 cprintf("+OK %s is logged in (%d messages)\r\n",
210                         CC->user.fullname, msgs);
211                 CtdlLogPrintf(CTDL_NOTICE, "POP3 authenticated %s\n", CC->user.fullname);
212         }
213         else {
214                 cprintf("-ERR Can't open your mailbox\r\n");
215         }
216         
217 }
218
219 void pop3_apop(char *argbuf)
220 {
221    char username[SIZ];
222    char userdigest[MD5_HEXSTRING_SIZE];
223    char realdigest[MD5_HEXSTRING_SIZE];
224    char *sptr;
225    
226    if (CC->logged_in)
227    {
228         cprintf("-ERR You are already logged in; not in the AUTHORIZATION phase.\r\n");
229         return;
230    }
231    
232    if ((sptr = strchr(argbuf, ' ')) == NULL)
233    {
234         cprintf("-ERR Invalid APOP line.\r\n");
235         return;
236    }
237    
238    *sptr++ = '\0';
239    
240    while ((*sptr) && isspace(*sptr))
241       sptr++;
242    
243    strncpy(username, argbuf, sizeof(username)-1);
244    username[sizeof(username)-1] = '\0';
245    
246    memset(userdigest, MD5_HEXSTRING_SIZE, 0);
247    strncpy(userdigest, sptr, MD5_HEXSTRING_SIZE-1);
248    
249    if (CtdlLoginExistingUser(NULL, username) != login_ok)
250    {
251         cprintf("-ERR No such user.\r\n");
252         return;
253    }
254    
255    if (getuser(&CC->user, CC->curr_user))
256    {
257         cprintf("-ERR No such user.\r\n");
258         return;
259    }
260    
261    make_apop_string(CC->user.password, CC->cs_nonce, realdigest, sizeof realdigest);
262    if (!strncasecmp(realdigest, userdigest, MD5_HEXSTRING_SIZE-1))
263    {
264         do_login();
265         pop3_login();
266    }
267    else
268    {
269         cprintf("-ERR That is NOT the password.\r\n");
270    }
271 }
272
273
274 /*
275  * Authorize with password (implements POP3 "PASS" command)
276  */
277 void pop3_pass(char *argbuf) {
278         char password[SIZ];
279
280         strcpy(password, argbuf);
281         striplt(password);
282
283         /* CtdlLogPrintf(CTDL_DEBUG, "Trying <%s>\n", password); */
284         if (CtdlTryPassword(password) == pass_ok) {
285                 pop3_login();
286         }
287         else {
288                 cprintf("-ERR That is NOT the password.\r\n");
289         }
290 }
291
292
293
294 /*
295  * list available msgs
296  */
297 void pop3_list(char *argbuf) {
298         int i;
299         int which_one;
300
301         which_one = atoi(argbuf);
302
303         /* "list one" mode */
304         if (which_one > 0) {
305                 if (which_one > POP3->num_msgs) {
306                         cprintf("-ERR no such message, only %d are here\r\n",
307                                 POP3->num_msgs);
308                         return;
309                 }
310                 else if (POP3->msgs[which_one-1].deleted) {
311                         cprintf("-ERR Sorry, you deleted that message.\r\n");
312                         return;
313                 }
314                 else {
315                         cprintf("+OK %d %ld\r\n",
316                                 which_one,
317                                 (long)POP3->msgs[which_one-1].rfc822_length
318                                 );
319                         return;
320                 }
321         }
322
323         /* "list all" (scan listing) mode */
324         else {
325                 cprintf("+OK Here's your mail:\r\n");
326                 if (POP3->num_msgs > 0) for (i=0; i<POP3->num_msgs; ++i) {
327                         if (! POP3->msgs[i].deleted) {
328                                 cprintf("%d %ld\r\n",
329                                         i+1,
330                                         (long)POP3->msgs[i].rfc822_length);
331                         }
332                 }
333                 cprintf(".\r\n");
334         }
335 }
336
337
338 /*
339  * STAT (tally up the total message count and byte count) command
340  */
341 void pop3_stat(char *argbuf) {
342         int total_msgs = 0;
343         size_t total_octets = 0;
344         int i;
345         
346         if (POP3->num_msgs > 0) for (i=0; i<POP3->num_msgs; ++i) {
347                 if (! POP3->msgs[i].deleted) {
348                         ++total_msgs;
349                         total_octets += POP3->msgs[i].rfc822_length;
350                 }
351         }
352
353         cprintf("+OK %d %ld\r\n", total_msgs, (long)total_octets);
354 }
355
356
357
358 /*
359  * RETR command (fetch a message)
360  */
361 void pop3_retr(char *argbuf) {
362         int which_one;
363         char *msgtext;
364         char *nextline;
365         char *chunk_to_send;
366         char prev_char;
367
368         which_one = atoi(argbuf);
369         if ( (which_one < 1) || (which_one > POP3->num_msgs) ) {
370                 cprintf("-ERR No such message.\r\n");
371                 return;
372         }
373
374         if (POP3->msgs[which_one - 1].deleted) {
375                 cprintf("-ERR Sorry, you deleted that message.\r\n");
376                 return;
377         }
378
379         cprintf("+OK Message %d:\r\n", which_one);
380         CtdlOutputMsg(POP3->msgs[which_one - 1].msgnum, MT_RFC822, HEADERS_ALL, 0, 1, NULL, ESC_DOT);
381         cprintf(".\r\n");
382 }
383
384
385 /*
386  * TOP command (dumb way of fetching a partial message or headers-only)
387  */
388 void pop3_top(char *argbuf) {
389         int which_one;
390         int lines_requested = 0;
391         int lines_dumped = 0;
392         char buf[1024];
393         char *msgtext;
394         char *ptr;
395         int in_body = 0;
396         int done = 0;
397
398         sscanf(argbuf, "%d %d", &which_one, &lines_requested);
399         if ( (which_one < 1) || (which_one > POP3->num_msgs) ) {
400                 cprintf("-ERR No such message.\r\n");
401                 return;
402         }
403
404         if (POP3->msgs[which_one - 1].deleted) {
405                 cprintf("-ERR Sorry, you deleted that message.\r\n");
406                 return;
407         }
408
409         CC->redirect_buffer = malloc(SIZ);
410         CC->redirect_len = 0;
411         CC->redirect_alloc = SIZ;
412         CtdlOutputMsg(POP3->msgs[which_one - 1].msgnum,
413                       MT_RFC822, HEADERS_ALL, 0, 1, NULL, 0);
414         msgtext = CC->redirect_buffer;
415         CC->redirect_buffer = NULL;
416         CC->redirect_len = 0;
417         CC->redirect_alloc = 0;
418
419         cprintf("+OK Message %d:\r\n", which_one);
420
421         ptr = msgtext;
422
423         while (ptr = memreadline(ptr, buf, (sizeof buf - 2)),
424               ( (*ptr != 0) && (done == 0))) {
425                 strcat(buf, "\r\n");
426                 if (in_body == 1) {
427                         if (lines_dumped >= lines_requested) {
428                                 done = 1;
429                         }
430                 }
431                 if ((in_body == 0) || (done == 0)) {
432                         client_write(buf, strlen(buf));
433                 }
434                 if (in_body) {
435                         ++lines_dumped;
436                 }
437                 if ((buf[0]==13)||(buf[0]==10)) in_body = 1;
438         }
439
440         if (buf[strlen(buf)-1] != 10) cprintf("\n");
441         free(msgtext);
442
443         cprintf(".\r\n");
444 }
445
446
447 /*
448  * DELE (delete message from mailbox)
449  */
450 void pop3_dele(char *argbuf) {
451         int which_one;
452
453         which_one = atoi(argbuf);
454         if ( (which_one < 1) || (which_one > POP3->num_msgs) ) {
455                 cprintf("-ERR No such message.\r\n");
456                 return;
457         }
458
459         if (POP3->msgs[which_one - 1].deleted) {
460                 cprintf("-ERR You already deleted that message.\r\n");
461                 return;
462         }
463
464         /* Flag the message as deleted.  Will expunge during QUIT command. */
465         POP3->msgs[which_one - 1].deleted = 1;
466         cprintf("+OK Message %d deleted.\r\n",
467                 which_one);
468 }
469
470
471 /* Perform "UPDATE state" stuff
472  */
473 void pop3_update(void) {
474         int i;
475         struct visit vbuf;
476
477         long *deletemsgs = NULL;
478         int num_deletemsgs = 0;
479
480         /* Remove messages marked for deletion */
481         if (POP3->num_msgs > 0) {
482                 deletemsgs = malloc(POP3->num_msgs * sizeof(long));
483                 for (i=0; i<POP3->num_msgs; ++i) {
484                         if (POP3->msgs[i].deleted) {
485                                 deletemsgs[num_deletemsgs++] = POP3->msgs[i].msgnum;
486                         }
487                 }
488                 if (num_deletemsgs > 0) {
489                         CtdlDeleteMessages(MAILROOM, deletemsgs, num_deletemsgs, "");
490                 }
491                 free(deletemsgs);
492         }
493
494         /* Set last read pointer */
495         if (POP3->num_msgs > 0) {
496                 lgetuser(&CC->user, CC->curr_user);
497
498                 CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
499                 snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld",
500                         POP3->msgs[POP3->num_msgs-1].msgnum);
501                 CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
502
503                 lputuser(&CC->user);
504         }
505
506 }
507
508
509 /* 
510  * RSET (reset, i.e. undelete any deleted messages) command
511  */
512 void pop3_rset(char *argbuf) {
513         int i;
514
515         if (POP3->num_msgs > 0) for (i=0; i<POP3->num_msgs; ++i) {
516                 if (POP3->msgs[i].deleted) {
517                         POP3->msgs[i].deleted = 0;
518                 }
519         }
520         cprintf("+OK Reset completed.\r\n");
521 }
522
523
524
525 /* 
526  * LAST (Determine which message is the last unread message)
527  */
528 void pop3_last(char *argbuf) {
529         cprintf("+OK %d\r\n", POP3->lastseen + 1);
530 }
531
532
533 /*
534  * CAPA is a command which tells the client which POP3 extensions
535  * are supported.
536  */
537 void pop3_capa(void) {
538         cprintf("+OK Capability list follows\r\n"
539                 "TOP\r\n"
540                 "USER\r\n"
541                 "UIDL\r\n"
542                 "IMPLEMENTATION %s\r\n"
543                 ".\r\n"
544                 ,
545                 CITADEL
546         );
547 }
548
549
550
551 /*
552  * UIDL (Universal IDentifier Listing) is easy.  Our 'unique' message
553  * identifiers are simply the Citadel message numbers in the database.
554  */
555 void pop3_uidl(char *argbuf) {
556         int i;
557         int which_one;
558
559         which_one = atoi(argbuf);
560
561         /* "list one" mode */
562         if (which_one > 0) {
563                 if (which_one > POP3->num_msgs) {
564                         cprintf("-ERR no such message, only %d are here\r\n",
565                                 POP3->num_msgs);
566                         return;
567                 }
568                 else if (POP3->msgs[which_one-1].deleted) {
569                         cprintf("-ERR Sorry, you deleted that message.\r\n");
570                         return;
571                 }
572                 else {
573                         cprintf("+OK %d %ld\r\n",
574                                 which_one,
575                                 POP3->msgs[which_one-1].msgnum
576                                 );
577                         return;
578                 }
579         }
580
581         /* "list all" (scan listing) mode */
582         else {
583                 cprintf("+OK Here's your mail:\r\n");
584                 if (POP3->num_msgs > 0) for (i=0; i<POP3->num_msgs; ++i) {
585                         if (! POP3->msgs[i].deleted) {
586                                 cprintf("%d %ld\r\n",
587                                         i+1,
588                                         POP3->msgs[i].msgnum);
589                         }
590                 }
591                 cprintf(".\r\n");
592         }
593 }
594
595
596 /*
597  * implements the STLS command (Citadel API version)
598  */
599 void pop3_stls(void)
600 {
601         char ok_response[SIZ];
602         char nosup_response[SIZ];
603         char error_response[SIZ];
604
605         sprintf(ok_response,
606                 "+OK Begin TLS negotiation now\r\n");
607         sprintf(nosup_response,
608                 "-ERR TLS not supported here\r\n");
609         sprintf(error_response,
610                 "-ERR Internal error\r\n");
611         CtdlModuleStartCryptoMsgs(ok_response, nosup_response, error_response);
612 }
613
614
615
616
617
618
619
620 /* 
621  * Main command loop for POP3 sessions.
622  */
623 void pop3_command_loop(void) {
624         char cmdbuf[SIZ];
625
626         time(&CC->lastcmd);
627         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
628         if (client_getln(cmdbuf, sizeof cmdbuf) < 1) {
629                 CtdlLogPrintf(CTDL_ERR, "Client disconnected: ending session.\r\n");
630                 CC->kill_me = 1;
631                 return;
632         }
633         if (!strncasecmp(cmdbuf, "PASS", 4)) {
634                 CtdlLogPrintf(CTDL_INFO, "POP3: PASS...\r\n");
635         }
636         else {
637                 CtdlLogPrintf(CTDL_INFO, "POP3: %s\r\n", cmdbuf);
638         }
639         while (strlen(cmdbuf) < 5) strcat(cmdbuf, " ");
640
641         if (!strncasecmp(cmdbuf, "NOOP", 4)) {
642                 cprintf("+OK No operation.\r\n");
643         }
644
645         else if (!strncasecmp(cmdbuf, "CAPA", 4)) {
646                 pop3_capa();
647         }
648
649         else if (!strncasecmp(cmdbuf, "QUIT", 4)) {
650                 cprintf("+OK Goodbye...\r\n");
651                 pop3_update();
652                 CC->kill_me = 1;
653                 return;
654         }
655
656         else if (!strncasecmp(cmdbuf, "USER", 4)) {
657                 pop3_user(&cmdbuf[5]);
658         }
659
660         else if (!strncasecmp(cmdbuf, "PASS", 4)) {
661                 pop3_pass(&cmdbuf[5]);
662         }
663
664         else if (!strncasecmp(cmdbuf, "APOP", 4))
665         {
666                 pop3_apop(&cmdbuf[5]);
667         }
668
669 #ifdef HAVE_OPENSSL
670         else if (!strncasecmp(cmdbuf, "STLS", 4)) {
671                 pop3_stls();
672         }
673 #endif
674
675         else if (!CC->logged_in) {
676                 cprintf("-ERR Not logged in.\r\n");
677         }
678
679         else if (!strncasecmp(cmdbuf, "LIST", 4)) {
680                 pop3_list(&cmdbuf[5]);
681         }
682
683         else if (!strncasecmp(cmdbuf, "STAT", 4)) {
684                 pop3_stat(&cmdbuf[5]);
685         }
686
687         else if (!strncasecmp(cmdbuf, "RETR", 4)) {
688                 pop3_retr(&cmdbuf[5]);
689         }
690
691         else if (!strncasecmp(cmdbuf, "DELE", 4)) {
692                 pop3_dele(&cmdbuf[5]);
693         }
694
695         else if (!strncasecmp(cmdbuf, "RSET", 4)) {
696                 pop3_rset(&cmdbuf[5]);
697         }
698
699         else if (!strncasecmp(cmdbuf, "UIDL", 4)) {
700                 pop3_uidl(&cmdbuf[5]);
701         }
702
703         else if (!strncasecmp(cmdbuf, "TOP", 3)) {
704                 pop3_top(&cmdbuf[4]);
705         }
706
707         else if (!strncasecmp(cmdbuf, "LAST", 4)) {
708                 pop3_last(&cmdbuf[4]);
709         }
710
711         else {
712                 cprintf("-ERR I'm afraid I can't do that.\r\n");
713         }
714
715 }
716
717 const char *CitadelServicePop3="POP3";
718 const char *CitadelServicePop3S="POP3S";
719
720
721 CTDL_MODULE_INIT(pop3)
722 {
723         if(!threading)
724         {
725                 CtdlRegisterServiceHook(config.c_pop3_port,
726                                         NULL,
727                                         pop3_greeting,
728                                         pop3_command_loop,
729                                         NULL,
730                                         CitadelServicePop3);
731 #ifdef HAVE_OPENSSL
732                 CtdlRegisterServiceHook(config.c_pop3s_port,
733                                         NULL,
734                                         pop3s_greeting,
735                                         pop3_command_loop,
736                                         NULL,
737                                         CitadelServicePop3S);
738 #endif
739                 CtdlRegisterSessionHook(pop3_cleanup_function, EVT_STOP);
740         }
741         
742         /* return our Subversion id for the Log */
743         return "$Id$";
744 }