cms_ess.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  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,
  116. 0) <= 0)
  117. goto err;
  118. }
  119. sk_GENERAL_NAMES_pop_free(rr->receiptsTo, GENERAL_NAMES_free);
  120. rr->receiptsTo = receiptsTo;
  121. if (receiptList != NULL) {
  122. rr->receiptsFrom->type = 1;
  123. rr->receiptsFrom->d.receiptList = receiptList;
  124. } else {
  125. rr->receiptsFrom->type = 0;
  126. rr->receiptsFrom->d.allOrFirstTier = allorfirst;
  127. }
  128. return rr;
  129. merr:
  130. ERR_raise(ERR_LIB_CMS, ERR_R_MALLOC_FAILURE);
  131. err:
  132. CMS_ReceiptRequest_free(rr);
  133. return NULL;
  134. }
  135. CMS_ReceiptRequest *CMS_ReceiptRequest_create0(
  136. unsigned char *id, int idlen, int allorfirst,
  137. STACK_OF(GENERAL_NAMES) *receiptList, STACK_OF(GENERAL_NAMES) *receiptsTo)
  138. {
  139. return CMS_ReceiptRequest_create0_ex(id, idlen, allorfirst, receiptList,
  140. receiptsTo, NULL);
  141. }
  142. int CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr)
  143. {
  144. unsigned char *rrder = NULL;
  145. int rrderlen, r = 0;
  146. rrderlen = i2d_CMS_ReceiptRequest(rr, &rrder);
  147. if (rrderlen < 0)
  148. goto merr;
  149. if (!CMS_signed_add1_attr_by_NID(si, NID_id_smime_aa_receiptRequest,
  150. V_ASN1_SEQUENCE, rrder, rrderlen))
  151. goto merr;
  152. r = 1;
  153. merr:
  154. if (!r)
  155. ERR_raise(ERR_LIB_CMS, ERR_R_MALLOC_FAILURE);
  156. OPENSSL_free(rrder);
  157. return r;
  158. }
  159. void CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr,
  160. ASN1_STRING **pcid,
  161. int *pallorfirst,
  162. STACK_OF(GENERAL_NAMES) **plist,
  163. STACK_OF(GENERAL_NAMES) **prto)
  164. {
  165. if (pcid != NULL)
  166. *pcid = rr->signedContentIdentifier;
  167. if (rr->receiptsFrom->type == 0) {
  168. if (pallorfirst != NULL)
  169. *pallorfirst = (int)rr->receiptsFrom->d.allOrFirstTier;
  170. if (plist != NULL)
  171. *plist = NULL;
  172. } else {
  173. if (pallorfirst != NULL)
  174. *pallorfirst = -1;
  175. if (plist != NULL)
  176. *plist = rr->receiptsFrom->d.receiptList;
  177. }
  178. if (prto != NULL)
  179. *prto = rr->receiptsTo;
  180. }
  181. /* Digest a SignerInfo structure for msgSigDigest attribute processing */
  182. static int cms_msgSigDigest(CMS_SignerInfo *si,
  183. unsigned char *dig, unsigned int *diglen)
  184. {
  185. const EVP_MD *md = EVP_get_digestbyobj(si->digestAlgorithm->algorithm);
  186. if (md == NULL)
  187. return 0;
  188. if (!ossl_asn1_item_digest_ex(ASN1_ITEM_rptr(CMS_Attributes_Verify), md,
  189. si->signedAttrs, dig, diglen,
  190. ossl_cms_ctx_get0_libctx(si->cms_ctx),
  191. ossl_cms_ctx_get0_propq(si->cms_ctx)))
  192. return 0;
  193. return 1;
  194. }
  195. /* Add a msgSigDigest attribute to a SignerInfo */
  196. int ossl_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. ERR_raise(ERR_LIB_CMS, 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. ERR_raise(ERR_LIB_CMS, 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 ossl_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. ERR_raise(ERR_LIB_CMS, 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. ERR_raise(ERR_LIB_CMS, 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. ERR_raise(ERR_LIB_CMS, CMS_R_NO_CONTENT);
  241. goto err;
  242. }
  243. rct = ASN1_item_unpack(*pcont, ASN1_ITEM_rptr(CMS_Receipt));
  244. if (!rct) {
  245. ERR_raise(ERR_LIB_CMS, 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. ERR_raise(ERR_LIB_CMS, 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. ERR_raise(ERR_LIB_CMS, CMS_R_NO_MSGSIGDIGEST);
  266. goto err;
  267. }
  268. if (!cms_msgSigDigest(osi, dig, &diglen)) {
  269. ERR_raise(ERR_LIB_CMS, CMS_R_MSGSIGDIGEST_ERROR);
  270. goto err;
  271. }
  272. if (diglen != (unsigned int)msig->length) {
  273. ERR_raise(ERR_LIB_CMS, CMS_R_MSGSIGDIGEST_WRONG_LENGTH);
  274. goto err;
  275. }
  276. if (memcmp(dig, msig->data, diglen)) {
  277. ERR_raise(ERR_LIB_CMS, CMS_R_MSGSIGDIGEST_VERIFICATION_FAILURE);
  278. goto err;
  279. }
  280. /* Compare content types */
  281. octype = CMS_signed_get0_data_by_OBJ(osi,
  282. OBJ_nid2obj(NID_pkcs9_contentType),
  283. -3, V_ASN1_OBJECT);
  284. if (!octype) {
  285. ERR_raise(ERR_LIB_CMS, CMS_R_NO_CONTENT_TYPE);
  286. goto err;
  287. }
  288. /* Compare details in receipt request */
  289. if (OBJ_cmp(octype, rct->contentType)) {
  290. ERR_raise(ERR_LIB_CMS, CMS_R_CONTENT_TYPE_MISMATCH);
  291. goto err;
  292. }
  293. /* Get original receipt request details */
  294. if (CMS_get1_ReceiptRequest(osi, &rr) <= 0) {
  295. ERR_raise(ERR_LIB_CMS, CMS_R_NO_RECEIPT_REQUEST);
  296. goto err;
  297. }
  298. if (ASN1_STRING_cmp(rr->signedContentIdentifier,
  299. rct->signedContentIdentifier)) {
  300. ERR_raise(ERR_LIB_CMS, CMS_R_CONTENTIDENTIFIER_MISMATCH);
  301. goto err;
  302. }
  303. r = 1;
  304. err:
  305. CMS_ReceiptRequest_free(rr);
  306. M_ASN1_free_of(rct, CMS_Receipt);
  307. return r;
  308. }
  309. /*
  310. * Encode a Receipt into an OCTET STRING read for including into content of a
  311. * SignedData ContentInfo.
  312. */
  313. ASN1_OCTET_STRING *ossl_cms_encode_Receipt(CMS_SignerInfo *si)
  314. {
  315. CMS_Receipt rct;
  316. CMS_ReceiptRequest *rr = NULL;
  317. ASN1_OBJECT *ctype;
  318. ASN1_OCTET_STRING *os = NULL;
  319. /* Get original receipt request */
  320. /* Get original receipt request details */
  321. if (CMS_get1_ReceiptRequest(si, &rr) <= 0) {
  322. ERR_raise(ERR_LIB_CMS, CMS_R_NO_RECEIPT_REQUEST);
  323. goto err;
  324. }
  325. /* Get original content type */
  326. ctype = CMS_signed_get0_data_by_OBJ(si,
  327. OBJ_nid2obj(NID_pkcs9_contentType),
  328. -3, V_ASN1_OBJECT);
  329. if (!ctype) {
  330. ERR_raise(ERR_LIB_CMS, CMS_R_NO_CONTENT_TYPE);
  331. goto err;
  332. }
  333. rct.version = 1;
  334. rct.contentType = ctype;
  335. rct.signedContentIdentifier = rr->signedContentIdentifier;
  336. rct.originatorSignatureValue = si->signature;
  337. os = ASN1_item_pack(&rct, ASN1_ITEM_rptr(CMS_Receipt), NULL);
  338. err:
  339. CMS_ReceiptRequest_free(rr);
  340. return os;
  341. }