cms_ess.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  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/x509.h"
  19. #include "cms_local.h"
  20. IMPLEMENT_ASN1_FUNCTIONS(CMS_ReceiptRequest)
  21. /* ESS services */
  22. int CMS_get1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest **prr)
  23. {
  24. ASN1_STRING *str;
  25. CMS_ReceiptRequest *rr;
  26. ASN1_OBJECT *obj = OBJ_nid2obj(NID_id_smime_aa_receiptRequest);
  27. if (prr != NULL)
  28. *prr = NULL;
  29. str = CMS_signed_get0_data_by_OBJ(si, obj, -3, V_ASN1_SEQUENCE);
  30. if (str == NULL)
  31. return 0;
  32. rr = ASN1_item_unpack(str, ASN1_ITEM_rptr(CMS_ReceiptRequest));
  33. if (rr == NULL)
  34. return -1;
  35. if (prr != NULL)
  36. *prr = rr;
  37. else
  38. CMS_ReceiptRequest_free(rr);
  39. return 1;
  40. }
  41. /*
  42. * Returns 0 if attribute is not found, 1 if found,
  43. * or -1 on attribute parsing failure.
  44. */
  45. static int ossl_cms_signerinfo_get_signing_cert(const CMS_SignerInfo *si,
  46. ESS_SIGNING_CERT **psc)
  47. {
  48. ASN1_STRING *str;
  49. ESS_SIGNING_CERT *sc;
  50. ASN1_OBJECT *obj = OBJ_nid2obj(NID_id_smime_aa_signingCertificate);
  51. if (psc != NULL)
  52. *psc = NULL;
  53. str = CMS_signed_get0_data_by_OBJ(si, obj, -3, V_ASN1_SEQUENCE);
  54. if (str == NULL)
  55. return 0;
  56. sc = ASN1_item_unpack(str, ASN1_ITEM_rptr(ESS_SIGNING_CERT));
  57. if (sc == NULL)
  58. return -1;
  59. if (psc != NULL)
  60. *psc = sc;
  61. else
  62. ESS_SIGNING_CERT_free(sc);
  63. return 1;
  64. }
  65. /*
  66. * Returns 0 if attribute is not found, 1 if found,
  67. * or -1 on attribute parsing failure.
  68. */
  69. static int ossl_cms_signerinfo_get_signing_cert_v2(const CMS_SignerInfo *si,
  70. ESS_SIGNING_CERT_V2 **psc)
  71. {
  72. ASN1_STRING *str;
  73. ESS_SIGNING_CERT_V2 *sc;
  74. ASN1_OBJECT *obj = OBJ_nid2obj(NID_id_smime_aa_signingCertificateV2);
  75. if (psc != NULL)
  76. *psc = NULL;
  77. str = CMS_signed_get0_data_by_OBJ(si, obj, -3, V_ASN1_SEQUENCE);
  78. if (str == NULL)
  79. return 0;
  80. sc = ASN1_item_unpack(str, ASN1_ITEM_rptr(ESS_SIGNING_CERT_V2));
  81. if (sc == NULL)
  82. return -1;
  83. if (psc != NULL)
  84. *psc = sc;
  85. else
  86. ESS_SIGNING_CERT_V2_free(sc);
  87. return 1;
  88. }
  89. int ossl_cms_check_signing_certs(const CMS_SignerInfo *si,
  90. const STACK_OF(X509) *chain)
  91. {
  92. ESS_SIGNING_CERT *ss = NULL;
  93. ESS_SIGNING_CERT_V2 *ssv2 = NULL;
  94. int ret = ossl_cms_signerinfo_get_signing_cert(si, &ss) >= 0
  95. && ossl_cms_signerinfo_get_signing_cert_v2(si, &ssv2) >= 0
  96. && OSSL_ESS_check_signing_certs(ss, ssv2, chain, 1) > 0;
  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)
  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);
  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 (!ossl_asn1_item_digest_ex(ASN1_ITEM_rptr(CMS_Attributes_Verify), md,
  188. si->signedAttrs, dig, diglen,
  189. ossl_cms_ctx_get0_libctx(si->cms_ctx),
  190. ossl_cms_ctx_get0_propq(si->cms_ctx)))
  191. return 0;
  192. return 1;
  193. }
  194. /* Add a msgSigDigest attribute to a SignerInfo */
  195. int ossl_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 ossl_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 *ossl_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. }