message.c
13.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
/* 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 <io0.h>
#include <message0.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <string.h>
static int extract_addr(const char *s, size_t n, char **presult,
size_t *pnwrite);
static int message_read (stream_t is, char *buf, size_t buflen,
off_t off, size_t *pnread );
static int message_write (stream_t os, const char *buf, size_t buflen,
off_t off, size_t *pnwrite);
static int message_get_fd (stream_t stream, int *pfd);
int
message_create (message_t *pmsg, void *owner)
{
message_t msg;
if (pmsg == NULL)
return EINVAL;
msg = calloc (1, sizeof (*msg));
if (msg == NULL)
return ENOMEM;
msg->owner = owner;
*pmsg = msg;
return 0;
}
void
message_destroy (message_t *pmsg, void *owner)
{
if (pmsg && *pmsg)
{
message_t msg = *pmsg;
if (msg->owner == owner)
{
/* notify the listeners */
if (msg->event_num)
{
message_notification (msg, MU_EVT_MSG_DESTROY);
free (msg->event);
}
/* header */
header_destroy (&(msg->header), owner);
/* attribute */
attribute_destroy (&(msg->attribute));
/* stream */
stream_destroy (&(msg->stream), owner);
/* if sometype of floating/temporary message */
body_destroy (&(msg->body), owner);
/* notifications are done */
/* check again for resurrection before free()ing
* the memory maybe it was clone, if yes we can not
* free the pointer.
*
*/
free (msg);
}
/* loose the link */
*pmsg = NULL;
}
}
int
message_get_header (message_t msg, header_t *phdr)
{
if (msg == NULL || phdr == NULL)
return EINVAL;
/* is it a floating mesg */
if (msg->header == NULL && msg->owner == NULL)
{
header_t header;
int status = header_create (&header, NULL, 0, msg);
if (status != 0)
return status;
msg->header = header;
}
*phdr = msg->header;
return 0;
}
int
message_set_header (message_t msg, header_t hdr, void *owner)
{
if (msg == NULL )
return EINVAL;
if (msg->owner != owner)
return EACCES;
/* make sure we destoy the old if it was own by the mesg */
header_destroy (&(msg->header), msg);
msg->header = hdr;
return 0;
}
int
message_get_body (message_t msg, body_t *pbody)
{
if (msg == NULL || pbody == NULL)
return EINVAL;
/* is it a floating mesg */
if (msg->body == NULL)
{
body_t body;
int status = body_create (&body, msg);
if (status != 0)
return status;
msg->body = body;
}
*pbody = msg->body;
return 0;
}
int
message_set_body (message_t msg, body_t body, void *owner)
{
if (msg == NULL )
return EINVAL;
if (msg->owner != owner)
return EACCES;
/* make sure we destoy the old if it was own by the mesg */
body_destroy (&(msg->body), msg);
msg->body = body;
return 0;
}
int
message_get_stream (message_t msg, stream_t *pstream)
{
if (msg == NULL || pstream == NULL)
return EINVAL;
if (msg->stream == NULL)
{
stream_t stream;
int status;
status = stream_create (&stream, MU_STREAM_RDWR, msg);
if (status != 0)
return status;
stream_set_read (stream, message_read, msg);
stream_set_write (stream, message_write, msg);
stream_set_fd (stream, message_get_fd, msg);
stream_set_flags (stream, MU_STREAM_RDWR, msg);
msg->stream = stream;
}
*pstream = msg->stream;
return 0;
}
int
message_lines (message_t msg, size_t *plines)
{
size_t hlines, blines;
if (msg == NULL)
return EINVAL;
if (plines)
{
hlines = blines = 0;
header_lines (msg->header, &hlines);
body_lines (msg->body, &blines);
*plines = hlines + blines;
}
return 0;
}
int
message_size (message_t msg, size_t *psize)
{
size_t hsize, bsize;
if (msg == NULL)
return EINVAL;
if (psize)
{
hsize = bsize = 0;
header_size (msg->header, &hsize);
body_size (msg->body, &bsize);
*psize = hsize + bsize;
}
return 0;
}
int
message_set_from (message_t msg,
int (*_from)(message_t, char *, size_t, size_t*),
void *owner)
{
if (msg == NULL)
return EINVAL;
if (msg->owner != owner)
return EACCES;
msg->_from = _from;
return 0;
}
int
message_from (message_t msg, char *buf, size_t len, size_t *pnwrite)
{
header_t header = NULL;
size_t n = 0;
int status;
if (msg == NULL)
return EINVAL;
/* did they provide a way to get it */
if (msg->_from)
return msg->_from (msg, buf, len, pnwrite);
/* can it be extracted from the FROM: */
message_get_header (msg, &header);
status = header_get_value (header, "FROM", NULL, 0, &n);
if (status == 0 && n != 0)
{
char *from = calloc (1, n + 1);
char *addr;
header_get_value (header, "FROM", from, n + 1, NULL);
if (extract_addr (from, n, &addr, &n) == 0)
{
n = (n > len) ? len : n;
if (buf && len > 0)
{
memcpy (buf, addr, n);
buf[n - 1] = '\0';
}
free (addr);
free (from);
if (pnwrite)
*pnwrite = n;
return 0;
}
}
/* oops */
n = (7 > len) ? len: 7;
if (buf && len > 0)
{
memcpy (buf, "unknown", n);
buf [n - 1] = '\0';
}
if (pnwrite)
*pnwrite = n;
return 0;
}
int
message_set_received (message_t msg,
int (*_received) (message_t, char *, size_t , size_t *),
void *owner)
{
if (msg == NULL)
return EINVAL;
if (msg->owner != owner)
return EACCES;
msg->_received = _received;
return 0;
}
int
message_received (message_t msg, char *buf, size_t len, size_t *pnwrite)
{
time_t t;
size_t n;
if (msg == NULL)
return EINVAL;
/* is it provided */
if (msg->_received)
return msg->_received (msg, buf, len, pnwrite);
/* FIXME: extract the time from "Date:" */
/* catch all */
/* FIXME: ctime() is not thread safe use strftime() */
t = time (NULL);
n = strlen (ctime (&t));
if (buf == NULL || len == 0)
{
if (pnwrite)
*pnwrite = n;
return 0;
}
n = (n > len) ? len : n;
strncpy (buf, ctime (&t), n);
buf [n - 1] = '\0';
if (pnwrite)
*pnwrite = n;
return 0;
}
int
message_get_attribute (message_t msg, attribute_t *pattribute)
{
if (msg == NULL || pattribute == NULL)
return EINVAL;
if (msg->attribute == NULL)
{
attribute_t attribute;
int status = attribute_create (&attribute);
if (status != 0)
return status;
msg->attribute = attribute;
}
*pattribute = msg->attribute;
return 0;
}
int
message_set_attribute (message_t msg, attribute_t attribute, void *owner)
{
if (msg == NULL)
return EINVAL;
if (msg->owner != owner)
return EACCES;
attribute_destroy (&(msg->attribute));
msg->attribute = attribute;
return 0;
}
int
message_register (message_t msg, size_t type,
int (*action) (size_t typ, void *arg), void *arg)
{
event_t event;
size_t i;
if (msg == NULL || action == NULL || type == 0)
return EINVAL;
/* find a free spot */
for (i = 0; i < msg->event_num; i++)
{
event = &(msg->event[i]);
if (event->_action == NULL)
{
event->type = type;
event->_action = action;
event->arg = arg;
return 0;
}
}
event = realloc (msg->event, (msg->event_num + 1)*sizeof (*event));
if (event == NULL)
return ENOMEM;
msg->event = event;
event[msg->event_num]._action = action;
event[msg->event_num].type = type;
event[msg->event_num].arg = arg;
msg->event_num++;
return 0;
}
int
message_deregister (message_t msg, void *action)
{
size_t i;
event_t event;
if (msg == NULL || action == NULL)
return EINVAL;
for (i = 0; i < msg->event_num; i++)
{
event = &(msg->event[i]);
if (event->_action == action)
{
event->type = 0;
event->_action = NULL;
event->arg = NULL;
return 0;
}
}
return ENOENT;
}
void
message_notification (message_t msg, size_t type)
{
size_t i;
event_t event;
for (i = 0; i < msg->event_num; i++)
{
event = &(msg->event[i]);
if ((event->_action) && (event->type & type))
event->_action (type, event->arg);
}
}
static int
message_read (stream_t is, char *buf, size_t buflen,
off_t off, size_t *pnread )
{
message_t msg;
stream_t his, bis;
size_t hread, hsize, bread, bsize;
if (is == NULL || (msg = is->owner) == NULL)
return EINVAL;
bsize = hsize = bread = hread = 0;
his = bis = NULL;
header_size (msg->header, &hsize);
body_size (msg->body, &bsize);
if ((size_t)off <= hsize)
{
header_get_stream (msg->header, &his);
stream_read (his, buf, buflen, off, &hread);
/* still room left for some body, .. a pun ;-) */
if ((buflen - hread) > 0)
{
body_get_stream (msg->body, &bis);
stream_read (bis, buf + hread, buflen - hread, 0, &bread);
}
}
else
{
body_get_stream (msg->body, &bis);
stream_read (bis, buf, buflen, off - hsize, &bread);
}
if (pnread)
*pnread = hread + bread;
return 0;
}
static int
message_write (stream_t os, const char *buf, size_t buflen,
off_t off, size_t *pnwrite)
{
message_t msg;
int status;
if (os == NULL || (msg = os->owner) == NULL)
return EINVAL;
/* skip the obvious */
if (buf == NULL || *buf == '\0' || buflen == 0)
{
if (pnwrite)
*pnwrite = 0;
return 0;
}
if (!msg->hdr_done)
{
size_t len;
char *nl;
char *thdr;
while (!msg->hdr_done && (nl = memchr (buf, '\n', buflen)) != NULL)
{
len = nl - buf + 1;
thdr = realloc (msg->hdr_buf, msg->hdr_buflen + len);
if (thdr == NULL)
{
free (msg->hdr_buf);
msg->hdr_buf = NULL;
msg->hdr_buflen = 0;
return ENOMEM;
}
else
msg->hdr_buf = thdr;
memcpy (msg->hdr_buf + msg->hdr_buflen, buf, len);
msg->hdr_buflen += len;
if (buf == nl)
{
header_destroy (&(msg->header), msg);
status = header_create (&(msg->header), msg->hdr_buf,
msg->hdr_buflen, msg);
free (msg->hdr_buf);
msg->hdr_buf = NULL;
if (status != 0)
{
msg->hdr_buflen = 0;
return status;
}
msg->hdr_done = 1;
}
buf = nl + 1;
buflen -= len;
}
}
if (buflen)
{
stream_t bs;
body_t body;
if ((status = message_get_body (msg, &body)) != 0 ||
(status = body_get_stream (msg->body, &bs)) != 0)
{
free (msg->hdr_buf);
msg->hdr_buf = NULL;
msg->hdr_buflen = msg->hdr_done = 0;
return status;
}
if (off > (off_t)msg->hdr_buflen)
off -= msg->hdr_buflen;
return stream_write (bs, buf, buflen, off, pnwrite);
}
return 0;
}
static int
message_get_fd (stream_t stream, int *pfd)
{
message_t msg;
body_t body;
stream_t is;
if (stream == NULL || (msg = stream->owner) == NULL)
return EINVAL;
/* Probably being lazy, then create a body for the stream */
if (msg->body == NULL)
{
int status = body_create (&body, msg);
if (status != 0 )
return status;
msg->body = body;
}
else
body = msg->body;
body_get_stream (body, &is);
return stream_get_fd (is, pfd);
}
static int
extract_addr (const char *s, size_t n, char **presult, size_t *pnwrite)
{
char *p, *p1, *p2;
if (s == NULL || n == 0 || presult == NULL)
return EINVAL;
/* skip the double quotes */
p = memchr (s, '\"', n);
if (p != NULL)
{
p1 = memchr (s, '<', p - s);
p2 = memchr (s, '@', p - s);
if (p1 == NULL && p2 == NULL)
{
p1 = memchr (p + 1, '\"', n - ((p + 1) - s));
if (p1 != NULL)
{
n -= (p1 + 1) - s;
s = p1 + 1;
}
}
}
/* <name@hostname> ?? */
p = memchr (s, '<', n);
if (p != NULL)
{
p1 = memchr (p, '>', n - (p - s));
if (p1 != NULL && (p1 - p) > 1)
{
p2 = memchr (p, ' ', p1 - p);
if (p2 == NULL)
{
/* the NULL is already accounted for */
*presult = calloc (1, p1 - p);
if (*presult == NULL)
return ENOMEM;
memcpy (*presult, p + 1, (p1 - p) - 1);
if (pnwrite)
*pnwrite = (p1 - p) - 1;
return 0;
}
}
}
/* name@domain */
p = memchr (s, '@', n);
if (p != NULL)
{
p1 = p;
while (*p != ' ' && p != s)
p--;
while (*p1 != ' ' && p1 < (s + n))
p1++;
*presult = calloc (1, (p1 - p) + 1);
if (*presult == NULL)
return ENOMEM;
memcpy (*presult, p, p1 - p);
if (pnwrite)
*pnwrite = p1 - p;
return 0;
}
*presult = NULL;
return EINVAL;
}