mbx_pop.c
31.3 KB
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
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Library Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <mailbox0.h>
#include <io0.h>
#include <body0.h>
#include <message0.h>
#include <registrar0.h>
#include <auth0.h>
#include <attribute.h>
#include <mailutils_errno.h>
#include <termios.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
static int mailbox_pop_create (mailbox_t *mbox, const char *name);
static void mailbox_pop_destroy (mailbox_t *mbox);
struct mailbox_registrar _mailbox_pop_registrar =
{
"POP3",
mailbox_pop_create, mailbox_pop_destroy
};
static int mailbox_pop_open (mailbox_t, int flags);
static int mailbox_pop_close (mailbox_t);
static int mailbox_pop_get_message (mailbox_t, size_t msgno, message_t *msg);
static int mailbox_pop_messages_count (mailbox_t, size_t *num);
static int mailbox_pop_expunge (mailbox_t);
static int mailbox_pop_num_deleted (mailbox_t, size_t *);
/* update and scanning*/
static int mailbox_pop_is_updated (mailbox_t);
static int mailbox_pop_scan (mailbox_t mbox, size_t msgno, size_t *pcount);
/* mailbox size ? */
static int mailbox_pop_size (mailbox_t, off_t *size);
static int mailbox_pop_readstream (stream_t is, char *buffer, size_t buflen,
off_t offset, size_t *pnread);
static int mailbox_pop_getfd (stream_t, int *pfd);
static int mailbox_pop_body_size (body_t, size_t *psize);
/* According to the rfc:
RFC 2449 POP3 Extension Mechanism November 1998
4. Parameter and Response Lengths
This specification increases the length restrictions on commands and
parameters imposed by RFC 1939.
The maximum length of a command is increased from 47 characters (4
character command, single space, 40 character argument, CRLF) to 255
octets, including the terminating CRLF.
Servers which support the CAPA command MUST support commands up to
255 octets. Servers MUST also support the largest maximum command
length specified by any supported capability.
The maximum length of the first line of a command response (including
the initial greeting) is unchanged at 512 octets (including the
terminating CRLF). */
/* buffered IO */
struct _bio
{
#define POP_BUFSIZ 512
stream_t stream;
size_t maxlen;
size_t len;
char *current;
char *buffer;
char *ptr;
char *nl;
};
typedef struct _bio *bio_t;
static int bio_create (bio_t *, stream_t);
static void bio_destroy (bio_t *);
static int bio_readline (bio_t);
static int bio_read (bio_t);
static int bio_write (bio_t);
struct _mailbox_pop_data;
struct _mailbox_pop_message;
typedef struct _mailbox_pop_data * mailbox_pop_data_t;
typedef struct _mailbox_pop_message * mailbox_pop_message_t;
struct _mailbox_pop_message
{
bio_t bio;
int inbody;
size_t num;
off_t body_size;
message_t message;
mailbox_pop_data_t mpd;
};
struct _mailbox_pop_data
{
void *func;
void *id;
int state;
mailbox_pop_message_t *pmessages;
size_t pmessages_count;
size_t messages_count;
size_t size;
#ifdef HAVE_PTHREAD_H
pthread_mutex_t mutex;
#endif
int flags;
bio_t bio;
int is_updated;
char *user;
char *passwd;
mailbox_pop_message_t mpm;
} ;
/* Parse the url, allocate mailbox_t etc .. */
static int
mailbox_pop_create (mailbox_t *pmbox, const char *name)
{
mailbox_t mbox;
mailbox_pop_data_t mpd;
size_t name_len;
int status;
/* Sanity check. */
if (pmbox == NULL || name == NULL || *name == '\0')
return MU_ERROR_INVALID_ARG;
name_len = strlen (name);
#define POP_SCHEME "pop://"
#define POP_SCHEME_LEN 6
#define SEPARATOR '/'
/* Skip the url scheme. */
if (name_len > POP_SCHEME_LEN &&
(name[0] == 'p' || name[0] == 'P') &&
(name[1] == 'o' || name[1] == 'O') &&
(name[2] == 'p' || name[2] == 'P') &&
(name[3] == ':' && name[4] == '/' && name[5] == '/'))
{
name += POP_SCHEME_LEN;
name_len -= POP_SCHEME_LEN;
}
/* Allocate memory for mbox. */
mbox = calloc (1, sizeof (*mbox));
if (mbox == NULL)
return MU_ERROR_OUT_OF_MEMORY;
/* Allocate specific pop box data. */
mpd = mbox->data = calloc (1, sizeof (*mpd));
if (mbox->data == NULL)
{
mailbox_pop_destroy (&mbox);
return MU_ERROR_OUT_OF_MEMORY;
}
/* Allocate the struct for buffered I/O. */
status = bio_create (&(mpd->bio), NULL);
if (status != 0)
{
mailbox_pop_destroy (&mbox);
return status;
}
/* Copy the name. */
mbox->name = calloc (name_len + 1, sizeof (char));
if (mbox->name == NULL)
{
mailbox_pop_destroy (&mbox);
return MU_ERROR_OUT_OF_MEMORY;
}
memcpy (mbox->name, name, name_len);
#ifdef HAVE_PHTREAD_H
/* Mutex when accessing the structure fields. */
/* FIXME: should we use rdwr locks instead ?? */
pthread_mutex_init (&(mud->mutex), NULL);
#endif
/* Initialize the structure. */
mbox->_create = mailbox_pop_create;
mbox->_destroy = mailbox_pop_destroy;
mbox->_open = mailbox_pop_open;
mbox->_close = mailbox_pop_close;
/* Messages. */
mbox->_get_message = mailbox_pop_get_message;
mbox->_messages_count = mailbox_pop_messages_count;
mbox->_expunge = mailbox_pop_expunge;
mbox->_num_deleted = mailbox_pop_num_deleted;
mbox->_scan = mailbox_pop_scan;
mbox->_is_updated = mailbox_pop_is_updated;
mbox->_size = mailbox_pop_size;
(*pmbox) = mbox;
return 0; /* Okdoke. */
}
static void
mailbox_pop_destroy (mailbox_t *pmbox)
{
if (pmbox && *pmbox)
{
mailbox_t mbox = *pmbox;
if (mbox->data)
{
mailbox_pop_data_t mpd = mbox->data;
size_t i;
for (i = 0; i < mpd->pmessages_count; i++)
{
if (mpd->pmessages[i])
{
bio_destroy (&(mpd->pmessages[i]->bio));
message_destroy (&(mpd->pmessages[i]->message),
mpd->pmessages[i]);
}
free (mpd->pmessages[i]);
}
free (mpd->pmessages);
free (mpd);
}
free (mbox->name);
free (mbox->event);
stream_destroy (&(mbox->stream), mbox);
auth_destroy (&(mbox->auth), mbox);
if (mbox->url)
url_destroy (&(mbox->url));
*pmbox = NULL;
}
}
static struct termios stored_settings;
static void
echo_off(void)
{
struct termios new_settings;
tcgetattr (0, &stored_settings);
new_settings = stored_settings;
new_settings.c_lflag &= (~ECHO);
tcsetattr (0, TCSANOW, &new_settings);
}
static void
echo_on(void)
{
tcsetattr (0, TCSANOW, &stored_settings);
}
static int
pop_authenticate (auth_t auth, char **user, char **passwd)
{
/* FIXME: this incorrect and goes against GNU style: having a limitation
* on the user/passwd length, it should be fix
*/
char u[128];
char p[128];
mailbox_t mbox = auth->owner;
int status;
*u = '\0';
*p = '\0';
/* prompt for the user/login name */
status = url_get_user (mbox->url, u, sizeof (u), NULL);
if (status != 0 || *u == '\0')
{
printf ("Pop User: "); fflush (stdout);
fgets (u, sizeof (u), stdin);
u [strlen (u) - 1] = '\0'; /* nuke the trailing NL */
}
/* prompt for the passwd */
/* FIXME: should turn off echo .... */
status = url_get_passwd (mbox->url, p, sizeof (p), NULL);
if (status != 0 || *p == '\0' || *p == '*')
{
printf ("Pop Passwd: ");
fflush (stdout);
echo_off ();
fgets (p, sizeof(p), stdin);
echo_on ();
p [strlen (p) - 1] = '\0';
}
*user = strdup (u);
*passwd = strdup (p);
return 0;
}
static int
mailbox_pop_open (mailbox_t mbox, int flags)
{
mailbox_pop_data_t mpd;
int status;
bio_t bio;
void *func = (void *)mailbox_pop_open;
char host[256] ;
long port;
/* Sanity checks. */
if (mbox == NULL || mbox->url == NULL || (mpd = mbox->data) == NULL)
return EINVAL;
/* Create the networking stack. */
if (mbox->stream == NULL)
{
status = tcp_stream_create (&(mbox->stream));
if (status != 0)
return status;
}
if ((status = url_get_host (mbox->url, host, sizeof(host), NULL)) != 0 ||
(status = url_get_port (mbox->url, &port)) != 0)
return status;
/* Dealing whith Authentication. */
/* So far only normal user/pass supported. */
if (mbox->auth == NULL)
{
status = auth_create (&(mbox->auth), mbox);
if (status != 0)
return status;
auth_set_authenticate (mbox->auth, pop_authenticate, mbox);
}
/* Flag busy. */
if (mpd->func && mpd->func != func)
return EBUSY;
mpd->func = func;
bio = mpd->bio;
/* Enter the state machine. */
switch (mpd->state)
{
/* Establish the connection. */
case 0:
/* Spawn auth prologue. */
auth_prologue (mbox->auth);
status = stream_open (mbox->stream, host, port, flags);
if (status != 0)
{
if (status != EAGAIN && status != EINPROGRESS && status != EINTR)
{
mpd->func = NULL;
mpd->state = 0;
}
return status;
}
/* Set the Buffer I/O. */
bio->stream = mbox->stream;
bio->ptr = bio->buffer;
bio->nl = NULL;
mpd->state = 1;
/* Glob the greetings. */
case 1:
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = NULL;
mpd->state = 0;
}
return status;
}
if (strncasecmp (bio->buffer, "+OK", 3) != 0)
{
mpd->func = NULL;
mpd->state = 0;
stream_close (bio->stream);
bio->stream = NULL;
return EACCES;
}
auth_authenticate (mbox->auth, &mpd->user, &mpd->passwd);
/* FIXME: Use snprintf. */
//mpd->len = sprintf (pop->buffer, POP_BUFSIZ, "USER %s\r\n", user);
bio->len = sprintf (bio->buffer, "USER %s\r\n", mpd->user);
bio->ptr = bio->buffer;
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
free (mpd->user); mpd->user = NULL;
mpd->state = 2;
/* Send username. */
case 2:
status = bio_write (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = NULL;
mpd->state = 0;
}
return status;
}
mpd->state = 3;
/* Get the ack. */
case 3:
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = NULL;
mpd->state = 0;
}
return status;
}
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
if (strncasecmp (bio->buffer, "+OK", 3) != 0)
return EACCES;
/* FIXME Use snprintf. */
//mpd->len = snprintf (mpd->buffer, POP_BUFSIZ, "PASS %s\r\n", passwd);
bio->len = sprintf (bio->buffer, "PASS %s\r\n", mpd->passwd);
bio->ptr = bio->buffer;
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
free (mpd->passwd); mpd->passwd = NULL;
mpd->state = 4;
/* Send passwd. */
case 4:
status = bio_write (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = NULL;
mpd->state = 0;
}
return status;
}
mpd->state = 5;
/* Get the ack from passwd. */
case 5:
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = NULL;
mpd->state = 0;
}
return status;
}
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
if (strncasecmp (bio->buffer, "+OK", 3) != 0)
return EACCES;
}/* Swith state. */
/* Spawn cleanup functions. */
auth_epilogue (mbox->auth);
/* Clear any state. */
mpd->id = mpd->func = NULL;
mpd->state = 0;
return 0;
}
static int
mailbox_pop_close (mailbox_t mbox)
{
mailbox_pop_data_t mpd;
void *func = (void *)mailbox_pop_close;
int status;
bio_t bio;
if (mbox == NULL || (mpd = mbox->data) == NULL)
return EINVAL;
if (mpd->func && mpd->func != func)
return EBUSY;
mpd->func = func;
bio = mpd->bio;
if (bio->stream != NULL)
{
switch (mpd->state)
{
case 0:
bio->len = sprintf (bio->buffer, "QUIT\r\n");
bio->ptr = bio->buffer;
mpd->state = 1;
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
case 1:
status = bio_write (mpd->bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
}
return status;
}
case 2:
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
}
return status;
}
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
if (strncasecmp (bio->buffer, "+OK", 3) != 0)
return EINVAL;
case 3:
stream_close (bio->stream);
bio->stream = NULL;
}
}
mpd->func = mpd->id = NULL;
mpd->state = 0;
return 0;
}
static int
mailbox_pop_get_message (mailbox_t mbox, size_t msgno, message_t *pmsg)
{
mailbox_pop_data_t mpd;
bio_t bio;
int status;
size_t i;
void *func = (void *)mailbox_pop_get_message;
/* Sanity. */
if (mbox == NULL || pmsg == NULL || (mpd = mbox->data) == NULL)
return EINVAL;
/* See if we already have this message. */
for (i = 0; i < mpd->pmessages_count; i++)
{
if (mpd->pmessages[i])
{
if (mpd->pmessages[i]->num == msgno)
{
*pmsg = mpd->pmessages[i]->message;
return 0;
}
}
}
/* Are we busy in another function ? */
if (mpd->func && mpd->func != func)
return EBUSY;
/* In the function, but are we busy with an other message/request ? */
if (mpd->id && mpd->id != *pmsg)
return EBUSY;
mpd->func = func;
bio = mpd->bio;
/* Ok men, we're going in. */
switch (mpd->state)
{
/* The message. */
case 0:
{
message_t msg;
mailbox_pop_message_t mpm ;
mpm = calloc (1, sizeof (*mpm));
if (mpm == NULL)
return ENOMEM;
/* We'll use the bio to store headers. */
mpm->bio = calloc (1, sizeof (*(mpm->bio)));
if (mpm->bio == NULL)
{
free (mpm);
mpd->func = NULL;
return ENOMEM;
}
/* Create the message. */
status = message_create (&msg, mpm);
if (status != 0)
{
free (mpm->bio);
free (mpm);
mpd->func = NULL;
return status;
}
/* The message. */
mpm->message = msg;
mpm->num = msgno;
mpd->mpm = mpm;
/* back pointer */
mpm->mpd = mpd;
/* set the busy request state */
mpd->id = (void *)msg;
/* Get the header.
FIXME: TOP is an optionnal command, if we want to
be compliant we can not count on it to exists.
So we should be prepare when it fails and fall to
a second scheme. */
/*bio->len = snprintf (bio->buffer, POP_BUFSIZ, "TOP %d 0\r\n", msgno);*/
bio->len = sprintf (bio->buffer, "TOP %d 0\r\n", msgno);
bio->ptr = bio->buffer;
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
mpd->state = 1;
}
/* Send the TOP. */
case 1:
{
status = bio_write (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
message_destroy (&(mpd->mpm->message), mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
free (mpd->mpm);
mpd->mpm = NULL;
}
return status;
}
mpd->state = 2;
}
/* Ack from TOP. */
case 2:
{
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
message_destroy (&(mpd->mpm->message), mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
free (mpd->mpm);
mpd->mpm = NULL;
}
return status;
}
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
if (strncasecmp (bio->buffer, "+OK", 3) != 0)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
message_destroy (&(mpd->mpm->message), mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
free (mpd->mpm);
mpd->mpm = NULL;
return ERANGE;
}
}
mpd->state = 5;
/* Get the header. */
case 5:
{
char *tbuf;
int nread;
while (1)
{
status = bio_readline (bio);
if (status != 0)
{
/* Recoverable. */
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
message_destroy (&(mpd->mpm->message), mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
free (mpd->mpm);
mpd->mpm = NULL;
}
return status;
}
/* Our ticket out. */
if (bio->buffer[0] == '\0')
break;
nread = bio->nl - bio->buffer;
tbuf = realloc (mpd->mpm->bio->buffer,
mpd->mpm->bio->maxlen + nread);
if (tbuf == NULL)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
message_destroy (&(mpd->mpm->message), mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
free (mpd->mpm);
mpd->mpm = NULL;
return ENOMEM;
}
else
mpd->mpm->bio->buffer = tbuf;
memcpy (mpd->mpm->bio->buffer + mpd->mpm->bio->maxlen,
bio->buffer, nread);
mpd->mpm->bio->maxlen += nread;
} /* while () */
} /* case 5: */
break;
default:
/* Error here unknow case. */
fprintf (stderr, "Pop unknown state(get_message)\n");
} /* switch (state) */
/* No need to carry a state anymore. */
mpd->func = mpd->id = NULL;
mpd->state = 0;
/* Create the header. */
{
header_t header;
status = header_create (&header, mpd->mpm->bio->buffer,
mpd->mpm->bio->maxlen, mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
if (status != 0)
{
message_destroy (&(mpd->mpm->message), mpd->mpm);
free (mpd->mpm);
mpd->mpm = NULL;
return status;
}
message_set_header ((mpd->mpm->message), header, mpd->mpm);
}
/* Reallocate the working I/O buffer. */
bio_create (&(mpd->mpm->bio), bio->stream);
/* Create the attribute. */
{
attribute_t attribute;
char hdr_status[64];
header_t header = NULL;
hdr_status[0] = '\0';
message_get_header (mpd->mpm->message, &header);
header_get_value (header, "Status", hdr_status, sizeof (hdr_status), NULL);
/* Create the attribute. */
status = string_to_attribute (hdr_status, &attribute);
if (status != 0)
{
message_destroy (&(mpd->mpm->message), mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
free (mpd->mpm);
mpd->mpm = NULL;
return status;
}
message_set_attribute (mpd->mpm->message, attribute, mpd->mpm);
}
/* Create the body. */
{
stream_t stream;
body_t body;
status = body_create (&body, mpd->mpm);
if (status != 0)
{
message_destroy (&(mpd->mpm->message), mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
free (mpd->mpm);
mpd->mpm = NULL;
return status;
}
message_set_body (mpd->mpm->message, body, mpd->mpm);
status = stream_create (&stream, MU_STREAM_READ, mpd->mpm);
if (status != 0)
{
message_destroy (&(mpd->mpm->message), mpd->mpm);
bio_destroy (&(mpd->mpm->bio));
free (mpd->mpm);
mpd->mpm = NULL;
return status;
}
stream_set_read (stream, mailbox_pop_readstream, mpd->mpm);
stream_set_fd (stream, mailbox_pop_getfd, mpd->mpm);
stream_set_flags (stream, mpd->flags, mpd->mpm);
body_set_size (body, mailbox_pop_body_size, mpd->mpm);
//body_set_lines (body, mailbox_pop_body_lines, mpd->mpm);
body_set_stream (body, stream, mpd->mpm);
}
/* Add it to the list. */
{
mailbox_pop_message_t *m ;
m = realloc (mpd->pmessages, (mpd->pmessages_count + 1)*sizeof (*m));
if (m == NULL)
{
message_destroy (&(mpd->mpm->message), mpd->mpm);
free (mpd->mpm);
mpd->mpm = NULL;
return ENOMEM;
}
mpd->pmessages = m;
mpd->pmessages[mpd->pmessages_count] = mpd->mpm;
mpd->pmessages_count++;
}
*pmsg = mpd->mpm->message;
return 0;
}
static int
mailbox_pop_messages_count (mailbox_t mbox, size_t *pcount)
{
mailbox_pop_data_t mpd;
int status;
void *func = (void *)mailbox_pop_messages_count;
bio_t bio;
if (mbox == NULL || (mpd = (mailbox_pop_data_t)mbox->data) == NULL)
return EINVAL;
if (mailbox_pop_is_updated (mbox))
{
if (pcount)
*pcount = mpd->messages_count;
return 0;
}
if (mpd->func && mpd->func != func)
return EBUSY;
mpd->func = func;
bio = mpd->bio;
switch (mpd->state)
{
case 0:
bio->len = sprintf (bio->buffer, "STAT\r\n");
bio->ptr = bio->buffer;
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
mpd->state = 1;
/* Send the STAT. */
case 1:
status = bio_write (bio);
if (status != 0)
return status;
mpd->state = 2;
/* Get the ACK. */
case 2:
status = bio_readline (bio);
if (status != 0)
return status;
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
break;
default:
fprintf (stderr, "unknow state(messages_count)\n");
}
mpd->id = mpd->func = NULL;
mpd->state = 0;
status = sscanf (bio->buffer, "+OK %d %d", &(mpd->messages_count),
&(mpd->size));
mpd->is_updated = 1;
if (pcount)
*pcount = mpd->messages_count;
if (status == EOF || status != 2)
return EIO;
return 0;
}
/* Update and scanning. */
static int
mailbox_pop_is_updated (mailbox_t mbox)
{
mailbox_pop_data_t mpd;
if ((mpd = (mailbox_pop_data_t)mbox->data) == NULL)
return 0;
return mpd->is_updated;
}
static int
mailbox_pop_num_deleted (mailbox_t mbox, size_t *pnum)
{
mailbox_pop_data_t mpd;
size_t i, total;
attribute_t attr;
if (mbox == NULL ||
(mpd = (mailbox_pop_data_t) mbox->data) == NULL)
return EINVAL;
for (i = total = 0; i < mpd->messages_count; i++)
{
if (message_get_attribute (mpd->pmessages[i]->message, &attr) != 0)
{
if (attribute_is_deleted (attr))
total++;
}
}
if (pnum)
*pnum = total;
return 0;
}
/* We just simulated. */
static int
mailbox_pop_scan (mailbox_t mbox, size_t msgno, size_t *pcount)
{
int status;
size_t i;
status = mailbox_pop_messages_count (mbox, pcount);
if (status != 0)
return status;
for (i = msgno; i <= *pcount; i++)
if (mailbox_notification (mbox, MU_EVT_MBX_MSG_ADD) != 0)
break;
return 0;
}
/* This were we actually sending the DELE command. */
static int
mailbox_pop_expunge (mailbox_t mbox)
{
mailbox_pop_data_t mpd;
size_t i;
attribute_t attr;
bio_t bio;
int status;
void *func = (void *)mailbox_pop_expunge;
if (mbox == NULL ||
(mpd = (mailbox_pop_data_t) mbox->data) == NULL)
return EINVAL;
/* Busy ? */
if (mpd->func && mpd->func != func)
return EBUSY;
mpd->func = func;
bio = mpd->bio;
for (i = (int)mpd->id; i < mpd->pmessages_count; mpd->id = (void *)++i)
{
if (message_get_attribute (mpd->pmessages[i]->message, &attr) == 0)
{
/* Send DELETE. */
if (attribute_is_deleted (attr))
{
switch (mpd->state)
{
case 0:
bio->len = sprintf (bio->buffer, "DELE %d\r\n",
mpd->pmessages[i]->num);
bio->ptr = bio->buffer;
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
mpd->state = 1;
case 1:
status = bio_write (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
fprintf(stderr, "PROBLEM write %d\n", status);
}
return status;
}
mpd->state = 2;
case 2:
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
fprintf(stderr, "PROBLEM readline %d\n", status);
}
return status;
}
mailbox_debug (mbox, MU_MAILBOX_DEBUG_PROT, bio->buffer);
if (strncasecmp (bio->buffer, "+OK", 3) != 0)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
fprintf(stderr, "PROBLEM strcmp\n");
return ERANGE;
}
mpd->state = 0;
} /* switch (state) */
} /* if attribute_is_deleted() */
} /* message_get_attribute() */
} /* for */
mpd->func = mpd->id = NULL;
mpd->state = 0;
/* Invalidate. */
mpd->is_updated = 0;
return 0;
}
/* Mailbox size ? */
static int
mailbox_pop_size (mailbox_t mbox, off_t *psize)
{
mailbox_pop_data_t mpd;
size_t count;
int status;
if (mbox == NULL || (mpd = (mailbox_pop_data_t)mbox->data) == NULL)
return EINVAL;
if (mailbox_pop_is_updated (mbox))
{
if (psize)
*psize = mpd->size;
return 0;
}
status = mailbox_pop_messages_count (mbox, &count);
if (psize)
*psize = mpd->size;
return status;
}
static int
mailbox_pop_body_size (body_t body, size_t *psize)
{
mailbox_pop_message_t mpm;
if (body == NULL || (mpm = body->owner) == NULL)
return EINVAL;
if (psize)
*psize = mpm->body_size;
return 0;
}
static int
mailbox_pop_getfd (stream_t stream, int *pfd)
{
mailbox_pop_message_t mpm;
if (stream == NULL || (mpm = stream->owner) == NULL)
return EINVAL;
return stream_get_fd (mpm->bio->stream, pfd);
}
static int
mailbox_pop_readstream (stream_t is, char *buffer, size_t buflen,
off_t offset, size_t *pnread)
{
mailbox_pop_message_t mpm;
mailbox_pop_data_t mpd;
size_t nread = 0;
bio_t bio;
int status = 0;
void *func = (void *)mailbox_pop_readstream;
(void)offset;
if (is == NULL || (mpm = is->owner) == NULL)
return EINVAL;
if (buffer == NULL || buflen == 0)
{
if (pnread)
*pnread = nread;
return 0;
}
bio = mpm->bio;
mpd = mpm->mpd;
/* Busy ? */
if (mpd->func && mpd->func != func)
return EBUSY;
/* Which request. */
if (mpd->id && mpd->id != mpm)
return EBUSY;
mpd->func = func;
mpd->id = mpm;
switch (mpd->state)
{
/* Send the RETR command. */
case 0:
bio->len = sprintf (bio->buffer, "RETR %d\r\n", mpm->num);
mpd->state = 1;
case 1:
status = bio_write (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
}
return status;
}
mpd->state = 2;
/* RETR ACK. */
case 2:
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
}
return status;
}
if (strncasecmp (bio->buffer, "+OK", 3) != 0)
return EINVAL;
mpd->state = 3;
/* Skip the header. */
case 3:
while (!mpm->inbody)
{
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
}
return status;
}
if (bio->buffer[0] == '\n')
{
mpm->inbody = 1;
break;
}
}
/* Skip the newline. */
bio_readline (bio);
/* Start taking the header. */
mpd->state = 4;
bio->current = bio->buffer;
case 4:
{
int nleft, n;
/* Do we need to fill up. */
if (bio->current >= bio->nl)
{
bio->current = bio->buffer;
status = bio_readline (bio);
if (status != 0)
{
if (status != EAGAIN && status != EINTR)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
}
}
}
n = bio->nl - bio->current;
nleft = buflen - n;
/* We got more then requested. */
if (nleft <= 0)
{
memcpy (buffer, bio->current, buflen);
bio->current += buflen;
nread = buflen;
}
else
{
/* Drain the buffer. */
memcpy (buffer, bio->current, n);
bio->current += n;
nread = n;
}
}
} /* Switch state. */
if (nread == 0)
{
mpd->func = mpd->id = NULL;
mpd->state = 0;
}
if (pnread)
*pnread = nread;
return 0;
}
static int
bio_create (bio_t *pbio, stream_t stream)
{
bio_t bio;
bio = calloc (1, sizeof (*bio));
if (bio == NULL)
return ENOMEM;
bio->maxlen = POP_BUFSIZ + 1;
bio->current = bio->ptr = bio->buffer = calloc (1, POP_BUFSIZ + 1);
if (bio->buffer == NULL)
{
free (bio);
return ENOMEM;
}
bio->stream = stream;
*pbio = bio;
return 0;
}
static void
bio_destroy (bio_t *pbio)
{
if (pbio && *pbio)
{
bio_t bio = *pbio;
free (bio->buffer);
free (bio);
*pbio = NULL;
}
}
static int
bio_write (bio_t bio)
{
size_t nwritten = 0;
int status;
while (bio->len > 0)
{
status = stream_write (bio->stream, bio->ptr, bio->len, 0, &nwritten);
if (status != 0)
return status;
bio->len -= nwritten;
bio->ptr += nwritten;
}
bio->ptr = bio->buffer;
return 0;
}
static int
bio_read (bio_t bio)
{
size_t nread = 0;
int status, len;
len = bio->maxlen - (bio->ptr - bio->buffer) - 1;
status = stream_read (bio->stream, bio->ptr, len, 0, &nread);
if (status != 0)
return status;
else if (nread == 0)
{ /* EOF ???? We got a situation here ??? */
bio->buffer[0] = '.';
bio->buffer[1] = '\r';
bio->buffer[2] = '\n';
nread = 3;
}
bio->ptr[nread] = '\0';
bio->ptr += nread;
return 0;
}
/* Responses to certain commands are multi-line. In these cases, which
are clearly indicated below, after sending the first line of the
response and a CRLF, any additional lines are sent, each terminated
by a CRLF pair. When all lines of the response have been sent, a
final line is sent, consisting of a termination octet (decimal code
046, ".") and a CRLF pair. */
static int
bio_readline (bio_t bio)
{
size_t len;
int status;
/* Still unread lines in the buffer ? */
if (bio->nl && bio->nl < bio->ptr)
{
memmove (bio->buffer, bio->nl + 1, bio->ptr - bio->nl);
bio->ptr = bio->buffer + (bio->ptr - bio->nl) - 1;
bio->nl = memchr (bio->buffer, '\n', bio->ptr - bio->buffer + 1);
}
else
bio->nl = bio->ptr = bio->buffer;
if (bio->nl == NULL || bio->nl == bio->ptr)
{
for (;;)
{
status = bio_read (bio);
if (status < 0)
return status;
len = bio->ptr - bio->buffer;
/* Newline. */
bio->nl = memchr (bio->buffer, '\n', len);
if (bio->nl == NULL)
{
if (len >= (bio->maxlen - 1))
{
char *tbuf;
tbuf = realloc (bio->buffer,
(2*(bio->maxlen) + 2)*(sizeof(char)));
if (tbuf == NULL)
return ENOMEM;
bio->buffer = tbuf;
bio->maxlen *= 2;
}
bio->ptr = bio->buffer + len;
}
else
break;
}
}
/* When examining a multi-line response, the client checks
to see if the line begins with the termination octet "."(DOT).
If so and if octets other than CRLF follow, the first octet
of the line (the termination octet) is stripped away. */
if (bio->buffer[0] == '.')
{
if (bio->buffer[1] != '\r' && bio->buffer[2] != '\n')
{
memmove (bio->buffer, bio->buffer + 1, bio->ptr - bio->buffer);
bio->ptr--;
bio->nl--;
}
/* If so and if CRLF immediately
follows the termination character, then the response from the POP
server is ended and the line containing ".CRLF" is not considered
part of the multi-line response. */
else if (bio->buffer[1] == '\r' && bio->buffer[2] == '\n')
{
bio->buffer[0] = '\0';
bio->nl = bio->ptr = bio->buffer;
return 0;
}
}
/* \r\n --> \n\0 */
if (bio->nl > bio->buffer)
{
*(bio->nl - 1) = '\n';
*(bio->nl) = '\0';
}
return 0;
}