mbx_unix.c
30.5 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
/* 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 <io0.h>
#include <body0.h>
#include <attribute0.h>
#include <header.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>
#include <time.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_create (mailbox_t *pmbox, const char *name);
static void mailbox_unix_destroy (mailbox_t *pmbox);
struct mailbox_registrar _mailbox_unix_registrar =
{
"UNIX MBOX",
mailbox_unix_create, mailbox_unix_destroy
};
/*
* Keep the position of where the header and body starts
* and ends. old_attr is the "Status:" message.
*/
typedef struct _mailbox_unix_message
{
/* offset of the parts of the messages in the mailbox*/
off_t header_from;
off_t header_from_end;
/* little hack to make things easier
* when updating the attribute
*/
off_t header_status;
off_t header_status_end;
off_t body;
off_t body_end;
/* old_attr contains the definition of Header: */
/* new_attr what we want when expunging */
attribute_t old_attr;
attribute_t new_attr;
size_t header_lines;
size_t body_lines;
stream_t stream;
/* if we have a message attach to it */
message_t message;
} *mailbox_unix_message_t;
/*
* umessages is an array of pointers that contains umessages_count
* of mailbox_unix_message_t*; umessages[umessages_count].
* We do it this because realloc() can move everything to
* a new memory region and invalidating all the pointers someone
* has on the messages. Thanks to <Dave Inglis> for pointing this out.
* messages_count is the count number of messages parsed so far.
*/
typedef struct _mailbox_unix_data
{
mailbox_unix_message_t *umessages;
size_t umessages_count;
size_t messages_count;
stream_t stream;
char *dirname;
char *basename;
#ifdef HAVE_PTHREAD_H
pthread_mutex_t mutex;
#endif
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_get_message (mailbox_t, size_t msgno, message_t *msg);
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_expunge (mailbox_t);
static int mailbox_unix_num_deleted (mailbox_t, size_t *);
static int mailbox_unix_scan0 (mailbox_t, size_t count, size_t *pcount, int);
static int mailbox_unix_scan (mailbox_t, size_t count, size_t *pcount);
static int mailbox_unix_is_updated (mailbox_t);
static int mailbox_unix_size (mailbox_t, off_t *size);
/* private stuff */
static int mailbox_unix_get_header (mailbox_unix_message_t mum, char *buffer,
size_t len, off_t off, ssize_t *pnread);
static int mailbox_unix_getfd (stream_t is, int *pfd);
static int mailbox_unix_readstream (stream_t is, char *buffer, size_t buflen,
off_t off, size_t *pnread);
static int mailbox_unix_body_size (body_t body, size_t *psize);
static int mailbox_unix_body_lines (body_t body, size_t *plines);
static int mailbox_unix_msg_from (message_t msg, char *buf, size_t len,
size_t *pnwrite);
static int mailbox_unix_msg_received (message_t msg, char *buf, size_t len,
size_t *pnwrite);
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 test for existence.
* However we do strip any leading "unix:" part of
* the name, this is suppose to be the protocol/scheme name.
* Hopefully there will not be a mailbox name "unix:"
*/
static int
mailbox_unix_create (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 '/'
/* skip 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
* So we split the name. But this should probably be
* supported via "maildir:" or the mailbox mgr.
*/
/* 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 (&(mbox->mutex), NULL);
#endif
mbox->_create = mailbox_unix_create;
mbox->_destroy = mailbox_unix_destroy;
mbox->_open = mailbox_unix_open;
mbox->_close = mailbox_unix_close;
/* messages */
mbox->_get_message = mailbox_unix_get_message;
mbox->_append_message = mailbox_unix_append_message;
mbox->_messages_count = mailbox_unix_messages_count;
mbox->_expunge = mailbox_unix_expunge;
mbox->_num_deleted = mailbox_unix_num_deleted;
mbox->_scan = mailbox_unix_scan;
mbox->_is_updated = mailbox_unix_is_updated;
mbox->_size = mailbox_unix_size;
(*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->umessages_count; i++)
{
mailbox_unix_message_t mum = mud->umessages[i];
if (mum == NULL)
continue;
/* Destroy the attach messages */
attribute_destroy (&(mum->old_attr));
message_destroy (&(mum->message), mum);
/* new_attr free by message_destroy() */
/* attribute_destroy (&(mum->new_attr)); */
free (mum);
}
free (mud->umessages);
free (mbox->data);
}
free (mbox->name);
/* free the event array */
free (mbox->event);
/* destroy the url */
if (mbox->url)
url_destroy (&(mbox->url));
if (mbox->locker)
locker_destroy (&(mbox->locker));
if (mbox->auth)
auth_destroy (&(mbox->auth), (*pmbox));
if(mbox->stream)
stream_destroy (&(mbox->stream), *pmbox);
mailbox_unix_iunlock (mbox);
#ifdef HAVE_PTHREAD_H
if (mbox->mutex)
ptread_mutex_destroy (&(mbox->mutex));
#endif
free (*pmbox);
*pmbox = NULL;
}
}
/* Open the file. */
static int
mailbox_unix_open (mailbox_t mbox, int flags)
{
mailbox_unix_data_t mud;
int status;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
/* Authentication prologues */
if (mbox->auth)
auth_prologue (mbox->auth);
/* get a stream */
if (mbox->stream == NULL)
{
status = file_stream_create (&(mbox->stream));
if (status != 0)
return status;
}
status = stream_open (mbox->stream, mbox->name, 0, flags);
if (status != 0)
{
stream_destroy (&(mbox->stream), mbox);
return status;
}
/* Authentication */
if (mbox->auth)
{
char *user = NULL;
char *passwd = NULL;
status = auth_authenticate (mbox->auth, &user, &passwd);
free (user);
free (passwd);
if (status != 0)
return status;
}
/* Authentication epilogues */
if (mbox->auth)
auth_epilogue (mbox->auth);
/* give an appopriate way to lock */
if (mbox->locker == NULL)
locker_create (&(mbox->locker), mbox->name,
strlen (mbox->name), MU_LOCKER_PID | MU_LOCKER_FCNTL);
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;
stream_close (mbox->stream);
/* make sure we do not hold any lock for that file */
mailbox_unix_unlock (mbox);
return 0;
}
/* Mailbox Parsing */
#include "mbx_unixscan.c"
static int
mailbox_unix_scan (mailbox_t mbox, size_t msgno, size_t *pcount)
{
return mailbox_unix_scan0 (mbox, msgno, pcount, 1);
}
/* 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)
{
off_t size;
mailbox_unix_data_t mud;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t) mbox->data) == NULL)
return EINVAL;
if (stream_size (mbox->stream, &size) != 0)
return 0;
return (mud->size == size);
}
static int
mailbox_unix_num_deleted (mailbox_t mbox, size_t *pnum)
{
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->umessages[i];
if (attribute_is_deleted (mum->new_attr))
total++;
}
if (pnum)
*pnum = total;
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 (mailbox_t mbox, char **pbox)
{
mailbox_unix_data_t mud = (mailbox_unix_data_t)mbox->data;
int fd;
FILE *fp;
#ifndef P_tmpdir
# define P_tmpdir "/tmp"
#endif
*pbox = calloc (1, strlen (P_tmpdir) + strlen ("MBOX_") +
strlen (mud->basename) + 1);
if (*pbox == NULL)
return NULL;
sprintf (*pbox, "%s/%s%s", P_tmpdir, "MBOX_", mud->basename);
/* FIXME: I don't think this is the righ approach
* Creating an anonymous file would be better ?
* no trace left behind.
*/
/* Create the file. It must not exist. If it does exist, fail. */
fd = open(*pbox, O_RDWR|O_CREAT|O_EXCL, 0600);
if (fd < 0)
{
fprintf(stderr,"Can't create %s\n", *pbox);
fprintf(stderr,"delete file <%s>, Please\n", *pbox);
return NULL;
}
fp = fdopen(fd, "w+");
if (fp == 0)
{
close(fd);
free (*pbox);
*pbox = NULL;
}
/* really I should just remove the file here */
/* remove(*pbox); */
return fp;
}
static int
mailbox_unix_expunge (mailbox_t mbox)
{
mailbox_unix_data_t mud;
mailbox_unix_message_t mum;
int status = 0;
sigset_t sigset;
FILE *tempfile;
size_t nread;
size_t i, j, dirty, first;
off_t marker = 0;
off_t total = 0;
char buffer [BUFSIZ];
char *tmpmbox = NULL;
if (mbox == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL)
return EINVAL;
/* noop */
if (mud->messages_count == 0)
return 0;
/* 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))
return EAGAIN;
/* mark dirty the first mail with an attribute change */
for (dirty = 0; dirty < mud->messages_count; dirty++)
{
mum = mud->umessages[dirty];
if (mum->new_attr &&
! attribute_is_equal (mum->old_attr, mum->new_attr))
break;
}
/* did something change ? */
if (dirty == mud->messages_count)
return 0; /* nothing change, bail out */
/* Send notification to all the listeners
* this is redundant, we go to the loop again
* But it's more secure here since we don't
* want to be disturb when expunging.
*/
for (j = 0; j < mud->messages_count; j++)
{
mum = mud->umessages[j];
if (mum && mum->new_attr && attribute_is_deleted (mum->new_attr))
{
attribute_t attr;
attribute_create (&attr);
attribute_copy (attr, mum->new_attr);
/* Hack: message_destroy() will free() the attribute, save it */
message_destroy (&(mum->message), mum);
mum->new_attr = attr;
}
}
/* create a tempory file */
tempfile = mailbox_unix_tmpfile (mbox, &tmpmbox);
if (tempfile == NULL)
return errno;
/* Get the lock */
if (mailbox_unix_lock (mbox, MU_LOCKER_WRLOCK) < 0)
{
fclose (tempfile);
remove (tmpmbox);
free (tmpmbox);
return ENOLCK;
}
/* Critical section, we can not allowed signal 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);
/* set the marker position */
total = marker = mud->umessages[dirty]->header_from;
/* copy to tempfile emails not mark deleted */
for (first = 1, i = dirty; i < mud->messages_count; i++)
{
mum = mud->umessages[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', tempfile);
total++;
}
/* Begining of header copy */
{
off_t current;
/* This is done in two parts first we check if the attribute
* changed, if yes then we have to update the "Status:" field.
* Unfortunately there is no requirement for the "Status:"
* to be the last field, so we take the long approach;
* Copy up to the Status, update the Status and copy the rest.
*/
/* attribute change ? */
if (mum->new_attr
&&! attribute_is_equal (mum->old_attr, mum->new_attr)
&& mum->header_status > mum->header_from)
{
size_t n = 0;
off_t offset = mum->header_from;
size_t len = mum->header_status - mum->header_from;
current = mum->header_status_end;
while (len > 0)
{
nread = (len < sizeof (buffer)) ? len : sizeof (buffer);
if ((status = stream_read (mbox->stream, buffer,
nread, offset, &n) != 0)
|| fwrite(buffer, sizeof(*buffer), n, tempfile) != n)
{
if (status == 0)
status = errno;
goto bailout;
}
len -= n;
total += n;
offset += n;
}
/* put the new attributes */
{
char abuf[64];
size_t na = 0;
abuf[0] = '\0';
attribute_to_string (mum->new_attr, abuf, sizeof(abuf), &na);
fputs (abuf, tempfile);
total += na;
}
}
else /* attribute did not change */
current = mum->header_from;
/* copy the rest of header without changes */
{
size_t n = 0;
off_t offset = current;
size_t len = mum->body - current;
while (len > 0)
{
nread = (len < sizeof (buffer)) ? len : sizeof (buffer);
if ((status = stream_read (mbox->stream, buffer, nread,
offset, &n) != 0)
|| fwrite(buffer, sizeof(*buffer), n, tempfile) != n)
{
if (status == 0)
status = errno;
goto bailout;
}
len -= n;
total += n;
offset += n;
}
}
} /* end of header copy */
/* copy the body */
{
size_t n = 0;
off_t offset = mum->body;
size_t len = mum->body_end - mum->body;
while (len > 0)
{
nread = (len < sizeof (buffer)) ? len : sizeof (buffer);
if ((status = stream_read (mbox->stream, buffer, nread,
offset, &n) != 0)
|| fwrite(buffer, sizeof(*buffer), n, tempfile) != n)
{
if (status == 0)
status = errno;
goto bailout;
}
len -= n;
total += n;
offset += n;
}
} /* end of body copy */
} /* for (;;) */
/*
* Caution:
* before ftruncate()ing the file see if we've receiving new mail
* Some program may not respect the lock, or the lock was held
* for too long.
*/
{
off_t size = 0;
if (stream_size (mbox->stream, &size) == 0)
{
size_t n = 0;
off_t offset = size;
size_t len = size - mud->size;
while (len > 0)
{
nread = (len < sizeof (buffer)) ? len : sizeof (buffer);
if ((status = stream_read (mbox->stream, buffer, nread,
offset, &n) != 0)
|| fwrite(buffer, sizeof(*buffer), n, tempfile) != n)
{
if (status == 0)
status = errno;
goto bailout;
}
len -= n;
total += n;
offset += n;
}
}
} /* end of precaution */
/* Seek and rewrite it */
rewind (tempfile);
if (total > 0)
{
size_t n = 0;
off_t offset = marker;
while ((nread = fread (buffer, sizeof (*buffer),
sizeof (buffer), tempfile)) != 0)
{
while (nread)
{
status = stream_write (mbox->stream, buffer, nread, offset, &n);
if (status != 0)
goto bailout;
nread -= n;
offset += n;
}
}
}
/* how can I handle error here ?? */
clearerr (tempfile);
/* flush/truncation */
status = stream_truncate (mbox->stream, total);
if (status != 0)
goto bailout;
stream_flush (mbox->stream);
/* Don't remove the tmp mbox in case of errors */
remove (tmpmbox);
bailout:
free (tmpmbox);
/* Release the locks */
mailbox_unix_unlock (mbox);
mailbox_unix_iunlock (mbox);
fclose (tempfile);
sigprocmask (SIG_UNBLOCK, &sigset, 0);
/* we need to readjust the pointers */
if (status == 0)
{
size_t dlast;
for (j = dirty, dlast = mud->messages_count - 1;
j < mud->messages_count; j++)
{
/* clear all the references,
* any attach messages been already destroy above
*/
mum = mud->umessages[j];
if (mum->new_attr && attribute_is_deleted (mum->new_attr))
{
memmove (mud->umessages + j, mud->umessages + j + 1,
(dlast - dirty) * sizeof (mum));
mum->header_from = mum->header_from_end = 0;
mum->header_status = mum->header_status_end = 0;
mum->body = mum->body_end = 0;
mum->header_lines = mum->body_lines = 0;
attribute_destroy (&(mum->new_attr));
mud->umessages[dlast] = mum;
dlast--;
mum = mud->umessages[j];
}
mum->header_from = mum->header_from_end = 0;
mum->header_status = mum->header_status_end = 0;
mum->body = mum->body_end = 0;
mum->header_lines = mum->body_lines = 0;
}
mailbox_unix_scan0 (mbox, dirty, NULL, 0);
}
return status;
}
static int
mailbox_unix_getfd (stream_t is, int *pfd)
{
mailbox_unix_message_t mum;
if (is == NULL || (mum = is->owner) == NULL)
return EINVAL;
stream_get_fd (mum->stream, pfd);
return 0;
}
static int
mailbox_unix_readstream (stream_t is, char *buffer, size_t buflen,
off_t off, size_t *pnread)
{
mailbox_unix_message_t mum;
size_t nread = 0;
if (is == NULL || (mum = (mailbox_unix_message_t)is->owner) == NULL)
return EINVAL;
if (buffer == NULL || buflen == 0)
{
if (pnread)
*pnread = nread;
return 0;
}
{
off_t ln = mum->body_end - (mum->body + off);
size_t n = 0;
int status;
if (ln > 0)
{
nread = ((size_t)ln < buflen) ? ln : buflen;
/* position the file pointer and the buffer */
status = stream_read (mum->stream, buffer, nread, mum->body + off, &n);
if (status != 0)
return status;
}
}
if (pnread)
*pnread = nread;
return 0;
}
static int
mailbox_unix_get_header (mailbox_unix_message_t mum, char *buffer,
size_t len, off_t off, ssize_t *pnread)
{
size_t nread = 0;
size_t n = 0;
int status;
off_t ln = mum->body - (mum->header_from_end + off);
if (ln > 0)
{
nread = ((size_t)ln < len) ? ln : len;
/* position the file pointer and the buffer */
status = stream_read (mum->stream, buffer, nread,
mum->header_from_end + off, &n);
if (status != 0)
return status;
}
*pnread = nread;
return 0;
}
static int
mailbox_unix_body_size (body_t body, size_t *psize)
{
mailbox_unix_message_t mum = body->owner;
if (mum == NULL)
return EINVAL;
if (psize)
*psize = mum->body_end - mum->body;
return 0;
}
static int
mailbox_unix_body_lines (body_t body, size_t *plines)
{
mailbox_unix_message_t mum = body->owner;
if (mum == NULL)
return EINVAL;
if (plines)
*plines = mum->body_lines;
return 0;
}
static int
mailbox_unix_msg_received (message_t msg, char *buf, size_t len,
size_t *pnwrite)
{
mailbox_unix_message_t mum = msg->owner;
size_t n = 0;
int status;
char buffer[512];
if (mum == NULL)
return EINVAL;
status = stream_readline (mum->stream, buffer, sizeof(buffer),
mum->header_from, &n);
if (status != 0)
{
if (pnwrite)
*pnwrite = 0;
if (buf)
*buf = '\0';
return status;
}
if (n > 5)
{
char *s = strchr (buffer + 5, ' ');
if (s)
{
if (buf && len > 0)
{
strncpy (buf, s + 1, len);
buffer [len - 1] = '\0';
}
if (pnwrite)
*pnwrite = strlen (s + 1);
return 0;
}
}
if (pnwrite)
*pnwrite = 0;
if (buf)
*buf = '\0';
return 0;
}
static int
mailbox_unix_msg_from (message_t msg, char *buf, size_t len, size_t *pnwrite)
{
mailbox_unix_message_t mum = msg->owner;
size_t n = 0;
int status;
char buffer[512];
if (mum == NULL)
return EINVAL;
status = stream_readline (mum->stream, buffer, sizeof(buffer),
mum->header_from, &n);
if (status != 0)
{
if (pnwrite)
*pnwrite = 0;
if (buf)
*buf = '\0';
return status;
}
if (n > 5)
{
char *s = strchr (buffer + 5, ' ');
if (s)
{
*s = '\0';
if (buf && len > 0)
{
strncpy (buf, buffer + 5, len);
buffer [len - 1] = '\0';
}
if (pnwrite)
*pnwrite = strlen (buffer + 5);
return 0;
}
}
if (pnwrite)
*pnwrite = 0;
if (buf)
*buf = '\0';
return 0;
}
static int
mailbox_unix_get_message (mailbox_t mbox, size_t msgno, message_t *pmsg)
{
int status;
ssize_t nread;
char *pbuf = NULL;
char *tbuf = NULL;
char buf[BUFSIZ];
off_t offset = 0;
mailbox_unix_data_t mud;
mailbox_unix_message_t mum;
message_t msg = NULL;
stream_t stream = NULL;
header_t header = NULL;
body_t body = NULL;
int flags = 0;
if (mbox == NULL || pmsg == NULL ||
(mud = (mailbox_unix_data_t)mbox->data) == NULL ||
(!(mud->messages_count > 0 && msgno > 0 &&
msgno <= mud->messages_count)))
return EINVAL;
mum = mud->umessages[msgno - 1];
/* check if we already have it */
if (mum->message)
{
if (pmsg)
*pmsg = mum->message;
return 0;
}
/* get the headers */
do
{
status = mailbox_unix_get_header (mum, buf, sizeof(buf), offset, &nread);
if (status != 0)
{
free (pbuf);
return status;
}
if (nread == 0)
break;
tbuf = realloc (pbuf, offset + nread);
if (tbuf == NULL)
{
free (pbuf);
return ENOMEM;
}
else
pbuf = tbuf;
memcpy (pbuf + offset, buf, nread);
offset += nread;
} while (nread > 0);
/* get an empty message struct */
status = message_create (&msg, mum);
if (status != 0)
{
free (pbuf);
return status;
}
/* set the header */
status = header_create (&header, pbuf, offset, mum);
if (status != 0)
{
free (pbuf);
message_destroy (&msg, mum);
return status;
}
free (pbuf);
message_set_header (msg, header, mum);
/* prepare the body */
status = body_create (&body, mum);
if (status != 0)
{
message_destroy (&msg, mum);
return status;
}
message_set_body (msg, body, mum);
status = stream_create (&stream, MU_STREAM_READ, mum);
if (status != 0)
{
message_destroy (&msg, mum);
return status;
}
stream_set_read (stream, mailbox_unix_readstream, mum);
stream_set_fd (stream, mailbox_unix_getfd, mum);
stream_get_flags (mbox->stream, &flags);
stream_set_flags (stream, flags, mum);
body_set_stream (body, stream, mum);
body_set_size (body, mailbox_unix_body_size, mum);
body_set_lines (body, mailbox_unix_body_lines, mum);
/* set the attribute */
attribute_create (&(mum->new_attr));
mum->new_attr->flag = mum->old_attr->flag;
status = message_set_attribute (msg, mum->new_attr, mum);
if (status != 0)
{
message_destroy (&msg, mum);
return status;
}
/* set the envelope */
message_set_from (msg, mailbox_unix_msg_from, mum);
message_set_received (msg, mailbox_unix_msg_received, mum);
/* attach the message to the mailbox unix data */
mum->message = msg;
if (pmsg)
*pmsg = msg;
return 0;
}
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;
mailbox_unix_lock (mbox, MU_LOCKER_WRLOCK);
{
off_t size;
char buffer[BUFSIZ];
size_t nread = 0;
off_t off = 0;
stream_t is;
header_t hdr;
int status;
size_t n = 0;
char nl = '\n';
/* move to the end of the file, not necesary if _APPEND mode */
status = stream_size (mbox->stream, &size);
if (status != 0)
{
mailbox_unix_unlock (mbox);
return status;
}
/* header */
message_get_header (msg, &hdr);
/* generate a "From " separator */
{
char from[128];
char date[128];
char *s;
size_t f = 0, d = 0;
*date = *from = '\0';
message_from (msg, from, sizeof (from), &f);
s = memchr (from, '\n', f);
if (s)
{
*s = '\0';
f--;
}
message_received (msg, date, sizeof (date), &d);
s = memchr (date, '\n', d);
if (s)
{
*s = '\0';
d--;
}
stream_write (mbox->stream, "From ", 5, size, &n); size += n;
stream_write (mbox->stream, from, f, size, &n); size += n;
stream_write (mbox->stream, " ", 1, size, &n); size += n;
stream_write (mbox->stream, date, d, size, &n); size += n;
stream_write (mbox->stream, &nl , 1, size, &n); size += n;
}
header_get_stream (hdr, &is);
do {
status = stream_read (is, buffer, sizeof (buffer), off, &nread);
if (status != 0)
return status;
if (nread == 0)
break;
stream_write (mbox->stream, buffer, nread, size, &n);
off += nread;
size += n;
} while (nread > 0);
*buffer = '\0';
/* separator */
/*fputc ('\n', mud->file);*/
/* body */
message_get_stream (msg, &is);
do {
stream_read (is, buffer, sizeof (buffer), off, &nread);
stream_write (mbox->stream, buffer, nread, size, &n);
off += nread;
size += n;
} while (nread > 0);
stream_write (mbox->stream, &nl, 1, size, &n);
}
stream_flush (mbox->stream);
mailbox_unix_unlock (mbox);
return 0;
}
static int
mailbox_unix_size (mailbox_t mbox, off_t *psize)
{
off_t size;
int status;
if (mbox == NULL)
return EINVAL;
/* maybe was not open yet ?? */
status = stream_size (mbox->stream, &size);
if (status != 0)
return status;
if (psize)
*psize = size;
return 0;
}
static int
mailbox_unix_messages_count (mailbox_t mbox, size_t *pcount)
{
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_scan0 (mbox, 1, pcount, 1);
if (pcount)
*pcount = mud->messages_count;
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
(void)flag; /* we should use rwlocks for more concurency */
if (mbox == NULL)
return EINVAL;
return pthread_mutex_lock (&(mbox->mutex));
#else
(void)mbox; (void)flag;
return 0;
#endif
}
static int
mailbox_unix_iunlock (mailbox_t mbox)
{
#ifdef HAVE_PTHREAD_H
if (mbox == NULL)
return EINVAL;
return pthread_mutex_unlock (&(mbox->mutex));
#else
(void)mbox;
return 0;
#endif
}