]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/cms/cms_lib.c
Explicitly test against NULL; do not use !p or similar
[thirdparty/openssl.git] / crypto / cms / cms_lib.c
CommitLineData
0f113f3e 1/*
b1322259 2 * Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved.
8931b30d 3 *
08ddd302 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
b1322259
RS
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
8931b30d
DSH
8 */
9
10#include <openssl/asn1t.h>
17c2764d 11#include <openssl/x509v3.h>
8931b30d
DSH
12#include <openssl/err.h>
13#include <openssl/pem.h>
14#include <openssl/bio.h>
15#include <openssl/asn1.h>
e52a3c3d 16#include <openssl/cms.h>
706457b7 17#include "cms_local.h"
8931b30d
DSH
18
19IMPLEMENT_ASN1_FUNCTIONS(CMS_ContentInfo)
20IMPLEMENT_ASN1_PRINT_FUNCTION(CMS_ContentInfo)
21
dc423f89 22const ASN1_OBJECT *CMS_get0_type(const CMS_ContentInfo *cms)
0f113f3e
MC
23{
24 return cms->contentType;
25}
8931b30d
DSH
26
27CMS_ContentInfo *cms_Data_create(void)
0f113f3e
MC
28{
29 CMS_ContentInfo *cms;
30 cms = CMS_ContentInfo_new();
90945fa3 31 if (cms != NULL) {
0f113f3e
MC
32 cms->contentType = OBJ_nid2obj(NID_pkcs7_data);
33 /* Never detached */
34 CMS_set_detached(cms, 0);
35 }
36 return cms;
37}
8931b30d
DSH
38
39BIO *cms_content_bio(CMS_ContentInfo *cms)
0f113f3e
MC
40{
41 ASN1_OCTET_STRING **pos = CMS_get0_content(cms);
12a765a5
RS
42
43 if (pos == NULL)
0f113f3e
MC
44 return NULL;
45 /* If content detached data goes nowhere: create NULL BIO */
12a765a5 46 if (*pos == NULL)
0f113f3e
MC
47 return BIO_new(BIO_s_null());
48 /*
49 * If content not detached and created return memory BIO
50 */
12a765a5 51 if (*pos == NULL || ((*pos)->flags == ASN1_STRING_FLAG_CONT))
0f113f3e
MC
52 return BIO_new(BIO_s_mem());
53 /* Else content was read in: return read only BIO for it */
54 return BIO_new_mem_buf((*pos)->data, (*pos)->length);
55}
8931b30d
DSH
56
57BIO *CMS_dataInit(CMS_ContentInfo *cms, BIO *icont)
0f113f3e
MC
58{
59 BIO *cmsbio, *cont;
60 if (icont)
61 cont = icont;
62 else
63 cont = cms_content_bio(cms);
64 if (!cont) {
65 CMSerr(CMS_F_CMS_DATAINIT, CMS_R_NO_CONTENT);
66 return NULL;
67 }
68 switch (OBJ_obj2nid(cms->contentType)) {
69
70 case NID_pkcs7_data:
71 return cont;
72
73 case NID_pkcs7_signed:
74 cmsbio = cms_SignedData_init_bio(cms);
75 break;
76
77 case NID_pkcs7_digest:
78 cmsbio = cms_DigestedData_init_bio(cms);
79 break;
8931b30d 80#ifdef ZLIB
0f113f3e
MC
81 case NID_id_smime_ct_compressedData:
82 cmsbio = cms_CompressedData_init_bio(cms);
83 break;
8931b30d
DSH
84#endif
85
0f113f3e
MC
86 case NID_pkcs7_encrypted:
87 cmsbio = cms_EncryptedData_init_bio(cms);
88 break;
b820455c 89
0f113f3e
MC
90 case NID_pkcs7_enveloped:
91 cmsbio = cms_EnvelopedData_init_bio(cms);
92 break;
4f1aa191 93
0f113f3e
MC
94 default:
95 CMSerr(CMS_F_CMS_DATAINIT, CMS_R_UNSUPPORTED_TYPE);
96 return NULL;
97 }
8931b30d 98
0f113f3e
MC
99 if (cmsbio)
100 return BIO_push(cmsbio, cont);
8931b30d 101
0f113f3e
MC
102 if (!icont)
103 BIO_free(cont);
104 return NULL;
8931b30d 105
0f113f3e 106}
b820455c 107
9fdcc21f 108/* unfortunately cannot constify SMIME_write_ASN1() due to this function */
8931b30d 109int CMS_dataFinal(CMS_ContentInfo *cms, BIO *cmsbio)
0f113f3e
MC
110{
111 ASN1_OCTET_STRING **pos = CMS_get0_content(cms);
12a765a5
RS
112
113 if (pos == NULL)
0f113f3e 114 return 0;
0d4fb843 115 /* If embedded content find memory BIO and set content */
0f113f3e
MC
116 if (*pos && ((*pos)->flags & ASN1_STRING_FLAG_CONT)) {
117 BIO *mbio;
118 unsigned char *cont;
119 long contlen;
120 mbio = BIO_find_type(cmsbio, BIO_TYPE_MEM);
121 if (!mbio) {
122 CMSerr(CMS_F_CMS_DATAFINAL, CMS_R_CONTENT_NOT_FOUND);
123 return 0;
124 }
125 contlen = BIO_get_mem_data(mbio, &cont);
126 /* Set bio as read only so its content can't be clobbered */
127 BIO_set_flags(mbio, BIO_FLAGS_MEM_RDONLY);
128 BIO_set_mem_eof_return(mbio, 0);
129 ASN1_STRING_set0(*pos, cont, contlen);
130 (*pos)->flags &= ~ASN1_STRING_FLAG_CONT;
131 }
132
133 switch (OBJ_obj2nid(cms->contentType)) {
134
135 case NID_pkcs7_data:
136 case NID_pkcs7_enveloped:
137 case NID_pkcs7_encrypted:
138 case NID_id_smime_ct_compressedData:
139 /* Nothing to do */
140 return 1;
141
142 case NID_pkcs7_signed:
143 return cms_SignedData_final(cms, cmsbio);
144
145 case NID_pkcs7_digest:
146 return cms_DigestedData_do_final(cms, cmsbio, 0);
147
148 default:
149 CMSerr(CMS_F_CMS_DATAFINAL, CMS_R_UNSUPPORTED_TYPE);
150 return 0;
151 }
152}
153
154/*
155 * Return an OCTET STRING pointer to content. This allows it to be accessed
156 * or set later.
8931b30d
DSH
157 */
158
159ASN1_OCTET_STRING **CMS_get0_content(CMS_ContentInfo *cms)
0f113f3e
MC
160{
161 switch (OBJ_obj2nid(cms->contentType)) {
8931b30d 162
0f113f3e
MC
163 case NID_pkcs7_data:
164 return &cms->d.data;
8931b30d 165
0f113f3e
MC
166 case NID_pkcs7_signed:
167 return &cms->d.signedData->encapContentInfo->eContent;
8931b30d 168
0f113f3e
MC
169 case NID_pkcs7_enveloped:
170 return &cms->d.envelopedData->encryptedContentInfo->encryptedContent;
8931b30d 171
0f113f3e
MC
172 case NID_pkcs7_digest:
173 return &cms->d.digestedData->encapContentInfo->eContent;
8931b30d 174
0f113f3e
MC
175 case NID_pkcs7_encrypted:
176 return &cms->d.encryptedData->encryptedContentInfo->encryptedContent;
8931b30d 177
0f113f3e
MC
178 case NID_id_smime_ct_authData:
179 return &cms->d.authenticatedData->encapContentInfo->eContent;
8931b30d 180
0f113f3e
MC
181 case NID_id_smime_ct_compressedData:
182 return &cms->d.compressedData->encapContentInfo->eContent;
8931b30d 183
0f113f3e
MC
184 default:
185 if (cms->d.other->type == V_ASN1_OCTET_STRING)
186 return &cms->d.other->value.octet_string;
187 CMSerr(CMS_F_CMS_GET0_CONTENT, CMS_R_UNSUPPORTED_CONTENT_TYPE);
188 return NULL;
8931b30d 189
0f113f3e
MC
190 }
191}
8931b30d 192
0f113f3e
MC
193/*
194 * Return an ASN1_OBJECT pointer to content type. This allows it to be
195 * accessed or set later.
8931b30d
DSH
196 */
197
198static ASN1_OBJECT **cms_get0_econtent_type(CMS_ContentInfo *cms)
0f113f3e
MC
199{
200 switch (OBJ_obj2nid(cms->contentType)) {
8931b30d 201
0f113f3e
MC
202 case NID_pkcs7_signed:
203 return &cms->d.signedData->encapContentInfo->eContentType;
8931b30d 204
0f113f3e
MC
205 case NID_pkcs7_enveloped:
206 return &cms->d.envelopedData->encryptedContentInfo->contentType;
8931b30d 207
0f113f3e
MC
208 case NID_pkcs7_digest:
209 return &cms->d.digestedData->encapContentInfo->eContentType;
8931b30d 210
0f113f3e
MC
211 case NID_pkcs7_encrypted:
212 return &cms->d.encryptedData->encryptedContentInfo->contentType;
8931b30d 213
0f113f3e
MC
214 case NID_id_smime_ct_authData:
215 return &cms->d.authenticatedData->encapContentInfo->eContentType;
8931b30d 216
0f113f3e
MC
217 case NID_id_smime_ct_compressedData:
218 return &cms->d.compressedData->encapContentInfo->eContentType;
8931b30d 219
0f113f3e
MC
220 default:
221 CMSerr(CMS_F_CMS_GET0_ECONTENT_TYPE, CMS_R_UNSUPPORTED_CONTENT_TYPE);
222 return NULL;
8931b30d 223
0f113f3e
MC
224 }
225}
8931b30d
DSH
226
227const ASN1_OBJECT *CMS_get0_eContentType(CMS_ContentInfo *cms)
0f113f3e
MC
228{
229 ASN1_OBJECT **petype;
230 petype = cms_get0_econtent_type(cms);
231 if (petype)
232 return *petype;
233 return NULL;
234}
8931b30d
DSH
235
236int CMS_set1_eContentType(CMS_ContentInfo *cms, const ASN1_OBJECT *oid)
0f113f3e
MC
237{
238 ASN1_OBJECT **petype, *etype;
12a765a5 239
0f113f3e 240 petype = cms_get0_econtent_type(cms);
12a765a5 241 if (petype == NULL)
0f113f3e 242 return 0;
12a765a5 243 if (oid == NULL)
0f113f3e
MC
244 return 1;
245 etype = OBJ_dup(oid);
12a765a5 246 if (etype == NULL)
0f113f3e
MC
247 return 0;
248 ASN1_OBJECT_free(*petype);
249 *petype = etype;
250 return 1;
251}
8931b30d
DSH
252
253int CMS_is_detached(CMS_ContentInfo *cms)
0f113f3e
MC
254{
255 ASN1_OCTET_STRING **pos;
12a765a5 256
0f113f3e 257 pos = CMS_get0_content(cms);
12a765a5 258 if (pos == NULL)
0f113f3e 259 return -1;
12a765a5 260 if (*pos != NULL)
0f113f3e
MC
261 return 0;
262 return 1;
263}
8931b30d
DSH
264
265int CMS_set_detached(CMS_ContentInfo *cms, int detached)
0f113f3e
MC
266{
267 ASN1_OCTET_STRING **pos;
12a765a5 268
0f113f3e 269 pos = CMS_get0_content(cms);
12a765a5 270 if (pos == NULL)
0f113f3e
MC
271 return 0;
272 if (detached) {
2ace7450
RS
273 ASN1_OCTET_STRING_free(*pos);
274 *pos = NULL;
0f113f3e
MC
275 return 1;
276 }
90945fa3 277 if (*pos == NULL)
0f113f3e 278 *pos = ASN1_OCTET_STRING_new();
90945fa3 279 if (*pos != NULL) {
0f113f3e
MC
280 /*
281 * NB: special flag to show content is created and not read in.
282 */
283 (*pos)->flags |= ASN1_STRING_FLAG_CONT;
284 return 1;
285 }
286 CMSerr(CMS_F_CMS_SET_DETACHED, ERR_R_MALLOC_FAILURE);
287 return 0;
288}
8931b30d 289
8931b30d
DSH
290/* Create a digest BIO from an X509_ALGOR structure */
291
292BIO *cms_DigestAlgorithm_init_bio(X509_ALGOR *digestAlgorithm)
0f113f3e
MC
293{
294 BIO *mdbio = NULL;
ac4e2577 295 const ASN1_OBJECT *digestoid;
0f113f3e
MC
296 const EVP_MD *digest;
297 X509_ALGOR_get0(&digestoid, NULL, NULL, digestAlgorithm);
298 digest = EVP_get_digestbyobj(digestoid);
299 if (!digest) {
300 CMSerr(CMS_F_CMS_DIGESTALGORITHM_INIT_BIO,
df578aa0 301 CMS_R_UNKNOWN_DIGEST_ALGORITHM);
0f113f3e
MC
302 goto err;
303 }
304 mdbio = BIO_new(BIO_f_md());
90945fa3 305 if (mdbio == NULL || !BIO_set_md(mdbio, digest)) {
0f113f3e
MC
306 CMSerr(CMS_F_CMS_DIGESTALGORITHM_INIT_BIO, CMS_R_MD_BIO_INIT_ERROR);
307 goto err;
308 }
309 return mdbio;
310 err:
ca3a82c3 311 BIO_free(mdbio);
0f113f3e
MC
312 return NULL;
313}
8931b30d
DSH
314
315/* Locate a message digest content from a BIO chain based on SignerInfo */
316
317int cms_DigestAlgorithm_find_ctx(EVP_MD_CTX *mctx, BIO *chain,
0f113f3e
MC
318 X509_ALGOR *mdalg)
319{
320 int nid;
ac4e2577 321 const ASN1_OBJECT *mdoid;
0f113f3e
MC
322 X509_ALGOR_get0(&mdoid, NULL, NULL, mdalg);
323 nid = OBJ_obj2nid(mdoid);
324 /* Look for digest type to match signature */
325 for (;;) {
326 EVP_MD_CTX *mtmp;
327 chain = BIO_find_type(chain, BIO_TYPE_MD);
328 if (chain == NULL) {
329 CMSerr(CMS_F_CMS_DIGESTALGORITHM_FIND_CTX,
330 CMS_R_NO_MATCHING_DIGEST);
331 return 0;
332 }
333 BIO_get_md_ctx(chain, &mtmp);
334 if (EVP_MD_CTX_type(mtmp) == nid
335 /*
336 * Workaround for broken implementations that use signature
337 * algorithm OID instead of digest.
338 */
339 || EVP_MD_pkey_type(EVP_MD_CTX_md(mtmp)) == nid)
340 return EVP_MD_CTX_copy_ex(mctx, mtmp);
341 chain = BIO_next(chain);
342 }
343}
344
345static STACK_OF(CMS_CertificateChoices)
346**cms_get0_certificate_choices(CMS_ContentInfo *cms)
347{
348 switch (OBJ_obj2nid(cms->contentType)) {
349
350 case NID_pkcs7_signed:
351 return &cms->d.signedData->certificates;
352
353 case NID_pkcs7_enveloped:
6b360288
PH
354 if (cms->d.envelopedData->originatorInfo == NULL)
355 return NULL;
0f113f3e
MC
356 return &cms->d.envelopedData->originatorInfo->certificates;
357
358 default:
359 CMSerr(CMS_F_CMS_GET0_CERTIFICATE_CHOICES,
360 CMS_R_UNSUPPORTED_CONTENT_TYPE);
361 return NULL;
362
363 }
364}
8931b30d
DSH
365
366CMS_CertificateChoices *CMS_add0_CertificateChoices(CMS_ContentInfo *cms)
0f113f3e
MC
367{
368 STACK_OF(CMS_CertificateChoices) **pcerts;
369 CMS_CertificateChoices *cch;
12a765a5 370
0f113f3e 371 pcerts = cms_get0_certificate_choices(cms);
12a765a5 372 if (pcerts == NULL)
0f113f3e 373 return NULL;
12a765a5 374 if (*pcerts == NULL)
0f113f3e 375 *pcerts = sk_CMS_CertificateChoices_new_null();
12a765a5 376 if (*pcerts == NULL)
0f113f3e
MC
377 return NULL;
378 cch = M_ASN1_new_of(CMS_CertificateChoices);
379 if (!cch)
380 return NULL;
381 if (!sk_CMS_CertificateChoices_push(*pcerts, cch)) {
382 M_ASN1_free_of(cch, CMS_CertificateChoices);
383 return NULL;
384 }
385 return cch;
386}
8931b30d
DSH
387
388int CMS_add0_cert(CMS_ContentInfo *cms, X509 *cert)
0f113f3e
MC
389{
390 CMS_CertificateChoices *cch;
391 STACK_OF(CMS_CertificateChoices) **pcerts;
392 int i;
12a765a5 393
0f113f3e 394 pcerts = cms_get0_certificate_choices(cms);
12a765a5 395 if (pcerts == NULL)
0f113f3e
MC
396 return 0;
397 for (i = 0; i < sk_CMS_CertificateChoices_num(*pcerts); i++) {
398 cch = sk_CMS_CertificateChoices_value(*pcerts, i);
399 if (cch->type == CMS_CERTCHOICE_CERT) {
400 if (!X509_cmp(cch->d.certificate, cert)) {
401 CMSerr(CMS_F_CMS_ADD0_CERT,
402 CMS_R_CERTIFICATE_ALREADY_PRESENT);
403 return 0;
404 }
405 }
406 }
407 cch = CMS_add0_CertificateChoices(cms);
408 if (!cch)
409 return 0;
410 cch->type = CMS_CERTCHOICE_CERT;
411 cch->d.certificate = cert;
412 return 1;
413}
8931b30d
DSH
414
415int CMS_add1_cert(CMS_ContentInfo *cms, X509 *cert)
0f113f3e
MC
416{
417 int r;
418 r = CMS_add0_cert(cms, cert);
419 if (r > 0)
05f0fb9f 420 X509_up_ref(cert);
0f113f3e
MC
421 return r;
422}
8931b30d 423
0f113f3e
MC
424static STACK_OF(CMS_RevocationInfoChoice)
425**cms_get0_revocation_choices(CMS_ContentInfo *cms)
426{
427 switch (OBJ_obj2nid(cms->contentType)) {
8931b30d 428
0f113f3e
MC
429 case NID_pkcs7_signed:
430 return &cms->d.signedData->crls;
8931b30d 431
0f113f3e 432 case NID_pkcs7_enveloped:
6b360288
PH
433 if (cms->d.envelopedData->originatorInfo == NULL)
434 return NULL;
0f113f3e 435 return &cms->d.envelopedData->originatorInfo->crls;
8931b30d 436
0f113f3e
MC
437 default:
438 CMSerr(CMS_F_CMS_GET0_REVOCATION_CHOICES,
439 CMS_R_UNSUPPORTED_CONTENT_TYPE);
440 return NULL;
8931b30d 441
0f113f3e
MC
442 }
443}
8931b30d
DSH
444
445CMS_RevocationInfoChoice *CMS_add0_RevocationInfoChoice(CMS_ContentInfo *cms)
0f113f3e
MC
446{
447 STACK_OF(CMS_RevocationInfoChoice) **pcrls;
448 CMS_RevocationInfoChoice *rch;
12a765a5 449
0f113f3e 450 pcrls = cms_get0_revocation_choices(cms);
12a765a5 451 if (pcrls == NULL)
0f113f3e 452 return NULL;
12a765a5 453 if (*pcrls == NULL)
0f113f3e 454 *pcrls = sk_CMS_RevocationInfoChoice_new_null();
12a765a5 455 if (*pcrls == NULL)
0f113f3e
MC
456 return NULL;
457 rch = M_ASN1_new_of(CMS_RevocationInfoChoice);
12a765a5 458 if (rch == NULL)
0f113f3e
MC
459 return NULL;
460 if (!sk_CMS_RevocationInfoChoice_push(*pcrls, rch)) {
461 M_ASN1_free_of(rch, CMS_RevocationInfoChoice);
462 return NULL;
463 }
464 return rch;
465}
8931b30d
DSH
466
467int CMS_add0_crl(CMS_ContentInfo *cms, X509_CRL *crl)
0f113f3e
MC
468{
469 CMS_RevocationInfoChoice *rch;
470 rch = CMS_add0_RevocationInfoChoice(cms);
471 if (!rch)
472 return 0;
473 rch->type = CMS_REVCHOICE_CRL;
474 rch->d.crl = crl;
475 return 1;
476}
8931b30d 477
19048b5c 478int CMS_add1_crl(CMS_ContentInfo *cms, X509_CRL *crl)
0f113f3e
MC
479{
480 int r;
481 r = CMS_add0_crl(cms, crl);
482 if (r > 0)
65cbf983 483 X509_CRL_up_ref(crl);
0f113f3e
MC
484 return r;
485}
19048b5c 486
8931b30d 487STACK_OF(X509) *CMS_get1_certs(CMS_ContentInfo *cms)
0f113f3e
MC
488{
489 STACK_OF(X509) *certs = NULL;
490 CMS_CertificateChoices *cch;
491 STACK_OF(CMS_CertificateChoices) **pcerts;
492 int i;
12a765a5 493
0f113f3e 494 pcerts = cms_get0_certificate_choices(cms);
12a765a5 495 if (pcerts == NULL)
0f113f3e
MC
496 return NULL;
497 for (i = 0; i < sk_CMS_CertificateChoices_num(*pcerts); i++) {
498 cch = sk_CMS_CertificateChoices_value(*pcerts, i);
499 if (cch->type == 0) {
500 if (!certs) {
501 certs = sk_X509_new_null();
502 if (!certs)
503 return NULL;
504 }
505 if (!sk_X509_push(certs, cch->d.certificate)) {
506 sk_X509_pop_free(certs, X509_free);
507 return NULL;
508 }
05f0fb9f 509 X509_up_ref(cch->d.certificate);
0f113f3e
MC
510 }
511 }
512 return certs;
513
514}
8931b30d
DSH
515
516STACK_OF(X509_CRL) *CMS_get1_crls(CMS_ContentInfo *cms)
0f113f3e
MC
517{
518 STACK_OF(X509_CRL) *crls = NULL;
519 STACK_OF(CMS_RevocationInfoChoice) **pcrls;
520 CMS_RevocationInfoChoice *rch;
521 int i;
12a765a5 522
0f113f3e 523 pcrls = cms_get0_revocation_choices(cms);
12a765a5 524 if (pcrls == NULL)
0f113f3e
MC
525 return NULL;
526 for (i = 0; i < sk_CMS_RevocationInfoChoice_num(*pcrls); i++) {
527 rch = sk_CMS_RevocationInfoChoice_value(*pcrls, i);
528 if (rch->type == 0) {
529 if (!crls) {
530 crls = sk_X509_CRL_new_null();
531 if (!crls)
532 return NULL;
533 }
534 if (!sk_X509_CRL_push(crls, rch->d.crl)) {
535 sk_X509_CRL_pop_free(crls, X509_CRL_free);
536 return NULL;
537 }
65cbf983 538 X509_CRL_up_ref(rch->d.crl);
0f113f3e
MC
539 }
540 }
541 return crls;
542}
17c2764d
DSH
543
544int cms_ias_cert_cmp(CMS_IssuerAndSerialNumber *ias, X509 *cert)
0f113f3e
MC
545{
546 int ret;
547 ret = X509_NAME_cmp(ias->issuer, X509_get_issuer_name(cert));
548 if (ret)
549 return ret;
550 return ASN1_INTEGER_cmp(ias->serialNumber, X509_get_serialNumber(cert));
551}
17c2764d
DSH
552
553int cms_keyid_cert_cmp(ASN1_OCTET_STRING *keyid, X509 *cert)
0f113f3e 554{
d19a50c9
DSH
555 const ASN1_OCTET_STRING *cert_keyid = X509_get0_subject_key_id(cert);
556
557 if (cert_keyid == NULL)
0f113f3e 558 return -1;
d19a50c9 559 return ASN1_OCTET_STRING_cmp(keyid, cert_keyid);
0f113f3e 560}
17c2764d
DSH
561
562int cms_set1_ias(CMS_IssuerAndSerialNumber **pias, X509 *cert)
0f113f3e
MC
563{
564 CMS_IssuerAndSerialNumber *ias;
565 ias = M_ASN1_new_of(CMS_IssuerAndSerialNumber);
566 if (!ias)
567 goto err;
568 if (!X509_NAME_set(&ias->issuer, X509_get_issuer_name(cert)))
569 goto err;
570 if (!ASN1_STRING_copy(ias->serialNumber, X509_get_serialNumber(cert)))
571 goto err;
2ace7450 572 M_ASN1_free_of(*pias, CMS_IssuerAndSerialNumber);
0f113f3e
MC
573 *pias = ias;
574 return 1;
575 err:
2ace7450 576 M_ASN1_free_of(ias, CMS_IssuerAndSerialNumber);
0f113f3e
MC
577 CMSerr(CMS_F_CMS_SET1_IAS, ERR_R_MALLOC_FAILURE);
578 return 0;
579}
17c2764d
DSH
580
581int cms_set1_keyid(ASN1_OCTET_STRING **pkeyid, X509 *cert)
0f113f3e
MC
582{
583 ASN1_OCTET_STRING *keyid = NULL;
d19a50c9
DSH
584 const ASN1_OCTET_STRING *cert_keyid;
585 cert_keyid = X509_get0_subject_key_id(cert);
586 if (cert_keyid == NULL) {
0f113f3e
MC
587 CMSerr(CMS_F_CMS_SET1_KEYID, CMS_R_CERTIFICATE_HAS_NO_KEYID);
588 return 0;
589 }
d19a50c9 590 keyid = ASN1_STRING_dup(cert_keyid);
0f113f3e
MC
591 if (!keyid) {
592 CMSerr(CMS_F_CMS_SET1_KEYID, ERR_R_MALLOC_FAILURE);
593 return 0;
594 }
2ace7450 595 ASN1_OCTET_STRING_free(*pkeyid);
0f113f3e
MC
596 *pkeyid = keyid;
597 return 1;
598}