asn_mime.c 28 KB

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