Coverage Report

Created: 2026-02-14 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/pkcs12/p12_add.c
Line
Count
Source
1
/*
2
 * Copyright 1999-2024 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 <stdio.h>
11
#include "internal/cryptlib.h"
12
#include <openssl/core.h>
13
#include <openssl/core_names.h>
14
#include <openssl/pkcs12.h>
15
#include "p12_local.h"
16
#include "crypto/pkcs7/pk7_local.h"
17
18
/* Pack an object into an OCTET STRING and turn into a safebag */
19
20
PKCS12_SAFEBAG *PKCS12_item_pack_safebag(void *obj, const ASN1_ITEM *it,
21
    int nid1, int nid2)
22
0
{
23
0
    PKCS12_BAGS *bag;
24
0
    PKCS12_SAFEBAG *safebag;
25
26
0
    if ((bag = PKCS12_BAGS_new()) == NULL) {
27
0
        ERR_raise(ERR_LIB_PKCS12, ERR_R_ASN1_LIB);
28
0
        return NULL;
29
0
    }
30
0
    bag->type = OBJ_nid2obj(nid1);
31
0
    if (!ASN1_item_pack(obj, it, &bag->value.octet)) {
32
0
        ERR_raise(ERR_LIB_PKCS12, ERR_R_ASN1_LIB);
33
0
        goto err;
34
0
    }
35
0
    if ((safebag = PKCS12_SAFEBAG_new()) == NULL) {
36
0
        ERR_raise(ERR_LIB_PKCS12, ERR_R_ASN1_LIB);
37
0
        goto err;
38
0
    }
39
0
    safebag->value.bag = bag;
40
0
    safebag->type = OBJ_nid2obj(nid2);
41
0
    return safebag;
42
43
0
err:
44
0
    PKCS12_BAGS_free(bag);
45
0
    return NULL;
46
0
}
47
48
/* Turn a stack of SAFEBAGS into a PKCS#7 data Contentinfo */
49
PKCS7 *PKCS12_pack_p7data(STACK_OF(PKCS12_SAFEBAG) *sk)
50
0
{
51
0
    PKCS7 *p7;
52
53
0
    if ((p7 = PKCS7_new()) == NULL) {
54
0
        ERR_raise(ERR_LIB_PKCS12, ERR_R_ASN1_LIB);
55
0
        return NULL;
56
0
    }
57
0
    p7->type = OBJ_nid2obj(NID_pkcs7_data);
58
0
    if ((p7->d.data = ASN1_OCTET_STRING_new()) == NULL) {
59
0
        ERR_raise(ERR_LIB_PKCS12, ERR_R_ASN1_LIB);
60
0
        goto err;
61
0
    }
62
63
0
    if (!ASN1_item_pack(sk, ASN1_ITEM_rptr(PKCS12_SAFEBAGS), &p7->d.data)) {
64
0
        ERR_raise(ERR_LIB_PKCS12, PKCS12_R_CANT_PACK_STRUCTURE);
65
0
        goto err;
66
0
    }
67
0
    return p7;
68
69
0
err:
70
0
    PKCS7_free(p7);
71
0
    return NULL;
72
0
}
73
74
/* Unpack SAFEBAGS from PKCS#7 data ContentInfo */
75
STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7data(PKCS7 *p7)
76
66
{
77
66
    if (!PKCS7_type_is_data(p7)) {
78
0
        ERR_raise(ERR_LIB_PKCS12, PKCS12_R_CONTENT_TYPE_NOT_DATA);
79
0
        return NULL;
80
0
    }
81
82
66
    if (p7->d.data == NULL) {
83
4
        ERR_raise(ERR_LIB_PKCS12, PKCS12_R_DECODE_ERROR);
84
4
        return NULL;
85
4
    }
86
87
62
    return ASN1_item_unpack_ex(p7->d.data, ASN1_ITEM_rptr(PKCS12_SAFEBAGS),
88
62
        ossl_pkcs7_ctx_get0_libctx(&p7->ctx),
89
62
        ossl_pkcs7_ctx_get0_propq(&p7->ctx));
90
66
}
91
92
/* Turn a stack of SAFEBAGS into a PKCS#7 encrypted data ContentInfo */
93
94
PKCS7 *PKCS12_pack_p7encdata_ex(int pbe_nid, const char *pass, int passlen,
95
    unsigned char *salt, int saltlen, int iter,
96
    STACK_OF(PKCS12_SAFEBAG) *bags,
97
    OSSL_LIB_CTX *ctx, const char *propq)
98
0
{
99
0
    PKCS7 *p7;
100
0
    X509_ALGOR *pbe;
101
0
    EVP_CIPHER *pbe_ciph = NULL;
102
103
0
    if ((p7 = PKCS7_new_ex(ctx, propq)) == NULL) {
104
0
        ERR_raise(ERR_LIB_PKCS12, ERR_R_ASN1_LIB);
105
0
        return NULL;
106
0
    }
107
0
    if (!PKCS7_set_type(p7, NID_pkcs7_encrypted)) {
108
0
        ERR_raise(ERR_LIB_PKCS12, PKCS12_R_ERROR_SETTING_ENCRYPTED_DATA_TYPE);
109
0
        goto err;
110
0
    }
111
112
0
    pbe_ciph = EVP_CIPHER_fetch(ctx, OBJ_nid2sn(pbe_nid), propq);
113
114
0
    if (pbe_ciph != NULL) {
115
0
        pbe = PKCS5_pbe2_set_iv_ex(pbe_ciph, iter, salt, saltlen, NULL, -1, ctx);
116
0
    } else {
117
0
        pbe = PKCS5_pbe_set_ex(pbe_nid, iter, salt, saltlen, ctx);
118
0
    }
119
120
0
    if (pbe == NULL) {
121
0
        ERR_raise(ERR_LIB_PKCS12, ERR_R_ASN1_LIB);
122
0
        goto err;
123
0
    }
124
0
    X509_ALGOR_free(p7->d.encrypted->enc_data->algorithm);
125
0
    p7->d.encrypted->enc_data->algorithm = pbe;
126
0
    ASN1_OCTET_STRING_free(p7->d.encrypted->enc_data->enc_data);
127
0
    if (!(p7->d.encrypted->enc_data->enc_data = PKCS12_item_i2d_encrypt_ex(pbe, ASN1_ITEM_rptr(PKCS12_SAFEBAGS), pass,
128
0
              passlen, bags, 1, ctx, propq))) {
129
0
        ERR_raise(ERR_LIB_PKCS12, PKCS12_R_ENCRYPT_ERROR);
130
0
        goto err;
131
0
    }
132
133
0
    EVP_CIPHER_free(pbe_ciph);
134
0
    return p7;
135
136
0
err:
137
0
    PKCS7_free(p7);
138
0
    EVP_CIPHER_free(pbe_ciph);
139
0
    return NULL;
140
0
}
141
142
PKCS7 *PKCS12_pack_p7encdata(int pbe_nid, const char *pass, int passlen,
143
    unsigned char *salt, int saltlen, int iter,
144
    STACK_OF(PKCS12_SAFEBAG) *bags)
145
0
{
146
0
    return PKCS12_pack_p7encdata_ex(pbe_nid, pass, passlen, salt, saltlen,
147
0
        iter, bags, NULL, NULL);
148
0
}
149
150
STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7encdata(PKCS7 *p7, const char *pass,
151
    int passlen)
152
308
{
153
308
    if (!PKCS7_type_is_encrypted(p7))
154
0
        return NULL;
155
156
308
    if (p7->d.encrypted == NULL) {
157
4
        ERR_raise(ERR_LIB_PKCS12, PKCS12_R_DECODE_ERROR);
158
4
        return NULL;
159
4
    }
160
161
304
    return PKCS12_item_decrypt_d2i_ex(p7->d.encrypted->enc_data->algorithm,
162
304
        ASN1_ITEM_rptr(PKCS12_SAFEBAGS),
163
304
        pass, passlen,
164
304
        p7->d.encrypted->enc_data->enc_data, 1,
165
304
        p7->ctx.libctx, p7->ctx.propq);
166
308
}
167
168
PKCS8_PRIV_KEY_INFO *PKCS12_decrypt_skey_ex(const PKCS12_SAFEBAG *bag,
169
    const char *pass, int passlen,
170
    OSSL_LIB_CTX *ctx, const char *propq)
171
16
{
172
16
    return PKCS8_decrypt_ex(bag->value.shkeybag, pass, passlen, ctx, propq);
173
16
}
174
175
PKCS8_PRIV_KEY_INFO *PKCS12_decrypt_skey(const PKCS12_SAFEBAG *bag,
176
    const char *pass, int passlen)
177
0
{
178
0
    return PKCS12_decrypt_skey_ex(bag, pass, passlen, NULL, NULL);
179
0
}
180
181
int PKCS12_pack_authsafes(PKCS12 *p12, STACK_OF(PKCS7) *safes)
182
0
{
183
0
    if (ASN1_item_pack(safes, ASN1_ITEM_rptr(PKCS12_AUTHSAFES),
184
0
            &p12->authsafes->d.data))
185
0
        return 1;
186
0
    return 0;
187
0
}
188
189
STACK_OF(PKCS7) *PKCS12_unpack_authsafes(const PKCS12 *p12)
190
1.53k
{
191
1.53k
    STACK_OF(PKCS7) *p7s;
192
1.53k
    PKCS7_CTX *p7ctx;
193
1.53k
    PKCS7 *p7;
194
1.53k
    int i;
195
196
1.53k
    if (!PKCS7_type_is_data(p12->authsafes)) {
197
82
        ERR_raise(ERR_LIB_PKCS12, PKCS12_R_CONTENT_TYPE_NOT_DATA);
198
82
        return NULL;
199
82
    }
200
201
1.45k
    if (p12->authsafes->d.data == NULL) {
202
2
        ERR_raise(ERR_LIB_PKCS12, PKCS12_R_DECODE_ERROR);
203
2
        return NULL;
204
2
    }
205
206
1.45k
    p7ctx = &p12->authsafes->ctx;
207
1.45k
    p7s = ASN1_item_unpack_ex(p12->authsafes->d.data,
208
1.45k
        ASN1_ITEM_rptr(PKCS12_AUTHSAFES),
209
1.45k
        ossl_pkcs7_ctx_get0_libctx(p7ctx),
210
1.45k
        ossl_pkcs7_ctx_get0_propq(p7ctx));
211
1.45k
    if (p7s != NULL) {
212
1.44k
        for (i = 0; i < sk_PKCS7_num(p7s); i++) {
213
1.02k
            p7 = sk_PKCS7_value(p7s, i);
214
1.02k
            if (!ossl_pkcs7_ctx_propagate(p12->authsafes, p7))
215
0
                goto err;
216
1.02k
        }
217
424
    }
218
1.45k
    return p7s;
219
0
err:
220
0
    sk_PKCS7_free(p7s);
221
    return NULL;
222
1.45k
}