forked from dbmail/dbmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpop3.c
876 lines (709 loc) · 24.4 KB
/
pop3.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
/*
Copyright (C) 1999-2004 IC & S dbmail@ic-s.nl
Copyright (c) 2004-2012 NFG Net Facilities Group BV support@nfg.nl
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* implementation for pop3 commands according to RFC 1081 */
#include "dbmail.h"
#define THIS_MODULE "pop3"
#define MAX_ERRORS 3
/* all POP3 commands */
typedef enum {
POP3_QUIT,
POP3_USER,
POP3_PASS,
POP3_STAT,
POP3_LIST,
POP3_RETR,
POP3_DELE,
POP3_NOOP,
POP3_LAST,
POP3_RSET,
POP3_UIDL,
POP3_APOP,
POP3_AUTH,
POP3_TOP,
POP3_CAPA,
POP3_STLS,
POP3_FAIL
} Pop3Cmd;
/* allowed pop3 commands */
const char *commands[] = {
"quit", /**< POP3_QUIT */
"user", /**< POP3_USER */
"pass", /**< POP3_PASS */
"stat", /**< POP3_STAT */
"list", /**< POP3_LIST */
"retr", /**< POP3_RETR */
"dele", /**< POP3_DELE */
"noop", /**< POP3_NOOP */
"last", /**< POP3_LAST */
"rset", /**< POP3_RSET */
"uidl", /**< POP3_UIDL */
"apop", /**< POP3_APOP */
"auth", /**< POP3_AUTH */
"top", /**< POP3_TOP */
"capa", /**< POP3_CAPA */
"stls" /**< POP3_STLS */
};
const char ValidNetworkChars[] =
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
",'\"?_.!|@#$%^&*()-+=~[]{}<>:;\\/ '";
extern ServerConfig_T *server_conf;
extern int pop_before_smtp;
static int pop3(ClientSession_T *session, const char *buffer);
static void send_greeting(ClientSession_T *session)
{
Field_T banner;
GETCONFIGVALUE("banner", "POP", banner);
if (! dm_db_ping()) {
ci_write(session->ci, "+ERR database has gone fishing\r\n");
session->state = CLIENTSTATE_QUIT;
return;
}
if (strlen(banner) > 0) {
ci_write(session->ci, "+OK %s %s\r\n", banner, session->apop_stamp);
} else {
ci_write(session->ci, "+OK DBMAIL pop3 server ready to rock %s\r\n", session->apop_stamp);
}
}
extern DBParam_T db_params;
#define DBPFX db_params.pfx
static int db_createsession(uint64_t user_idnr, ClientSession_T * session)
{
Connection_T c; ResultSet_T r; volatile int t = DM_SUCCESS;
struct message *tmpmessage;
volatile int message_counter = 0;
const char *query_result;
uint64_t mailbox_idnr;
INIT_QUERY;
if (db_find_create_mailbox("INBOX", BOX_DEFAULT, user_idnr, &mailbox_idnr) < 0) {
TRACE(TRACE_NOTICE, "find_create INBOX for user [%" PRIu64 "] failed, exiting..", user_idnr);
return DM_EQUERY;
}
g_return_val_if_fail(mailbox_idnr > 0, DM_EQUERY);
/* query is < MESSAGE_STATUS_DELETE because we don't want deleted
* messages
*/
snprintf(query, DEF_QUERYSIZE-1,
"SELECT pm.messagesize, msg.message_idnr, msg.status, "
"msg.unique_id FROM %smessages msg, %sphysmessage pm "
"WHERE msg.mailbox_idnr = %" PRIu64 " "
"AND msg.status < %d "
"AND msg.physmessage_id = pm.id "
"ORDER BY msg.message_idnr ASC",DBPFX,DBPFX,
mailbox_idnr, MESSAGE_STATUS_DELETE);
c = db_con_get();
TRY
r = db_query(c, query);
session->totalmessages = 0;
session->totalsize = 0;
/* messagecounter is total message, +1 tot end at message 1 */
message_counter = 1;
/* filling the list */
TRACE(TRACE_DEBUG, "adding items to list");
while (db_result_next(r)) {
tmpmessage = mempool_pop(session->pool, sizeof(struct message));
/* message size */
tmpmessage->msize = db_result_get_u64(r,0);
/* real message id */
tmpmessage->realmessageid = db_result_get_u64(r,1);
/* message status */
tmpmessage->messagestatus = db_result_get_u64(r,2);
/* virtual message status */
tmpmessage->virtual_messagestatus = tmpmessage->messagestatus;
/* unique id */
query_result = db_result_get(r,3);
if (query_result)
strncpy(tmpmessage->uidl, query_result, UID_SIZE-1);
session->totalmessages++;
session->totalsize += tmpmessage->msize;
tmpmessage->messageid = (uint64_t) message_counter;
session->messagelst = p_list_append(session->messagelst, tmpmessage);
message_counter++;
}
CATCH(SQLException)
LOG_SQLERROR;
t = DM_EQUERY;
FINALLY
db_con_close(c);
END_TRY;
if (t == DM_EQUERY) return t;
if (message_counter == 1) {
/* there are no messages for this user */
return DM_EGENERAL;
}
TRACE(TRACE_DEBUG, "adding succesful");
/* setting all virtual values */
session->virtual_totalmessages = session->totalmessages;
session->virtual_totalsize = session->totalsize;
return DM_EGENERAL;
}
static void pop3_close(ClientSession_T *session)
{
ClientBase_T *ci = session->ci;
TRACE(TRACE_DEBUG,"[%p] sessionResult [%d]", session, session->SessionResult);
session->state = CLIENTSTATE_QUIT;
if (session->username != NULL && (session->was_apop || session->password != NULL)) {
switch (session->SessionResult) {
case 0:
TRACE(TRACE_NOTICE, "user %s logging out [messages=%" PRIu64 ", octets=%" PRIu64 "]",
session->username,
session->virtual_totalmessages,
session->virtual_totalsize);
/* if everything went well, write down everything and do a cleanup */
if (db_update_pop(session) == DM_SUCCESS)
ci_write(ci, "+OK see ya later\r\n");
else
ci_write(ci, "-ERR some deleted messages not removed\r\n");
break;
case 1:
ci_write(ci, "-ERR I'm leaving, you're too slow\r\n");
TRACE(TRACE_ERR, "client timed out, connection closed");
break;
case 2:
TRACE(TRACE_ERR, "alert! possible flood attempt, closing connection");
break;
case 3:
TRACE(TRACE_ERR, "authorization layer failure");
break;
case 4:
TRACE(TRACE_ERR, "storage layer failure");
break;
}
} else {
ci_write(ci, "+OK see ya later\r\n");
}
}
/* the default pop3 read handler */
static void pop3_handle_input(void *arg)
{
char buffer[MAX_LINESIZE]; /* connection buffer */
ClientSession_T *session = (ClientSession_T *)arg;
if (p_string_len(session->ci->write_buffer)) {
ci_write(session->ci, NULL);
return;
}
memset(buffer, 0, sizeof(buffer));
if (ci_readln(session->ci, buffer) == 0)
return;
ci_cork(session->ci);
if (pop3(session, buffer) <= 0) {
client_session_bailout(&session);
return;
}
ci_uncork(session->ci);
}
void pop3_cb_write(void *arg)
{
ClientSession_T *session = (ClientSession_T *)arg;
int state = session->state;
switch (state) {
case CLIENTSTATE_QUIT_QUEUED:
case CLIENTSTATE_QUIT:
break;
default:
ci_write_cb(session->ci);
session->handle_input(session);
break;
}
}
void pop3_cb_time(void * arg)
{
ClientSession_T *session = (ClientSession_T *)arg;
ci_write(session->ci, "-ERR I'm leaving, you're too slow\r\n");
client_session_bailout(&session);
}
static void reset_callbacks(ClientSession_T *session)
{
session->ci->cb_time = pop3_cb_time;
session->ci->cb_write = pop3_cb_write;
session->handle_input = pop3_handle_input;
UNBLOCK(session->ci->rx);
UNBLOCK(session->ci->tx);
ci_uncork(session->ci);
}
int pop3_handle_connection(client_sock *c)
{
ClientSession_T *session = client_session_new(c);
session->state = CLIENTSTATE_INITIAL_CONNECT;
client_session_set_timeout(session, server_conf->login_timeout);
send_greeting(session);
reset_callbacks(session);
return 0;
}
int pop3_error(ClientSession_T * session, const char *formatstring, ...)
{
va_list ap, cp;
char *s;
ClientBase_T *ci = session->ci;
if (session->error_count >= MAX_ERRORS) {
ci_write(ci, "-ERR too many errors\r\n");
return -3;
}
va_start(ap, formatstring);
va_copy(cp, ap);
s = g_strdup_vprintf(formatstring, cp);
va_end(cp);
va_end(ap);
ci_write(ci, s);
g_free(s);
if (ci->client_state & CLIENT_ERR) {
return -3;
}
TRACE(TRACE_DEBUG, "an invalid command was issued");
session->error_count++;
return 1;
}
static int _pop3_session_authenticated(ClientSession_T *session, int user_idnr)
{
ClientBase_T *ci = session->ci;
int result = 0;
session->state = CLIENTSTATE_AUTHENTICATED;
ci_authlog_init(ci, THIS_MODULE, (const char *)session->username, AUTHLOG_ACT);
client_session_set_timeout(session, server_conf->timeout);
/* user seems to be valid, let's build a session */
TRACE(TRACE_DEBUG, "validation OK, building a session for user [%s]",
session->username);
/* if pop_before_smtp is active, log this ip */
if (pop_before_smtp)
db_log_ip(ci->src_ip);
result = db_createsession(user_idnr, session);
if (result == 1) {
ci_write(ci, "+OK %s has %" PRIu64 " messages (%" PRIu64 " octets)\r\n",
session->username,
session->virtual_totalmessages,
session->virtual_totalsize);
TRACE(TRACE_NOTICE, "user %s logged in [messages=%" PRIu64 ", octets=%" PRIu64 "]",
session->username,
session->virtual_totalmessages,
session->virtual_totalsize);
} else
session->SessionResult = 4; /* Database error. */
return result;
}
int pop3(ClientSession_T *session, const char *buffer)
{
/* returns a 0 on a quit
* -1 on a failure
* 1 on a success
*/
char *command, *value, *searchptr, *enctype, *s;
Pop3Cmd cmdtype;
int found = 0;
//int indx = 0;
int validate_result;
gboolean login_disabled = FALSE;
uint64_t result, top_lines, top_messageid, user_idnr;
unsigned char *md5_apop_he;
struct message *msg;
ClientBase_T *ci = session->ci;
s = (char *)buffer;
strip_crlf(s);
g_strstrip(s);
TRACE(TRACE_DEBUG, "incoming buffer: [%s]", s);
if (! strlen(s)) return 1;
int state = session->state;
/* check for command issued */
/*
while (strchr(ValidNetworkChars, s[indx++]))
;
*/
command = s;
value = strstr(command, " "); /* look for the separator */
if (value != NULL) {
*value = '\0'; /* set a \0 on the command end */
value++; /* skip space */
if (strlen(value) == 0)
value = NULL; /* no value specified */
else {
TRACE(TRACE_DEBUG, "state[%d], command issued :cmd [%s], value [%s]\n", state, command, value);
}
}
/* find command that was issued */
for (cmdtype = POP3_QUIT; cmdtype < POP3_FAIL; cmdtype++)
if (strcasecmp(command, commands[cmdtype]) == 0) {
session->was_apop = 1;
break;
}
TRACE(TRACE_DEBUG, "command looked up as commandtype %d",
cmdtype);
/* commands that are allowed to have no arguments */
if (value == NULL) {
switch (cmdtype) {
case POP3_QUIT:
case POP3_LIST:
case POP3_STAT:
case POP3_RSET:
case POP3_NOOP:
case POP3_LAST:
case POP3_UIDL:
case POP3_AUTH:
case POP3_CAPA:
case POP3_STLS:
break;
default:
return pop3_error(session, "-ERR your command does not compute\r\n");
break;
}
}
if (state == CLIENTSTATE_INITIAL_CONNECT) {
if (server_conf->ssl) {
Field_T val;
GETCONFIGVALUE("login_disabled", "POP", val);
if (SMATCH(val, "yes"))
login_disabled = TRUE;
}
}
switch (cmdtype) {
case POP3_QUIT:
/* We return 0 here, and then pop3_handle_connection cleans up
* the connection, commits all changes, and sends the final
* "OK" message indicating that QUIT has completed. */
session->state = CLIENTSTATE_LOGOUT;
session->SessionResult = 0;
pop3_close(session);
return 0;
case POP3_STLS:
if (state != CLIENTSTATE_INITIAL_CONNECT)
return pop3_error(session, "-ERR wrong command mode\r\n");
if (! server_conf->ssl)
return pop3_error(session, "-ERR server error\r\n");
if (session->ci->sock->ssl_state)
return pop3_error(session, "-ERR TLS already active\r\n");
ci_write(session->ci, "+OK Begin TLS now\r\n");
if (ci_starttls(session->ci) < 0) return -1;
return 1;
case POP3_USER:
if (state != CLIENTSTATE_INITIAL_CONNECT)
return pop3_error(session, "-ERR wrong command mode\r\n");
if (login_disabled && ! session->ci->sock->ssl_state)
return pop3_error(session, "-ERR try STLS\r\n");
if (session->username != NULL) {
/* reset username */
g_free(session->username);
session->username = NULL;
}
if (session->username == NULL) {
/* create memspace for username */
session->username = g_new0(char,strlen(value) + 1);
strncpy(session->username, value, strlen(value) + 1);
}
ci_write(ci, "+OK Password required for %s\r\n", session->username);
return 1;
case POP3_PASS:
if (state != CLIENTSTATE_INITIAL_CONNECT)
return pop3_error(session, "-ERR wrong command mode\r\n");
if (login_disabled && ! session->ci->sock->ssl_state)
return pop3_error(session, "-ERR try STLS\r\n");
if (session->password != NULL) {
g_free(session->password);
session->password = NULL;
}
if (session->password == NULL) {
/* create memspace for password */
session->password = g_new0(char,strlen(value) + 1);
strncpy(session->password, value, strlen(value) + 1);
}
/* check in authorization layer if these credentials are correct */
validate_result = auth_validate(ci, (const char *)session->username, (const char *)session->password, &result);
switch (validate_result) {
case -1:
session->SessionResult = 3;
return -1;
case 0:
ci_authlog_init(ci, THIS_MODULE, (const char *)session->username, AUTHLOG_ERR);
TRACE(TRACE_ERR, "user [%s] coming from [%s] tried to login with wrong password",
session->username, ci->src_ip);
g_free(session->username);
session->username = NULL;
g_free(session->password);
session->password = NULL;
return pop3_error(session, "-ERR username/password incorrect\r\n");
default:
return _pop3_session_authenticated(session, result);
}
return 1;
case POP3_LIST:
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
session->messagelst = p_list_first(session->messagelst);
if (value != NULL) {
/* they're asking for a specific message */
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if ((msg ) && (msg->messageid == strtoull(value,NULL, 10)) && (msg->virtual_messagestatus < MESSAGE_STATUS_DELETE)) {
ci_write(ci, "+OK %" PRIu64 " %" PRIu64 "\r\n", msg->messageid,msg->msize);
found = 1;
}
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
if (!found)
return pop3_error(session, "-ERR [%s] no such message\r\n", value);
else
return 1;
}
/* just drop the list */
ci_write(ci, "+OK %" PRIu64 " messages (%" PRIu64 " octets)\r\n", session->virtual_totalmessages, session->virtual_totalsize);
if (session->virtual_totalmessages > 0) {
/* traversing list */
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if ((msg) && (msg->virtual_messagestatus < MESSAGE_STATUS_DELETE))
ci_write(ci, "%" PRIu64 " %" PRIu64 "\r\n", msg->messageid,msg->msize);
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
}
ci_write(ci, ".\r\n");
return 1;
case POP3_STAT:
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
ci_write(ci, "+OK %" PRIu64 " %" PRIu64 "\r\n",
session->virtual_totalmessages,
session->virtual_totalsize);
return 1;
case POP3_RETR:
TRACE(TRACE_DEBUG, "RETR command, retrieving message");
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
session->messagelst = p_list_first(session->messagelst);
/* selecting a message */
TRACE(TRACE_DEBUG, "RETR command, selecting message");
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if ((msg) && (msg->messageid == strtoull(value, NULL, 10)) && (msg->virtual_messagestatus < MESSAGE_STATUS_DELETE)) { /* message is not deleted */
char *s = NULL;
msg->virtual_messagestatus = MESSAGE_STATUS_SEEN;
if (! (s = db_get_message_lines(msg->realmessageid, -2)))
return -1;
ci_write(ci, "+OK %" PRIu64 " octets\r\n%s", (uint64_t)strlen(s), s);
ci_write(ci, "\r\n.\r\n");
g_free(s);
return 1;
}
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
return pop3_error(session, "-ERR [%s] no such message\r\n", value);
case POP3_DELE:
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
session->messagelst = p_list_first(session->messagelst);
/* selecting a message */
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if ((msg) && (msg->messageid == strtoull(value, NULL, 10)) && (msg->virtual_messagestatus < MESSAGE_STATUS_DELETE)) { /* message is not deleted */
msg->virtual_messagestatus = MESSAGE_STATUS_DELETE;
session->virtual_totalsize -= msg->msize;
session->virtual_totalmessages -= 1;
ci_write(ci, "+OK message %" PRIu64 " deleted\r\n", msg->messageid);
return 1;
}
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
return pop3_error(session, "-ERR [%s] no such message\r\n", value);
case POP3_RSET:
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
session->messagelst = p_list_first(session->messagelst);
session->virtual_totalsize = session->totalsize;
session->virtual_totalmessages = session->totalmessages;
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if (msg)
msg->virtual_messagestatus = msg->messagestatus;
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
ci_write(ci, "+OK %" PRIu64 " messages (%" PRIu64 " octets)\r\n", session->virtual_totalmessages, session->virtual_totalsize);
return 1;
case POP3_LAST:
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
session->messagelst = p_list_first(session->messagelst);
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if ((msg) && (msg->virtual_messagestatus == MESSAGE_STATUS_NEW)) {
/* we need the last message that has been accessed */
ci_write(ci, "+OK %" PRIu64 "\r\n", msg->messageid - 1);
return 1;
}
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
/* all old messages */
ci_write(ci, "+OK %" PRIu64 "\r\n", session->virtual_totalmessages);
return 1;
case POP3_NOOP:
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
ci_write(ci, "+OK\r\n");
return 1;
case POP3_UIDL:
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
session->messagelst = p_list_first(session->messagelst);
if (value != NULL) {
/* they're asking for a specific message */
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if ((msg) && (msg->messageid == strtoull(value,NULL, 10)) && (msg->virtual_messagestatus < MESSAGE_STATUS_DELETE)) {
ci_write(ci, "+OK %" PRIu64 " %s\r\n", msg->messageid,msg->uidl);
found = 1;
}
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
if (!found)
return pop3_error(session, "-ERR [%s] no such message\r\n", value);
else
return 1;
}
/* just drop the list */
ci_write(ci, "+OK Some very unique numbers for you\r\n");
if (session->virtual_totalmessages > 0) {
/* traversing list */
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if (msg && (msg->virtual_messagestatus < MESSAGE_STATUS_DELETE))
ci_write(ci, "%" PRIu64 " %s\r\n", msg->messageid, msg->uidl);
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
}
ci_write(ci, ".\r\n");
return 1;
case POP3_APOP:
if (state != CLIENTSTATE_INITIAL_CONNECT)
return pop3_error(session, "-ERR wrong command mode\r\n");
/* find out where the md5 hash starts */
searchptr = strstr(value, " ");
if (searchptr == NULL)
return pop3_error(session, "-ERR your command does not compute\r\n");
/* skip the space */
searchptr = searchptr + 1;
/* value should now be the username */
value[searchptr - value - 1] = '\0';
if (strlen(searchptr) != 32)
return pop3_error(session, "-ERR not a valid md5 hash\r\n");
md5_apop_he = g_new0(unsigned char,strlen(searchptr) + 1);
session->username = g_new0(char,strlen(value) + 1);
strncpy((char *)md5_apop_he, searchptr, strlen(searchptr) + 1);
strncpy(session->username, value, strlen(value) + 1);
/*
* check the encryption used for this user
* note that if the user does not exist it is not noted
* by db_getencryption()
*/
if (! auth_user_exists(session->username, &user_idnr)) {
TRACE(TRACE_ERR, "error finding if user exists. username = [%s]",
session->username);
return -1;
}
enctype = auth_getencryption(user_idnr);
if (strcasecmp(enctype, "") != 0) {
/* it should be clear text */
g_free(enctype);
g_free(md5_apop_he);
g_free(session->username);
session->username = NULL;
md5_apop_he = NULL;
return pop3_error(session, "-ERR APOP command is not supported for this user\r\n");
}
TRACE(TRACE_DEBUG, "APOP auth, username [%s], md5_hash [%s]", session->username, md5_apop_he);
result = auth_md5_validate(ci,session->username, md5_apop_he, session->apop_stamp);
g_free(md5_apop_he);
md5_apop_he = 0;
switch (result) {
case -1:
session->SessionResult = 3;
return -1;
case 0:
TRACE(TRACE_ERR, "user [%s] tried to login with wrong password", session->username);
g_free(session->username);
session->username = NULL;
g_free(session->password);
session->password = NULL;
return pop3_error(session, "-ERR authentication attempt is invalid\r\n");
default:
return _pop3_session_authenticated(session, result);
}
return 1;
case POP3_AUTH:
if (state != CLIENTSTATE_INITIAL_CONNECT)
return pop3_error(session, "-ERR wrong command mode\r\n");
return pop3_error(session, "-ERR no AUTH mechanisms supported\r\n");
case POP3_TOP:
if (state != CLIENTSTATE_AUTHENTICATED)
return pop3_error(session, "-ERR wrong command mode\r\n");
/* find out how many lines they want */
searchptr = strstr(value, " ");
/* insufficient parameters */
if (searchptr == NULL)
return pop3_error(session, "-ERR your command does not compute\r\n");
/* skip the space */
searchptr = searchptr + 1;
/* value should now be the the message that needs to be retrieved */
value[searchptr - value - 1] = '\0';
/* check if searchptr or value are negative. If so return an
error. This is done by only letting the strings contain
digits (0-9) */
if (strspn(searchptr, "0123456789") != strlen(searchptr))
return pop3_error(session, "-ERR wrong parameter\r\n");
if (strspn(value, "0123456789") != strlen(value))
return pop3_error(session, "-ERR wrong parameter\r\n");
top_lines = strtoull(searchptr, NULL, 10);
top_messageid = strtoull(value, NULL, 10);
if (top_messageid < 1)
return pop3_error(session, "-ERR wrong parameter\r\n");
TRACE(TRACE_DEBUG, "TOP command (partially) retrieving message");
session->messagelst = p_list_first(session->messagelst);
/* selecting a message */
TRACE(TRACE_DEBUG, "TOP command, selecting message");
while (session->messagelst) {
msg = (struct message *)p_list_data(session->messagelst);
if ((msg) && (msg->messageid == top_messageid) && (msg->virtual_messagestatus < MESSAGE_STATUS_DELETE)) { /* message is not deleted */
char *s = NULL; size_t i;
if (! (s = db_get_message_lines(msg->realmessageid, top_lines)))
return -1;
i = ci_write(ci, "+OK %" PRIu64 " lines of message %" PRIu64 "\r\n%s", top_lines, top_messageid, s);
ci_write(ci, "\r\n.\r\n");
g_free(s);
return i;
}
if (! p_list_next(session->messagelst))
break;
session->messagelst = p_list_next(session->messagelst);
}
return pop3_error(session, "-ERR no such message\r\n");
case POP3_CAPA:
ci_write(ci, "+OK Capability list follows\r\nTOP\r\nUSER\r\nUIDL%s\r\n.\r\n", server_conf->ssl?"\r\nSTLS":"");
return 1;
default:
return pop3_error(session, "-ERR command not understood\r\n");
}
return 1;
}