asn_mime.c 29 KB

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