1 /* x509_vpm.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3 * project 2004.
4 */
5 /* ====================================================================
6 * Copyright (c) 2004 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
13 * notice, this list of conditions and the following disclaimer.
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>
60
61 #include "cryptlib.h"
62 #include <openssl/crypto.h>
63 #include <openssl/lhash.h>
64 #include <openssl/buffer.h>
65 #include <openssl/x509.h>
66 #include <openssl/x509v3.h>
67
68 /* X509_VERIFY_PARAM functions */
69
x509_verify_param_zero(X509_VERIFY_PARAM * param)70 static void x509_verify_param_zero(X509_VERIFY_PARAM *param)
71 {
72 if (!param)
73 return;
74 param->name = NULL;
75 param->purpose = 0;
76 param->trust = 0;
77 param->inh_flags = X509_VP_FLAG_DEFAULT;
78 param->flags = 0;
79 param->depth = -1;
80 if (param->policies)
81 {
82 sk_ASN1_OBJECT_pop_free(param->policies, ASN1_OBJECT_free);
83 param->policies = NULL;
84 }
85 }
86
X509_VERIFY_PARAM_new(void)87 X509_VERIFY_PARAM *X509_VERIFY_PARAM_new(void)
88 {
89 X509_VERIFY_PARAM *param;
90 param = OPENSSL_malloc(sizeof(X509_VERIFY_PARAM));
91 memset(param, 0, sizeof(X509_VERIFY_PARAM));
92 x509_verify_param_zero(param);
93 return param;
94 }
95
X509_VERIFY_PARAM_free(X509_VERIFY_PARAM * param)96 void X509_VERIFY_PARAM_free(X509_VERIFY_PARAM *param)
97 {
98 x509_verify_param_zero(param);
99 OPENSSL_free(param);
100 }
101
102 /* This function determines how parameters are "inherited" from one structure
103 * to another. There are several different ways this can happen.
104 *
105 * 1. If a child structure needs to have its values initialized from a parent
106 * they are simply copied across. For example SSL_CTX copied to SSL.
107 * 2. If the structure should take on values only if they are currently unset.
108 * For example the values in an SSL structure will take appropriate value
109 * for SSL servers or clients but only if the application has not set new
110 * ones.
111 *
112 * The "inh_flags" field determines how this function behaves.
113 *
114 * Normally any values which are set in the default are not copied from the
115 * destination and verify flags are ORed together.
116 *
117 * If X509_VP_FLAG_DEFAULT is set then anything set in the source is copied
118 * to the destination. Effectively the values in "to" become default values
119 * which will be used only if nothing new is set in "from".
120 *
121 * If X509_VP_FLAG_OVERWRITE is set then all value are copied across whether
122 * they are set or not. Flags is still Ored though.
123 *
124 * If X509_VP_FLAG_RESET_FLAGS is set then the flags value is copied instead
125 * of ORed.
126 *
127 * If X509_VP_FLAG_LOCKED is set then no values are copied.
128 *
129 * If X509_VP_FLAG_ONCE is set then the current inh_flags setting is zeroed
130 * after the next call.
131 */
132
133 /* Macro to test if a field should be copied from src to dest */
134
135 #define test_x509_verify_param_copy(field, def) \
136 (to_overwrite || \
137 ((src->field != def) && (to_default || (dest->field == def))))
138
139 /* Macro to test and copy a field if necessary */
140
141 #define x509_verify_param_copy(field, def) \
142 if (test_x509_verify_param_copy(field, def)) \
143 dest->field = src->field
144
145
X509_VERIFY_PARAM_inherit(X509_VERIFY_PARAM * dest,const X509_VERIFY_PARAM * src)146 int X509_VERIFY_PARAM_inherit(X509_VERIFY_PARAM *dest,
147 const X509_VERIFY_PARAM *src)
148 {
149 unsigned long inh_flags;
150 int to_default, to_overwrite;
151 if (!src)
152 return 1;
153 inh_flags = dest->inh_flags | src->inh_flags;
154
155 if (inh_flags & X509_VP_FLAG_ONCE)
156 dest->inh_flags = 0;
157
158 if (inh_flags & X509_VP_FLAG_LOCKED)
159 return 1;
160
161 if (inh_flags & X509_VP_FLAG_DEFAULT)
162 to_default = 1;
163 else
164 to_default = 0;
165
166 if (inh_flags & X509_VP_FLAG_OVERWRITE)
167 to_overwrite = 1;
168 else
169 to_overwrite = 0;
170
171 x509_verify_param_copy(purpose, 0);
172 x509_verify_param_copy(trust, 0);
173 x509_verify_param_copy(depth, -1);
174
175 if (inh_flags & X509_VP_FLAG_RESET_FLAGS)
176 dest->flags = 0;
177
178 dest->flags |= src->flags;
179
180 if (test_x509_verify_param_copy(policies, NULL))
181 {
182 if (!X509_VERIFY_PARAM_set1_policies(dest, src->policies))
183 return 0;
184 }
185
186 return 1;
187 }
188
X509_VERIFY_PARAM_set1(X509_VERIFY_PARAM * to,const X509_VERIFY_PARAM * from)189 int X509_VERIFY_PARAM_set1(X509_VERIFY_PARAM *to,
190 const X509_VERIFY_PARAM *from)
191 {
192 to->inh_flags |= X509_VP_FLAG_DEFAULT;
193 return X509_VERIFY_PARAM_inherit(to, from);
194 }
195
X509_VERIFY_PARAM_set1_name(X509_VERIFY_PARAM * param,const char * name)196 int X509_VERIFY_PARAM_set1_name(X509_VERIFY_PARAM *param, const char *name)
197 {
198 if (param->name)
199 OPENSSL_free(param->name);
200 param->name = BUF_strdup(name);
201 if (param->name)
202 return 1;
203 return 0;
204 }
205
X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM * param,unsigned long flags)206 int X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM *param, unsigned long flags)
207 {
208 param->flags |= flags;
209 if (flags & X509_V_FLAG_POLICY_MASK)
210 param->flags |= X509_V_FLAG_POLICY_CHECK;
211 return 1;
212 }
213
X509_VERIFY_PARAM_clear_flags(X509_VERIFY_PARAM * param,unsigned long flags)214 int X509_VERIFY_PARAM_clear_flags(X509_VERIFY_PARAM *param, unsigned long flags)
215 {
216 param->flags &= ~flags;
217 return 1;
218 }
219
X509_VERIFY_PARAM_get_flags(X509_VERIFY_PARAM * param)220 unsigned long X509_VERIFY_PARAM_get_flags(X509_VERIFY_PARAM *param)
221 {
222 return param->flags;
223 }
224
X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM * param,int purpose)225 int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose)
226 {
227 return X509_PURPOSE_set(¶m->purpose, purpose);
228 }
229
X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM * param,int trust)230 int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust)
231 {
232 return X509_TRUST_set(¶m->trust, trust);
233 }
234
X509_VERIFY_PARAM_set_depth(X509_VERIFY_PARAM * param,int depth)235 void X509_VERIFY_PARAM_set_depth(X509_VERIFY_PARAM *param, int depth)
236 {
237 param->depth = depth;
238 }
239
X509_VERIFY_PARAM_set_time(X509_VERIFY_PARAM * param,time_t t)240 void X509_VERIFY_PARAM_set_time(X509_VERIFY_PARAM *param, time_t t)
241 {
242 param->check_time = t;
243 param->flags |= X509_V_FLAG_USE_CHECK_TIME;
244 }
245
X509_VERIFY_PARAM_add0_policy(X509_VERIFY_PARAM * param,ASN1_OBJECT * policy)246 int X509_VERIFY_PARAM_add0_policy(X509_VERIFY_PARAM *param, ASN1_OBJECT *policy)
247 {
248 if (!param->policies)
249 {
250 param->policies = sk_ASN1_OBJECT_new_null();
251 if (!param->policies)
252 return 0;
253 }
254 if (!sk_ASN1_OBJECT_push(param->policies, policy))
255 return 0;
256 return 1;
257 }
258
X509_VERIFY_PARAM_set1_policies(X509_VERIFY_PARAM * param,STACK_OF (ASN1_OBJECT)* policies)259 int X509_VERIFY_PARAM_set1_policies(X509_VERIFY_PARAM *param,
260 STACK_OF(ASN1_OBJECT) *policies)
261 {
262 int i;
263 ASN1_OBJECT *oid, *doid;
264 if (!param)
265 return 0;
266 if (param->policies)
267 sk_ASN1_OBJECT_pop_free(param->policies, ASN1_OBJECT_free);
268
269 if (!policies)
270 {
271 param->policies = NULL;
272 return 1;
273 }
274
275 param->policies = sk_ASN1_OBJECT_new_null();
276 if (!param->policies)
277 return 0;
278
279 for (i = 0; i < sk_ASN1_OBJECT_num(policies); i++)
280 {
281 oid = sk_ASN1_OBJECT_value(policies, i);
282 doid = OBJ_dup(oid);
283 if (!doid)
284 return 0;
285 if (!sk_ASN1_OBJECT_push(param->policies, doid))
286 {
287 ASN1_OBJECT_free(doid);
288 return 0;
289 }
290 }
291 param->flags |= X509_V_FLAG_POLICY_CHECK;
292 return 1;
293 }
294
X509_VERIFY_PARAM_get_depth(const X509_VERIFY_PARAM * param)295 int X509_VERIFY_PARAM_get_depth(const X509_VERIFY_PARAM *param)
296 {
297 return param->depth;
298 }
299
300 /* Default verify parameters: these are used for various
301 * applications and can be overridden by the user specified table.
302 * NB: the 'name' field *must* be in alphabetical order because it
303 * will be searched using OBJ_search.
304 */
305
306 static const X509_VERIFY_PARAM default_table[] = {
307 {
308 "default", /* X509 default parameters */
309 0, /* Check time */
310 0, /* internal flags */
311 0, /* flags */
312 0, /* purpose */
313 0, /* trust */
314 9, /* depth */
315 NULL /* policies */
316 },
317 {
318 "pkcs7", /* SSL/TLS client parameters */
319 0, /* Check time */
320 0, /* internal flags */
321 0, /* flags */
322 X509_PURPOSE_SMIME_SIGN, /* purpose */
323 X509_TRUST_EMAIL, /* trust */
324 -1, /* depth */
325 NULL /* policies */
326 },
327 {
328 "ssl_client", /* SSL/TLS client parameters */
329 0, /* Check time */
330 0, /* internal flags */
331 0, /* flags */
332 X509_PURPOSE_SSL_CLIENT, /* purpose */
333 X509_TRUST_SSL_CLIENT, /* trust */
334 -1, /* depth */
335 NULL /* policies */
336 },
337 {
338 "ssl_server", /* SSL/TLS server parameters */
339 0, /* Check time */
340 0, /* internal flags */
341 0, /* flags */
342 X509_PURPOSE_SSL_SERVER, /* purpose */
343 X509_TRUST_SSL_SERVER, /* trust */
344 -1, /* depth */
345 NULL /* policies */
346 }};
347
348 static STACK_OF(X509_VERIFY_PARAM) *param_table = NULL;
349
table_cmp(const void * pa,const void * pb)350 static int table_cmp(const void *pa, const void *pb)
351 {
352 const X509_VERIFY_PARAM *a = pa, *b = pb;
353 return strcmp(a->name, b->name);
354 }
355
param_cmp(const X509_VERIFY_PARAM * const * a,const X509_VERIFY_PARAM * const * b)356 static int param_cmp(const X509_VERIFY_PARAM * const *a,
357 const X509_VERIFY_PARAM * const *b)
358 {
359 return strcmp((*a)->name, (*b)->name);
360 }
361
X509_VERIFY_PARAM_add0_table(X509_VERIFY_PARAM * param)362 int X509_VERIFY_PARAM_add0_table(X509_VERIFY_PARAM *param)
363 {
364 int idx;
365 X509_VERIFY_PARAM *ptmp;
366 if (!param_table)
367 {
368 param_table = sk_X509_VERIFY_PARAM_new(param_cmp);
369 if (!param_table)
370 return 0;
371 }
372 else
373 {
374 idx = sk_X509_VERIFY_PARAM_find(param_table, param);
375 if (idx != -1)
376 {
377 ptmp = sk_X509_VERIFY_PARAM_value(param_table, idx);
378 X509_VERIFY_PARAM_free(ptmp);
379 sk_X509_VERIFY_PARAM_delete(param_table, idx);
380 }
381 }
382 if (!sk_X509_VERIFY_PARAM_push(param_table, param))
383 return 0;
384 return 1;
385 }
386
X509_VERIFY_PARAM_lookup(const char * name)387 const X509_VERIFY_PARAM *X509_VERIFY_PARAM_lookup(const char *name)
388 {
389 int idx;
390 X509_VERIFY_PARAM pm;
391 pm.name = (char *)name;
392 if (param_table)
393 {
394 idx = sk_X509_VERIFY_PARAM_find(param_table, &pm);
395 if (idx != -1)
396 return sk_X509_VERIFY_PARAM_value(param_table, idx);
397 }
398 return (const X509_VERIFY_PARAM *) OBJ_bsearch((char *)&pm,
399 (char *)&default_table,
400 sizeof(default_table)/sizeof(X509_VERIFY_PARAM),
401 sizeof(X509_VERIFY_PARAM),
402 table_cmp);
403 }
404
X509_VERIFY_PARAM_table_cleanup(void)405 void X509_VERIFY_PARAM_table_cleanup(void)
406 {
407 if (param_table)
408 sk_X509_VERIFY_PARAM_pop_free(param_table,
409 X509_VERIFY_PARAM_free);
410 param_table = NULL;
411 }
412