rfc822.c
8.59 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
/* 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. */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <header0.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
static int rfc822_parse (header_t h, const char *blurb, size_t len);
static int rfc822_set_value (header_t h, const char *fn, const char *fb,
size_t n, int replace);
static int rfc822_get_value (header_t h, const char *fn, char *fb,
size_t len, size_t *n);
static int rfc822_entry_count (header_t, size_t *num);
static int rfc822_entry_name (header_t h, size_t num, char *buf,
size_t buflen, size_t *total);
static int rfc822_entry_value (header_t h, size_t num, char *buf,
size_t buflen, size_t *total);
static ssize_t rfc822_get_data (header_t h, char *buf, size_t buflen,
off_t off, int *err);
struct _rfc822
{
char *blurb;
size_t blurb_len;
size_t hdr_count;
struct _hdr *hdr;
};
typedef struct _rfc822 * rfc822_t;
int
rfc822_init (header_t *ph, const char *blurb, size_t len)
{
header_t h;
int status;
h = calloc (1, sizeof (*h));
if (h == NULL)
return ENOMEM;
h->_init = rfc822_init;
h->_destroy = rfc822_destroy;
h->_parse = rfc822_parse;
h->_get_value = rfc822_get_value;
h->_set_value = rfc822_set_value;
h->_entry_count = rfc822_entry_count;
h->_entry_name = rfc822_entry_name;
h->_entry_value = rfc822_entry_value;
h->_get_data = rfc822_get_data;
status = h->_parse (h, blurb, len);
if (status != 0)
free (h);
*ph = h;
return status;
}
void
rfc822_destroy (header_t *ph)
{
if (ph && *ph)
{
header_t h = *ph;
/* own by a message */
if (h->message)
{
*ph = NULL;
return;
}
if (h->data)
{
rfc822_t rfc = (rfc822_t)h->data;
free (rfc->hdr);
free (rfc->blurb);
free (rfc);
}
free (h);
*ph = NULL;
}
}
/*
* Parsing is done in a rather simple fashion.
* meaning we just consider an entry to be
* a field-name an a field-value. So they
* maybe duplicate of field-name like "Received"
* they are just put in the array, see _get_value()
* on how to handle the case.
*/
static int
rfc822_parse (header_t h, const char *blurb, size_t len)
{
rfc822_t rfc;
char *header_end;
char *header_start;
char *header_start2;
struct _hdr *hdr;
if (h == NULL || blurb == NULL || len == 0)
return EINVAL;
rfc = calloc (1, sizeof (*rfc));
if (rfc == NULL)
return ENOMEM;
rfc->blurb = calloc (1, len);
if (rfc->blurb == NULL)
{
free (rfc);
return ENOMEM;
}
rfc->blurb_len = len;
memcpy (rfc->blurb, blurb, len);
for (header_start = rfc->blurb;; header_start = ++header_end)
{
/* get a header, a header is :
* field-name ':' ' ' field-value '\r' '\n'
* [ (' ' | '\t') field-value '\r' '\n' ]
*/
for (header_start2 = header_start;;header_start2 = ++header_end)
{
header_end = memchr (header_start2, '\n', len);
if (header_end == NULL)
break;
else
{
len -= (header_end - header_start2 + 1);
if (len == 0)
{
header_end = NULL;
break;
}
if (header_end[1] != ' '
&& header_end[1] != '\t')
break; /* new header break the inner for */
}
/* *header_end = ' '; smash LF */
}
if (header_end == NULL)
break; /* bail out */
hdr = realloc (rfc->hdr, (rfc->hdr_count + 1) * sizeof (*hdr));
if (hdr == NULL)
{
free (rfc->blurb);
free (rfc->hdr);
free (rfc);
return ENOMEM;
}
rfc->hdr = hdr;
rfc->hdr_count++;
/* Treats unix "From " specially */
if ((header_end - header_start >= 5)
&& strncmp (header_start, "From ", 5) == 0)
{
rfc->hdr[rfc->hdr_count - 1].fn = header_start;
rfc->hdr[rfc->hdr_count - 1].fn_end = header_start + 6;
rfc->hdr[rfc->hdr_count - 1].fv = header_start + 6;
rfc->hdr[rfc->hdr_count - 1].fv_end = header_end;
}
else
{
char *colon = memchr (header_start, ':', header_end - header_start);
if (colon == NULL)
{
/* Houston we have a problem */
free (rfc->blurb);
free (rfc->hdr);
free (rfc);
return EINVAL;
}
rfc->hdr[rfc->hdr_count - 1].fn = header_start;
rfc->hdr[rfc->hdr_count - 1].fn_end = colon;
/* skip leading spaces */
while (*(++colon) == ' ');
rfc->hdr[rfc->hdr_count - 1].fv = colon;
rfc->hdr[rfc->hdr_count - 1].fv_end = header_end;
}
}
h->data = rfc;
return 0;
}
static int
rfc822_set_value (header_t h, const char *fn, const char *fv,
size_t n, int replace)
{
(void)h; (void)fn; (void)fv; (void)n; (void)replace;
return ENOSYS;
}
static int
rfc822_get_value (header_t h, const char *name, char *buffer,
size_t buflen, size_t *n)
{
size_t i = 0;
size_t name_len;
size_t total = 0, fn_len = 0, fv_len = 0;
int threshold;
rfc822_t rfc;
if (h == NULL || name == NULL ||
(rfc = (rfc822_t)h->data) == NULL)
return EINVAL;
/* we set the threshold to be 1 less for the null */
threshold = --buflen;
/*
* Caution: We may have more then one value for a field
* name, for example a "Received" field-name is added by
* each passing MTA. The way that the parsing (_parse())
* is done it's not take to account. So we just stuff in
* the buffer all the field-values to a corresponding field-name.
* FIXME: Should we kosher the output ? meaning replace
* occurences of " \t\r\n" for spaces ? for now we don't.
*/
for (name_len = strlen (name), i = 0; i < rfc->hdr_count; i++)
{
fn_len = rfc->hdr[i].fn_end - rfc->hdr[i].fn;
if (fn_len == name_len && memcmp (rfc->hdr[i].fn, name, fn_len) == 0)
{
fv_len = (rfc->hdr[i].fv_end - rfc->hdr[i].fv);
total += fv_len;
/* can everything fit in the buffer */
if (buffer && threshold > 0)
{
threshold -= fv_len;
if (threshold > 0)
{
memcpy (buffer, rfc->hdr[i].fv, fv_len);
buffer += fv_len;
}
else if (threshold < 0)
{
threshold += fv_len;
memcpy (buffer, rfc->hdr[i].fv, threshold);
buffer += threshold;
threshold = 0;
}
}
}
}
if (buffer)
*buffer = '\0'; /* null terminated */
if (n)
*n = total;
return 0;
}
static int
rfc822_entry_count (header_t h, size_t *num)
{
rfc822_t rfc;
if (h == NULL || (rfc = (rfc822_t)h->data) == NULL)
return EINVAL;
if (num)
*num = rfc->hdr_count;
return 0;
}
static int
rfc822_entry_name (header_t h, size_t num, char *buf,
size_t buflen, size_t *nwritten)
{
rfc822_t rfc;
size_t len;
if (h == NULL || (rfc = (rfc822_t)h->data) == NULL)
return EINVAL;
if (rfc->hdr_count == 0 || num > rfc->hdr_count)
return ENOENT;
len = rfc->hdr[num].fn_end - rfc->hdr[num].fn;
/* save one for the null */
--buflen;
if (buf && buflen > 0)
{
buflen = (len > buflen) ? buflen : len;
memcpy (buf, rfc->hdr[num].fn, buflen);
buf[buflen] = '\0';
}
if (nwritten)
*nwritten = len;
return 0;
}
static int
rfc822_entry_value (header_t h, size_t num, char *buf,
size_t buflen, size_t *nwritten)
{
rfc822_t rfc;
size_t len;
if (h == NULL || (rfc = (rfc822_t)h->data) == NULL)
return EINVAL;
if (rfc->hdr_count == 0 || num > rfc->hdr_count)
return ENOENT;
len = rfc->hdr[num].fv_end - rfc->hdr[num].fv;
/* save one for the null */
--buflen;
if (buf && buflen > 0)
{
buflen = (len > buflen) ? buflen : len;
memcpy (buf, rfc->hdr[num].fv, buflen);
buf[buflen] = '\0';
}
if (nwritten)
*nwritten = len;
return 0;
}
static ssize_t
rfc822_get_data (header_t h, char *buf, size_t buflen, off_t off, int *err)
{
rfc822_t rfc;
ssize_t len;
if (h == NULL || (rfc = (rfc822_t)h->data) == NULL)
{
if (err)
*err = EINVAL;
return -1;
}
len = rfc->blurb_len - off;
if ((rfc->blurb_len - off) > 0)
{
if (buf)
{
len = (buflen < (size_t)len) ? buflen : len;
memcpy (buf, rfc->blurb + off, len);
}
}
else
len = 0;
return len;
}