mbx_unix.c
35.2 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
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
/* 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. */
/* First draft by Alain Magloire */
#include <mailbox0.h>
#include <registrar0.h>
#include <message0.h>
#include <url0.h>
#include <attribute0.h>
#include <header.h>
#include <io.h>
#include <auth.h>
#include <locker.h>
#define HAVE_PTHREAD_H
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
#include <errno.h>
#ifdef HAVE_PTHREAD_H
# include <pthread.h>
#else
# define flockfile(arg)
# define funlockfile(arg)
#endif
#include <string.h>
#include <ctype.h>
#include <limits.h>
static int mailbox_unix_init (mailbox_t *pmbox, const char *name);
static void mailbox_unix_destroy (mailbox_t *pmbox);
struct mailbox_registrar _mailbox_unix_registrar =
{
"UNIX MBOX",
mailbox_unix_init, mailbox_unix_destroy
};
/*
* Keep the position of where the header and body starts
* and ends. old_attr is the one that is part of the "Status:" message.
*/
typedef struct _mailbox_unix_message
{
off_t header;
off_t header_end;
/* little hack to make things easier
* when updating the attribute
*/
off_t hdr_status;
off_t hdr_status_end;
off_t body;
off_t body_end;
attribute_t old_attr;
attribute_t new_attr;
} *mailbox_unix_message_t;
typedef struct _mailbox_unix_data
{
mailbox_unix_message_t messages;
size_t messages_count;
FILE *file;
char *dirname;
char *basename;
int flags;
#ifdef HAVE_PTHREAD_H
pthread_mutex_t mutex;
#endif
time_t mtime;
off_t size;
} *mailbox_unix_data_t;
static int mailbox_unix_open (mailbox_t mbox, int flag);
static int mailbox_unix_close (mailbox_t mbox);
static int mailbox_unix_append_message (mailbox_t, message_t msg);
static int mailbox_unix_messages_count (mailbox_t, size_t *msgno);
static int mailbox_unix_delete (mailbox_t, size_t msgno);
static int mailbox_unix_undelete (mailbox_t, size_t msgno);
static int mailbox_unix_is_deleted (mailbox_t, size_t msgno);
static int mailbox_unix_expunge (mailbox_t);
static int mailbox_unix_num_deleted (mailbox_t, size_t *);
static int mailbox_unix_get_size (mailbox_t, size_t msgno, size_t *header,
size_t *body);
static int mailbox_unix_parse (mailbox_t, size_t *msgs);
static int mailbox_unix_is_updated (mailbox_t);
static int mailbox_unix_size (mailbox_t, off_t *size);
static int mailbox_unix_get_attribute (mailbox_t mbox, size_t msgno,
attribute_t *pattribute);
static int mailbox_unix_set_attribute (mailbox_t mbox, size_t msgno,
attribute_t attribute);
static ssize_t mailbox_unix_get_header (mailbox_t, size_t msgno, char *h,
size_t len, off_t off, int *err);
static ssize_t mailbox_unix_get_body (mailbox_t, size_t msgno, char *b,
size_t len, off_t off, int *err);
/* private stuff */
static int mailbox_unix_is_from (const char *);
static int mailbox_unix_readhdr (mailbox_t mbox, char *buf, size_t len,
off_t *content_length, size_t msgno);
static int mailbox_unix_lock (mailbox_t mbox, int flag);
static int mailbox_unix_touchlock (mailbox_t mbox);
static int mailbox_unix_unlock (mailbox_t mbox);
static int mailbox_unix_ilock (mailbox_t mbox, int flag);
static int mailbox_unix_iunlock (mailbox_t mbox);
/* We allocate the mailbox_t struct, but don't do any
* parsing on the name or even thest for existence.
* However we do strip any leading "unix:" part of
* our name, this is suppose to be the protocol/scheme name.
* Hopefully there will not be a mailbox name "unix:"
*/
static int
mailbox_unix_init (mailbox_t *pmbox, const char *name)
{
mailbox_t mbox;
mailbox_unix_data_t mud;
const char *sep;
size_t name_len;
int i;
/* sanity check */
if (name == NULL || *name == '\0')
return EINVAL;
name_len = strlen (name);
#define UNIX_SCHEME "unix:"
#define UNIX_SCHEME_LEN 5
#define SEPARATOR '/'
/* sskip the url scheme */
if (name_len > UNIX_SCHEME_LEN &&
(name[0] == 'u' || name[0] == 'U') &&
(name[1] == 'n' || name[1] == 'N') &&
(name[2] == 'i' || name[2] == 'i') &&
(name[3] == 'x' || name[3] == 'x' ) &&
name[4] == ':')
{
name += UNIX_SCHEME_LEN;
name_len -= UNIX_SCHEME_LEN;
}
/* allocate memory for mbox */
mbox = calloc (1, sizeof (*mbox));
if (mbox == NULL)
return ENOMEM;
/* allocate specific unix mbox data */
mud = mbox->data = calloc (1, sizeof (*mud));
if (mbox->data == NULL)
{
mailbox_unix_destroy (&mbox);
return ENOMEM;
}
/* copy the name */
mbox->name = calloc (name_len + 1, sizeof (char));
if (mbox->name == NULL)
{
mailbox_unix_destroy (&mbox);
return ENOMEM;
}
memcpy (mbox->name, name, name_len);
/* save the basename and dirname */
/* FIXME: We may have to support imap "SELECT"
* So we split the name. But this should probably be
* supported via "maildir:"
*/
/* equivalent to strrchr (name, '/'); */
for (i = name_len, sep = NULL; i >= 0; i--)
{
/* break on the first separator */
if (name[i] == SEPARATOR)
{
sep = &(name[i]);
break;
}
}
if (sep)
{
/* split it into two */
mud->dirname = calloc ((sep - name) + 1, sizeof (char));
if (mud->dirname == NULL)
{
mailbox_unix_destroy (&mbox);
return ENOMEM;
}
memcpy (mud->dirname, name, sep - name);
++sep;
mud->basename = calloc (name_len - (sep - name) + 1, sizeof (char));
if (mud->basename == NULL)
{
mailbox_unix_destroy (&mbox);
return ENOMEM;
}
memcpy (mud->basename, sep, name_len - (sep - name));
}
else
{
/* use the relative directory "." */
/* FIXME: should we call getcwd() instead ? */
mud->dirname = calloc (2 , sizeof (char));
if (mud->dirname == NULL)
{
mailbox_unix_destroy (&mbox);
return ENOMEM;
}
mud->dirname[0] = '.';
mud->basename = calloc (name_len + 1, sizeof (char));
if (mud->basename == NULL)
{
mailbox_unix_destroy (&mbox);
return ENOMEM;
}
memcpy (mud->basename, 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
mbox->_init = mailbox_unix_init;
mbox->_destroy = mailbox_unix_destroy;
mbox->_open = mailbox_unix_open;
mbox->_close = mailbox_unix_close;
/* messages */
mbox->_append_message = mailbox_unix_append_message;
mbox->_messages_count = mailbox_unix_messages_count;
mbox->_delete = mailbox_unix_delete;
mbox->_undelete = mailbox_unix_undelete;
mbox->_is_deleted = mailbox_unix_is_deleted;
mbox->_expunge = mailbox_unix_expunge;
mbox->_num_deleted = mailbox_unix_num_deleted;
mbox->_get_size = mailbox_unix_get_size;
mbox->_is_updated = mailbox_unix_is_updated;
mbox->_size = mailbox_unix_size;
mbox->_get_attribute = mailbox_unix_get_attribute;
mbox->_set_attribute = mailbox_unix_set_attribute;
mbox->_get_header = mailbox_unix_get_header;
mbox->_get_body = mailbox_unix_get_body;
(*pmbox) = mbox;
return 0; /* okdoke */
}
static void
mailbox_unix_destroy (mailbox_t *pmbox)
{
if (pmbox && *pmbox)
{
mailbox_t mbox = *pmbox;
mailbox_unix_close (mbox);
if (mbox->data)
{
size_t i;
mailbox_unix_data_t mud = mbox->data;
free (mud->dirname);
free (mud->basename);
for (i = 0; i < mud->messages_count; i++)
{
/* orphan the message */
mud->messages[i].old_attr->message = NULL;
mud->messages[i].new_attr->message = NULL;
attribute_destroy (&(mud->messages[i].old_attr));
attribute_destroy (&(mud->messages[i].new_attr));
}
free (mud->messages);
free (mbox->data);
}
free (mbox->name);
if (mbox->messages)
{
size_t i;
for (i = 0; i < mbox->messages_num; i++)
{
/* first orphan them */
mbox->messages[i]->mailbox = NULL;
message_destroy (&(mbox->messages[i]));
}
}
free (mbox->messages);
/* destroy the url */
if (mbox->url)
url_destroy (&(mbox->url));
free (*pmbox);
*pmbox = NULL;
}
}
/* start of mbox Implementation */
static int
mailbox_unix_open (mailbox_t mbox, int flags)
{
mailbox_unix_data_t mud;
int fd = -1;
int flg = 0;
char *mode;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
if (flags & MU_MAILBOX_WRONLY)
flg = O_WRONLY;
else if (flags & MU_MAILBOX_RDWR)
flg = O_RDWR;
else /* default */
flg = O_RDONLY;
/* FIXME: only if the file is open Write */
if (flags & MU_MAILBOX_APPEND)
flg |= O_APPEND;
/* FIXME: does not really work, but local folders
* should not block since it is local disk ???
*/
if (flags & MU_MAILBOX_NONBLOCK)
flg |= O_NONBLOCK;
/* handle CREAT with care, not to follow symlinks */
if (flags & MU_MAILBOX_CREAT)
{
/* Grab the lock for any race conditions */
mailbox_unix_lock (mbox, MU_LOCKER_WRLOCK);
{
/* first see if the file already exists */
fd = open(mbox->name, flg);
if (fd == -1)
{
/* oops bail out */
if (errno != ENOENT)
return errno;
/* Race condition here when creating the file ?? */
fd = open(mbox->name, flg|O_CREAT|O_EXCL, 0600);
if (fd < 0)
return errno;
}
/*
* Set the owner ship, but should we return the errno
*/
if (mbox->auth)
{
auth_t auth = mbox->auth;
gid_t g ; uid_t u; mode_t m;
g = u = -1; m = 0600;
/* FIXME: what to do when they failed */
auth_get_owner (auth, &u);
auth_get_group (auth, &g);
auth_get_mode (auth, &m);
(void)fchown (fd, u, g);
(void)fchmod (fd, m);
}
}
mailbox_unix_unlock (mbox);
}
else
{
fd = open (mbox->name, flg);
if (fd < 0)
return errno;
}
/* we use FILE * object */
if (flags & MU_MAILBOX_APPEND)
mode = "a";
else if (flags & MU_MAILBOX_RDWR || flags & MU_MAILBOX_WRONLY)
mode = "r+";
else /* default readonly*/
mode = "r";
/* clean up, make sure there was nothing before */
mailbox_unix_close (mbox);
mailbox_unix_ilock (mbox, MU_LOCKER_WRLOCK);
{
mud->file = fdopen (fd, mode);
if (mud->file == NULL)
{
/* what's up ?? */
mailbox_unix_iunlock (mbox);
return ENOMEM;
}
/* Is this necessary ?? */
/* Check to make sure this is indeed a Unix Mail format */
flockfile (mud->file);
{
char buf [6];
if (fgets (buf, sizeof (buf), mud->file) == NULL)
{
int status = errno;
if (feof (mud->file))
clearerr (mud->file); /* the file maybe empty */
else if (ferror (mud->file))
{
mailbox_unix_iunlock (mbox);
return status;
}
}
else
{
if (strncmp ("From ", buf, 5) != 0)
{
/* not a Unix mbox */
fclose (mud->file);
mailbox_unix_iunlock (mbox);
return EIO;
}
}
rewind (mud->file);
}
funlockfile (mud->file);
mud->flags = flags;
}
mailbox_unix_iunlock (mbox);
return 0;
}
static int
mailbox_unix_close (mailbox_t mbox)
{
mailbox_unix_data_t mud;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
mailbox_unix_ilock (mbox, MU_LOCKER_WRLOCK);
{
if (mud->file)
fclose (mud->file);
mud->file = NULL;
/* make sure we do not hold any lock for that file */
mailbox_unix_unlock (mbox);
}
mailbox_unix_iunlock (mbox);
return 0;
}
/* FIXME: a little weak, we should do full reconnaissance of the
* the "From " header :
* From <user> <weekday> <month> <day> <hr:min:sec>
* [T1 [T2]] <year> [remote-list]
*/
static int
mailbox_unix_is_from (const char *from)
{
const char *sep;
/* From_ */
if (strncmp (from, "From ", 5) != 0)
return 0;
from += 5;
/* <user> */
sep = strchr (from, ' ');
if (sep == NULL)
return 0;
from = ++sep;
/* weekday */
sep = strchr (from, ' ');
if (sep == NULL)
return 0;
from = ++sep;
/* month */
sep = strchr (from, ' ');
if (sep == NULL)
return 0;
from = ++sep;
/* day */
sep = strchr (from, ' ');
if (sep == NULL)
return 0;
from = ++sep;
/* hr:min:sec */
/* hr */
sep = strchr (from, ':');
if (sep == NULL)
return 0;
from = ++sep;
/* min */
sep = strchr (from, ':');
if (sep == NULL)
return 0;
from = ++sep ;
/* sec */
sep = strchr (from, ' ');
if (sep == NULL)
return 0;
/* FIXME PLEASE: the rest is getting more complex, finish it later */
return 1;
}
/*
* We skip over the rest of the header. Scan for
* Status: to set the attribute. Hopefully the Content-Length
* in there too.
*/
static int
mailbox_unix_readhdr (mailbox_t mbox, char *buf, size_t len,
off_t *content_length, size_t msgno)
{
mailbox_unix_data_t mud = (mailbox_unix_data_t)mbox->data;
mailbox_unix_message_t mum = &mud->messages[msgno];
char *sep;
/* skip over the remaining header */
errno = 0;
while (fgets (buf, len, mud->file))
{
/* FIXME: The heuristic is still weak
we will break and consider things not to be a header if:
1: an empty line
2: can not be a header
*/
if (strcmp (buf, "\n") == 0 || strcmp (buf, "\r\n") == 0
|| (isalpha (buf[0]) && (sep = strchr (buf, ':')) == NULL))
break;
/* get the the Content lenght of the body if possible */
else if (strncmp (buf, "Content-Length:", 15) == 0)
{
sep = strchr(buf, ':'); /* pass the ':' */
sep[strlen (sep) - 1] = '\0'; /* chop the newline */
/* FIXME: use xstrtol() if strtol() is not on the platform */
/* FIXME: what an awkward way of handling error
Some damage control can be done here.
for example just set content_length = -1;
and rely above to discover the body part */
errno = 0;
*content_length = strtol (sep + 1, NULL, 10);
if (*content_length == 0 ||
*content_length == LONG_MIN ||
*content_length == LONG_MAX)
{
if (errno != 0)
return errno;
}
}
/* Set the attribute */
else if (strncmp (buf, "Status:", 7) == 0)
{
mum->hdr_status_end = ftell (mud->file);
mum->hdr_status = mum->hdr_status_end - strlen (buf);
sep = strchr(buf, ':'); /* pass the ':' */
if (strchr (sep, 'R') != NULL)
attribute_set_read (mum->old_attr);
if (strchr (sep, 'O') != NULL)
attribute_set_seen (mum->old_attr);
if (strchr (sep, 'A') != NULL)
attribute_set_answered (mum->old_attr);
if (strchr (sep, 'F') != NULL)
attribute_set_flagged (mum->old_attr);
attribute_copy (mum->new_attr, mum->old_attr);
}
}
/* check for any dubious conditions */
if (feof (mud->file) || ferror (mud->file))
return errno;
return 0;
}
/* Parsing.
* This a bit fragile, I need to secure this.
* The approach is to detect the "From " as start of a
* new message, give the position of the header and scan
* until "\n" then set header_end, set body position, if we have
* a Content-Length field jump to the point if not
* scan until we it another "From " and set body_end.
*/
static int
mailbox_unix_parse (mailbox_t mbox, size_t *msgs)
{
char buf[BUFSIZ];
int header = 1;
int body = 0;
off_t content_length = -1;
size_t count = 0;
mailbox_unix_data_t mud;
mailbox_unix_message_t mum;
struct stat st;
int status;
/* sanity */
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
/* FIXME: I should also block signals and check cancelstate(Pthread)
since We can not afford to be intr */
mailbox_unix_ilock (mbox, MU_LOCKER_WRLOCK);
mailbox_unix_lock (mbox, MU_LOCKER_RDLOCK);
flockfile (mud->file);
if (fstat (fileno (mud->file), &st) != 0)
{
status = errno;
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
mailbox_unix_unlock (mbox);
return status;
}
mud->mtime = st.st_mtime;
mud->size = st.st_size;
rewind (mud->file);
errno = 0;
while (fgets (buf, sizeof (buf), mud->file))
{
if (mailbox_unix_is_from (buf))
{
if (body && count)
{
int over = strlen (buf);
mum[count - 1].body_end = ftell (mud->file);
mum[count - 1].body_end -= (over + 1);
body = 0;
}
header = 1;
}
/* header */
if (header)
{
/* FIXME: What happen if some mailer violates the rfc822 and the
"From " field contains a NULL byte */
int over = strlen (buf);
count++;
/* FIXME: This is a bad idea, we should not be allowed to
* jump out from the parsing this way. We sit at the mercy
* of this function(_progress) waiting for disaster.
*/
if (mbox->_progress)
{
/* FIXME: and its getting better, they can even bailout */
if (mbox->_progress (count, mbox->progress_arg) != 0)
{
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
mailbox_unix_unlock (mbox);
return EINTR;
}
}
/* allocate space for the new message */
if (count > mud->messages_count)
{
mum = realloc (mud->messages, count * sizeof (*mum));
if (mum == NULL)
{
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
mailbox_unix_unlock (mbox);
return ENOMEM;
}
mud->messages_count++;
memset (&mum[count - 1], 0, sizeof (*mum));
attribute_init (&(mum[count - 1].old_attr));
attribute_init (&(mum[count - 1].new_attr));
}
mud->messages = mum;
mum[count - 1].header = ftell (mud->file);
/* substract the overrun */
mum[count - 1].header -= over;
/* skip the remaining header and set the attributes */
if ((status = mailbox_unix_readhdr (mbox, buf,
sizeof (buf), &content_length,
count - 1)) != 0)
{
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
mailbox_unix_unlock (mbox);
return status;
}
mum[count - 1].header_end = ftell (mud->file) - strlen(buf);
header = 0;
body = !header;
} /* header */
/* body */
if (body)
{
/* set the body position */
if (mum[count - 1].body == 0)
mum[count - 1].body = ftell (mud->file);
if (content_length >= 0)
{
/* ouf ! we got the lenght, jump */
mum[count - 1].body_end = mum[count -1].body + content_length;
fseek (mud->file, content_length, SEEK_CUR);
content_length = -1;
body = 0;
}
}
mailbox_unix_touchlock (mbox);
} /* while */
status = errno;
if (feof (mud->file))
status = 0;
clearerr (mud->file);
mum[count - 1].body_end = ftell (mud->file);
rewind (mud->file);
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
mailbox_unix_unlock (mbox);
if (msgs)
*msgs = count;
return status;
}
/* FIXME: How to handle a shrink ? meaning, the &^$^@%#@^& user
* start two browsers and delete files in one. My views
* is that we should scream bloody murder and hunt them with
* a machette.
*/
static int
mailbox_unix_is_updated (mailbox_t mbox)
{
mailbox_unix_data_t mud;
struct stat st;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL ||
fstat (fileno (mud->file), &st) < 0)
return 0;
return (mud->mtime == st.st_mtime);
}
static int
mailbox_unix_is_valid (mailbox_t mbox, size_t msgno)
{
mailbox_unix_data_t mud;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t) mbox->data) == NULL)
return 0;
/* valid ? */
return (mud->messages_count > 0 && msgno <= mud->messages_count);
}
static int
mailbox_unix_is_deleted (mailbox_t mbox, size_t msgno)
{
mailbox_unix_data_t mud;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL ||
! mailbox_unix_is_valid (mbox, msgno))
return 0;
return attribute_is_deleted (mud->messages[msgno].new_attr);
}
static int
mailbox_unix_delete (mailbox_t mbox, size_t msgno)
{
mailbox_unix_data_t mud;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t) mbox->data) == NULL)
return EINVAL;
/* oops out of range ? */
/* if already deleted, noop */
if (! mailbox_unix_is_valid (mbox, msgno) ||
mailbox_unix_is_deleted (mbox, msgno))
return 0;
/* Mark for deletion */
attribute_set_deleted (mud->messages[msgno].new_attr);
return 0;
}
static int
mailbox_unix_num_deleted (mailbox_t mbox, size_t *num)
{
mailbox_unix_data_t mud;
mailbox_unix_message_t mum;
size_t i, total;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t) mbox->data) == NULL)
return EINVAL;
for (i = total = 0; i < mud->messages_count; i++)
{
mum = &mud->messages[i];
if (attribute_is_deleted (mum->new_attr))
total++;
}
if (num)
*num = total;
return 0;
}
static int
mailbox_unix_undelete (mailbox_t mbox, size_t msgno)
{
mailbox_unix_data_t mud;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t) mbox->data) == NULL)
return EINVAL;
/* oops out of range ? */
/* if already undeleted, noop */
if (! mailbox_unix_is_valid (mbox, msgno) ||
! mailbox_unix_is_deleted (mbox, msgno))
return 0;
/* Mark undeletion */
attribute_unset_deleted (mud->messages[msgno].new_attr);
return 0;
}
/*
FIXME: the use of tmpfile() on some system can lead to
race condition, We should use a safer approach.
We take a very naive approach for this, it involves unfortunately
two copies.
*/
static FILE *
mailbox_unix_tmpfile ()
{
/*FIXME: racing conditions, to correct, .i.e don;t use tmpfile*/
//return tmpfile ();
return fopen ("/tmp/mymail", "w+");
}
static int
mailbox_unix_expunge (mailbox_t mbox)
{
mailbox_unix_data_t mud;
mailbox_unix_message_t mum;
int status = 0;
int oflags;
sigset_t sigset;
FILE *tmpfile;
size_t nread;
size_t i, j, first;
off_t marker = 0;
off_t total = 0;
char buffer [BUFSIZ];
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
/* noop */
if (mud->messages_count == 0)
return 0;
tmpfile = mailbox_unix_tmpfile ();
if (tmpfile == NULL)
return errno;
/* Get the lock */
if (mailbox_unix_lock (mbox, MU_LOCKER_WRLOCK) < 0)
{
fclose (tmpfile);
return ENOLCK;
}
/* Critical section, we can not allowed signal here */
/* FIXME: If NONBLOCKING is set we should unset reset to
* later, we can not afford to luxury here
*/
sigemptyset (&sigset);
sigaddset (&sigset, SIGTERM);
sigaddset (&sigset, SIGHUP);
sigaddset (&sigset, SIGTSTP);
sigaddset (&sigset, SIGINT);
sigaddset (&sigset, SIGWINCH);
sigprocmask (SIG_BLOCK, &sigset, 0);
mailbox_unix_ilock (mbox, MU_LOCKER_RDLOCK);
flockfile (mud->file);
/* Do we have a consistent view of the mailbox */
/* FIXME: this is not enough we can do better
* - by checking the file size and scream bloody murder
* if it has shrink.
* - if its bigger we should be able to handle it
* before the ftruncate() by copying back the new messages.
*/
if (! mailbox_unix_is_updated (mbox))
{
status = EAGAIN;
goto bailout;
}
/*
* We can not be NONBLOCKING here.
* It would irresponsable.
*/
if ((oflags = fcntl (fileno (mud->file), F_GETFL, 0)) < 0)
{
status = errno;
goto bailout;
}
fcntl (fileno (mud->file), F_SETFL, oflags & ~O_NONBLOCK);
rewind (mud->file);
/* Go to the first mail with an attribute change */
for (j = 0; j < mud->messages_count; j++)
{
mum = &mud->messages[j];
if (! attribute_is_equal (mum->old_attr, mum->new_attr))
break;
}
/* did something change ? */
if ((j + 1) == mud->messages_count)
{
/* nothing change, bail out */
status = 0;
goto bailout;
}
/* set the marker position */
total = marker = mud->messages[j].header;
/* copy to tempfile emails not mark changed */
for (first = 1, i = j; i < mud->messages_count; i++)
{
size_t len;
off_t current;
mum = &mud->messages[i];
/* skip it, if mark for deletion */
if (attribute_is_deleted (mum->new_attr))
continue;
/* add a NL separator between messages */
if (first)
first = 0;
else
{
fputc ('\n', tmpfile);
total++;
}
/* copy the header */
if (fseek (mud->file, mum->header, SEEK_SET) == -1)
{
status = errno;
goto bailout;
}
/* attribute change ? */
if (! attribute_is_equal (mum->old_attr, mum->new_attr) &&
mum->hdr_status > mum->header)
{
len = mum->hdr_status - mum->header;
current = mum->hdr_status_end;
while (len > 0)
{
nread = (len < sizeof (buffer)) ? len : sizeof (buffer);
if (fread (buffer, sizeof (*buffer), nread, mud->file) != nread
|| fwrite(buffer, sizeof(*buffer), nread, tmpfile) != nread)
{
status = errno;
goto bailout;
}
len -= nread;
total += nread;
}
/* put the new attributes */
{
attribute_t attr = mum->new_attr;
fputs ("Status: ", tmpfile);
total += 8;
if (attribute_is_seen (attr))
{
fputc ('R', tmpfile);
total++;
}
if (attribute_is_answered (attr))
{
fputc ('A', tmpfile);
total++;
}
if (attribute_is_flagged (attr))
{
fputc ('F', tmpfile);
total++;
}
if (attribute_is_read (attr))
{
fputc ('O', tmpfile);
total++;
}
fputc ('\n', tmpfile);
total++;
}
/* skip the status field */
if (fseek (mud->file, current, SEEK_SET) == -1)
{
status = errno;
goto bailout;
}
}
else /* attribute did not change */
{
current = mum->header;
}
len = mum->header_end - current;
while (len > 0)
{
nread = (len < sizeof (buffer)) ? len : sizeof (buffer);
if (fread (buffer, sizeof (*buffer), nread, mud->file) != nread
|| fwrite(buffer, sizeof(*buffer), nread, tmpfile) != nread)
{
status = errno;
goto bailout;
}
len -= nread;
total += nread;
}
/* Separate the header from body */
fputc ('\n', tmpfile);
total++;
/* copy the body */
if (fseek (mud->file, mum->body, SEEK_SET) < 0)
{
status = errno;
goto bailout;
}
len = mum->body_end - mum->body;
while (len > 0)
{
nread = (len < sizeof (buffer)) ? len : sizeof (buffer);
if (fread (buffer, sizeof (*buffer), nread, mud->file) != nread
|| fwrite(buffer, sizeof(*buffer), nread, tmpfile) != nread)
{
status = errno;
goto bailout;
}
len -= nread;
total += nread;
}
}
/*
* Caution:
* before truncating the file see if we've receiving new mail
* Some program may not respect the lock.
*/
{
struct stat st;
if (fstat (fileno (mud->file), &st) != 0)
{
status = errno;
goto bailout;
}
if (st.st_size > mud->size)
{
size_t len = st.st_size - mud->size;
if (fseek (mud->file, mud->size, SEEK_SET) < 0)
{
status = errno;
goto bailout;
}
while (len > 0)
{
nread = (len < sizeof (buffer)) ? len : sizeof (buffer);
if (fread (buffer, sizeof (*buffer), nread, mud->file) != nread
|| fwrite(buffer, sizeof(*buffer), nread, tmpfile) != nread)
{
status = errno;
goto bailout;
}
len -= nread;
total += nread;
}
}
}
/* truncate the mailbox and rewrite it */
if (total <= 0 || fseek (mud->file, marker, SEEK_SET) < 0 ||
ftruncate (fileno(mud->file), total) < 0)
{
status = errno;
goto bailout;
}
rewind (tmpfile);
while ((nread = fread (buffer, sizeof (*buffer),
sizeof (buffer), tmpfile)) != 0)
fwrite (buffer, sizeof (*buffer), nread, mud->file);
/* how can I handle error here ?? */
clearerr (tmpfile);
clearerr (mud->file);
fflush (mud->file);
bailout:
/* Release the locks */
if (oflags > 0)
fcntl (fileno (mud->file), F_SETFL, oflags);
mailbox_unix_unlock (mbox);
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
fclose (tmpfile);
sigprocmask (SIG_UNBLOCK, &sigset, 0);
return status;
}
/* reading */
static ssize_t
mailbox_unix_get_body (mailbox_t mbox, size_t msgno, char *buffer,
size_t len, off_t off, int *err)
{
mailbox_unix_data_t mud;
size_t nread = 0;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
{
if (err)
*err = EINVAL;
return -1;
}
/* check if valid */
if (len == 0 || mud == NULL || ! mailbox_unix_is_valid (mbox, msgno))
{
if (err)
*err = EINVAL;
return -1;
}
mailbox_unix_ilock (mbox, MU_LOCKER_RDLOCK);
flockfile (mud->file);
{
mailbox_unix_message_t mum = &(mud->messages[msgno]);
off_t ln = mum->body_end - (mum->body + off);
if (ln > 0)
{
nread = ((size_t)ln < len) ? ln : len;
/* position the file pointer and the buffer */
if (fseek (mud->file, mum->body + off, SEEK_SET) < 0)
{
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
if (err)
*err = EIO;
return -1;
}
if (fread (buffer, sizeof (*buffer), nread, mud->file) != nread)
{
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
if (err)
*err = EIO;
return -1;
}
}
else
nread = 0;
}
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
return nread;
}
static ssize_t
mailbox_unix_get_header (mailbox_t mbox, size_t msgno, char *buffer,
size_t len, off_t off, int *err)
{
mailbox_unix_data_t mud;
size_t nread = 0;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
{
if (err)
*err = EINVAL;
return -1;
}
/* check if valid */
if (len == 0 || ! mailbox_unix_is_valid (mbox, msgno))
{
if (err)
*err = EINVAL;
return -1;
}
mailbox_unix_ilock (mbox, MU_LOCKER_RDLOCK);
flockfile (mud->file);
{
mailbox_unix_message_t mum = &(mud->messages[msgno]);
off_t ln = mum->header_end - (mum->header + off);
if (ln > 0)
{
nread = ((size_t)ln < len) ? ln : len;
/* position the file pointer and the buffer */
if (fseek (mud->file, mum->header + off, SEEK_SET) < 0)
{
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
if (err)
*err = EIO;
return -1;
}
if (fread (buffer, sizeof (*buffer), nread, mud->file) != nread)
{
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
if (err)
*err = EIO;
return -1;
}
}
else
nread = 0;
}
funlockfile (mud->file);
mailbox_unix_iunlock (mbox);
return nread;
}
static int
mailbox_unix_append_message (mailbox_t mbox, message_t msg)
{
mailbox_unix_data_t mud;
if (mbox == NULL || msg == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
if (! ((mud->flags & MU_MAILBOX_APPEND) ||
(mud->flags & MU_MAILBOX_RDWR) ||
(mud->flags & MU_MAILBOX_WRONLY)))
return EACCES;
mailbox_unix_lock (mbox, MU_LOCKER_WRLOCK);
flockfile (mud->file);
{
struct stat st;
int fd;
char buffer[BUFSIZ];
size_t nread;
off_t off = 0;
istream_t is;
fd = fileno (mud->file);
if (fstat (fd, &st) != 0)
{
funlockfile (mud->file);
mailbox_unix_unlock (mbox);
return errno;
}
if (fseek(mud->file, st.st_size, SEEK_SET) != 0)
{
funlockfile (mud->file);
mailbox_unix_unlock (mbox);
return errno;
}
/* header */
{
header_t hdr;
message_get_header (msg, &hdr);
header_get_istream (hdr, &is);
if (st.st_size != 0)
fputc ('\n', mud->file);
while ((nread = istream_read (is, buffer, sizeof (buffer), off)) > 0)
{
fwrite (buffer, sizeof (*buffer), nread, mud->file);
off += nread;
}
}
*buffer = '\0';
/* separator */
fputc ('\n', mud->file);
/* body */
{
off = 0;
message_get_istream (msg, &is);
while ((nread = istream_read (is, buffer, sizeof (buffer), off)) > 0)
{
fwrite (buffer, sizeof (*buffer), nread, mud->file);
off += nread;
}
}
}
fflush(mud->file);
funlockfile (mud->file);
mailbox_unix_unlock (mbox);
return 0;
}
static int
mailbox_unix_size (mailbox_t mbox, off_t *size)
{
mailbox_unix_data_t mud;
struct stat st;
int fd;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
/* maybe was not open yet ?? */
if (mud->file == NULL)
return EIO;
fd = fileno (mud->file);
/* oops !! */
if (fstat (fd, &st) != 0)
return errno;
*size = st.st_size;
return 0;
}
static int
mailbox_unix_get_size (mailbox_t mbox, size_t msgno, size_t *h, size_t *b)
{
mailbox_unix_data_t mud;
mailbox_unix_message_t mum;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL ||
!mailbox_unix_is_valid (mbox, msgno))
return EINVAL;
mum = &(mud->messages[msgno]);
if (h)
*h = mum->header_end - mum->header;
if (b)
*b = mum->body_end - mum->body;
return 0;
}
static int
mailbox_unix_messages_count (mailbox_t mbox, size_t *count)
{
mailbox_unix_data_t mud;
if (mbox == NULL || (mud = (mailbox_unix_data_t) mbox->data) == NULL)
return EINVAL;
if (! mailbox_unix_is_updated (mbox))
return mailbox_unix_parse (mbox, count);
if (count)
*count = mud->messages_count;
return 0;
}
static int
mailbox_unix_get_attribute (mailbox_t mbox, size_t msgno,
attribute_t *pattribute)
{
mailbox_unix_data_t mud;
if (mbox == NULL || pattribute == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL ||
! mailbox_unix_is_valid (mbox, msgno))
return EINVAL;
*pattribute = mud->messages[msgno].new_attr;
return 0;
}
static int
mailbox_unix_set_attribute (mailbox_t mbox, size_t msgno,
attribute_t attribute)
{
mailbox_unix_data_t mud;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL ||
! mailbox_unix_is_valid (mbox, msgno))
return EINVAL;
attribute_copy (mud->messages[msgno].new_attr, attribute);
return 0;
}
/* locking */
static int
mailbox_unix_lock (mailbox_t mbox, int flag)
{
if (mbox && mbox->locker != NULL)
{
locker_t locker = mbox->locker;
locker_lock (locker, flag);
}
return 0;
}
static int
mailbox_unix_touchlock (mailbox_t mbox)
{
if (mbox && mbox->locker != NULL)
{
locker_t locker = mbox->locker;
locker_touchlock (locker);
}
return 0;
}
static int
mailbox_unix_unlock (mailbox_t mbox)
{
if (mbox && mbox->locker != NULL)
{
locker_t locker = mbox->locker;
locker_unlock (locker);
}
return 0;
}
static int
mailbox_unix_ilock (mailbox_t mbox, int flag)
{
#ifdef HAVE_PTHREAD_H
mailbox_unix_data_t mud;
(void)flag; /* we should use rwlocks for more concurency */
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
return pthread_mutex_lock (&(mud->mutex));
#else
(void)mbox; (void)flag;
return 0;
#endif
}
static int
mailbox_unix_iunlock (mailbox_t mbox)
{
#ifdef HAVE_PTHREAD_H
mailbox_unix_data_t mud;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
return pthread_mutex_unlock (&(mud->mutex));
#else
(void)mbox;
return 0;
#endif
}