cms_ess.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. /*
  2. * Copyright 2008-2021 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. ERR_raise(ERR_LIB_CMS, CMS_R_ESS_NO_SIGNING_CERTID_ATTRIBUTE);
  91. return 0;
  92. }
  93. ret = 1;
  94. err:
  95. if (!ret)
  96. ERR_raise(ERR_LIB_CMS, CMS_R_ESS_SIGNING_CERTID_MISMATCH_ERROR);
  97. ESS_SIGNING_CERT_free(ss);
  98. ESS_SIGNING_CERT_V2_free(ssv2);
  99. return ret;
  100. }
  101. CMS_ReceiptRequest *CMS_ReceiptRequest_create0_ex(
  102. unsigned char *id, int idlen, int allorfirst,
  103. STACK_OF(GENERAL_NAMES) *receiptList, STACK_OF(GENERAL_NAMES) *receiptsTo,
  104. OSSL_LIB_CTX *libctx, const char *propq)
  105. {
  106. CMS_ReceiptRequest *rr;
  107. rr = CMS_ReceiptRequest_new();
  108. if (rr == NULL)
  109. goto merr;
  110. if (id)
  111. ASN1_STRING_set0(rr->signedContentIdentifier, id, idlen);
  112. else {
  113. if (!ASN1_STRING_set(rr->signedContentIdentifier, NULL, 32))
  114. goto merr;
  115. if (RAND_bytes_ex(libctx, rr->signedContentIdentifier->data, 32) <= 0)
  116. goto err;
  117. }
  118. sk_GENERAL_NAMES_pop_free(rr->receiptsTo, GENERAL_NAMES_free);
  119. rr->receiptsTo = receiptsTo;
  120. if (receiptList != NULL) {
  121. rr->receiptsFrom->type = 1;
  122. rr->receiptsFrom->d.receiptList = receiptList;
  123. } else {
  124. rr->receiptsFrom->type = 0;
  125. rr->receiptsFrom->d.allOrFirstTier = allorfirst;
  126. }
  127. return rr;
  128. merr:
  129. ERR_raise(ERR_LIB_CMS, ERR_R_MALLOC_FAILURE);
  130. err:
  131. CMS_ReceiptRequest_free(rr);
  132. return NULL;
  133. }
  134. CMS_ReceiptRequest *CMS_ReceiptRequest_create0(
  135. unsigned char *id, int idlen, int allorfirst,
  136. STACK_OF(GENERAL_NAMES) *receiptList, STACK_OF(GENERAL_NAMES) *receiptsTo)
  137. {
  138. return CMS_ReceiptRequest_create0_ex(id, idlen, allorfirst, receiptList,
  139. receiptsTo, NULL, NULL);
  140. }
  141. int CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr)
  142. {
  143. unsigned char *rrder = NULL;
  144. int rrderlen, r = 0;
  145. rrderlen = i2d_CMS_ReceiptRequest(rr, &rrder);
  146. if (rrderlen < 0)
  147. goto merr;
  148. if (!CMS_signed_add1_attr_by_NID(si, NID_id_smime_aa_receiptRequest,
  149. V_ASN1_SEQUENCE, rrder, rrderlen))
  150. goto merr;
  151. r = 1;
  152. merr:
  153. if (!r)
  154. ERR_raise(ERR_LIB_CMS, ERR_R_MALLOC_FAILURE);
  155. OPENSSL_free(rrder);
  156. return r;
  157. }
  158. void CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr,
  159. ASN1_STRING **pcid,
  160. int *pallorfirst,
  161. STACK_OF(GENERAL_NAMES) **plist,
  162. STACK_OF(GENERAL_NAMES) **prto)
  163. {
  164. if (pcid != NULL)
  165. *pcid = rr->signedContentIdentifier;
  166. if (rr->receiptsFrom->type == 0) {
  167. if (pallorfirst != NULL)
  168. *pallorfirst = (int)rr->receiptsFrom->d.allOrFirstTier;
  169. if (plist != NULL)
  170. *plist = NULL;
  171. } else {
  172. if (pallorfirst != NULL)
  173. *pallorfirst = -1;
  174. if (plist != NULL)
  175. *plist = rr->receiptsFrom->d.receiptList;
  176. }
  177. if (prto != NULL)
  178. *prto = rr->receiptsTo;
  179. }
  180. /* Digest a SignerInfo structure for msgSigDigest attribute processing */
  181. static int cms_msgSigDigest(CMS_SignerInfo *si,
  182. unsigned char *dig, unsigned int *diglen)
  183. {
  184. const EVP_MD *md = EVP_get_digestbyobj(si->digestAlgorithm->algorithm);
  185. if (md == NULL)
  186. return 0;
  187. if (!asn1_item_digest_ex(ASN1_ITEM_rptr(CMS_Attributes_Verify), md,
  188. si->signedAttrs, dig, diglen,
  189. cms_ctx_get0_libctx(si->cms_ctx),
  190. cms_ctx_get0_propq(si->cms_ctx)))
  191. return 0;
  192. return 1;
  193. }
  194. /* Add a msgSigDigest attribute to a SignerInfo */
  195. int cms_msgSigDigest_add1(CMS_SignerInfo *dest, CMS_SignerInfo *src)
  196. {
  197. unsigned char dig[EVP_MAX_MD_SIZE];
  198. unsigned int diglen;
  199. if (!cms_msgSigDigest(src, dig, &diglen)) {
  200. ERR_raise(ERR_LIB_CMS, CMS_R_MSGSIGDIGEST_ERROR);
  201. return 0;
  202. }
  203. if (!CMS_signed_add1_attr_by_NID(dest, NID_id_smime_aa_msgSigDigest,
  204. V_ASN1_OCTET_STRING, dig, diglen)) {
  205. ERR_raise(ERR_LIB_CMS, ERR_R_MALLOC_FAILURE);
  206. return 0;
  207. }
  208. return 1;
  209. }
  210. /* Verify signed receipt after it has already passed normal CMS verify */
  211. int cms_Receipt_verify(CMS_ContentInfo *cms, CMS_ContentInfo *req_cms)
  212. {
  213. int r = 0, i;
  214. CMS_ReceiptRequest *rr = NULL;
  215. CMS_Receipt *rct = NULL;
  216. STACK_OF(CMS_SignerInfo) *sis, *osis;
  217. CMS_SignerInfo *si, *osi = NULL;
  218. ASN1_OCTET_STRING *msig, **pcont;
  219. ASN1_OBJECT *octype;
  220. unsigned char dig[EVP_MAX_MD_SIZE];
  221. unsigned int diglen;
  222. /* Get SignerInfos, also checks SignedData content type */
  223. osis = CMS_get0_SignerInfos(req_cms);
  224. sis = CMS_get0_SignerInfos(cms);
  225. if (!osis || !sis)
  226. goto err;
  227. if (sk_CMS_SignerInfo_num(sis) != 1) {
  228. ERR_raise(ERR_LIB_CMS, CMS_R_NEED_ONE_SIGNER);
  229. goto err;
  230. }
  231. /* Check receipt content type */
  232. if (OBJ_obj2nid(CMS_get0_eContentType(cms)) != NID_id_smime_ct_receipt) {
  233. ERR_raise(ERR_LIB_CMS, CMS_R_NOT_A_SIGNED_RECEIPT);
  234. goto err;
  235. }
  236. /* Extract and decode receipt content */
  237. pcont = CMS_get0_content(cms);
  238. if (pcont == NULL || *pcont == NULL) {
  239. ERR_raise(ERR_LIB_CMS, CMS_R_NO_CONTENT);
  240. goto err;
  241. }
  242. rct = ASN1_item_unpack(*pcont, ASN1_ITEM_rptr(CMS_Receipt));
  243. if (!rct) {
  244. ERR_raise(ERR_LIB_CMS, CMS_R_RECEIPT_DECODE_ERROR);
  245. goto err;
  246. }
  247. /* Locate original request */
  248. for (i = 0; i < sk_CMS_SignerInfo_num(osis); i++) {
  249. osi = sk_CMS_SignerInfo_value(osis, i);
  250. if (!ASN1_STRING_cmp(osi->signature, rct->originatorSignatureValue))
  251. break;
  252. }
  253. if (i == sk_CMS_SignerInfo_num(osis)) {
  254. ERR_raise(ERR_LIB_CMS, CMS_R_NO_MATCHING_SIGNATURE);
  255. goto err;
  256. }
  257. si = sk_CMS_SignerInfo_value(sis, 0);
  258. /* Get msgSigDigest value and compare */
  259. msig = CMS_signed_get0_data_by_OBJ(si,
  260. OBJ_nid2obj
  261. (NID_id_smime_aa_msgSigDigest), -3,
  262. V_ASN1_OCTET_STRING);
  263. if (!msig) {
  264. ERR_raise(ERR_LIB_CMS, CMS_R_NO_MSGSIGDIGEST);
  265. goto err;
  266. }
  267. if (!cms_msgSigDigest(osi, dig, &diglen)) {
  268. ERR_raise(ERR_LIB_CMS, CMS_R_MSGSIGDIGEST_ERROR);
  269. goto err;
  270. }
  271. if (diglen != (unsigned int)msig->length) {
  272. ERR_raise(ERR_LIB_CMS, CMS_R_MSGSIGDIGEST_WRONG_LENGTH);
  273. goto err;
  274. }
  275. if (memcmp(dig, msig->data, diglen)) {
  276. ERR_raise(ERR_LIB_CMS, CMS_R_MSGSIGDIGEST_VERIFICATION_FAILURE);
  277. goto err;
  278. }
  279. /* Compare content types */
  280. octype = CMS_signed_get0_data_by_OBJ(osi,
  281. OBJ_nid2obj(NID_pkcs9_contentType),
  282. -3, V_ASN1_OBJECT);
  283. if (!octype) {
  284. ERR_raise(ERR_LIB_CMS, CMS_R_NO_CONTENT_TYPE);
  285. goto err;
  286. }
  287. /* Compare details in receipt request */
  288. if (OBJ_cmp(octype, rct->contentType)) {
  289. ERR_raise(ERR_LIB_CMS, CMS_R_CONTENT_TYPE_MISMATCH);
  290. goto err;
  291. }
  292. /* Get original receipt request details */
  293. if (CMS_get1_ReceiptRequest(osi, &rr) <= 0) {
  294. ERR_raise(ERR_LIB_CMS, CMS_R_NO_RECEIPT_REQUEST);
  295. goto err;
  296. }
  297. if (ASN1_STRING_cmp(rr->signedContentIdentifier,
  298. rct->signedContentIdentifier)) {
  299. ERR_raise(ERR_LIB_CMS, CMS_R_CONTENTIDENTIFIER_MISMATCH);
  300. goto err;
  301. }
  302. r = 1;
  303. err:
  304. CMS_ReceiptRequest_free(rr);
  305. M_ASN1_free_of(rct, CMS_Receipt);
  306. return r;
  307. }
  308. /*
  309. * Encode a Receipt into an OCTET STRING read for including into content of a
  310. * SignedData ContentInfo.
  311. */
  312. ASN1_OCTET_STRING *cms_encode_Receipt(CMS_SignerInfo *si)
  313. {
  314. CMS_Receipt rct;
  315. CMS_ReceiptRequest *rr = NULL;
  316. ASN1_OBJECT *ctype;
  317. ASN1_OCTET_STRING *os = NULL;
  318. /* Get original receipt request */
  319. /* Get original receipt request details */
  320. if (CMS_get1_ReceiptRequest(si, &rr) <= 0) {
  321. ERR_raise(ERR_LIB_CMS, CMS_R_NO_RECEIPT_REQUEST);
  322. goto err;
  323. }
  324. /* Get original content type */
  325. ctype = CMS_signed_get0_data_by_OBJ(si,
  326. OBJ_nid2obj(NID_pkcs9_contentType),
  327. -3, V_ASN1_OBJECT);
  328. if (!ctype) {
  329. ERR_raise(ERR_LIB_CMS, CMS_R_NO_CONTENT_TYPE);
  330. goto err;
  331. }
  332. rct.version = 1;
  333. rct.contentType = ctype;
  334. rct.signedContentIdentifier = rr->signedContentIdentifier;
  335. rct.originatorSignatureValue = si->signature;
  336. os = ASN1_item_pack(&rct, ASN1_ITEM_rptr(CMS_Receipt), NULL);
  337. err:
  338. CMS_ReceiptRequest_free(rr);
  339. return os;
  340. }
  341. /*
  342. * Add signer certificate's V2 digest |sc| to a SignerInfo structure |si|
  343. */
  344. int cms_add1_signing_cert_v2(CMS_SignerInfo *si, ESS_SIGNING_CERT_V2 *sc)
  345. {
  346. ASN1_STRING *seq = NULL;
  347. unsigned char *p, *pp = NULL;
  348. int len;
  349. /* Add SigningCertificateV2 signed attribute to the signer info. */
  350. len = i2d_ESS_SIGNING_CERT_V2(sc, NULL);
  351. if (len <= 0 || (pp = OPENSSL_malloc(len)) == NULL)
  352. goto err;
  353. p = pp;
  354. i2d_ESS_SIGNING_CERT_V2(sc, &p);
  355. if (!(seq = ASN1_STRING_new()) || !ASN1_STRING_set(seq, pp, len))
  356. goto err;
  357. OPENSSL_free(pp);
  358. pp = NULL;
  359. if (!CMS_signed_add1_attr_by_NID(si, NID_id_smime_aa_signingCertificateV2,
  360. V_ASN1_SEQUENCE, seq, -1))
  361. goto err;
  362. ASN1_STRING_free(seq);
  363. return 1;
  364. err:
  365. ERR_raise(ERR_LIB_CMS, ERR_R_MALLOC_FAILURE);
  366. ASN1_STRING_free(seq);
  367. OPENSSL_free(pp);
  368. return 0;
  369. }
  370. /*
  371. * Add signer certificate's digest |sc| to a SignerInfo structure |si|
  372. */
  373. int cms_add1_signing_cert(CMS_SignerInfo *si, ESS_SIGNING_CERT *sc)
  374. {
  375. ASN1_STRING *seq = NULL;
  376. unsigned char *p, *pp = NULL;
  377. int len;
  378. /* Add SigningCertificate signed attribute to the signer info. */
  379. len = i2d_ESS_SIGNING_CERT(sc, NULL);
  380. if (len <= 0 || (pp = OPENSSL_malloc(len)) == NULL)
  381. goto err;
  382. p = pp;
  383. i2d_ESS_SIGNING_CERT(sc, &p);
  384. if (!(seq = ASN1_STRING_new()) || !ASN1_STRING_set(seq, pp, len))
  385. goto err;
  386. OPENSSL_free(pp);
  387. pp = NULL;
  388. if (!CMS_signed_add1_attr_by_NID(si, NID_id_smime_aa_signingCertificate,
  389. V_ASN1_SEQUENCE, seq, -1))
  390. goto err;
  391. ASN1_STRING_free(seq);
  392. return 1;
  393. err:
  394. ERR_raise(ERR_LIB_CMS, ERR_R_MALLOC_FAILURE);
  395. ASN1_STRING_free(seq);
  396. OPENSSL_free(pp);
  397. return 0;
  398. }