287b6c2a1ec2884ab9252217f06ed6a128c02b16
[openssl.git] / crypto / x509 / x_x509.c
1 /*
2  * Copyright 1995-2020 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/evp.h>
13 #include <openssl/asn1t.h>
14 #include <openssl/x509.h>
15 #include <openssl/x509v3.h>
16 #include "crypto/x509.h"
17
18 ASN1_SEQUENCE_enc(X509_CINF, enc, 0) = {
19         ASN1_EXP_OPT(X509_CINF, version, ASN1_INTEGER, 0),
20         ASN1_EMBED(X509_CINF, serialNumber, ASN1_INTEGER),
21         ASN1_EMBED(X509_CINF, signature, X509_ALGOR),
22         ASN1_SIMPLE(X509_CINF, issuer, X509_NAME),
23         ASN1_EMBED(X509_CINF, validity, X509_VAL),
24         ASN1_SIMPLE(X509_CINF, subject, X509_NAME),
25         ASN1_SIMPLE(X509_CINF, key, X509_PUBKEY),
26         ASN1_IMP_OPT(X509_CINF, issuerUID, ASN1_BIT_STRING, 1),
27         ASN1_IMP_OPT(X509_CINF, subjectUID, ASN1_BIT_STRING, 2),
28         ASN1_EXP_SEQUENCE_OF_OPT(X509_CINF, extensions, X509_EXTENSION, 3)
29 } ASN1_SEQUENCE_END_enc(X509_CINF, X509_CINF)
30
31 IMPLEMENT_ASN1_FUNCTIONS(X509_CINF)
32 /* X509 top level structure needs a bit of customisation */
33
34 extern void policy_cache_free(X509_POLICY_CACHE *cache);
35
36 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
37                    void *exarg)
38 {
39     X509 *ret = (X509 *)*pval;
40
41     switch (operation) {
42
43     case ASN1_OP_D2I_PRE:
44         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data);
45         X509_CERT_AUX_free(ret->aux);
46         ASN1_OCTET_STRING_free(ret->skid);
47         AUTHORITY_KEYID_free(ret->akid);
48         CRL_DIST_POINTS_free(ret->crldp);
49         policy_cache_free(ret->policy_cache);
50         GENERAL_NAMES_free(ret->altname);
51         NAME_CONSTRAINTS_free(ret->nc);
52 #ifndef OPENSSL_NO_RFC3779
53         sk_IPAddressFamily_pop_free(ret->rfc3779_addr, IPAddressFamily_free);
54         ASIdentifiers_free(ret->rfc3779_asid);
55 #endif
56         ASN1_OCTET_STRING_free(ret->distinguishing_id);
57
58         /* fall thru */
59
60     case ASN1_OP_NEW_POST:
61         ret->ex_cached = 0;
62         ret->ex_kusage = 0;
63         ret->ex_xkusage = 0;
64         ret->ex_nscert = 0;
65         ret->ex_flags = 0;
66         ret->ex_pathlen = -1;
67         ret->ex_pcpathlen = -1;
68         ret->skid = NULL;
69         ret->akid = NULL;
70         ret->policy_cache = NULL;
71         ret->altname = NULL;
72         ret->nc = NULL;
73 #ifndef OPENSSL_NO_RFC3779
74         ret->rfc3779_addr = NULL;
75         ret->rfc3779_asid = NULL;
76 #endif
77         ret->distinguishing_id = NULL;
78         ret->aux = NULL;
79         ret->crldp = NULL;
80         if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data))
81             return 0;
82         break;
83
84     case ASN1_OP_FREE_POST:
85         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data);
86         X509_CERT_AUX_free(ret->aux);
87         ASN1_OCTET_STRING_free(ret->skid);
88         AUTHORITY_KEYID_free(ret->akid);
89         CRL_DIST_POINTS_free(ret->crldp);
90         policy_cache_free(ret->policy_cache);
91         GENERAL_NAMES_free(ret->altname);
92         NAME_CONSTRAINTS_free(ret->nc);
93 #ifndef OPENSSL_NO_RFC3779
94         sk_IPAddressFamily_pop_free(ret->rfc3779_addr, IPAddressFamily_free);
95         ASIdentifiers_free(ret->rfc3779_asid);
96 #endif
97         ASN1_OCTET_STRING_free(ret->distinguishing_id);
98         OPENSSL_free(ret->propq);
99         break;
100
101     case ASN1_OP_DUP_POST:
102         {
103             X509 *old = exarg;
104
105             if (!x509_set0_libctx(ret, old->libctx, old->propq))
106                 return 0;
107         }
108         break;
109     default:
110         break;
111     }
112
113     return 1;
114 }
115
116 ASN1_SEQUENCE_ref(X509, x509_cb) = {
117         ASN1_EMBED(X509, cert_info, X509_CINF),
118         ASN1_EMBED(X509, sig_alg, X509_ALGOR),
119         ASN1_EMBED(X509, signature, ASN1_BIT_STRING)
120 } ASN1_SEQUENCE_END_ref(X509, X509)
121
122 IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(X509, X509, X509)
123 IMPLEMENT_ASN1_DUP_FUNCTION(X509)
124
125 X509 *d2i_X509(X509 **a, const unsigned char **in, long len)
126 {
127     X509 *cert = NULL;
128     int free_on_error = a != NULL && *a == NULL;
129
130     cert = (X509 *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, (X509_it()));
131     /* Only cache the extensions if the cert object was passed in */
132     if (cert != NULL && a != NULL) {
133         if (!x509v3_cache_extensions(cert)) {
134             if (free_on_error)
135                 X509_free(cert);
136             cert = NULL;
137         }
138     }
139     return cert;
140 }
141 int i2d_X509(const X509 *a, unsigned char **out)
142 {
143     return ASN1_item_i2d((const ASN1_VALUE *)a, out, (X509_it()));
144 }
145
146 /*
147  * This should only be used if the X509 object was embedded inside another
148  * asn1 object and it needs a libctx to operate.
149  * Use X509_new_ex() instead if possible.
150  */
151 int x509_set0_libctx(X509 *x, OSSL_LIB_CTX *libctx, const char *propq)
152 {
153     if (x != NULL) {
154         x->libctx = libctx;
155         OPENSSL_free(x->propq);
156         x->propq = NULL;
157         if (propq != NULL) {
158             x->propq = OPENSSL_strdup(propq);
159             if (x->propq == NULL)
160                 return 0;
161         }
162     }
163     return 1;
164 }
165
166 X509 *X509_new_ex(OSSL_LIB_CTX *libctx, const char *propq)
167 {
168     X509 *cert = NULL;
169
170     cert = (X509 *)ASN1_item_new((X509_it()));
171     if (!x509_set0_libctx(cert, libctx, propq)) {
172         X509_free(cert);
173         cert = NULL;
174     }
175     return cert;
176 }
177
178 int X509_set_ex_data(X509 *r, int idx, void *arg)
179 {
180     return CRYPTO_set_ex_data(&r->ex_data, idx, arg);
181 }
182
183 void *X509_get_ex_data(const X509 *r, int idx)
184 {
185     return CRYPTO_get_ex_data(&r->ex_data, idx);
186 }
187
188 /*
189  * X509_AUX ASN1 routines. X509_AUX is the name given to a certificate with
190  * extra info tagged on the end. Since these functions set how a certificate
191  * is trusted they should only be used when the certificate comes from a
192  * reliable source such as local storage.
193  */
194
195 X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length)
196 {
197     const unsigned char *q;
198     X509 *ret;
199     int freeret = 0;
200
201     /* Save start position */
202     q = *pp;
203
204     if (a == NULL || *a == NULL)
205         freeret = 1;
206     ret = d2i_X509(a, &q, length);
207     /* If certificate unreadable then forget it */
208     if (ret == NULL)
209         return NULL;
210     /* update length */
211     length -= q - *pp;
212     if (length > 0 && !d2i_X509_CERT_AUX(&ret->aux, &q, length))
213         goto err;
214     *pp = q;
215     return ret;
216  err:
217     if (freeret) {
218         X509_free(ret);
219         if (a)
220             *a = NULL;
221     }
222     return NULL;
223 }
224
225 /*
226  * Serialize trusted certificate to *pp or just return the required buffer
227  * length if pp == NULL.  We ultimately want to avoid modifying *pp in the
228  * error path, but that depends on similar hygiene in lower-level functions.
229  * Here we avoid compounding the problem.
230  */
231 static int i2d_x509_aux_internal(const X509 *a, unsigned char **pp)
232 {
233     int length, tmplen;
234     unsigned char *start = pp != NULL ? *pp : NULL;
235
236     /*
237      * This might perturb *pp on error, but fixing that belongs in i2d_X509()
238      * not here.  It should be that if a == NULL length is zero, but we check
239      * both just in case.
240      */
241     length = i2d_X509(a, pp);
242     if (length <= 0 || a == NULL)
243         return length;
244
245     tmplen = i2d_X509_CERT_AUX(a->aux, pp);
246     if (tmplen < 0) {
247         if (start != NULL)
248             *pp = start;
249         return tmplen;
250     }
251     length += tmplen;
252
253     return length;
254 }
255
256 /*
257  * Serialize trusted certificate to *pp, or just return the required buffer
258  * length if pp == NULL.
259  *
260  * When pp is not NULL, but *pp == NULL, we allocate the buffer, but since
261  * we're writing two ASN.1 objects back to back, we can't have i2d_X509() do
262  * the allocation, nor can we allow i2d_X509_CERT_AUX() to increment the
263  * allocated buffer.
264  */
265 int i2d_X509_AUX(const X509 *a, unsigned char **pp)
266 {
267     int length;
268     unsigned char *tmp;
269
270     /* Buffer provided by caller */
271     if (pp == NULL || *pp != NULL)
272         return i2d_x509_aux_internal(a, pp);
273
274     /* Obtain the combined length */
275     if ((length = i2d_x509_aux_internal(a, NULL)) <= 0)
276         return length;
277
278     /* Allocate requisite combined storage */
279     *pp = tmp = OPENSSL_malloc(length);
280     if (tmp == NULL) {
281         ERR_raise(ERR_LIB_X509, ERR_R_MALLOC_FAILURE);
282         return -1;
283     }
284
285     /* Encode, but keep *pp at the originally malloced pointer */
286     length = i2d_x509_aux_internal(a, &tmp);
287     if (length <= 0) {
288         OPENSSL_free(*pp);
289         *pp = NULL;
290     }
291     return length;
292 }
293
294 int i2d_re_X509_tbs(X509 *x, unsigned char **pp)
295 {
296     x->cert_info.enc.modified = 1;
297     return i2d_X509_CINF(&x->cert_info, pp);
298 }
299
300 void X509_get0_signature(const ASN1_BIT_STRING **psig,
301                          const X509_ALGOR **palg, const X509 *x)
302 {
303     if (psig)
304         *psig = &x->signature;
305     if (palg)
306         *palg = &x->sig_alg;
307 }
308
309 int X509_get_signature_nid(const X509 *x)
310 {
311     return OBJ_obj2nid(x->sig_alg.algorithm);
312 }
313
314 void X509_set0_distinguishing_id(X509 *x, ASN1_OCTET_STRING *d_id)
315 {
316     ASN1_OCTET_STRING_free(x->distinguishing_id);
317     x->distinguishing_id = d_id;
318 }
319
320 ASN1_OCTET_STRING *X509_get0_distinguishing_id(X509 *x)
321 {
322     return x->distinguishing_id;
323 }