e68f99c317d9b9fa02897bd9bf1d853d5f3484fe
[citadel.git] / webcit / mime_parser.c
1 /*
2  * $Id$
3  */
4 /**
5  * \defgroup MIME This is the MIME parser for Citadel.
6  *
7  * Copyright (c) 1998-2005 by Art Cancro
8  * This code is distributed under the terms of the GNU General Public License.
9  * \ingroup WebcitHttpServer
10  */
11 /*@{*/
12 #include "webcit.h"
13 #include "webserver.h"
14 #include "mime_parser.h"
15
16 void extract_key(char *target, char *source, char *key)
17 {
18         int a, b;
19
20         strcpy(target, source);
21         for (a = 0; a < strlen(target); ++a) {
22                 if ((!strncasecmp(&target[a], key, strlen(key)))
23                     && (target[a + strlen(key)] == '=')) {
24                         strcpy(target, &target[a + strlen(key) + 1]);
25                         if (target[0] == 34)
26                                 strcpy(target, &target[1]);
27                         for (b = 0; b < strlen(target); ++b)
28                                 if (target[b] == 34)
29                                         target[b] = 0;
30                         return;
31                 }
32         }
33         strcpy(target, "");
34 }
35
36
37 /*
38  * For non-multipart messages, we need to generate a quickie partnum of "1"
39  * to return to callback functions.  Some callbacks demand it.
40  */
41 char *fixed_partnum(char *supplied_partnum) {
42         if (supplied_partnum == NULL) return "1";
43         if (strlen(supplied_partnum)==0) return "1";
44         return supplied_partnum;
45 }
46
47
48
49 /*
50  * Convert "quoted-printable" to binary.  Returns number of bytes decoded.
51  * according to RFC2045 section 6.7
52  */
53 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen) {
54         unsigned int ch;
55         int decoded_length = 0;
56         int pos = 0;
57
58         while (pos < sourcelen)
59         {
60                 if (!strncmp(&encoded[pos], "=\r\n", 3))
61                 {
62                         pos += 3;
63                 }
64                 else if (!strncmp(&encoded[pos], "=\n", 2))
65                 {
66                         pos += 2;
67                 }
68                 else if (encoded[pos] == '=')
69                 {
70                         ch = 0;
71                         sscanf(&encoded[pos+1], "%02x", &ch);
72                         pos += 3;
73                         decoded[decoded_length++] = ch;
74                 }
75                 else
76                 {
77                         decoded[decoded_length++] = encoded[pos];
78                         pos += 1;
79                 }
80         }
81         decoded[decoded_length] = 0;
82         return(decoded_length);
83 }
84
85
86 /*
87  * Given a message or message-part body and a length, handle any necessary
88  * decoding and pass the request up the stack.
89  */
90 void mime_decode(char *partnum,
91                  char *part_start, size_t length,
92                  char *content_type, char *charset, char *encoding,
93                  char *disposition,
94                  char *name, char *filename,
95                  void (*CallBack)
96                   (char *cbname,
97                    char *cbfilename,
98                    char *cbpartnum,
99                    char *cbdisp,
100                    void *cbcontent,
101                    char *cbtype,
102                    char *cbcharset,
103                    size_t cblength,
104                    char *cbencoding,
105                    void *cbuserdata),
106                  void (*PreMultiPartCallBack)
107                   (char *cbname,
108                    char *cbfilename,
109                    char *cbpartnum,
110                    char *cbdisp,
111                    void *cbcontent,
112                    char *cbtype,
113                    char *cbcharset,
114                    size_t cblength,
115                    char *cbencoding,
116                    void *cbuserdata),
117                  void (*PostMultiPartCallBack)
118                   (char *cbname,
119                    char *cbfilename,
120                    char *cbpartnum,
121                    char *cbdisp,
122                    void *cbcontent,
123                    char *cbtype,
124                    char *cbcharset,
125                    size_t cblength,
126                    char *cbencoding,
127                    void *cbuserdata),
128                   void *userdata,
129                   int dont_decode
130 )
131 {
132
133         char *decoded;
134         size_t bytes_decoded = 0;
135
136         /* Some encodings aren't really encodings */
137         if (!strcasecmp(encoding, "7bit"))
138                 strcpy(encoding, "");
139         if (!strcasecmp(encoding, "8bit"))
140                 strcpy(encoding, "");
141         if (!strcasecmp(encoding, "binary"))
142                 strcpy(encoding, "");
143
144         /* If this part is not encoded, send as-is */
145         if ( (strlen(encoding) == 0) || (dont_decode)) {
146                 if (CallBack != NULL) {
147                         CallBack(name, filename, fixed_partnum(partnum),
148                                 disposition, part_start,
149                                 content_type, charset, length, encoding, userdata);
150                         }
151                 return;
152         }
153         
154         /* Fail silently if we hit an unknown encoding. */
155         if ((strcasecmp(encoding, "base64"))
156             && (strcasecmp(encoding, "quoted-printable"))) {
157                 return;
158         }
159
160         /*
161          * Allocate a buffer for the decoded data.  The output buffer is slightly
162          * larger than the input buffer; this assumes that the decoded data
163          * will never be significantly larger than the encoded data.  This is a
164          * safe assumption with base64, uuencode, and quoted-printable.
165          */
166         decoded = malloc(length + 32768);
167         if (decoded == NULL) {
168                 return;
169         }
170
171         if (!strcasecmp(encoding, "base64")) {
172                 bytes_decoded = CtdlDecodeBase64(decoded, part_start, length);
173         }
174         else if (!strcasecmp(encoding, "quoted-printable")) {
175                 bytes_decoded = CtdlDecodeQuotedPrintable(decoded, part_start, length);
176         }
177
178         if (bytes_decoded > 0) if (CallBack != NULL) {
179                 CallBack(name, filename, fixed_partnum(partnum),
180                         disposition, decoded,
181                         content_type, charset, bytes_decoded, "binary", userdata);
182         }
183
184         free(decoded);
185 }
186
187 /*
188  * Break out the components of a multipart message
189  * (This function expects to be fed HEADERS + CONTENT)
190  * Note: NULL can be supplied as content_end; in this case, the message is
191  * considered to have ended when the parser encounters a 0x00 byte.
192  */
193 void the_mime_parser(char *partnum,
194                      char *content_start, char *content_end,
195                      void (*CallBack)
196                       (char *cbname,
197                        char *cbfilename,
198                        char *cbpartnum,
199                        char *cbdisp,
200                        void *cbcontent,
201                        char *cbtype,
202                        char *cbcharset,
203                        size_t cblength,
204                        char *cbencoding,
205                        void *cbuserdata),
206                      void (*PreMultiPartCallBack)
207                       (char *cbname,
208                        char *cbfilename,
209                        char *cbpartnum,
210                        char *cbdisp,
211                        void *cbcontent,
212                        char *cbtype,
213                        char *cbcharset,
214                        size_t cblength,
215                        char *cbencoding,
216                        void *cbuserdata),
217                      void (*PostMultiPartCallBack)
218                       (char *cbname,
219                        char *cbfilename,
220                        char *cbpartnum,
221                        char *cbdisp,
222                        void *cbcontent,
223                        char *cbtype,
224                        char *cbcharset,
225                        size_t cblength,
226                        char *cbencoding,
227                        void *cbuserdata),
228                       void *userdata,
229                       int dont_decode
230 )
231 {
232
233         char *ptr;
234         char *srch = NULL;
235         char *part_start, *part_end = NULL;
236         char buf[SIZ];
237         char *header;
238         char *boundary;
239         char *startary;
240         size_t startary_len = 0;
241         char *endary;
242         char *next_boundary;
243         char *content_type;
244         char *charset;
245         size_t content_length;
246         char *encoding;
247         char *disposition;
248         char *name = NULL;
249         char *content_type_name;
250         char *content_disposition_name;
251         char *filename;
252         int is_multipart;
253         int part_seq = 0;
254         int i;
255         size_t length;
256         char nested_partnum[256];
257         int crlf_in_use = 0;
258         char *evaluate_crlf_ptr = NULL;
259
260         ptr = content_start;
261         content_length = 0;
262
263         boundary = malloc(SIZ);
264         memset(boundary, 0, SIZ);
265
266         startary = malloc(SIZ);
267         memset(startary, 0, SIZ);
268
269         endary = malloc(SIZ);
270         memset(endary, 0, SIZ);
271
272         header = malloc(SIZ);
273         memset(header, 0, SIZ);
274
275         content_type = malloc(SIZ);
276         memset(content_type, 0, SIZ);
277
278         charset = malloc(SIZ);
279         memset(charset, 0, SIZ);
280
281         encoding = malloc(SIZ);
282         memset(encoding, 0, SIZ);
283
284         content_type_name = malloc(SIZ);
285         memset(content_type_name, 0, SIZ);
286
287         content_disposition_name = malloc(SIZ);
288         memset(content_disposition_name, 0, SIZ);
289
290         filename = malloc(SIZ);
291         memset(filename, 0, SIZ);
292
293         disposition = malloc(SIZ);
294         memset(disposition, 0, SIZ);
295
296         /* If the caller didn't supply an endpointer, generate one by measure */
297         if (content_end == NULL) {
298                 content_end = &content_start[strlen(content_start)];
299         }
300
301         /* Learn interesting things from the headers */
302         strcpy(header, "");
303         do {
304                 ptr = memreadline(ptr, buf, SIZ);
305                 if (ptr >= content_end) {
306                         goto end_parser;
307                 }
308
309                 for (i = 0; i < strlen(buf); ++i) {
310                         if (isspace(buf[i])) {
311                                 buf[i] = ' ';
312                         }
313                 }
314
315                 if (!isspace(buf[0])) {
316                         if (!strncasecmp(header, "Content-type:", 13)) {
317                                 strcpy(content_type, &header[13]);
318                                 striplt(content_type);
319                                 extract_key(content_type_name, content_type, "name");
320                                 extract_key(charset, content_type, "charset");
321                                 /* Deal with weird headers */
322                                 if (strchr(content_type, ' '))
323                                         *(strchr(content_type, ' ')) = '\0';
324                                 if (strchr(content_type, ';'))
325                                         *(strchr(content_type, ';')) = '\0';
326                         }
327                         if (!strncasecmp(header, "Content-Disposition:", 20)) {
328                                 strcpy(disposition, &header[20]);
329                                 striplt(disposition);
330                                 extract_key(content_disposition_name, disposition, "name");
331                                 extract_key(filename, disposition, "filename");
332                         }
333                         if (!strncasecmp(header, "Content-length: ", 15)) {
334                                 char clbuf[10];
335                                 safestrncpy(clbuf, &header[15], sizeof clbuf);
336                                 striplt(clbuf);
337                                 content_length = (size_t) atol(clbuf);
338                         }
339                         if (!strncasecmp(header, "Content-transfer-encoding: ", 26)) {
340                                 strcpy(encoding, &header[26]);
341                                 striplt(encoding);
342                         }
343                         if (strlen(boundary) == 0)
344                                 extract_key(boundary, header, "boundary");
345                         strcpy(header, "");
346                 }
347                 if ((strlen(header) + strlen(buf) + 2) < SIZ) {
348                         strcat(header, buf);
349                 }
350         } while ((strlen(buf) > 0) && (*ptr != 0));
351
352         if (strchr(disposition, ';'))
353                 *(strchr(disposition, ';')) = '\0';
354         striplt(disposition);
355         if (strchr(content_type, ';'))
356                 *(strchr(content_type, ';')) = '\0';
357         striplt(content_type);
358
359         if (strlen(boundary) > 0) {
360                 is_multipart = 1;
361         } else {
362                 is_multipart = 0;
363         }
364
365         /* If this is a multipart message, then recursively process it */
366         part_start = NULL;
367         if (is_multipart) {
368
369                 /* Tell the client about this message's multipartedness */
370                 if (PreMultiPartCallBack != NULL) {
371                         PreMultiPartCallBack("", "", partnum, "",
372                                 NULL, content_type, charset,
373                                 0, encoding, userdata);
374                 }
375
376                 /* Figure out where the boundaries are */
377                 snprintf(startary, SIZ, "--%s", boundary);
378                 snprintf(endary, SIZ, "--%s--", boundary);
379                 startary_len = strlen(startary);
380
381                 part_start = NULL;
382                 do {
383                         next_boundary = NULL;
384                         for (srch=ptr; srch<content_end; ++srch) {
385                                 if (!memcmp(srch, startary, startary_len)) {
386                                         next_boundary = srch;
387                                         srch = content_end;
388                                 }
389                         }
390
391                         if ( (part_start != NULL) && (next_boundary != NULL) ) {
392                                 part_end = next_boundary;
393                                 --part_end;             /* omit the trailing LF */
394                                 if (crlf_in_use) {
395                                         --part_end;     /* omit the trailing CR */
396                                 }
397
398                                 if (strlen(partnum) > 0) {
399                                         snprintf(nested_partnum,
400                                                  sizeof nested_partnum,
401                                                  "%s.%d", partnum,
402                                                  ++part_seq);
403                                 }
404                                 else {
405                                         snprintf(nested_partnum,
406                                                  sizeof nested_partnum,
407                                                  "%d", ++part_seq);
408                                 }
409                                 the_mime_parser(nested_partnum,
410                                             part_start, part_end,
411                                                 CallBack,
412                                                 PreMultiPartCallBack,
413                                                 PostMultiPartCallBack,
414                                                 userdata,
415                                                 dont_decode);
416                         }
417
418                         if (next_boundary != NULL) {
419                                 /* If we pass out of scope, don't attempt to
420                                  * read past the end boundary. */
421                                 if (!strcmp(next_boundary, endary)) {
422                                         ptr = content_end;
423                                 }
424                                 else {
425                                         /* Set up for the next part. */
426                                         part_start = strstr(next_boundary, "\n");
427                                         
428                                         /* Determine whether newlines are LF or CRLF */
429                                         evaluate_crlf_ptr = part_start;
430                                         --evaluate_crlf_ptr;
431                                         if (!memcmp(evaluate_crlf_ptr, "\r\n", 2)) {
432                                                 crlf_in_use = 1;
433                                         }
434                                         else {
435                                                 crlf_in_use = 0;
436                                         }
437
438                                         /* Advance past the LF ... now we're in the next part */
439                                         ++part_start;
440                                         ptr = part_start;
441                                 }
442                         }
443                         else {
444                                 /* Invalid end of multipart.  Bail out! */
445                                 ptr = content_end;
446                         }
447                 } while ( (ptr < content_end) && (next_boundary != NULL) );
448
449                 if (PostMultiPartCallBack != NULL) {
450                         PostMultiPartCallBack("", "", partnum, "", NULL,
451                                 content_type, charset, 0, encoding, userdata);
452                 }
453                 goto end_parser;
454         }
455
456         /* If it's not a multipart message, then do something with it */
457         if (!is_multipart) {
458                 part_start = ptr;
459                 length = 0;
460                 while (ptr < content_end) {
461                         ++ptr;
462                         ++length;
463                 }
464                 part_end = content_end;
465
466                 /******
467                  * I thought there was an off-by-one error here, but there isn't.
468                  * This probably means that there's an off-by-one error somewhere
469                  * else ... or maybe only in certain messages?
470                 --part_end;
471                 --length;
472                 ******/
473                 
474                 /* Truncate if the header told us to */
475                 if ( (content_length > 0) && (length > content_length) ) {
476                         length = content_length;
477                 }
478
479                 /* Sometimes the "name" field is tacked on to Content-type,
480                  * and sometimes it's tacked on to Content-disposition.  Use
481                  * whichever one we have.
482                  */
483                 if (strlen(content_disposition_name) > strlen(content_type_name)) {
484                         name = content_disposition_name;
485                 }
486                 else {
487                         name = content_type_name;
488                 }
489         
490                 /* lprintf(CTDL_DEBUG, "mime_decode part=%s, len=%d, type=%s, charset=%s, encoding=%s\n",
491                         partnum, length, content_type, charset, encoding); */
492
493                 /* Ok, we've got a non-multipart part here, so do something with it.
494                  */
495                 mime_decode(partnum,
496                         part_start, length,
497                         content_type, charset, encoding, disposition,
498                         name, filename,
499                         CallBack, NULL, NULL,
500                         userdata, dont_decode
501                 );
502
503                 /*
504                  * Now if it's an encapsulated message/rfc822 then we have to recurse into it
505                  */
506                 if (!strcasecmp(content_type, "message/rfc822")) {
507
508                         if (PreMultiPartCallBack != NULL) {
509                                 PreMultiPartCallBack("", "", partnum, "",
510                                         NULL, content_type, charset,
511                                         0, encoding, userdata);
512                         }
513                         if (CallBack != NULL) {
514                                 if (strlen(partnum) > 0) {
515                                         snprintf(nested_partnum,
516                                                  sizeof nested_partnum,
517                                                  "%s.%d", partnum,
518                                                  ++part_seq);
519                                 }
520                                 else {
521                                         snprintf(nested_partnum,
522                                                  sizeof nested_partnum,
523                                                  "%d", ++part_seq);
524                                 }
525                                 the_mime_parser(nested_partnum,
526                                         part_start, part_end,
527                                         CallBack,
528                                         PreMultiPartCallBack,
529                                         PostMultiPartCallBack,
530                                         userdata,
531                                         dont_decode
532                                 );
533                         }
534                         if (PostMultiPartCallBack != NULL) {
535                                 PostMultiPartCallBack("", "", partnum, "", NULL,
536                                         content_type, charset, 0, encoding, userdata);
537                         }
538
539
540                 }
541
542         }
543
544 end_parser:     /* free the buffers!  end the oppression!! */
545         free(boundary);
546         free(startary);
547         free(endary);   
548         free(header);
549         free(content_type);
550         free(charset);
551         free(encoding);
552         free(content_type_name);
553         free(content_disposition_name);
554         free(filename);
555         free(disposition);
556 }
557
558
559
560 /*
561  * Entry point for the MIME parser.
562  * (This function expects to be fed HEADERS + CONTENT)
563  * Note: NULL can be supplied as content_end; in this case, the message is
564  * considered to have ended when the parser encounters a 0x00 byte.
565  */
566 void mime_parser(char *content_start,
567                 char *content_end,
568
569                  void (*CallBack)
570                   (char *cbname,
571                    char *cbfilename,
572                    char *cbpartnum,
573                    char *cbdisp,
574                    void *cbcontent,
575                    char *cbtype,
576                    char *cbcharset,
577                    size_t cblength,
578                    char *cbencoding,
579                    void *cbuserdata),
580
581                  void (*PreMultiPartCallBack)
582                   (char *cbname,
583                    char *cbfilename,
584                    char *cbpartnum,
585                    char *cbdisp,
586                    void *cbcontent,
587                    char *cbtype,
588                    char *cbcharset,
589                    size_t cblength,
590                    char *cbencoding,
591                    void *cbuserdata),
592
593                  void (*PostMultiPartCallBack)
594                   (char *cbname,
595                    char *cbfilename,
596                    char *cbpartnum,
597                    char *cbdisp,
598                    void *cbcontent,
599                    char *cbtype,
600                    char *cbcharset,
601                    size_t cblength,
602                    char *cbencoding,
603                    void *cbuserdata),
604
605                   void *userdata,
606                   int dont_decode
607 )
608 {
609
610         the_mime_parser("", content_start, content_end,
611                         CallBack,
612                         PreMultiPartCallBack,
613                         PostMultiPartCallBack,
614                         userdata, dont_decode);
615 }
616
617 /*@}*/