Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl40/crypto/cms/cms_io.c
Line
Count
Source
1
/*
2
 * Copyright 2008-2026 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
10
#include <openssl/asn1t.h>
11
#include <openssl/x509.h>
12
#include <openssl/err.h>
13
#include <openssl/pem.h>
14
#include <openssl/cms.h>
15
#include "cms_local.h"
16
17
#include <crypto/asn1.h>
18
19
/* unfortunately cannot constify BIO_new_NDEF() due to this and PKCS7_stream() */
20
int CMS_stream(unsigned char ***boundary, CMS_ContentInfo *cms)
21
0
{
22
0
    ASN1_OCTET_STRING **pos;
23
24
0
    pos = CMS_get0_content(cms);
25
0
    if (pos == NULL)
26
0
        return 0;
27
0
    if (*pos == NULL)
28
0
        *pos = ASN1_OCTET_STRING_new();
29
0
    if (*pos != NULL) {
30
0
        (*pos)->flags |= ASN1_STRING_FLAG_NDEF;
31
0
        (*pos)->flags &= ~ASN1_STRING_FLAG_CONT;
32
0
        *boundary = &(*pos)->data;
33
0
        return 1;
34
0
    }
35
0
    ERR_raise(ERR_LIB_CMS, ERR_R_CMS_LIB);
36
0
    return 0;
37
0
}
38
39
CMS_ContentInfo *d2i_CMS_bio(BIO *bp, CMS_ContentInfo **cms)
40
36.2k
{
41
36.2k
    CMS_ContentInfo *ci;
42
36.2k
    const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms == NULL ? NULL : *cms);
43
44
36.2k
    ci = ASN1_item_d2i_bio_ex(ASN1_ITEM_rptr(CMS_ContentInfo), bp, cms,
45
36.2k
        ossl_cms_ctx_get0_libctx(ctx),
46
36.2k
        ossl_cms_ctx_get0_propq(ctx));
47
36.2k
    if (ci != NULL) {
48
5.50k
        ERR_set_mark();
49
5.50k
        ossl_cms_resolve_libctx(ci);
50
5.50k
        ERR_pop_to_mark();
51
5.50k
    }
52
36.2k
    return ci;
53
36.2k
}
54
55
int i2d_CMS_bio(BIO *bp, CMS_ContentInfo *cms)
56
5.50k
{
57
5.50k
    return ASN1_item_i2d_bio(ASN1_ITEM_rptr(CMS_ContentInfo), bp, cms);
58
5.50k
}
59
60
0
IMPLEMENT_PEM_rw(CMS, CMS_ContentInfo, PEM_STRING_CMS, CMS_ContentInfo)
Unexecuted instantiation: PEM_write_bio_CMS
Unexecuted instantiation: PEM_write_CMS
61
0
62
0
BIO *BIO_new_CMS(BIO *out, CMS_ContentInfo *cms)
63
0
{
64
0
    return BIO_new_NDEF(out, (ASN1_VALUE *)cms,
65
0
        ASN1_ITEM_rptr(CMS_ContentInfo));
66
0
}
67
68
/* CMS wrappers round generalised stream and MIME routines */
69
70
int i2d_CMS_bio_stream(BIO *out, CMS_ContentInfo *cms, BIO *in, int flags)
71
0
{
72
0
    return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)cms, in, flags,
73
0
        ASN1_ITEM_rptr(CMS_ContentInfo));
74
0
}
75
76
int PEM_write_bio_CMS_stream(BIO *out, CMS_ContentInfo *cms, BIO *in,
77
    int flags)
78
0
{
79
0
    return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *)cms, in, flags,
80
0
        "CMS", ASN1_ITEM_rptr(CMS_ContentInfo));
81
0
}
82
83
int SMIME_write_CMS(BIO *bio, CMS_ContentInfo *cms, BIO *data, int flags)
84
0
{
85
0
    STACK_OF(X509_ALGOR) *mdalgs;
86
0
    int ctype_nid = OBJ_obj2nid(cms->contentType);
87
0
    int econt_nid = OBJ_obj2nid(CMS_get0_eContentType(cms));
88
0
    const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms);
89
90
0
    if (ctype_nid == NID_pkcs7_signed)
91
0
        mdalgs = cms->d.signedData->digestAlgorithms;
92
0
    else
93
0
        mdalgs = NULL;
94
95
0
    return SMIME_write_ASN1_ex(bio, (ASN1_VALUE *)cms, data, flags, ctype_nid,
96
0
        econt_nid, mdalgs,
97
0
        ASN1_ITEM_rptr(CMS_ContentInfo),
98
0
        ossl_cms_ctx_get0_libctx(ctx),
99
0
        ossl_cms_ctx_get0_propq(ctx));
100
0
}
101
102
CMS_ContentInfo *SMIME_read_CMS_ex(BIO *bio, int flags, BIO **bcont,
103
    CMS_ContentInfo **cms)
104
0
{
105
0
    CMS_ContentInfo *ci;
106
0
    const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms == NULL ? NULL : *cms);
107
108
0
    ci = (CMS_ContentInfo *)SMIME_read_ASN1_ex(bio, flags, bcont,
109
0
        ASN1_ITEM_rptr(CMS_ContentInfo),
110
0
        (ASN1_VALUE **)cms,
111
0
        ossl_cms_ctx_get0_libctx(ctx),
112
0
        ossl_cms_ctx_get0_propq(ctx));
113
0
    if (ci != NULL) {
114
0
        ERR_set_mark();
115
0
        ossl_cms_resolve_libctx(ci);
116
0
        ERR_pop_to_mark();
117
0
    }
118
0
    return ci;
119
0
}
120
121
CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont)
122
0
{
123
    return SMIME_read_CMS_ex(bio, 0, bcont, NULL);
124
0
}