]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/x509/x509_trs.c
Remove /* foo.c */ comments
[thirdparty/openssl.git] / crypto / x509 / x509_trs.c
CommitLineData
0f113f3e
MC
1/*
2 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
3 * 1999.
21f77552
DSH
4 */
5/* ====================================================================
6 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
0f113f3e 13 * notice, this list of conditions and the following disclaimer.
21f77552
DSH
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59#include <stdio.h>
b39fc560 60#include "internal/cryptlib.h"
21f77552 61#include <openssl/x509v3.h>
bc3686df 62#include "internal/x509_int.h"
21f77552 63
0f113f3e 64static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b);
21f77552
DSH
65static void trtable_free(X509_TRUST *p);
66
6447cce3 67static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
81f169e9 68static int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
068fdce8 69static int trust_compat(X509_TRUST *trust, X509 *x, int flags);
21f77552 70
6447cce3 71static int obj_trust(int id, X509 *x, int flags);
0f113f3e 72static int (*default_trust) (int id, X509 *x, int flags) = obj_trust;
6447cce3 73
0f113f3e
MC
74/*
75 * WARNING: the following table should be kept in order of trust and without
76 * any gaps so we can just subtract the minimum trust value to get an index
77 * into the table
dd413410
DSH
78 */
79
21f77552 80static X509_TRUST trstandard[] = {
0f113f3e
MC
81 {X509_TRUST_COMPAT, 0, trust_compat, "compatible", 0, NULL},
82 {X509_TRUST_SSL_CLIENT, 0, trust_1oidany, "SSL Client", NID_client_auth,
83 NULL},
84 {X509_TRUST_SSL_SERVER, 0, trust_1oidany, "SSL Server", NID_server_auth,
85 NULL},
86 {X509_TRUST_EMAIL, 0, trust_1oidany, "S/MIME email", NID_email_protect,
87 NULL},
88 {X509_TRUST_OBJECT_SIGN, 0, trust_1oidany, "Object Signer", NID_code_sign,
89 NULL},
90 {X509_TRUST_OCSP_SIGN, 0, trust_1oid, "OCSP responder", NID_OCSP_sign,
91 NULL},
92 {X509_TRUST_OCSP_REQUEST, 0, trust_1oid, "OCSP request", NID_ad_OCSP,
93 NULL},
94 {X509_TRUST_TSA, 0, trust_1oidany, "TSA server", NID_time_stamp, NULL}
21f77552
DSH
95};
96
b6eb9827 97#define X509_TRUST_COUNT OSSL_NELEM(trstandard)
dd413410 98
21f77552
DSH
99static STACK_OF(X509_TRUST) *trtable = NULL;
100
0f113f3e 101static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b)
21f77552 102{
0f113f3e 103 return (*a)->trust - (*b)->trust;
21f77552
DSH
104}
105
0f113f3e
MC
106int (*X509_TRUST_set_default(int (*trust) (int, X509 *, int))) (int, X509 *,
107 int) {
108 int (*oldtrust) (int, X509 *, int);
109 oldtrust = default_trust;
110 default_trust = trust;
111 return oldtrust;
6447cce3
DSH
112}
113
21f77552
DSH
114int X509_check_trust(X509 *x, int id, int flags)
115{
0f113f3e
MC
116 X509_TRUST *pt;
117 int idx;
0e7abc90 118
0f113f3e
MC
119 /* We get this as a default value */
120 if (id == 0) {
121 int rv;
122 rv = obj_trust(NID_anyExtendedKeyUsage, x, 0);
123 if (rv != X509_TRUST_UNTRUSTED)
124 return rv;
125 return trust_compat(NULL, x, 0);
126 }
127 idx = X509_TRUST_get_by_id(id);
128 if (idx == -1)
129 return default_trust(id, x, flags);
130 pt = X509_TRUST_get0(idx);
131 return pt->check_trust(pt, x, flags);
21f77552
DSH
132}
133
134int X509_TRUST_get_count(void)
135{
0f113f3e
MC
136 if (!trtable)
137 return X509_TRUST_COUNT;
138 return sk_X509_TRUST_num(trtable) + X509_TRUST_COUNT;
21f77552
DSH
139}
140
0f113f3e 141X509_TRUST *X509_TRUST_get0(int idx)
21f77552 142{
0f113f3e
MC
143 if (idx < 0)
144 return NULL;
145 if (idx < (int)X509_TRUST_COUNT)
146 return trstandard + idx;
147 return sk_X509_TRUST_value(trtable, idx - X509_TRUST_COUNT);
21f77552
DSH
148}
149
150int X509_TRUST_get_by_id(int id)
151{
0f113f3e
MC
152 X509_TRUST tmp;
153 int idx;
154 if ((id >= X509_TRUST_MIN) && (id <= X509_TRUST_MAX))
155 return id - X509_TRUST_MIN;
156 tmp.trust = id;
157 if (!trtable)
158 return -1;
159 idx = sk_X509_TRUST_find(trtable, &tmp);
160 if (idx == -1)
161 return -1;
162 return idx + X509_TRUST_COUNT;
21f77552
DSH
163}
164
926a56bf
DSH
165int X509_TRUST_set(int *t, int trust)
166{
0f113f3e
MC
167 if (X509_TRUST_get_by_id(trust) == -1) {
168 X509err(X509_F_X509_TRUST_SET, X509_R_INVALID_TRUST);
169 return 0;
170 }
171 *t = trust;
172 return 1;
926a56bf
DSH
173}
174
0f113f3e
MC
175int X509_TRUST_add(int id, int flags, int (*ck) (X509_TRUST *, X509 *, int),
176 char *name, int arg1, void *arg2)
21f77552 177{
0f113f3e
MC
178 int idx;
179 X509_TRUST *trtmp;
180 /*
181 * This is set according to what we change: application can't set it
182 */
183 flags &= ~X509_TRUST_DYNAMIC;
184 /* This will always be set for application modified trust entries */
185 flags |= X509_TRUST_DYNAMIC_NAME;
186 /* Get existing entry if any */
187 idx = X509_TRUST_get_by_id(id);
188 /* Need a new entry */
189 if (idx == -1) {
75ebbd9a 190 if ((trtmp = OPENSSL_malloc(sizeof(*trtmp))) == NULL) {
0f113f3e
MC
191 X509err(X509_F_X509_TRUST_ADD, ERR_R_MALLOC_FAILURE);
192 return 0;
193 }
194 trtmp->flags = X509_TRUST_DYNAMIC;
195 } else
196 trtmp = X509_TRUST_get0(idx);
197
198 /* OPENSSL_free existing name if dynamic */
199 if (trtmp->flags & X509_TRUST_DYNAMIC_NAME)
200 OPENSSL_free(trtmp->name);
201 /* dup supplied name */
7644a9ae 202 if ((trtmp->name = OPENSSL_strdup(name)) == NULL) {
0f113f3e
MC
203 X509err(X509_F_X509_TRUST_ADD, ERR_R_MALLOC_FAILURE);
204 return 0;
205 }
206 /* Keep the dynamic flag of existing entry */
207 trtmp->flags &= X509_TRUST_DYNAMIC;
208 /* Set all other flags */
209 trtmp->flags |= flags;
210
211 trtmp->trust = id;
212 trtmp->check_trust = ck;
213 trtmp->arg1 = arg1;
214 trtmp->arg2 = arg2;
215
216 /* If its a new entry manage the dynamic table */
217 if (idx == -1) {
75ebbd9a
RS
218 if (trtable == NULL
219 && (trtable = sk_X509_TRUST_new(tr_cmp)) == NULL) {
0f113f3e
MC
220 X509err(X509_F_X509_TRUST_ADD, ERR_R_MALLOC_FAILURE);
221 return 0;
222 }
223 if (!sk_X509_TRUST_push(trtable, trtmp)) {
224 X509err(X509_F_X509_TRUST_ADD, ERR_R_MALLOC_FAILURE);
225 return 0;
226 }
227 }
228 return 1;
21f77552
DSH
229}
230
231static void trtable_free(X509_TRUST *p)
0f113f3e
MC
232{
233 if (!p)
234 return;
235 if (p->flags & X509_TRUST_DYNAMIC) {
236 if (p->flags & X509_TRUST_DYNAMIC_NAME)
237 OPENSSL_free(p->name);
238 OPENSSL_free(p);
239 }
240}
21f77552
DSH
241
242void X509_TRUST_cleanup(void)
243{
0f113f3e
MC
244 unsigned int i;
245 for (i = 0; i < X509_TRUST_COUNT; i++)
246 trtable_free(trstandard + i);
247 sk_X509_TRUST_pop_free(trtable, trtable_free);
248 trtable = NULL;
21f77552
DSH
249}
250
dd413410 251int X509_TRUST_get_flags(X509_TRUST *xp)
21f77552 252{
0f113f3e 253 return xp->flags;
21f77552
DSH
254}
255
c7cb16a8 256char *X509_TRUST_get0_name(X509_TRUST *xp)
21f77552 257{
0f113f3e 258 return xp->name;
21f77552
DSH
259}
260
261int X509_TRUST_get_trust(X509_TRUST *xp)
262{
0f113f3e 263 return xp->trust;
21f77552
DSH
264}
265
6447cce3 266static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags)
21f77552 267{
0f113f3e
MC
268 if (x->aux && (x->aux->trust || x->aux->reject))
269 return obj_trust(trust->arg1, x, flags);
270 /*
271 * we don't have any trust settings: for compatibility we return trusted
272 * if it is self signed
273 */
274 return trust_compat(trust, x, flags);
068fdce8
DSH
275}
276
81f169e9
DSH
277static int trust_1oid(X509_TRUST *trust, X509 *x, int flags)
278{
0f113f3e
MC
279 if (x->aux)
280 return obj_trust(trust->arg1, x, flags);
281 return X509_TRUST_UNTRUSTED;
81f169e9
DSH
282}
283
068fdce8
DSH
284static int trust_compat(X509_TRUST *trust, X509 *x, int flags)
285{
0f113f3e
MC
286 X509_check_purpose(x, -1, 0);
287 if (x->ex_flags & EXFLAG_SS)
288 return X509_TRUST_TRUSTED;
289 else
290 return X509_TRUST_UNTRUSTED;
21f77552
DSH
291}
292
6447cce3
DSH
293static int obj_trust(int id, X509 *x, int flags)
294{
0f113f3e
MC
295 ASN1_OBJECT *obj;
296 int i;
297 X509_CERT_AUX *ax;
298 ax = x->aux;
299 if (!ax)
300 return X509_TRUST_UNTRUSTED;
301 if (ax->reject) {
302 for (i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
303 obj = sk_ASN1_OBJECT_value(ax->reject, i);
304 if (OBJ_obj2nid(obj) == id)
305 return X509_TRUST_REJECTED;
306 }
307 }
308 if (ax->trust) {
309 for (i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
310 obj = sk_ASN1_OBJECT_value(ax->trust, i);
311 if (OBJ_obj2nid(obj) == id)
312 return X509_TRUST_TRUSTED;
313 }
3342dcea
VD
314 /*
315 * Reject when explicit trust EKU are set and none match.
316 *
317 * Returning untrusted is enough for for full chains that end in
318 * self-signed roots, because when explicit trust is specified it
319 * suppresses the default blanket trust of self-signed objects.
320 *
321 * But for partial chains, this is not enough, because absent a similar
322 * trust-self-signed policy, non matching EKUs are indistinguishable
323 * from lack of EKU constraints.
324 *
325 * Therefore, failure to match any trusted purpose must trigger an
326 * explicit reject.
327 */
328 return X509_TRUST_REJECTED;
0f113f3e
MC
329 }
330 return X509_TRUST_UNTRUSTED;
6447cce3 331}