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