-
Notifications
You must be signed in to change notification settings - Fork 1
/
mime.c
234 lines (183 loc) · 3.72 KB
/
mime.c
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
/*
$NiH: mime.c,v 1.16 2002/04/10 16:23:28 wiz Exp $
mime.c -- MIME header parsing
Copyright (C) 2002 Dieter Baron and Thomas Klausner
This file is part of cg, a program to assemble and decode binary Usenet
postings. The authors can be contacted at <nih@giga.or.at>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mime.h"
void _mime_lws(char **s);
symbol _mime_token(char **s);
char * _mime_value(char **s);
#define MIME_MAX 14
char *mime_string[MIME_MAX] = {
"message/partial",
"message/multipart",
"multipart/mixed",
"7bit",
"8bit",
"base64",
"quoted-printable",
"x-uuencode",
"filename",
"name",
"boundary",
"id",
"number",
"total"
};
symbol mime_sym[MIME_MAX];
void
mime_init(void)
{
int i;
for (i=0; i<MIME_MAX; i++)
mime_sym[i] = intern(mime_string[i]);
}
void
mime_free(struct mime_hdr *m)
{
int i;
if (m == NULL)
return;
for (i=0; m->option[i].name; i++)
free(m->option[i].value);
free(m->option);
free(m);
}
struct mime_hdr *
mime_parse(char *h)
{
struct mime_hdr *m;
struct mime_opt o[256];
int i;
if ((m=(struct mime_hdr *)malloc(sizeof(struct mime_hdr))) == NULL)
return NULL;
if ((m->type=_mime_token(&h)) == NULL) {
free(m);
return NULL;
}
i = 0;
_mime_lws(&h);
while (*h == ';') {
h++;
if ((o[i].name=_mime_token(&h)) == NULL) {
break;
}
_mime_lws(&h);
if (*h == '=') {
h++;
o[i].value = _mime_value(&h);
}
else
o[i].value = NULL;
i++;
/* XXX: handle buffer overrun */
}
o[i].name = o[i].value = NULL;
i++;
if ((m->option=(struct mime_opt *)malloc(sizeof(struct mime_opt)*i))
== NULL) {
free(m);
while (i)
free(o[--i].value);
return NULL;
}
memcpy(m->option, o, sizeof(struct mime_opt)*i);
return m;
}
symbol
_mime_token(char **s)
{
symbol m;
char c, *p;
_mime_lws(s);
p = *s+strcspn(*s, " \t()<>@,;:\\\"[]?=");
c = *p;
*p = '\0';
if (strlen(*s) > 0)
m = intern_lower(*s);
else
m = 0;
*p = c;
*s = p;
return m;
}
void
_mime_lws(char **s)
{
/* XXX: handle () comments */
*s += strspn(*s, " \t");
}
char *
_mime_value(char **s)
{
static char b[8192];
char *p, *r, c;
int i;
i=0;
_mime_lws(s);
if (**s == '"') {
/* quoted string */
p = *s;
for (;;) {
switch (*(++p)) {
case '"':
p++;
/* fallthrough */
case '\0':
b[i++]='\0';
*s = p;
return strdup(b);
case '\\':
if (*p == '\0') {
b[i++]='\0';
*s = p;
return strdup(b);
}
else
b[i++]=*(++p);
break;
default:
b[i++]=*p;
break;
}
}
}
else {
/* token */
p = *s+strcspn(*s, " \t()<>@,;:\\\"[]?=");
c = *p;
*p = '\0';
if (strlen(*s) > 0)
r = strdup(*s);
else
r = NULL;
*p = c;
*s = p;
return r;
}
}
char *
mime_option_get(struct mime_hdr *m, symbol name)
{
int i;
for (i=0; m->option[i].name; i++)
if (m->option[i].name == name)
return m->option[i].value;
return NULL;
}