asn_mime.c 28 KB

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