cms_ess.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  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 "internal/cryptlib.h"
  10. #include <openssl/asn1t.h>
  11. #include <openssl/pem.h>
  12. #include <openssl/rand.h>
  13. #include <openssl/x509v3.h>
  14. #include <openssl/err.h>
  15. #include <openssl/cms.h>
  16. #include <openssl/ess.h>
  17. #include "crypto/ess.h"
  18. #include "crypto/cms.h"
  19. #include "crypto/x509.h"
  20. #include "cms_local.h"
  21. IMPLEMENT_ASN1_FUNCTIONS(CMS_ReceiptRequest)
  22. /* ESS services */
  23. int CMS_get1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest **prr)
  24. {
  25. ASN1_STRING *str;
  26. CMS_ReceiptRequest *rr;
  27. ASN1_OBJECT *obj = OBJ_nid2obj(NID_id_smime_aa_receiptRequest);
  28. if (prr != NULL)
  29. *prr = NULL;
  30. str = CMS_signed_get0_data_by_OBJ(si, obj, -3, V_ASN1_SEQUENCE);
  31. if (str == NULL)
  32. return 0;
  33. rr = ASN1_item_unpack(str, ASN1_ITEM_rptr(CMS_ReceiptRequest));
  34. if (rr == NULL)
  35. return -1;
  36. if (prr != NULL)
  37. *prr = rr;
  38. else
  39. CMS_ReceiptRequest_free(rr);
  40. return 1;
  41. }
  42. /*
  43. First, get the ESS_SIGNING_CERT(V2) signed attribute from |si|.
  44. Then check matching of each cert of trust |chain| with one of
  45. the |cert_ids|(Hash+IssuerID) list from this ESS_SIGNING_CERT.
  46. Derived from ts_check_signing_certs()
  47. */
  48. int ess_check_signing_certs(CMS_SignerInfo *si, STACK_OF(X509) *chain)
  49. {
  50. ESS_SIGNING_CERT *ss = NULL;
  51. ESS_SIGNING_CERT_V2 *ssv2 = NULL;
  52. X509 *cert;
  53. int i = 0, ret = 0;
  54. if (cms_signerinfo_get_signing_cert(si, &ss) > 0 && ss->cert_ids != NULL) {
  55. STACK_OF(ESS_CERT_ID) *cert_ids = ss->cert_ids;
  56. cert = sk_X509_value(chain, 0);
  57. if (ess_find_cert(cert_ids, cert) != 0)
  58. goto err;
  59. /*
  60. * Check the other certificates of the chain.
  61. * Fail if no signing certificate ids found for each certificate.
  62. */
  63. if (sk_ESS_CERT_ID_num(cert_ids) > 1) {
  64. /* for each chain cert, try to find its cert id */
  65. for (i = 1; i < sk_X509_num(chain); ++i) {
  66. cert = sk_X509_value(chain, i);
  67. if (ess_find_cert(cert_ids, cert) < 0)
  68. goto err;
  69. }
  70. }
  71. } else if (cms_signerinfo_get_signing_cert_v2(si, &ssv2) > 0
  72. && ssv2->cert_ids!= NULL) {
  73. STACK_OF(ESS_CERT_ID_V2) *cert_ids_v2 = ssv2->cert_ids;
  74. cert = sk_X509_value(chain, 0);
  75. if (ess_find_cert_v2(cert_ids_v2, cert) != 0)
  76. goto err;
  77. /*
  78. * Check the other certificates of the chain.
  79. * Fail if no signing certificate ids found for each certificate.
  80. */
  81. if (sk_ESS_CERT_ID_V2_num(cert_ids_v2) > 1) {
  82. /* for each chain cert, try to find its cert id */
  83. for (i = 1; i < sk_X509_num(chain); ++i) {
  84. cert = sk_X509_value(chain, i);
  85. if (ess_find_cert_v2(cert_ids_v2, cert) < 0)
  86. goto err;
  87. }
  88. }
  89. } else {
  90. CMSerr(CMS_F_ESS_CHECK_SIGNING_CERTS,
  91. CMS_R_ESS_NO_SIGNING_CERTID_ATTRIBUTE);
  92. return 0;
  93. }
  94. ret = 1;
  95. err:
  96. if (!ret)
  97. CMSerr(CMS_F_ESS_CHECK_SIGNING_CERTS,
  98. CMS_R_ESS_SIGNING_CERTID_MISMATCH_ERROR);
  99. ESS_SIGNING_CERT_free(ss);
  100. ESS_SIGNING_CERT_V2_free(ssv2);
  101. return ret;
  102. }
  103. CMS_ReceiptRequest *CMS_ReceiptRequest_create0_ex(
  104. unsigned char *id, int idlen, int allorfirst,
  105. STACK_OF(GENERAL_NAMES) *receiptList, STACK_OF(GENERAL_NAMES) *receiptsTo,
  106. OSSL_LIB_CTX *libctx, const char *propq)
  107. {
  108. CMS_ReceiptRequest *rr;
  109. rr = CMS_ReceiptRequest_new();
  110. if (rr == NULL)
  111. goto merr;
  112. if (id)
  113. ASN1_STRING_set0(rr->signedContentIdentifier, id, idlen);
  114. else {
  115. if (!ASN1_STRING_set(rr->signedContentIdentifier, NULL, 32))
  116. goto merr;
  117. if (RAND_bytes_ex(libctx, rr->signedContentIdentifier->data, 32) <= 0)
  118. goto err;
  119. }
  120. sk_GENERAL_NAMES_pop_free(rr->receiptsTo, GENERAL_NAMES_free);
  121. rr->receiptsTo = receiptsTo;
  122. if (receiptList != NULL) {
  123. rr->receiptsFrom->type = 1;
  124. rr->receiptsFrom->d.receiptList = receiptList;
  125. } else {
  126. rr->receiptsFrom->type = 0;
  127. rr->receiptsFrom->d.allOrFirstTier = allorfirst;
  128. }
  129. return rr;
  130. merr:
  131. CMSerr(0, ERR_R_MALLOC_FAILURE);
  132. err:
  133. CMS_ReceiptRequest_free(rr);
  134. return NULL;
  135. }
  136. CMS_ReceiptRequest *CMS_ReceiptRequest_create0(
  137. unsigned char *id, int idlen, int allorfirst,
  138. STACK_OF(GENERAL_NAMES) *receiptList, STACK_OF(GENERAL_NAMES) *receiptsTo)
  139. {
  140. return CMS_ReceiptRequest_create0_ex(id, idlen, allorfirst, receiptList,
  141. receiptsTo, NULL, NULL);
  142. }
  143. int CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr)
  144. {
  145. unsigned char *rrder = NULL;
  146. int rrderlen, r = 0;
  147. rrderlen = i2d_CMS_ReceiptRequest(rr, &rrder);
  148. if (rrderlen < 0)
  149. goto merr;
  150. if (!CMS_signed_add1_attr_by_NID(si, NID_id_smime_aa_receiptRequest,
  151. V_ASN1_SEQUENCE, rrder, rrderlen))
  152. goto merr;
  153. r = 1;
  154. merr:
  155. if (!r)
  156. CMSerr(CMS_F_CMS_ADD1_RECEIPTREQUEST, ERR_R_MALLOC_FAILURE);
  157. OPENSSL_free(rrder);
  158. return r;
  159. }
  160. void CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr,
  161. ASN1_STRING **pcid,
  162. int *pallorfirst,
  163. STACK_OF(GENERAL_NAMES) **plist,
  164. STACK_OF(GENERAL_NAMES) **prto)
  165. {
  166. if (pcid != NULL)
  167. *pcid = rr->signedContentIdentifier;
  168. if (rr->receiptsFrom->type == 0) {
  169. if (pallorfirst != NULL)
  170. *pallorfirst = (int)rr->receiptsFrom->d.allOrFirstTier;
  171. if (plist != NULL)
  172. *plist = NULL;
  173. } else {
  174. if (pallorfirst != NULL)
  175. *pallorfirst = -1;
  176. if (plist != NULL)
  177. *plist = rr->receiptsFrom->d.receiptList;
  178. }
  179. if (prto != NULL)
  180. *prto = rr->receiptsTo;
  181. }
  182. /* Digest a SignerInfo structure for msgSigDigest attribute processing */
  183. static int cms_msgSigDigest(CMS_SignerInfo *si,
  184. unsigned char *dig, unsigned int *diglen)
  185. {
  186. const EVP_MD *md = EVP_get_digestbyobj(si->digestAlgorithm->algorithm);
  187. if (md == NULL)
  188. return 0;
  189. if (!asn1_item_digest_ex(ASN1_ITEM_rptr(CMS_Attributes_Verify), md,
  190. si->signedAttrs, dig, diglen, si->cms_ctx->libctx,
  191. si->cms_ctx->propq))
  192. return 0;
  193. return 1;
  194. }
  195. /* Add a msgSigDigest attribute to a SignerInfo */
  196. int cms_msgSigDigest_add1(CMS_SignerInfo *dest, CMS_SignerInfo *src)
  197. {
  198. unsigned char dig[EVP_MAX_MD_SIZE];
  199. unsigned int diglen;
  200. if (!cms_msgSigDigest(src, dig, &diglen)) {
  201. CMSerr(CMS_F_CMS_MSGSIGDIGEST_ADD1, CMS_R_MSGSIGDIGEST_ERROR);
  202. return 0;
  203. }
  204. if (!CMS_signed_add1_attr_by_NID(dest, NID_id_smime_aa_msgSigDigest,
  205. V_ASN1_OCTET_STRING, dig, diglen)) {
  206. CMSerr(CMS_F_CMS_MSGSIGDIGEST_ADD1, ERR_R_MALLOC_FAILURE);
  207. return 0;
  208. }
  209. return 1;
  210. }
  211. /* Verify signed receipt after it has already passed normal CMS verify */
  212. int cms_Receipt_verify(CMS_ContentInfo *cms, CMS_ContentInfo *req_cms)
  213. {
  214. int r = 0, i;
  215. CMS_ReceiptRequest *rr = NULL;
  216. CMS_Receipt *rct = NULL;
  217. STACK_OF(CMS_SignerInfo) *sis, *osis;
  218. CMS_SignerInfo *si, *osi = NULL;
  219. ASN1_OCTET_STRING *msig, **pcont;
  220. ASN1_OBJECT *octype;
  221. unsigned char dig[EVP_MAX_MD_SIZE];
  222. unsigned int diglen;
  223. /* Get SignerInfos, also checks SignedData content type */
  224. osis = CMS_get0_SignerInfos(req_cms);
  225. sis = CMS_get0_SignerInfos(cms);
  226. if (!osis || !sis)
  227. goto err;
  228. if (sk_CMS_SignerInfo_num(sis) != 1) {
  229. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_NEED_ONE_SIGNER);
  230. goto err;
  231. }
  232. /* Check receipt content type */
  233. if (OBJ_obj2nid(CMS_get0_eContentType(cms)) != NID_id_smime_ct_receipt) {
  234. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_NOT_A_SIGNED_RECEIPT);
  235. goto err;
  236. }
  237. /* Extract and decode receipt content */
  238. pcont = CMS_get0_content(cms);
  239. if (pcont == NULL || *pcont == NULL) {
  240. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_NO_CONTENT);
  241. goto err;
  242. }
  243. rct = ASN1_item_unpack(*pcont, ASN1_ITEM_rptr(CMS_Receipt));
  244. if (!rct) {
  245. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_RECEIPT_DECODE_ERROR);
  246. goto err;
  247. }
  248. /* Locate original request */
  249. for (i = 0; i < sk_CMS_SignerInfo_num(osis); i++) {
  250. osi = sk_CMS_SignerInfo_value(osis, i);
  251. if (!ASN1_STRING_cmp(osi->signature, rct->originatorSignatureValue))
  252. break;
  253. }
  254. if (i == sk_CMS_SignerInfo_num(osis)) {
  255. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_NO_MATCHING_SIGNATURE);
  256. goto err;
  257. }
  258. si = sk_CMS_SignerInfo_value(sis, 0);
  259. /* Get msgSigDigest value and compare */
  260. msig = CMS_signed_get0_data_by_OBJ(si,
  261. OBJ_nid2obj
  262. (NID_id_smime_aa_msgSigDigest), -3,
  263. V_ASN1_OCTET_STRING);
  264. if (!msig) {
  265. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_NO_MSGSIGDIGEST);
  266. goto err;
  267. }
  268. if (!cms_msgSigDigest(osi, dig, &diglen)) {
  269. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_MSGSIGDIGEST_ERROR);
  270. goto err;
  271. }
  272. if (diglen != (unsigned int)msig->length) {
  273. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_MSGSIGDIGEST_WRONG_LENGTH);
  274. goto err;
  275. }
  276. if (memcmp(dig, msig->data, diglen)) {
  277. CMSerr(CMS_F_CMS_RECEIPT_VERIFY,
  278. CMS_R_MSGSIGDIGEST_VERIFICATION_FAILURE);
  279. goto err;
  280. }
  281. /* Compare content types */
  282. octype = CMS_signed_get0_data_by_OBJ(osi,
  283. OBJ_nid2obj(NID_pkcs9_contentType),
  284. -3, V_ASN1_OBJECT);
  285. if (!octype) {
  286. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_NO_CONTENT_TYPE);
  287. goto err;
  288. }
  289. /* Compare details in receipt request */
  290. if (OBJ_cmp(octype, rct->contentType)) {
  291. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_CONTENT_TYPE_MISMATCH);
  292. goto err;
  293. }
  294. /* Get original receipt request details */
  295. if (CMS_get1_ReceiptRequest(osi, &rr) <= 0) {
  296. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_NO_RECEIPT_REQUEST);
  297. goto err;
  298. }
  299. if (ASN1_STRING_cmp(rr->signedContentIdentifier,
  300. rct->signedContentIdentifier)) {
  301. CMSerr(CMS_F_CMS_RECEIPT_VERIFY, CMS_R_CONTENTIDENTIFIER_MISMATCH);
  302. goto err;
  303. }
  304. r = 1;
  305. err:
  306. CMS_ReceiptRequest_free(rr);
  307. M_ASN1_free_of(rct, CMS_Receipt);
  308. return r;
  309. }
  310. /*
  311. * Encode a Receipt into an OCTET STRING read for including into content of a
  312. * SignedData ContentInfo.
  313. */
  314. ASN1_OCTET_STRING *cms_encode_Receipt(CMS_SignerInfo *si)
  315. {
  316. CMS_Receipt rct;
  317. CMS_ReceiptRequest *rr = NULL;
  318. ASN1_OBJECT *ctype;
  319. ASN1_OCTET_STRING *os = NULL;
  320. /* Get original receipt request */
  321. /* Get original receipt request details */
  322. if (CMS_get1_ReceiptRequest(si, &rr) <= 0) {
  323. CMSerr(CMS_F_CMS_ENCODE_RECEIPT, CMS_R_NO_RECEIPT_REQUEST);
  324. goto err;
  325. }
  326. /* Get original content type */
  327. ctype = CMS_signed_get0_data_by_OBJ(si,
  328. OBJ_nid2obj(NID_pkcs9_contentType),
  329. -3, V_ASN1_OBJECT);
  330. if (!ctype) {
  331. CMSerr(CMS_F_CMS_ENCODE_RECEIPT, CMS_R_NO_CONTENT_TYPE);
  332. goto err;
  333. }
  334. rct.version = 1;
  335. rct.contentType = ctype;
  336. rct.signedContentIdentifier = rr->signedContentIdentifier;
  337. rct.originatorSignatureValue = si->signature;
  338. os = ASN1_item_pack(&rct, ASN1_ITEM_rptr(CMS_Receipt), NULL);
  339. err:
  340. CMS_ReceiptRequest_free(rr);
  341. return os;
  342. }
  343. /*
  344. * Add signer certificate's V2 digest |sc| to a SignerInfo structure |si|
  345. */
  346. int cms_add1_signing_cert_v2(CMS_SignerInfo *si, ESS_SIGNING_CERT_V2 *sc)
  347. {
  348. ASN1_STRING *seq = NULL;
  349. unsigned char *p, *pp = NULL;
  350. int len;
  351. /* Add SigningCertificateV2 signed attribute to the signer info. */
  352. len = i2d_ESS_SIGNING_CERT_V2(sc, NULL);
  353. if (len <= 0 || (pp = OPENSSL_malloc(len)) == NULL)
  354. goto err;
  355. p = pp;
  356. i2d_ESS_SIGNING_CERT_V2(sc, &p);
  357. if (!(seq = ASN1_STRING_new()) || !ASN1_STRING_set(seq, pp, len))
  358. goto err;
  359. OPENSSL_free(pp);
  360. pp = NULL;
  361. if (!CMS_signed_add1_attr_by_NID(si, NID_id_smime_aa_signingCertificateV2,
  362. V_ASN1_SEQUENCE, seq, -1))
  363. goto err;
  364. ASN1_STRING_free(seq);
  365. return 1;
  366. err:
  367. CMSerr(CMS_F_CMS_ADD1_SIGNING_CERT_V2, ERR_R_MALLOC_FAILURE);
  368. ASN1_STRING_free(seq);
  369. OPENSSL_free(pp);
  370. return 0;
  371. }
  372. /*
  373. * Add signer certificate's digest |sc| to a SignerInfo structure |si|
  374. */
  375. int cms_add1_signing_cert(CMS_SignerInfo *si, ESS_SIGNING_CERT *sc)
  376. {
  377. ASN1_STRING *seq = NULL;
  378. unsigned char *p, *pp = NULL;
  379. int len;
  380. /* Add SigningCertificate signed attribute to the signer info. */
  381. len = i2d_ESS_SIGNING_CERT(sc, NULL);
  382. if (len <= 0 || (pp = OPENSSL_malloc(len)) == NULL)
  383. goto err;
  384. p = pp;
  385. i2d_ESS_SIGNING_CERT(sc, &p);
  386. if (!(seq = ASN1_STRING_new()) || !ASN1_STRING_set(seq, pp, len))
  387. goto err;
  388. OPENSSL_free(pp);
  389. pp = NULL;
  390. if (!CMS_signed_add1_attr_by_NID(si, NID_id_smime_aa_signingCertificate,
  391. V_ASN1_SEQUENCE, seq, -1))
  392. goto err;
  393. ASN1_STRING_free(seq);
  394. return 1;
  395. err:
  396. CMSerr(CMS_F_CMS_ADD1_SIGNING_CERT, ERR_R_MALLOC_FAILURE);
  397. ASN1_STRING_free(seq);
  398. OPENSSL_free(pp);
  399. return 0;
  400. }