asn_mime.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963
  1. /*
  2. * Copyright 2008-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <stdio.h>
  10. #include "internal/ctype.h"
  11. #include "internal/cryptlib.h"
  12. #include <openssl/rand.h>
  13. #include <openssl/x509.h>
  14. #include <openssl/asn1.h>
  15. #include <openssl/asn1t.h>
  16. #include "internal/evp_int.h"
  17. #include "internal/bio.h"
  18. #include "asn1_locl.h"
  19. /*
  20. * Generalised MIME like utilities for streaming ASN1. Although many have a
  21. * PKCS7/CMS like flavour others are more general purpose.
  22. */
  23. /*
  24. * MIME format structures Note that all are translated to lower case apart
  25. * from parameter values. Quotes are stripped off
  26. */
  27. struct mime_param_st {
  28. char *param_name; /* Param name e.g. "micalg" */
  29. char *param_value; /* Param value e.g. "sha1" */
  30. };
  31. struct mime_header_st {
  32. char *name; /* Name of line e.g. "content-type" */
  33. char *value; /* Value of line e.g. "text/plain" */
  34. STACK_OF(MIME_PARAM) *params; /* Zero or more parameters */
  35. };
  36. static int asn1_output_data(BIO *out, BIO *data, ASN1_VALUE *val, int flags,
  37. const ASN1_ITEM *it);
  38. static char *strip_ends(char *name);
  39. static char *strip_start(char *name);
  40. static char *strip_end(char *name);
  41. static MIME_HEADER *mime_hdr_new(const char *name, const char *value);
  42. static int mime_hdr_addparam(MIME_HEADER *mhdr, const char *name, const char *value);
  43. static STACK_OF(MIME_HEADER) *mime_parse_hdr(BIO *bio);
  44. static int mime_hdr_cmp(const MIME_HEADER *const *a,
  45. const MIME_HEADER *const *b);
  46. static int mime_param_cmp(const MIME_PARAM *const *a,
  47. const MIME_PARAM *const *b);
  48. static void mime_param_free(MIME_PARAM *param);
  49. static int mime_bound_check(char *line, int linelen, const char *bound, int blen);
  50. static int multi_split(BIO *bio, const char *bound, STACK_OF(BIO) **ret);
  51. static int strip_eol(char *linebuf, int *plen, int flags);
  52. static MIME_HEADER *mime_hdr_find(STACK_OF(MIME_HEADER) *hdrs, const char *name);
  53. static MIME_PARAM *mime_param_find(MIME_HEADER *hdr, const char *name);
  54. static void mime_hdr_free(MIME_HEADER *hdr);
  55. #define MAX_SMLEN 1024
  56. #define mime_debug(x) /* x */
  57. /* Output an ASN1 structure in BER format streaming if necessary */
  58. int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
  59. const ASN1_ITEM *it)
  60. {
  61. /* If streaming create stream BIO and copy all content through it */
  62. if (flags & SMIME_STREAM) {
  63. BIO *bio, *tbio;
  64. bio = BIO_new_NDEF(out, val, it);
  65. if (!bio) {
  66. ASN1err(ASN1_F_I2D_ASN1_BIO_STREAM, ERR_R_MALLOC_FAILURE);
  67. return 0;
  68. }
  69. SMIME_crlf_copy(in, bio, flags);
  70. (void)BIO_flush(bio);
  71. /* Free up successive BIOs until we hit the old output BIO */
  72. do {
  73. tbio = BIO_pop(bio);
  74. BIO_free(bio);
  75. bio = tbio;
  76. } while (bio != out);
  77. }
  78. /*
  79. * else just write out ASN1 structure which will have all content stored
  80. * internally
  81. */
  82. else
  83. ASN1_item_i2d_bio(it, out, val);
  84. return 1;
  85. }
  86. /* Base 64 read and write of ASN1 structure */
  87. static int B64_write_ASN1(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
  88. const ASN1_ITEM *it)
  89. {
  90. BIO *b64;
  91. int r;
  92. b64 = BIO_new(BIO_f_base64());
  93. if (b64 == NULL) {
  94. ASN1err(ASN1_F_B64_WRITE_ASN1, ERR_R_MALLOC_FAILURE);
  95. return 0;
  96. }
  97. /*
  98. * prepend the b64 BIO so all data is base64 encoded.
  99. */
  100. out = BIO_push(b64, out);
  101. r = i2d_ASN1_bio_stream(out, val, in, flags, it);
  102. (void)BIO_flush(out);
  103. BIO_pop(out);
  104. BIO_free(b64);
  105. return r;
  106. }
  107. /* Streaming ASN1 PEM write */
  108. int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
  109. const char *hdr, const ASN1_ITEM *it)
  110. {
  111. int r;
  112. BIO_printf(out, "-----BEGIN %s-----\n", hdr);
  113. r = B64_write_ASN1(out, val, in, flags, it);
  114. BIO_printf(out, "-----END %s-----\n", hdr);
  115. return r;
  116. }
  117. static ASN1_VALUE *b64_read_asn1(BIO *bio, const ASN1_ITEM *it)
  118. {
  119. BIO *b64;
  120. ASN1_VALUE *val;
  121. if ((b64 = BIO_new(BIO_f_base64())) == NULL) {
  122. ASN1err(ASN1_F_B64_READ_ASN1, ERR_R_MALLOC_FAILURE);
  123. return 0;
  124. }
  125. bio = BIO_push(b64, bio);
  126. val = ASN1_item_d2i_bio(it, bio, NULL);
  127. if (!val)
  128. ASN1err(ASN1_F_B64_READ_ASN1, ASN1_R_DECODE_ERROR);
  129. (void)BIO_flush(bio);
  130. BIO_pop(bio);
  131. BIO_free(b64);
  132. return val;
  133. }
  134. /* Generate the MIME "micalg" parameter from RFC3851, RFC4490 */
  135. static int asn1_write_micalg(BIO *out, STACK_OF(X509_ALGOR) *mdalgs)
  136. {
  137. const EVP_MD *md;
  138. int i, have_unknown = 0, write_comma, ret = 0, md_nid;
  139. have_unknown = 0;
  140. write_comma = 0;
  141. for (i = 0; i < sk_X509_ALGOR_num(mdalgs); i++) {
  142. if (write_comma)
  143. BIO_write(out, ",", 1);
  144. write_comma = 1;
  145. md_nid = OBJ_obj2nid(sk_X509_ALGOR_value(mdalgs, i)->algorithm);
  146. md = EVP_get_digestbynid(md_nid);
  147. if (md && md->md_ctrl) {
  148. int rv;
  149. char *micstr;
  150. rv = md->md_ctrl(NULL, EVP_MD_CTRL_MICALG, 0, &micstr);
  151. if (rv > 0) {
  152. BIO_puts(out, micstr);
  153. OPENSSL_free(micstr);
  154. continue;
  155. }
  156. if (rv != -2)
  157. goto err;
  158. }
  159. switch (md_nid) {
  160. case NID_sha1:
  161. BIO_puts(out, "sha1");
  162. break;
  163. case NID_md5:
  164. BIO_puts(out, "md5");
  165. break;
  166. case NID_sha256:
  167. BIO_puts(out, "sha-256");
  168. break;
  169. case NID_sha384:
  170. BIO_puts(out, "sha-384");
  171. break;
  172. case NID_sha512:
  173. BIO_puts(out, "sha-512");
  174. break;
  175. case NID_id_GostR3411_94:
  176. BIO_puts(out, "gostr3411-94");
  177. goto err;
  178. default:
  179. if (have_unknown)
  180. write_comma = 0;
  181. else {
  182. BIO_puts(out, "unknown");
  183. have_unknown = 1;
  184. }
  185. break;
  186. }
  187. }
  188. ret = 1;
  189. err:
  190. return ret;
  191. }
  192. /* SMIME sender */
  193. int SMIME_write_ASN1(BIO *bio, ASN1_VALUE *val, BIO *data, int flags,
  194. int ctype_nid, int econt_nid,
  195. STACK_OF(X509_ALGOR) *mdalgs, const ASN1_ITEM *it)
  196. {
  197. char bound[33], c;
  198. int i;
  199. const char *mime_prefix, *mime_eol, *cname = "smime.p7m";
  200. const char *msg_type = NULL;
  201. if (flags & SMIME_OLDMIME)
  202. mime_prefix = "application/x-pkcs7-";
  203. else
  204. mime_prefix = "application/pkcs7-";
  205. if (flags & SMIME_CRLFEOL)
  206. mime_eol = "\r\n";
  207. else
  208. mime_eol = "\n";
  209. if ((flags & SMIME_DETACHED) && data) {
  210. /* We want multipart/signed */
  211. /* Generate a random boundary */
  212. if (RAND_bytes((unsigned char *)bound, 32) <= 0)
  213. return 0;
  214. for (i = 0; i < 32; i++) {
  215. c = bound[i] & 0xf;
  216. if (c < 10)
  217. c += '0';
  218. else
  219. c += 'A' - 10;
  220. bound[i] = c;
  221. }
  222. bound[32] = 0;
  223. BIO_printf(bio, "MIME-Version: 1.0%s", mime_eol);
  224. BIO_printf(bio, "Content-Type: multipart/signed;");
  225. BIO_printf(bio, " protocol=\"%ssignature\";", mime_prefix);
  226. BIO_puts(bio, " micalg=\"");
  227. asn1_write_micalg(bio, mdalgs);
  228. BIO_printf(bio, "\"; boundary=\"----%s\"%s%s",
  229. bound, mime_eol, mime_eol);
  230. BIO_printf(bio, "This is an S/MIME signed message%s%s",
  231. mime_eol, mime_eol);
  232. /* Now write out the first part */
  233. BIO_printf(bio, "------%s%s", bound, mime_eol);
  234. if (!asn1_output_data(bio, data, val, flags, it))
  235. return 0;
  236. BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol);
  237. /* Headers for signature */
  238. BIO_printf(bio, "Content-Type: %ssignature;", mime_prefix);
  239. BIO_printf(bio, " name=\"smime.p7s\"%s", mime_eol);
  240. BIO_printf(bio, "Content-Transfer-Encoding: base64%s", mime_eol);
  241. BIO_printf(bio, "Content-Disposition: attachment;");
  242. BIO_printf(bio, " filename=\"smime.p7s\"%s%s", mime_eol, mime_eol);
  243. B64_write_ASN1(bio, val, NULL, 0, it);
  244. BIO_printf(bio, "%s------%s--%s%s", mime_eol, bound,
  245. mime_eol, mime_eol);
  246. return 1;
  247. }
  248. /* Determine smime-type header */
  249. if (ctype_nid == NID_pkcs7_enveloped)
  250. msg_type = "enveloped-data";
  251. else if (ctype_nid == NID_pkcs7_signed) {
  252. if (econt_nid == NID_id_smime_ct_receipt)
  253. msg_type = "signed-receipt";
  254. else if (sk_X509_ALGOR_num(mdalgs) >= 0)
  255. msg_type = "signed-data";
  256. else
  257. msg_type = "certs-only";
  258. } else if (ctype_nid == NID_id_smime_ct_compressedData) {
  259. msg_type = "compressed-data";
  260. cname = "smime.p7z";
  261. }
  262. /* MIME headers */
  263. BIO_printf(bio, "MIME-Version: 1.0%s", mime_eol);
  264. BIO_printf(bio, "Content-Disposition: attachment;");
  265. BIO_printf(bio, " filename=\"%s\"%s", cname, mime_eol);
  266. BIO_printf(bio, "Content-Type: %smime;", mime_prefix);
  267. if (msg_type)
  268. BIO_printf(bio, " smime-type=%s;", msg_type);
  269. BIO_printf(bio, " name=\"%s\"%s", cname, mime_eol);
  270. BIO_printf(bio, "Content-Transfer-Encoding: base64%s%s",
  271. mime_eol, mime_eol);
  272. if (!B64_write_ASN1(bio, val, data, flags, it))
  273. return 0;
  274. BIO_printf(bio, "%s", mime_eol);
  275. return 1;
  276. }
  277. /* Handle output of ASN1 data */
  278. static int asn1_output_data(BIO *out, BIO *data, ASN1_VALUE *val, int flags,
  279. const ASN1_ITEM *it)
  280. {
  281. BIO *tmpbio;
  282. const ASN1_AUX *aux = it->funcs;
  283. ASN1_STREAM_ARG sarg;
  284. int rv = 1;
  285. /*
  286. * If data is not detached or resigning then the output BIO is already
  287. * set up to finalise when it is written through.
  288. */
  289. if (!(flags & SMIME_DETACHED) || (flags & PKCS7_REUSE_DIGEST)) {
  290. SMIME_crlf_copy(data, out, flags);
  291. return 1;
  292. }
  293. if (!aux || !aux->asn1_cb) {
  294. ASN1err(ASN1_F_ASN1_OUTPUT_DATA, ASN1_R_STREAMING_NOT_SUPPORTED);
  295. return 0;
  296. }
  297. sarg.out = out;
  298. sarg.ndef_bio = NULL;
  299. sarg.boundary = NULL;
  300. /* Let ASN1 code prepend any needed BIOs */
  301. if (aux->asn1_cb(ASN1_OP_DETACHED_PRE, &val, it, &sarg) <= 0)
  302. return 0;
  303. /* Copy data across, passing through filter BIOs for processing */
  304. SMIME_crlf_copy(data, sarg.ndef_bio, flags);
  305. /* Finalize structure */
  306. if (aux->asn1_cb(ASN1_OP_DETACHED_POST, &val, it, &sarg) <= 0)
  307. rv = 0;
  308. /* Now remove any digests prepended to the BIO */
  309. while (sarg.ndef_bio != out) {
  310. tmpbio = BIO_pop(sarg.ndef_bio);
  311. BIO_free(sarg.ndef_bio);
  312. sarg.ndef_bio = tmpbio;
  313. }
  314. return rv;
  315. }
  316. /*
  317. * SMIME reader: handle multipart/signed and opaque signing. in multipart
  318. * case the content is placed in a memory BIO pointed to by "bcont". In
  319. * opaque this is set to NULL
  320. */
  321. ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it)
  322. {
  323. BIO *asnin;
  324. STACK_OF(MIME_HEADER) *headers = NULL;
  325. STACK_OF(BIO) *parts = NULL;
  326. MIME_HEADER *hdr;
  327. MIME_PARAM *prm;
  328. ASN1_VALUE *val;
  329. int ret;
  330. if (bcont)
  331. *bcont = NULL;
  332. if ((headers = mime_parse_hdr(bio)) == NULL) {
  333. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_MIME_PARSE_ERROR);
  334. return NULL;
  335. }
  336. if ((hdr = mime_hdr_find(headers, "content-type")) == NULL
  337. || hdr->value == NULL) {
  338. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  339. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_NO_CONTENT_TYPE);
  340. return NULL;
  341. }
  342. /* Handle multipart/signed */
  343. if (strcmp(hdr->value, "multipart/signed") == 0) {
  344. /* Split into two parts */
  345. prm = mime_param_find(hdr, "boundary");
  346. if (!prm || !prm->param_value) {
  347. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  348. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_NO_MULTIPART_BOUNDARY);
  349. return NULL;
  350. }
  351. ret = multi_split(bio, prm->param_value, &parts);
  352. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  353. if (!ret || (sk_BIO_num(parts) != 2)) {
  354. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_NO_MULTIPART_BODY_FAILURE);
  355. sk_BIO_pop_free(parts, BIO_vfree);
  356. return NULL;
  357. }
  358. /* Parse the signature piece */
  359. asnin = sk_BIO_value(parts, 1);
  360. if ((headers = mime_parse_hdr(asnin)) == NULL) {
  361. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_MIME_SIG_PARSE_ERROR);
  362. sk_BIO_pop_free(parts, BIO_vfree);
  363. return NULL;
  364. }
  365. /* Get content type */
  366. if ((hdr = mime_hdr_find(headers, "content-type")) == NULL
  367. || hdr->value == NULL) {
  368. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  369. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_NO_SIG_CONTENT_TYPE);
  370. sk_BIO_pop_free(parts, BIO_vfree);
  371. return NULL;
  372. }
  373. if (strcmp(hdr->value, "application/x-pkcs7-signature") &&
  374. strcmp(hdr->value, "application/pkcs7-signature")) {
  375. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_SIG_INVALID_MIME_TYPE);
  376. ERR_add_error_data(2, "type: ", hdr->value);
  377. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  378. sk_BIO_pop_free(parts, BIO_vfree);
  379. return NULL;
  380. }
  381. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  382. /* Read in ASN1 */
  383. if ((val = b64_read_asn1(asnin, it)) == NULL) {
  384. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_ASN1_SIG_PARSE_ERROR);
  385. sk_BIO_pop_free(parts, BIO_vfree);
  386. return NULL;
  387. }
  388. if (bcont) {
  389. *bcont = sk_BIO_value(parts, 0);
  390. BIO_free(asnin);
  391. sk_BIO_free(parts);
  392. } else
  393. sk_BIO_pop_free(parts, BIO_vfree);
  394. return val;
  395. }
  396. /* OK, if not multipart/signed try opaque signature */
  397. if (strcmp(hdr->value, "application/x-pkcs7-mime") &&
  398. strcmp(hdr->value, "application/pkcs7-mime")) {
  399. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_INVALID_MIME_TYPE);
  400. ERR_add_error_data(2, "type: ", hdr->value);
  401. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  402. return NULL;
  403. }
  404. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  405. if ((val = b64_read_asn1(bio, it)) == NULL) {
  406. ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_ASN1_PARSE_ERROR);
  407. return NULL;
  408. }
  409. return val;
  410. }
  411. /* Copy text from one BIO to another making the output CRLF at EOL */
  412. int SMIME_crlf_copy(BIO *in, BIO *out, int flags)
  413. {
  414. BIO *bf;
  415. char eol;
  416. int len;
  417. char linebuf[MAX_SMLEN];
  418. /*
  419. * Buffer output so we don't write one line at a time. This is useful
  420. * when streaming as we don't end up with one OCTET STRING per line.
  421. */
  422. bf = BIO_new(BIO_f_buffer());
  423. if (bf == NULL)
  424. return 0;
  425. out = BIO_push(bf, out);
  426. if (flags & SMIME_BINARY) {
  427. while ((len = BIO_read(in, linebuf, MAX_SMLEN)) > 0)
  428. BIO_write(out, linebuf, len);
  429. } else {
  430. int eolcnt = 0;
  431. if (flags & SMIME_TEXT)
  432. BIO_printf(out, "Content-Type: text/plain\r\n\r\n");
  433. while ((len = BIO_gets(in, linebuf, MAX_SMLEN)) > 0) {
  434. eol = strip_eol(linebuf, &len, flags);
  435. if (len) {
  436. /* Not EOF: write out all CRLF */
  437. if (flags & SMIME_ASCIICRLF) {
  438. int i;
  439. for (i = 0; i < eolcnt; i++)
  440. BIO_write(out, "\r\n", 2);
  441. eolcnt = 0;
  442. }
  443. BIO_write(out, linebuf, len);
  444. if (eol)
  445. BIO_write(out, "\r\n", 2);
  446. } else if (flags & SMIME_ASCIICRLF)
  447. eolcnt++;
  448. else if (eol)
  449. BIO_write(out, "\r\n", 2);
  450. }
  451. }
  452. (void)BIO_flush(out);
  453. BIO_pop(out);
  454. BIO_free(bf);
  455. return 1;
  456. }
  457. /* Strip off headers if they are text/plain */
  458. int SMIME_text(BIO *in, BIO *out)
  459. {
  460. char iobuf[4096];
  461. int len;
  462. STACK_OF(MIME_HEADER) *headers;
  463. MIME_HEADER *hdr;
  464. if ((headers = mime_parse_hdr(in)) == NULL) {
  465. ASN1err(ASN1_F_SMIME_TEXT, ASN1_R_MIME_PARSE_ERROR);
  466. return 0;
  467. }
  468. if ((hdr = mime_hdr_find(headers, "content-type")) == NULL
  469. || hdr->value == NULL) {
  470. ASN1err(ASN1_F_SMIME_TEXT, ASN1_R_MIME_NO_CONTENT_TYPE);
  471. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  472. return 0;
  473. }
  474. if (strcmp(hdr->value, "text/plain")) {
  475. ASN1err(ASN1_F_SMIME_TEXT, ASN1_R_INVALID_MIME_TYPE);
  476. ERR_add_error_data(2, "type: ", hdr->value);
  477. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  478. return 0;
  479. }
  480. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  481. while ((len = BIO_read(in, iobuf, sizeof(iobuf))) > 0)
  482. BIO_write(out, iobuf, len);
  483. if (len < 0)
  484. return 0;
  485. return 1;
  486. }
  487. /*
  488. * Split a multipart/XXX message body into component parts: result is
  489. * canonical parts in a STACK of bios
  490. */
  491. static int multi_split(BIO *bio, const char *bound, STACK_OF(BIO) **ret)
  492. {
  493. char linebuf[MAX_SMLEN];
  494. int len, blen;
  495. int eol = 0, next_eol = 0;
  496. BIO *bpart = NULL;
  497. STACK_OF(BIO) *parts;
  498. char state, part, first;
  499. blen = strlen(bound);
  500. part = 0;
  501. state = 0;
  502. first = 1;
  503. parts = sk_BIO_new_null();
  504. *ret = parts;
  505. if (*ret == NULL)
  506. return 0;
  507. while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) {
  508. state = mime_bound_check(linebuf, len, bound, blen);
  509. if (state == 1) {
  510. first = 1;
  511. part++;
  512. } else if (state == 2) {
  513. if (!sk_BIO_push(parts, bpart)) {
  514. BIO_free(bpart);
  515. return 0;
  516. }
  517. return 1;
  518. } else if (part) {
  519. /* Strip CR+LF from linebuf */
  520. next_eol = strip_eol(linebuf, &len, 0);
  521. if (first) {
  522. first = 0;
  523. if (bpart)
  524. if (!sk_BIO_push(parts, bpart)) {
  525. BIO_free(bpart);
  526. return 0;
  527. }
  528. bpart = BIO_new(BIO_s_mem());
  529. if (bpart == NULL)
  530. return 0;
  531. BIO_set_mem_eof_return(bpart, 0);
  532. } else if (eol)
  533. BIO_write(bpart, "\r\n", 2);
  534. eol = next_eol;
  535. if (len)
  536. BIO_write(bpart, linebuf, len);
  537. }
  538. }
  539. BIO_free(bpart);
  540. return 0;
  541. }
  542. /* This is the big one: parse MIME header lines up to message body */
  543. #define MIME_INVALID 0
  544. #define MIME_START 1
  545. #define MIME_TYPE 2
  546. #define MIME_NAME 3
  547. #define MIME_VALUE 4
  548. #define MIME_QUOTE 5
  549. #define MIME_COMMENT 6
  550. static STACK_OF(MIME_HEADER) *mime_parse_hdr(BIO *bio)
  551. {
  552. char *p, *q, c;
  553. char *ntmp;
  554. char linebuf[MAX_SMLEN];
  555. MIME_HEADER *mhdr = NULL, *new_hdr = NULL;
  556. STACK_OF(MIME_HEADER) *headers;
  557. int len, state, save_state = 0;
  558. headers = sk_MIME_HEADER_new(mime_hdr_cmp);
  559. if (headers == NULL)
  560. return NULL;
  561. while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) {
  562. /* If whitespace at line start then continuation line */
  563. if (mhdr && ossl_isspace(linebuf[0]))
  564. state = MIME_NAME;
  565. else
  566. state = MIME_START;
  567. ntmp = NULL;
  568. /* Go through all characters */
  569. for (p = linebuf, q = linebuf; (c = *p) && (c != '\r') && (c != '\n');
  570. p++) {
  571. /*
  572. * State machine to handle MIME headers if this looks horrible
  573. * that's because it *is*
  574. */
  575. switch (state) {
  576. case MIME_START:
  577. if (c == ':') {
  578. state = MIME_TYPE;
  579. *p = 0;
  580. ntmp = strip_ends(q);
  581. q = p + 1;
  582. }
  583. break;
  584. case MIME_TYPE:
  585. if (c == ';') {
  586. mime_debug("Found End Value\n");
  587. *p = 0;
  588. new_hdr = mime_hdr_new(ntmp, strip_ends(q));
  589. if (new_hdr == NULL)
  590. goto err;
  591. if (!sk_MIME_HEADER_push(headers, new_hdr))
  592. goto err;
  593. mhdr = new_hdr;
  594. new_hdr = NULL;
  595. ntmp = NULL;
  596. q = p + 1;
  597. state = MIME_NAME;
  598. } else if (c == '(') {
  599. save_state = state;
  600. state = MIME_COMMENT;
  601. }
  602. break;
  603. case MIME_COMMENT:
  604. if (c == ')') {
  605. state = save_state;
  606. }
  607. break;
  608. case MIME_NAME:
  609. if (c == '=') {
  610. state = MIME_VALUE;
  611. *p = 0;
  612. ntmp = strip_ends(q);
  613. q = p + 1;
  614. }
  615. break;
  616. case MIME_VALUE:
  617. if (c == ';') {
  618. state = MIME_NAME;
  619. *p = 0;
  620. mime_hdr_addparam(mhdr, ntmp, strip_ends(q));
  621. ntmp = NULL;
  622. q = p + 1;
  623. } else if (c == '"') {
  624. mime_debug("Found Quote\n");
  625. state = MIME_QUOTE;
  626. } else if (c == '(') {
  627. save_state = state;
  628. state = MIME_COMMENT;
  629. }
  630. break;
  631. case MIME_QUOTE:
  632. if (c == '"') {
  633. mime_debug("Found Match Quote\n");
  634. state = MIME_VALUE;
  635. }
  636. break;
  637. }
  638. }
  639. if (state == MIME_TYPE) {
  640. new_hdr = mime_hdr_new(ntmp, strip_ends(q));
  641. if (new_hdr == NULL)
  642. goto err;
  643. if (!sk_MIME_HEADER_push(headers, new_hdr))
  644. goto err;
  645. mhdr = new_hdr;
  646. new_hdr = NULL;
  647. } else if (state == MIME_VALUE)
  648. mime_hdr_addparam(mhdr, ntmp, strip_ends(q));
  649. if (p == linebuf)
  650. break; /* Blank line means end of headers */
  651. }
  652. return headers;
  653. err:
  654. mime_hdr_free(new_hdr);
  655. sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
  656. return NULL;
  657. }
  658. static char *strip_ends(char *name)
  659. {
  660. return strip_end(strip_start(name));
  661. }
  662. /* Strip a parameter of whitespace from start of param */
  663. static char *strip_start(char *name)
  664. {
  665. char *p, c;
  666. /* Look for first non white space or quote */
  667. for (p = name; (c = *p); p++) {
  668. if (c == '"') {
  669. /* Next char is start of string if non null */
  670. if (p[1])
  671. return p + 1;
  672. /* Else null string */
  673. return NULL;
  674. }
  675. if (!ossl_isspace(c))
  676. return p;
  677. }
  678. return NULL;
  679. }
  680. /* As above but strip from end of string : maybe should handle brackets? */
  681. static char *strip_end(char *name)
  682. {
  683. char *p, c;
  684. if (!name)
  685. return NULL;
  686. /* Look for first non white space or quote */
  687. for (p = name + strlen(name) - 1; p >= name; p--) {
  688. c = *p;
  689. if (c == '"') {
  690. if (p - 1 == name)
  691. return NULL;
  692. *p = 0;
  693. return name;
  694. }
  695. if (ossl_isspace(c))
  696. *p = 0;
  697. else
  698. return name;
  699. }
  700. return NULL;
  701. }
  702. static MIME_HEADER *mime_hdr_new(const char *name, const char *value)
  703. {
  704. MIME_HEADER *mhdr = NULL;
  705. char *tmpname = NULL, *tmpval = NULL, *p;
  706. if (name) {
  707. if ((tmpname = OPENSSL_strdup(name)) == NULL)
  708. return NULL;
  709. for (p = tmpname; *p; p++)
  710. *p = ossl_tolower(*p);
  711. }
  712. if (value) {
  713. if ((tmpval = OPENSSL_strdup(value)) == NULL)
  714. goto err;
  715. for (p = tmpval; *p; p++)
  716. *p = ossl_tolower(*p);
  717. }
  718. mhdr = OPENSSL_malloc(sizeof(*mhdr));
  719. if (mhdr == NULL)
  720. goto err;
  721. mhdr->name = tmpname;
  722. mhdr->value = tmpval;
  723. if ((mhdr->params = sk_MIME_PARAM_new(mime_param_cmp)) == NULL)
  724. goto err;
  725. return mhdr;
  726. err:
  727. OPENSSL_free(tmpname);
  728. OPENSSL_free(tmpval);
  729. OPENSSL_free(mhdr);
  730. return NULL;
  731. }
  732. static int mime_hdr_addparam(MIME_HEADER *mhdr, const char *name, const char *value)
  733. {
  734. char *tmpname = NULL, *tmpval = NULL, *p;
  735. MIME_PARAM *mparam = NULL;
  736. if (name) {
  737. tmpname = OPENSSL_strdup(name);
  738. if (!tmpname)
  739. goto err;
  740. for (p = tmpname; *p; p++)
  741. *p = ossl_tolower(*p);
  742. }
  743. if (value) {
  744. tmpval = OPENSSL_strdup(value);
  745. if (!tmpval)
  746. goto err;
  747. }
  748. /* Parameter values are case sensitive so leave as is */
  749. mparam = OPENSSL_malloc(sizeof(*mparam));
  750. if (mparam == NULL)
  751. goto err;
  752. mparam->param_name = tmpname;
  753. mparam->param_value = tmpval;
  754. if (!sk_MIME_PARAM_push(mhdr->params, mparam))
  755. goto err;
  756. return 1;
  757. err:
  758. OPENSSL_free(tmpname);
  759. OPENSSL_free(tmpval);
  760. OPENSSL_free(mparam);
  761. return 0;
  762. }
  763. static int mime_hdr_cmp(const MIME_HEADER *const *a,
  764. const MIME_HEADER *const *b)
  765. {
  766. if (!(*a)->name || !(*b)->name)
  767. return ! !(*a)->name - ! !(*b)->name;
  768. return strcmp((*a)->name, (*b)->name);
  769. }
  770. static int mime_param_cmp(const MIME_PARAM *const *a,
  771. const MIME_PARAM *const *b)
  772. {
  773. if (!(*a)->param_name || !(*b)->param_name)
  774. return ! !(*a)->param_name - ! !(*b)->param_name;
  775. return strcmp((*a)->param_name, (*b)->param_name);
  776. }
  777. /* Find a header with a given name (if possible) */
  778. static MIME_HEADER *mime_hdr_find(STACK_OF(MIME_HEADER) *hdrs, const char *name)
  779. {
  780. MIME_HEADER htmp;
  781. int idx;
  782. htmp.name = (char *)name;
  783. htmp.value = NULL;
  784. htmp.params = NULL;
  785. idx = sk_MIME_HEADER_find(hdrs, &htmp);
  786. return sk_MIME_HEADER_value(hdrs, idx);
  787. }
  788. static MIME_PARAM *mime_param_find(MIME_HEADER *hdr, const char *name)
  789. {
  790. MIME_PARAM param;
  791. int idx;
  792. param.param_name = (char *)name;
  793. param.param_value = NULL;
  794. idx = sk_MIME_PARAM_find(hdr->params, &param);
  795. return sk_MIME_PARAM_value(hdr->params, idx);
  796. }
  797. static void mime_hdr_free(MIME_HEADER *hdr)
  798. {
  799. if (hdr == NULL)
  800. return;
  801. OPENSSL_free(hdr->name);
  802. OPENSSL_free(hdr->value);
  803. if (hdr->params)
  804. sk_MIME_PARAM_pop_free(hdr->params, mime_param_free);
  805. OPENSSL_free(hdr);
  806. }
  807. static void mime_param_free(MIME_PARAM *param)
  808. {
  809. OPENSSL_free(param->param_name);
  810. OPENSSL_free(param->param_value);
  811. OPENSSL_free(param);
  812. }
  813. /*-
  814. * Check for a multipart boundary. Returns:
  815. * 0 : no boundary
  816. * 1 : part boundary
  817. * 2 : final boundary
  818. */
  819. static int mime_bound_check(char *line, int linelen, const char *bound, int blen)
  820. {
  821. if (linelen == -1)
  822. linelen = strlen(line);
  823. if (blen == -1)
  824. blen = strlen(bound);
  825. /* Quickly eliminate if line length too short */
  826. if (blen + 2 > linelen)
  827. return 0;
  828. /* Check for part boundary */
  829. if ((strncmp(line, "--", 2) == 0)
  830. && strncmp(line + 2, bound, blen) == 0) {
  831. if (strncmp(line + blen + 2, "--", 2) == 0)
  832. return 2;
  833. else
  834. return 1;
  835. }
  836. return 0;
  837. }
  838. static int strip_eol(char *linebuf, int *plen, int flags)
  839. {
  840. int len = *plen;
  841. char *p, c;
  842. int is_eol = 0;
  843. for (p = linebuf + len - 1; len > 0; len--, p--) {
  844. c = *p;
  845. if (c == '\n') {
  846. is_eol = 1;
  847. } else if (is_eol && flags & SMIME_ASCIICRLF && c == 32) {
  848. /* Strip trailing space on a line; 32 == ASCII for ' ' */
  849. continue;
  850. } else if (c != '\r') {
  851. break;
  852. }
  853. }
  854. *plen = len;
  855. return is_eol;
  856. }