x509_trs.c revision 1.21
1184251Smarcel/* $OpenBSD: x509_trs.c,v 1.21 2016/11/06 10:31:34 beck Exp $ */
2184251Smarcel/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3255207Sbrooks * project 1999.
4184251Smarcel */
5184251Smarcel/* ====================================================================
6255207Sbrooks * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
7255207Sbrooks *
8255207Sbrooks * Redistribution and use in source and binary forms, with or without
9255207Sbrooks * modification, are permitted provided that the following conditions
10255207Sbrooks * are met:
11184251Smarcel *
12184251Smarcel * 1. Redistributions of source code must retain the above copyright
13184251Smarcel *    notice, this list of conditions and the following disclaimer.
14184251Smarcel *
15184251Smarcel * 2. Redistributions in binary form must reproduce the above copyright
16184251Smarcel *    notice, this list of conditions and the following disclaimer in
17184251Smarcel *    the documentation and/or other materials provided with the
18184251Smarcel *    distribution.
19184251Smarcel *
20184251Smarcel * 3. All advertising materials mentioning features or use of this
21184251Smarcel *    software must display the following acknowledgment:
22184251Smarcel *    "This product includes software developed by the OpenSSL Project
23184251Smarcel *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24184251Smarcel *
25184251Smarcel * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26184251Smarcel *    endorse or promote products derived from this software without
27184251Smarcel *    prior written permission. For written permission, please contact
28184251Smarcel *    licensing@OpenSSL.org.
29184251Smarcel *
30184251Smarcel * 5. Products derived from this software may not be called "OpenSSL"
31184251Smarcel *    nor may "OpenSSL" appear in their names without prior written
32184251Smarcel *    permission of the OpenSSL Project.
33184251Smarcel *
34184251Smarcel * 6. Redistributions of any form whatsoever must retain the following
35184251Smarcel *    acknowledgment:
36184251Smarcel *    "This product includes software developed by the OpenSSL Project
37184251Smarcel *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38184251Smarcel *
39184251Smarcel * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40184251Smarcel * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41255207Sbrooks * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42255207Sbrooks * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43255207Sbrooks * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44255207Sbrooks * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45255207Sbrooks * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46255207Sbrooks * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47184251Smarcel * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48184251Smarcel * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49184251Smarcel * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50184251Smarcel * OF THE POSSIBILITY OF SUCH DAMAGE.
51184251Smarcel * ====================================================================
52184251Smarcel *
53184251Smarcel * This product includes cryptographic software written by Eric Young
54184251Smarcel * (eay@cryptsoft.com).  This product includes software written by Tim
55184251Smarcel * Hudson (tjh@cryptsoft.com).
56184251Smarcel *
57184251Smarcel */
58184251Smarcel
59184251Smarcel#include <stdio.h>
60184251Smarcel#include <string.h>
61184251Smarcel
62184251Smarcel#include <openssl/err.h>
63184251Smarcel#include <openssl/x509v3.h>
64184251Smarcel
65184251Smarcelstatic int tr_cmp(const X509_TRUST * const *a, const X509_TRUST * const *b);
66255207Sbrooksstatic void trtable_free(X509_TRUST *p);
67255207Sbrooks
68255207Sbrooksstatic int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
69255207Sbrooksstatic int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
70184251Smarcelstatic int trust_compat(X509_TRUST *trust, X509 *x, int flags);
71255207Sbrooks
72255207Sbrooksstatic int obj_trust(int id, X509 *x, int flags);
73184251Smarcelstatic int (*default_trust)(int id, X509 *x, int flags) = obj_trust;
74184251Smarcel
75184251Smarcel/* WARNING: the following table should be kept in order of trust
76184251Smarcel * and without any gaps so we can just subtract the minimum trust
77255207Sbrooks * value to get an index into the table
78184251Smarcel */
79184251Smarcel
80184251Smarcelstatic X509_TRUST trstandard[] = {
81184251Smarcel	{X509_TRUST_COMPAT, 0, trust_compat, "compatible", 0, NULL},
82184251Smarcel	{X509_TRUST_SSL_CLIENT, 0, trust_1oidany, "SSL Client", NID_client_auth, NULL},
83184251Smarcel	{X509_TRUST_SSL_SERVER, 0, trust_1oidany, "SSL Server", NID_server_auth, NULL},
84184251Smarcel	{X509_TRUST_EMAIL, 0, trust_1oidany, "S/MIME email", NID_email_protect, NULL},
85189606Ssam	{X509_TRUST_OBJECT_SIGN, 0, trust_1oidany, "Object Signer", NID_code_sign, NULL},
86184251Smarcel	{X509_TRUST_OCSP_SIGN, 0, trust_1oid, "OCSP responder", NID_OCSP_sign, NULL},
87184251Smarcel	{X509_TRUST_OCSP_REQUEST, 0, trust_1oid, "OCSP request", NID_ad_OCSP, NULL},
88184251Smarcel	{X509_TRUST_TSA, 0, trust_1oidany, "TSA server", NID_time_stamp, NULL}
89184251Smarcel};
90184251Smarcel
91233553Sjchandra#define X509_TRUST_COUNT	(sizeof(trstandard)/sizeof(X509_TRUST))
92184251Smarcel
93184251Smarcelstatic STACK_OF(X509_TRUST) *trtable = NULL;
94184251Smarcel
95189606Ssamstatic int
96189606Ssamtr_cmp(const X509_TRUST * const *a, const X509_TRUST * const *b)
97184251Smarcel{
98188156Ssam	return (*a)->trust - (*b)->trust;
99188156Ssam}
100188156Ssam
101188156Ssamint
102188156Ssam(*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int)
103188156Ssam{
104188156Ssam	int (*oldtrust)(int , X509 *, int);
105184251Smarcel
106	oldtrust = default_trust;
107	default_trust = trust;
108	return oldtrust;
109}
110
111int
112X509_check_trust(X509 *x, int id, int flags)
113{
114	X509_TRUST *pt;
115	int idx;
116
117	if (id == -1)
118		return 1;
119	/*
120	 * XXX beck/jsing This enables self signed certs to be trusted for
121	 * an unspecified id/trust flag value (this is NOT the
122	 * X509_TRUST_DEFAULT), which was the longstanding
123	 * openssl behaviour. boringssl does not have this behaviour.
124	 *
125	 * This should be revisited, but changing the default "not default"
126	 * may break things.
127	 */
128	if (id == 0) {
129		int rv;
130		rv = obj_trust(NID_anyExtendedKeyUsage, x, 0);
131		if (rv != X509_TRUST_UNTRUSTED)
132			return rv;
133		return trust_compat(NULL, x, 0);
134	}
135	idx = X509_TRUST_get_by_id(id);
136	if (idx == -1)
137		return default_trust(id, x, flags);
138	pt = X509_TRUST_get0(idx);
139	return pt->check_trust(pt, x, flags);
140}
141
142int
143X509_TRUST_get_count(void)
144{
145	if (!trtable)
146		return X509_TRUST_COUNT;
147	return sk_X509_TRUST_num(trtable) + X509_TRUST_COUNT;
148}
149
150X509_TRUST *
151X509_TRUST_get0(int idx)
152{
153	if (idx < 0)
154		return NULL;
155	if (idx < (int)X509_TRUST_COUNT)
156		return trstandard + idx;
157	return sk_X509_TRUST_value(trtable, idx - X509_TRUST_COUNT);
158}
159
160int
161X509_TRUST_get_by_id(int id)
162{
163	X509_TRUST tmp;
164	int idx;
165
166	if ((id >= X509_TRUST_MIN) && (id <= X509_TRUST_MAX))
167		return id - X509_TRUST_MIN;
168	tmp.trust = id;
169	if (!trtable)
170		return -1;
171	idx = sk_X509_TRUST_find(trtable, &tmp);
172	if (idx == -1)
173		return -1;
174	return idx + X509_TRUST_COUNT;
175}
176
177int
178X509_TRUST_set(int *t, int trust)
179{
180	if (X509_TRUST_get_by_id(trust) == -1) {
181		X509err(X509_F_X509_TRUST_SET, X509_R_INVALID_TRUST);
182		return 0;
183	}
184	*t = trust;
185	return 1;
186}
187
188int
189X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int),
190    char *name, int arg1, void *arg2)
191{
192	int idx;
193	X509_TRUST *trtmp;
194	char *name_dup;
195
196	/* This is set according to what we change: application can't set it */
197	flags &= ~X509_TRUST_DYNAMIC;
198	/* This will always be set for application modified trust entries */
199	flags |= X509_TRUST_DYNAMIC_NAME;
200	/* Get existing entry if any */
201	idx = X509_TRUST_get_by_id(id);
202	/* Need a new entry */
203	if (idx == -1) {
204		if (!(trtmp = malloc(sizeof(X509_TRUST)))) {
205			X509err(X509_F_X509_TRUST_ADD, ERR_R_MALLOC_FAILURE);
206			return 0;
207		}
208		trtmp->flags = X509_TRUST_DYNAMIC;
209	} else {
210		trtmp = X509_TRUST_get0(idx);
211		if (trtmp == NULL) {
212			X509err(X509_F_X509_TRUST_ADD, X509_R_INVALID_TRUST);
213			return 0;
214		}
215	}
216
217	if ((name_dup = strdup(name)) == NULL)
218		goto err;
219
220	/* free existing name if dynamic */
221	if (trtmp->flags & X509_TRUST_DYNAMIC_NAME)
222		free(trtmp->name);
223	/* dup supplied name */
224	trtmp->name = name_dup;
225	/* Keep the dynamic flag of existing entry */
226	trtmp->flags &= X509_TRUST_DYNAMIC;
227	/* Set all other flags */
228	trtmp->flags |= flags;
229
230	trtmp->trust = id;
231	trtmp->check_trust = ck;
232	trtmp->arg1 = arg1;
233	trtmp->arg2 = arg2;
234
235	/* If it's a new entry, manage the dynamic table */
236	if (idx == -1) {
237		if (trtable == NULL &&
238		    (trtable = sk_X509_TRUST_new(tr_cmp)) == NULL)
239			goto err;
240		if (sk_X509_TRUST_push(trtable, trtmp) == 0)
241			goto err;
242	}
243	return 1;
244
245err:
246	free(name_dup);
247	if (idx == -1)
248		free(trtmp);
249	X509err(X509_F_X509_TRUST_ADD, ERR_R_MALLOC_FAILURE);
250	return 0;
251}
252
253static void
254trtable_free(X509_TRUST *p)
255{
256	if (!p)
257		return;
258	if (p->flags & X509_TRUST_DYNAMIC) {
259		if (p->flags & X509_TRUST_DYNAMIC_NAME)
260			free(p->name);
261		free(p);
262	}
263}
264
265void
266X509_TRUST_cleanup(void)
267{
268	unsigned int i;
269
270	for (i = 0; i < X509_TRUST_COUNT; i++)
271		trtable_free(trstandard + i);
272	sk_X509_TRUST_pop_free(trtable, trtable_free);
273	trtable = NULL;
274}
275
276int
277X509_TRUST_get_flags(X509_TRUST *xp)
278{
279	return xp->flags;
280}
281
282char *
283X509_TRUST_get0_name(X509_TRUST *xp)
284{
285	return xp->name;
286}
287
288int
289X509_TRUST_get_trust(X509_TRUST *xp)
290{
291	return xp->trust;
292}
293
294static int
295trust_1oidany(X509_TRUST *trust, X509 *x, int flags)
296{
297	if (x->aux && (x->aux->trust || x->aux->reject))
298		return obj_trust(trust->arg1, x, flags);
299	/* we don't have any trust settings: for compatibility
300	 * we return trusted if it is self signed
301	 */
302	return trust_compat(trust, x, flags);
303}
304
305static int
306trust_1oid(X509_TRUST *trust, X509 *x, int flags)
307{
308	if (x->aux)
309		return obj_trust(trust->arg1, x, flags);
310	return X509_TRUST_UNTRUSTED;
311}
312
313static int
314trust_compat(X509_TRUST *trust, X509 *x, int flags)
315{
316	X509_check_purpose(x, -1, 0);
317	if (x->ex_flags & EXFLAG_SS)
318		return X509_TRUST_TRUSTED;
319	else
320		return X509_TRUST_UNTRUSTED;
321}
322
323static int
324obj_trust(int id, X509 *x, int flags)
325{
326	ASN1_OBJECT *obj;
327	int i;
328	X509_CERT_AUX *ax;
329
330	ax = x->aux;
331	if (!ax)
332		return X509_TRUST_UNTRUSTED;
333	if (ax->reject) {
334		for (i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
335			obj = sk_ASN1_OBJECT_value(ax->reject, i);
336			if (OBJ_obj2nid(obj) == id)
337				return X509_TRUST_REJECTED;
338		}
339	}
340	if (ax->trust) {
341		for (i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
342			obj = sk_ASN1_OBJECT_value(ax->trust, i);
343			if (OBJ_obj2nid(obj) == id)
344				return X509_TRUST_TRUSTED;
345		}
346	}
347	return X509_TRUST_UNTRUSTED;
348}
349