0480db219f412341c6c215d5a0ebab026f68a4af
[openssl.git] / crypto / pkcs7 / pk7_mime.c
1 /* pk7_mime.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3  * project.
4  */
5 /* ====================================================================
6  * Copyright (c) 1999-2003 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <stdio.h>
60 #include <ctype.h>
61 #include "cryptlib.h"
62 #include <openssl/rand.h>
63 #include <openssl/x509.h>
64
65 /* MIME and related routines */
66
67 /* MIME format structures
68  * Note that all are translated to lower case apart from
69  * parameter values. Quotes are stripped off
70  */
71
72 typedef struct {
73 char *param_name;                       /* Param name e.g. "micalg" */
74 char *param_value;                      /* Param value e.g. "sha1" */
75 } MIME_PARAM;
76
77 DECLARE_STACK_OF(MIME_PARAM)
78 IMPLEMENT_STACK_OF(MIME_PARAM)
79
80 typedef struct {
81 char *name;                             /* Name of line e.g. "content-type" */
82 char *value;                            /* Value of line e.g. "text/plain" */
83 STACK_OF(MIME_PARAM) *params;           /* Zero or more parameters */
84 } MIME_HEADER;
85
86 DECLARE_STACK_OF(MIME_HEADER)
87 IMPLEMENT_STACK_OF(MIME_HEADER)
88
89 static int pkcs7_output_data(BIO *bio, BIO *data, PKCS7 *p7, int flags);
90 static int B64_write_PKCS7(BIO *bio, PKCS7 *p7);
91 static PKCS7 *B64_read_PKCS7(BIO *bio);
92 static char * strip_ends(char *name);
93 static char * strip_start(char *name);
94 static char * strip_end(char *name);
95 static MIME_HEADER *mime_hdr_new(char *name, char *value);
96 static int mime_hdr_addparam(MIME_HEADER *mhdr, char *name, char *value);
97 static STACK_OF(MIME_HEADER) *mime_parse_hdr(BIO *bio);
98 static int mime_hdr_cmp(const MIME_HEADER * const *a,
99                         const MIME_HEADER * const *b);
100 static int mime_param_cmp(const MIME_PARAM * const *a,
101                         const MIME_PARAM * const *b);
102 static void mime_param_free(MIME_PARAM *param);
103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
105 static int strip_eol(char *linebuf, int *plen);
106 static MIME_HEADER *mime_hdr_find(STACK_OF(MIME_HEADER) *hdrs, char *name);
107 static MIME_PARAM *mime_param_find(MIME_HEADER *hdr, char *name);
108 static void mime_hdr_free(MIME_HEADER *hdr);
109
110 #define MAX_SMLEN 1024
111 #define mime_debug(x) /* x */
112
113
114 typedef void (*stkfree)();
115
116 /* Base 64 read and write of PKCS#7 structure */
117
118 static int B64_write_PKCS7(BIO *bio, PKCS7 *p7)
119 {
120         BIO *b64;
121         if(!(b64 = BIO_new(BIO_f_base64()))) {
122                 PKCS7err(PKCS7_F_B64_WRITE_PKCS7,ERR_R_MALLOC_FAILURE);
123                 return 0;
124         }
125         bio = BIO_push(b64, bio);
126         i2d_PKCS7_bio(bio, p7);
127         BIO_flush(bio);
128         bio = BIO_pop(bio);
129         BIO_free(b64);
130         return 1;
131 }
132
133 static PKCS7 *B64_read_PKCS7(BIO *bio)
134 {
135         BIO *b64;
136         PKCS7 *p7;
137         if(!(b64 = BIO_new(BIO_f_base64()))) {
138                 PKCS7err(PKCS7_F_B64_READ_PKCS7,ERR_R_MALLOC_FAILURE);
139                 return 0;
140         }
141         bio = BIO_push(b64, bio);
142         if(!(p7 = d2i_PKCS7_bio(bio, NULL))) 
143                 PKCS7err(PKCS7_F_B64_READ_PKCS7,PKCS7_R_DECODE_ERROR);
144         BIO_flush(bio);
145         bio = BIO_pop(bio);
146         BIO_free(b64);
147         return p7;
148 }
149
150 /* SMIME sender */
151
152 int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags)
153 {
154         char bound[33], c;
155         int i;
156         char *mime_prefix, *mime_eol;
157         if (flags & PKCS7_NOOLDMIMETYPE)
158                 mime_prefix = "application/pkcs7-";
159         else
160                 mime_prefix = "application/x-pkcs7-";
161         if (flags & PKCS7_CRLFEOL)
162                 mime_eol = "\r\n";
163         else
164                 mime_eol = "\n";
165         if((flags & PKCS7_DETACHED) && data) {
166         /* We want multipart/signed */
167                 /* Generate a random boundary */
168                 RAND_pseudo_bytes((unsigned char *)bound, 32);
169                 for(i = 0; i < 32; i++) {
170                         c = bound[i] & 0xf;
171                         if(c < 10) c += '0';
172                         else c += 'A' - 10;
173                         bound[i] = c;
174                 }
175                 bound[32] = 0;
176                 BIO_printf(bio, "MIME-Version: 1.0%s", mime_eol);
177                 BIO_printf(bio, "Content-Type: multipart/signed;");
178                 BIO_printf(bio, " protocol=\"%ssignature\";", mime_prefix);
179                 BIO_printf(bio, " micalg=sha1; boundary=\"----%s\"%s%s",
180                                                 bound, mime_eol, mime_eol);
181                 BIO_printf(bio, "This is an S/MIME signed message%s%s",
182                                                 mime_eol, mime_eol);
183                 /* Now write out the first part */
184                 BIO_printf(bio, "------%s%s", bound, mime_eol);
185                 pkcs7_output_data(bio, data, p7, flags);
186                 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol);
187
188                 /* Headers for signature */
189
190                 BIO_printf(bio, "Content-Type: %ssignature;", mime_prefix); 
191                 BIO_printf(bio, " name=\"smime.p7s\"%s", mime_eol);
192                 BIO_printf(bio, "Content-Transfer-Encoding: base64%s",
193                                                                 mime_eol);
194                 BIO_printf(bio, "Content-Disposition: attachment;");
195                 BIO_printf(bio, " filename=\"smime.p7s\"%s%s",
196                                                         mime_eol, mime_eol);
197                 B64_write_PKCS7(bio, p7);
198                 BIO_printf(bio,"%s------%s--%s%s", mime_eol, bound,
199                                                         mime_eol, mime_eol);
200                 return 1;
201         }
202         /* MIME headers */
203         BIO_printf(bio, "MIME-Version: 1.0%s", mime_eol);
204         BIO_printf(bio, "Content-Disposition: attachment;");
205         BIO_printf(bio, " filename=\"smime.p7m\"%s", mime_eol);
206         BIO_printf(bio, "Content-Type: %smime;", mime_prefix);
207         BIO_printf(bio, " name=\"smime.p7m\"%s", mime_eol);
208         BIO_printf(bio, "Content-Transfer-Encoding: base64%s%s",
209                                                 mime_eol, mime_eol);
210         B64_write_PKCS7(bio, p7);
211         BIO_printf(bio, "%s", mime_eol);
212         return 1;
213 }
214
215 /* Handle output of PKCS#7 data */
216
217
218 static int pkcs7_output_data(BIO *out, BIO *data, PKCS7 *p7, int flags)
219         {
220         BIO *tmpbio, *p7bio;
221
222         if (!(flags & PKCS7_STREAM))
223                 {
224                 SMIME_crlf_copy(data, out, flags);
225                 return 1;
226                 }
227
228         /* Partial sign operation */
229
230         /* Initialize sign operation */
231         p7bio = PKCS7_dataInit(p7, out);
232
233         /* Copy data across, computing digests etc */
234         SMIME_crlf_copy(data, p7bio, flags);
235
236         /* Must be detached */
237         PKCS7_set_detached(p7, 1);
238
239         /* Finalize signatures */
240         PKCS7_dataFinal(p7, p7bio);
241
242         /* Now remove any digests from output BIO */
243
244         while (1)
245                 {
246                 tmpbio = BIO_pop(p7bio);
247                 if (tmpbio == out)
248                         break;
249                 BIO_free(tmpbio);
250                 }
251
252         return 1;
253
254         }
255
256 /* SMIME reader: handle multipart/signed and opaque signing.
257  * in multipart case the content is placed in a memory BIO
258  * pointed to by "bcont". In opaque this is set to NULL
259  */
260
261 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont)
262 {
263         BIO *p7in;
264         STACK_OF(MIME_HEADER) *headers = NULL;
265         STACK_OF(BIO) *parts = NULL;
266         MIME_HEADER *hdr;
267         MIME_PARAM *prm;
268         PKCS7 *p7;
269         int ret;
270
271         if(bcont) *bcont = NULL;
272
273         if (!(headers = mime_parse_hdr(bio))) {
274                 PKCS7err(PKCS7_F_SMIME_READ_PKCS7,PKCS7_R_MIME_PARSE_ERROR);
275                 return NULL;
276         }
277
278         if(!(hdr = mime_hdr_find(headers, "content-type")) || !hdr->value) {
279                 sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
280                 PKCS7err(PKCS7_F_SMIME_READ_PKCS7, PKCS7_R_NO_CONTENT_TYPE);
281                 return NULL;
282         }
283
284         /* Handle multipart/signed */
285
286         if(!strcmp(hdr->value, "multipart/signed")) {
287                 /* Split into two parts */
288                 prm = mime_param_find(hdr, "boundary");
289                 if(!prm || !prm->param_value) {
290                         sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
291                         PKCS7err(PKCS7_F_SMIME_READ_PKCS7, PKCS7_R_NO_MULTIPART_BOUNDARY);
292                         return NULL;
293                 }
294                 ret = multi_split(bio, prm->param_value, &parts);
295                 sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
296                 if(!ret || (sk_BIO_num(parts) != 2) ) {
297                         PKCS7err(PKCS7_F_SMIME_READ_PKCS7, PKCS7_R_NO_MULTIPART_BODY_FAILURE);
298                         sk_BIO_pop_free(parts, BIO_vfree);
299                         return NULL;
300                 }
301
302                 /* Parse the signature piece */
303                 p7in = sk_BIO_value(parts, 1);
304
305                 if (!(headers = mime_parse_hdr(p7in))) {
306                         PKCS7err(PKCS7_F_SMIME_READ_PKCS7,PKCS7_R_MIME_SIG_PARSE_ERROR);
307                         sk_BIO_pop_free(parts, BIO_vfree);
308                         return NULL;
309                 }
310
311                 /* Get content type */
312
313                 if(!(hdr = mime_hdr_find(headers, "content-type")) ||
314                                                                  !hdr->value) {
315                         sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
316                         PKCS7err(PKCS7_F_SMIME_READ_PKCS7, PKCS7_R_NO_SIG_CONTENT_TYPE);
317                         return NULL;
318                 }
319
320                 if(strcmp(hdr->value, "application/x-pkcs7-signature") &&
321                         strcmp(hdr->value, "application/pkcs7-signature")) {
322                         sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
323                         PKCS7err(PKCS7_F_SMIME_READ_PKCS7,PKCS7_R_SIG_INVALID_MIME_TYPE);
324                         ERR_add_error_data(2, "type: ", hdr->value);
325                         sk_BIO_pop_free(parts, BIO_vfree);
326                         return NULL;
327                 }
328                 sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
329                 /* Read in PKCS#7 */
330                 if(!(p7 = B64_read_PKCS7(p7in))) {
331                         PKCS7err(PKCS7_F_SMIME_READ_PKCS7,PKCS7_R_PKCS7_SIG_PARSE_ERROR);
332                         sk_BIO_pop_free(parts, BIO_vfree);
333                         return NULL;
334                 }
335
336                 if(bcont) {
337                         *bcont = sk_BIO_value(parts, 0);
338                         BIO_free(p7in);
339                         sk_BIO_free(parts);
340                 } else sk_BIO_pop_free(parts, BIO_vfree);
341                 return p7;
342         }
343                 
344         /* OK, if not multipart/signed try opaque signature */
345
346         if (strcmp (hdr->value, "application/x-pkcs7-mime") &&
347             strcmp (hdr->value, "application/pkcs7-mime")) {
348                 PKCS7err(PKCS7_F_SMIME_READ_PKCS7,PKCS7_R_INVALID_MIME_TYPE);
349                 ERR_add_error_data(2, "type: ", hdr->value);
350                 sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
351                 return NULL;
352         }
353
354         sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
355         
356         if(!(p7 = B64_read_PKCS7(bio))) {
357                 PKCS7err(PKCS7_F_SMIME_READ_PKCS7, PKCS7_R_PKCS7_PARSE_ERROR);
358                 return NULL;
359         }
360         return p7;
361
362 }
363
364 /* Copy text from one BIO to another making the output CRLF at EOL */
365 int SMIME_crlf_copy(BIO *in, BIO *out, int flags)
366 {
367         char eol;
368         int len;
369         char linebuf[MAX_SMLEN];
370         if(flags & PKCS7_BINARY) {
371                 while((len = BIO_read(in, linebuf, MAX_SMLEN)) > 0)
372                                                 BIO_write(out, linebuf, len);
373                 return 1;
374         }
375         if(flags & PKCS7_TEXT)
376                 BIO_printf(out, "Content-Type: text/plain\r\n\r\n");
377         while ((len = BIO_gets(in, linebuf, MAX_SMLEN)) > 0) {
378                 eol = strip_eol(linebuf, &len);
379                 if (len)
380                         BIO_write(out, linebuf, len);
381                 if(eol) BIO_write(out, "\r\n", 2);
382         }
383         return 1;
384 }
385
386 /* Strip off headers if they are text/plain */
387 int SMIME_text(BIO *in, BIO *out)
388 {
389         char iobuf[4096];
390         int len;
391         STACK_OF(MIME_HEADER) *headers;
392         MIME_HEADER *hdr;
393
394         if (!(headers = mime_parse_hdr(in))) {
395                 PKCS7err(PKCS7_F_SMIME_TEXT,PKCS7_R_MIME_PARSE_ERROR);
396                 return 0;
397         }
398         if(!(hdr = mime_hdr_find(headers, "content-type")) || !hdr->value) {
399                 PKCS7err(PKCS7_F_SMIME_TEXT,PKCS7_R_MIME_NO_CONTENT_TYPE);
400                 sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
401                 return 0;
402         }
403         if (strcmp (hdr->value, "text/plain")) {
404                 PKCS7err(PKCS7_F_SMIME_TEXT,PKCS7_R_INVALID_MIME_TYPE);
405                 ERR_add_error_data(2, "type: ", hdr->value);
406                 sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
407                 return 0;
408         }
409         sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
410         while ((len = BIO_read(in, iobuf, sizeof(iobuf))) > 0)
411                                                 BIO_write(out, iobuf, len);
412         return 1;
413 }
414
415 /* Split a multipart/XXX message body into component parts: result is
416  * canonical parts in a STACK of bios
417  */
418
419 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret)
420 {
421         char linebuf[MAX_SMLEN];
422         int len, blen;
423         int eol = 0, next_eol = 0;
424         BIO *bpart = NULL;
425         STACK_OF(BIO) *parts;
426         char state, part, first;
427
428         blen = strlen(bound);
429         part = 0;
430         state = 0;
431         first = 1;
432         parts = sk_BIO_new_null();
433         *ret = parts;
434         while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) {
435                 state = mime_bound_check(linebuf, len, bound, blen);
436                 if(state == 1) {
437                         first = 1;
438                         part++;
439                 } else if(state == 2) {
440                         sk_BIO_push(parts, bpart);
441                         return 1;
442                 } else if(part) {
443                         /* Strip CR+LF from linebuf */
444                         next_eol = strip_eol(linebuf, &len);
445                         if(first) {
446                                 first = 0;
447                                 if(bpart) sk_BIO_push(parts, bpart);
448                                 bpart = BIO_new(BIO_s_mem());
449                         } else if (eol)
450                                 BIO_write(bpart, "\r\n", 2);
451                         eol = next_eol;
452                         if (len)
453                                 BIO_write(bpart, linebuf, len);
454                 }
455         }
456         return 0;
457 }
458
459 /* This is the big one: parse MIME header lines up to message body */
460
461 #define MIME_INVALID    0
462 #define MIME_START      1
463 #define MIME_TYPE       2
464 #define MIME_NAME       3
465 #define MIME_VALUE      4
466 #define MIME_QUOTE      5
467 #define MIME_COMMENT    6
468
469
470 static STACK_OF(MIME_HEADER) *mime_parse_hdr(BIO *bio)
471 {
472         char *p, *q, c;
473         char *ntmp;
474         char linebuf[MAX_SMLEN];
475         MIME_HEADER *mhdr = NULL;
476         STACK_OF(MIME_HEADER) *headers;
477         int len, state, save_state = 0;
478
479         headers = sk_MIME_HEADER_new(mime_hdr_cmp);
480         while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) {
481         /* If whitespace at line start then continuation line */
482         if(mhdr && isspace((unsigned char)linebuf[0])) state = MIME_NAME;
483         else state = MIME_START;
484         ntmp = NULL;
485         /* Go through all characters */
486         for(p = linebuf, q = linebuf; (c = *p) && (c!='\r') && (c!='\n'); p++) {
487
488         /* State machine to handle MIME headers
489          * if this looks horrible that's because it *is*
490          */
491
492                 switch(state) {
493                         case MIME_START:
494                         if(c == ':') {
495                                 state = MIME_TYPE;
496                                 *p = 0;
497                                 ntmp = strip_ends(q);
498                                 q = p + 1;
499                         }
500                         break;
501
502                         case MIME_TYPE:
503                         if(c == ';') {
504                                 mime_debug("Found End Value\n");
505                                 *p = 0;
506                                 mhdr = mime_hdr_new(ntmp, strip_ends(q));
507                                 sk_MIME_HEADER_push(headers, mhdr);
508                                 ntmp = NULL;
509                                 q = p + 1;
510                                 state = MIME_NAME;
511                         } else if(c == '(') {
512                                 save_state = state;
513                                 state = MIME_COMMENT;
514                         }
515                         break;
516
517                         case MIME_COMMENT:
518                         if(c == ')') {
519                                 state = save_state;
520                         }
521                         break;
522
523                         case MIME_NAME:
524                         if(c == '=') {
525                                 state = MIME_VALUE;
526                                 *p = 0;
527                                 ntmp = strip_ends(q);
528                                 q = p + 1;
529                         }
530                         break ;
531
532                         case MIME_VALUE:
533                         if(c == ';') {
534                                 state = MIME_NAME;
535                                 *p = 0;
536                                 mime_hdr_addparam(mhdr, ntmp, strip_ends(q));
537                                 ntmp = NULL;
538                                 q = p + 1;
539                         } else if (c == '"') {
540                                 mime_debug("Found Quote\n");
541                                 state = MIME_QUOTE;
542                         } else if(c == '(') {
543                                 save_state = state;
544                                 state = MIME_COMMENT;
545                         }
546                         break;
547
548                         case MIME_QUOTE:
549                         if(c == '"') {
550                                 mime_debug("Found Match Quote\n");
551                                 state = MIME_VALUE;
552                         }
553                         break;
554                 }
555         }
556
557         if(state == MIME_TYPE) {
558                 mhdr = mime_hdr_new(ntmp, strip_ends(q));
559                 sk_MIME_HEADER_push(headers, mhdr);
560         } else if(state == MIME_VALUE)
561                          mime_hdr_addparam(mhdr, ntmp, strip_ends(q));
562         if(p == linebuf) break; /* Blank line means end of headers */
563 }
564
565 return headers;
566
567 }
568
569 static char *strip_ends(char *name)
570 {
571         return strip_end(strip_start(name));
572 }
573
574 /* Strip a parameter of whitespace from start of param */
575 static char *strip_start(char *name)
576 {
577         char *p, c;
578         /* Look for first non white space or quote */
579         for(p = name; (c = *p) ;p++) {
580                 if(c == '"') {
581                         /* Next char is start of string if non null */
582                         if(p[1]) return p + 1;
583                         /* Else null string */
584                         return NULL;
585                 }
586                 if(!isspace((unsigned char)c)) return p;
587         }
588         return NULL;
589 }
590
591 /* As above but strip from end of string : maybe should handle brackets? */
592 static char *strip_end(char *name)
593 {
594         char *p, c;
595         if(!name) return NULL;
596         /* Look for first non white space or quote */
597         for(p = name + strlen(name) - 1; p >= name ;p--) {
598                 c = *p;
599                 if(c == '"') {
600                         if(p - 1 == name) return NULL;
601                         *p = 0;
602                         return name;
603                 }
604                 if(isspace((unsigned char)c)) *p = 0;   
605                 else return name;
606         }
607         return NULL;
608 }
609
610 static MIME_HEADER *mime_hdr_new(char *name, char *value)
611 {
612         MIME_HEADER *mhdr;
613         char *tmpname, *tmpval, *p;
614         int c;
615         if(name) {
616                 if(!(tmpname = BUF_strdup(name))) return NULL;
617                 for(p = tmpname ; *p; p++) {
618                         c = *p;
619                         if(isupper(c)) {
620                                 c = tolower(c);
621                                 *p = c;
622                         }
623                 }
624         } else tmpname = NULL;
625         if(value) {
626                 if(!(tmpval = BUF_strdup(value))) return NULL;
627                 for(p = tmpval ; *p; p++) {
628                         c = *p;
629                         if(isupper(c)) {
630                                 c = tolower(c);
631                                 *p = c;
632                         }
633                 }
634         } else tmpval = NULL;
635         mhdr = (MIME_HEADER *) OPENSSL_malloc(sizeof(MIME_HEADER));
636         if(!mhdr) return NULL;
637         mhdr->name = tmpname;
638         mhdr->value = tmpval;
639         if(!(mhdr->params = sk_MIME_PARAM_new(mime_param_cmp))) return NULL;
640         return mhdr;
641 }
642                 
643 static int mime_hdr_addparam(MIME_HEADER *mhdr, char *name, char *value)
644 {
645         char *tmpname, *tmpval, *p;
646         int c;
647         MIME_PARAM *mparam;
648         if(name) {
649                 tmpname = BUF_strdup(name);
650                 if(!tmpname) return 0;
651                 for(p = tmpname ; *p; p++) {
652                         c = *p;
653                         if(isupper(c)) {
654                                 c = tolower(c);
655                                 *p = c;
656                         }
657                 }
658         } else tmpname = NULL;
659         if(value) {
660                 tmpval = BUF_strdup(value);
661                 if(!tmpval) return 0;
662         } else tmpval = NULL;
663         /* Parameter values are case sensitive so leave as is */
664         mparam = (MIME_PARAM *) OPENSSL_malloc(sizeof(MIME_PARAM));
665         if(!mparam) return 0;
666         mparam->param_name = tmpname;
667         mparam->param_value = tmpval;
668         sk_MIME_PARAM_push(mhdr->params, mparam);
669         return 1;
670 }
671
672 static int mime_hdr_cmp(const MIME_HEADER * const *a,
673                         const MIME_HEADER * const *b)
674 {
675         return(strcmp((*a)->name, (*b)->name));
676 }
677
678 static int mime_param_cmp(const MIME_PARAM * const *a,
679                         const MIME_PARAM * const *b)
680 {
681         return(strcmp((*a)->param_name, (*b)->param_name));
682 }
683
684 /* Find a header with a given name (if possible) */
685
686 static MIME_HEADER *mime_hdr_find(STACK_OF(MIME_HEADER) *hdrs, char *name)
687 {
688         MIME_HEADER htmp;
689         int idx;
690         htmp.name = name;
691         idx = sk_MIME_HEADER_find(hdrs, &htmp);
692         if(idx < 0) return NULL;
693         return sk_MIME_HEADER_value(hdrs, idx);
694 }
695
696 static MIME_PARAM *mime_param_find(MIME_HEADER *hdr, char *name)
697 {
698         MIME_PARAM param;
699         int idx;
700         param.param_name = name;
701         idx = sk_MIME_PARAM_find(hdr->params, &param);
702         if(idx < 0) return NULL;
703         return sk_MIME_PARAM_value(hdr->params, idx);
704 }
705
706 static void mime_hdr_free(MIME_HEADER *hdr)
707 {
708         if(hdr->name) OPENSSL_free(hdr->name);
709         if(hdr->value) OPENSSL_free(hdr->value);
710         if(hdr->params) sk_MIME_PARAM_pop_free(hdr->params, mime_param_free);
711         OPENSSL_free(hdr);
712 }
713
714 static void mime_param_free(MIME_PARAM *param)
715 {
716         if(param->param_name) OPENSSL_free(param->param_name);
717         if(param->param_value) OPENSSL_free(param->param_value);
718         OPENSSL_free(param);
719 }
720
721 /* Check for a multipart boundary. Returns:
722  * 0 : no boundary
723  * 1 : part boundary
724  * 2 : final boundary
725  */
726 static int mime_bound_check(char *line, int linelen, char *bound, int blen)
727 {
728         if(linelen == -1) linelen = strlen(line);
729         if(blen == -1) blen = strlen(bound);
730         /* Quickly eliminate if line length too short */
731         if(blen + 2 > linelen) return 0;
732         /* Check for part boundary */
733         if(!strncmp(line, "--", 2) && !strncmp(line + 2, bound, blen)) {
734                 if(!strncmp(line + blen + 2, "--", 2)) return 2;
735                 else return 1;
736         }
737         return 0;
738 }
739
740 static int strip_eol(char *linebuf, int *plen)
741         {
742         int len = *plen;
743         char *p, c;
744         int is_eol = 0;
745         p = linebuf + len - 1;
746         for (p = linebuf + len - 1; len > 0; len--, p--)
747                 {
748                 c = *p;
749                 if (c == '\n')
750                         is_eol = 1;
751                 else if (c != '\r')
752                         break;
753                 }
754         *plen = len;
755         return is_eol;
756         }