Avoid structure access in crypto/ts
[openssl.git] / crypto / ts / ts_conf.c
1 /* crypto/ts/ts_conf.c */
2 /*
3  * Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL project
4  * 2002.
5  */
6 /* ====================================================================
7  * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in
18  *    the documentation and/or other materials provided with the
19  *    distribution.
20  *
21  * 3. All advertising materials mentioning features or use of this
22  *    software must display the following acknowledgment:
23  *    "This product includes software developed by the OpenSSL Project
24  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25  *
26  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27  *    endorse or promote products derived from this software without
28  *    prior written permission. For written permission, please contact
29  *    licensing@OpenSSL.org.
30  *
31  * 5. Products derived from this software may not be called "OpenSSL"
32  *    nor may "OpenSSL" appear in their names without prior written
33  *    permission of the OpenSSL Project.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51  * OF THE POSSIBILITY OF SUCH DAMAGE.
52  * ====================================================================
53  *
54  * This product includes cryptographic software written by Eric Young
55  * (eay@cryptsoft.com).  This product includes software written by Tim
56  * Hudson (tjh@cryptsoft.com).
57  *
58  */
59
60 #include <string.h>
61
62 #include <openssl/crypto.h>
63 #include "internal/cryptlib.h"
64 #include <openssl/pem.h>
65 #ifndef OPENSSL_NO_ENGINE
66 # include <openssl/engine.h>
67 #endif
68 #include <openssl/ts.h>
69
70 /* Macro definitions for the configuration file. */
71 #define BASE_SECTION                    "tsa"
72 #define ENV_DEFAULT_TSA                 "default_tsa"
73 #define ENV_SERIAL                      "serial"
74 #define ENV_CRYPTO_DEVICE               "crypto_device"
75 #define ENV_SIGNER_CERT                 "signer_cert"
76 #define ENV_CERTS                       "certs"
77 #define ENV_SIGNER_KEY                  "signer_key"
78 #define ENV_DEFAULT_POLICY              "default_policy"
79 #define ENV_OTHER_POLICIES              "other_policies"
80 #define ENV_DIGESTS                     "digests"
81 #define ENV_ACCURACY                    "accuracy"
82 #define ENV_ORDERING                    "ordering"
83 #define ENV_TSA_NAME                    "tsa_name"
84 #define ENV_ESS_CERT_ID_CHAIN           "ess_cert_id_chain"
85 #define ENV_VALUE_SECS                  "secs"
86 #define ENV_VALUE_MILLISECS             "millisecs"
87 #define ENV_VALUE_MICROSECS             "microsecs"
88 #define ENV_CLOCK_PRECISION_DIGITS      "clock_precision_digits"
89 #define ENV_VALUE_YES                   "yes"
90 #define ENV_VALUE_NO                    "no"
91
92 /* Function definitions for certificate and key loading. */
93
94 X509 *TS_CONF_load_cert(const char *file)
95 {
96     BIO *cert = NULL;
97     X509 *x = NULL;
98
99     if ((cert = BIO_new_file(file, "r")) == NULL)
100         goto end;
101     x = PEM_read_bio_X509_AUX(cert, NULL, NULL, NULL);
102  end:
103     if (x == NULL)
104         TSerr(TS_F_TS_CONF_LOAD_CERT, TS_R_CANNOT_LOAD_CERT);
105     BIO_free(cert);
106     return x;
107 }
108
109 STACK_OF(X509) *TS_CONF_load_certs(const char *file)
110 {
111     BIO *certs = NULL;
112     STACK_OF(X509) *othercerts = NULL;
113     STACK_OF(X509_INFO) *allcerts = NULL;
114     int i;
115
116     if ((certs = BIO_new_file(file, "r")) == NULL)
117         goto end;
118     if ((othercerts = sk_X509_new_null()) == NULL)
119         goto end;
120
121     allcerts = PEM_X509_INFO_read_bio(certs, NULL, NULL, NULL);
122     for (i = 0; i < sk_X509_INFO_num(allcerts); i++) {
123         X509_INFO *xi = sk_X509_INFO_value(allcerts, i);
124         if (xi->x509) {
125             sk_X509_push(othercerts, xi->x509);
126             xi->x509 = NULL;
127         }
128     }
129  end:
130     if (othercerts == NULL)
131         TSerr(TS_F_TS_CONF_LOAD_CERTS, TS_R_CANNOT_LOAD_CERT);
132     sk_X509_INFO_pop_free(allcerts, X509_INFO_free);
133     BIO_free(certs);
134     return othercerts;
135 }
136
137 EVP_PKEY *TS_CONF_load_key(const char *file, const char *pass)
138 {
139     BIO *key = NULL;
140     EVP_PKEY *pkey = NULL;
141
142     if ((key = BIO_new_file(file, "r")) == NULL)
143         goto end;
144     pkey = PEM_read_bio_PrivateKey(key, NULL, NULL, (char *)pass);
145  end:
146     if (pkey == NULL)
147         TSerr(TS_F_TS_CONF_LOAD_KEY, TS_R_CANNOT_LOAD_KEY);
148     BIO_free(key);
149     return pkey;
150 }
151
152 /* Function definitions for handling configuration options. */
153
154 static void ts_CONF_lookup_fail(const char *name, const char *tag)
155 {
156     TSerr(TS_F_TS_CONF_LOOKUP_FAIL, TS_R_VAR_LOOKUP_FAILURE);
157     ERR_add_error_data(3, name, "::", tag);
158 }
159
160 static void ts_CONF_invalid(const char *name, const char *tag)
161 {
162     TSerr(TS_F_TS_CONF_INVALID, TS_R_VAR_BAD_VALUE);
163     ERR_add_error_data(3, name, "::", tag);
164 }
165
166 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section)
167 {
168     if (!section) {
169         section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA);
170         if (!section)
171             ts_CONF_lookup_fail(BASE_SECTION, ENV_DEFAULT_TSA);
172     }
173     return section;
174 }
175
176 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
177                        TS_RESP_CTX *ctx)
178 {
179     int ret = 0;
180     char *serial = NCONF_get_string(conf, section, ENV_SERIAL);
181     if (!serial) {
182         ts_CONF_lookup_fail(section, ENV_SERIAL);
183         goto err;
184     }
185     TS_RESP_CTX_set_serial_cb(ctx, cb, serial);
186
187     ret = 1;
188  err:
189     return ret;
190 }
191
192 #ifndef OPENSSL_NO_ENGINE
193
194 int TS_CONF_set_crypto_device(CONF *conf, const char *section,
195                               const char *device)
196 {
197     int ret = 0;
198
199     if (device == NULL)
200         device = NCONF_get_string(conf, section, ENV_CRYPTO_DEVICE);
201
202     if (device && !TS_CONF_set_default_engine(device)) {
203         ts_CONF_invalid(section, ENV_CRYPTO_DEVICE);
204         goto err;
205     }
206     ret = 1;
207  err:
208     return ret;
209 }
210
211 int TS_CONF_set_default_engine(const char *name)
212 {
213     ENGINE *e = NULL;
214     int ret = 0;
215
216     if (strcmp(name, "builtin") == 0)
217         return 1;
218
219     if ((e = ENGINE_by_id(name)) == NULL)
220         goto err;
221     if (strcmp(name, "chil") == 0)
222         ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0);
223     if (!ENGINE_set_default(e, ENGINE_METHOD_ALL))
224         goto err;
225     ret = 1;
226
227  err:
228     if (!ret) {
229         TSerr(TS_F_TS_CONF_SET_DEFAULT_ENGINE, TS_R_COULD_NOT_SET_ENGINE);
230         ERR_add_error_data(2, "engine:", name);
231     }
232     ENGINE_free(e);
233     return ret;
234 }
235
236 #endif
237
238 int TS_CONF_set_signer_cert(CONF *conf, const char *section,
239                             const char *cert, TS_RESP_CTX *ctx)
240 {
241     int ret = 0;
242     X509 *cert_obj = NULL;
243
244     if (cert == NULL) {
245         cert = NCONF_get_string(conf, section, ENV_SIGNER_CERT);
246         if (cert == NULL) {
247             ts_CONF_lookup_fail(section, ENV_SIGNER_CERT);
248             goto err;
249         }
250     }
251     if ((cert_obj = TS_CONF_load_cert(cert)) == NULL)
252         goto err;
253     if (!TS_RESP_CTX_set_signer_cert(ctx, cert_obj))
254         goto err;
255
256     ret = 1;
257  err:
258     X509_free(cert_obj);
259     return ret;
260 }
261
262 int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
263                       TS_RESP_CTX *ctx)
264 {
265     int ret = 0;
266     STACK_OF(X509) *certs_obj = NULL;
267
268     if (certs == NULL) {
269         /* Certificate chain is optional. */
270         if ((certs = NCONF_get_string(conf, section, ENV_CERTS)) == NULL)
271             goto end;
272     }
273     if ((certs_obj = TS_CONF_load_certs(certs)) == NULL)
274         goto err;
275     if (!TS_RESP_CTX_set_certs(ctx, certs_obj))
276         goto err;
277  end:
278     ret = 1;
279  err:
280     sk_X509_pop_free(certs_obj, X509_free);
281     return ret;
282 }
283
284 int TS_CONF_set_signer_key(CONF *conf, const char *section,
285                            const char *key, const char *pass,
286                            TS_RESP_CTX *ctx)
287 {
288     int ret = 0;
289     EVP_PKEY *key_obj = NULL;
290     if (!key)
291         key = NCONF_get_string(conf, section, ENV_SIGNER_KEY);
292     if (!key) {
293         ts_CONF_lookup_fail(section, ENV_SIGNER_KEY);
294         goto err;
295     }
296     if ((key_obj = TS_CONF_load_key(key, pass)) == NULL)
297         goto err;
298     if (!TS_RESP_CTX_set_signer_key(ctx, key_obj))
299         goto err;
300
301     ret = 1;
302  err:
303     EVP_PKEY_free(key_obj);
304     return ret;
305 }
306
307 int TS_CONF_set_def_policy(CONF *conf, const char *section,
308                            const char *policy, TS_RESP_CTX *ctx)
309 {
310     int ret = 0;
311     ASN1_OBJECT *policy_obj = NULL;
312     if (!policy)
313         policy = NCONF_get_string(conf, section, ENV_DEFAULT_POLICY);
314     if (!policy) {
315         ts_CONF_lookup_fail(section, ENV_DEFAULT_POLICY);
316         goto err;
317     }
318     if ((policy_obj = OBJ_txt2obj(policy, 0)) == NULL) {
319         ts_CONF_invalid(section, ENV_DEFAULT_POLICY);
320         goto err;
321     }
322     if (!TS_RESP_CTX_set_def_policy(ctx, policy_obj))
323         goto err;
324
325     ret = 1;
326  err:
327     ASN1_OBJECT_free(policy_obj);
328     return ret;
329 }
330
331 int TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx)
332 {
333     int ret = 0;
334     int i;
335     STACK_OF(CONF_VALUE) *list = NULL;
336     char *policies = NCONF_get_string(conf, section, ENV_OTHER_POLICIES);
337
338     /* If no other policy is specified, that's fine. */
339     if (policies && (list = X509V3_parse_list(policies)) == NULL) {
340         ts_CONF_invalid(section, ENV_OTHER_POLICIES);
341         goto err;
342     }
343     for (i = 0; i < sk_CONF_VALUE_num(list); ++i) {
344         CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
345         const char *extval = val->value ? val->value : val->name;
346         ASN1_OBJECT *objtmp;
347
348         if ((objtmp = OBJ_txt2obj(extval, 0)) == NULL) {
349             ts_CONF_invalid(section, ENV_OTHER_POLICIES);
350             goto err;
351         }
352         if (!TS_RESP_CTX_add_policy(ctx, objtmp))
353             goto err;
354         ASN1_OBJECT_free(objtmp);
355     }
356
357     ret = 1;
358  err:
359     sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
360     return ret;
361 }
362
363 int TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx)
364 {
365     int ret = 0;
366     int i;
367     STACK_OF(CONF_VALUE) *list = NULL;
368     char *digests = NCONF_get_string(conf, section, ENV_DIGESTS);
369
370     if (digests == NULL) {
371         ts_CONF_lookup_fail(section, ENV_DIGESTS);
372         goto err;
373     }
374     if ((list = X509V3_parse_list(digests)) == NULL) {
375         ts_CONF_invalid(section, ENV_DIGESTS);
376         goto err;
377     }
378     if (sk_CONF_VALUE_num(list) == 0) {
379         ts_CONF_invalid(section, ENV_DIGESTS);
380         goto err;
381     }
382     for (i = 0; i < sk_CONF_VALUE_num(list); ++i) {
383         CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
384         const char *extval = val->value ? val->value : val->name;
385         const EVP_MD *md;
386
387         if ((md = EVP_get_digestbyname(extval)) == NULL) {
388             ts_CONF_invalid(section, ENV_DIGESTS);
389             goto err;
390         }
391         if (!TS_RESP_CTX_add_md(ctx, md))
392             goto err;
393     }
394
395     ret = 1;
396  err:
397     sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
398     return ret;
399 }
400
401 int TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx)
402 {
403     int ret = 0;
404     int i;
405     int secs = 0, millis = 0, micros = 0;
406     STACK_OF(CONF_VALUE) *list = NULL;
407     char *accuracy = NCONF_get_string(conf, section, ENV_ACCURACY);
408
409     if (accuracy && (list = X509V3_parse_list(accuracy)) == NULL) {
410         ts_CONF_invalid(section, ENV_ACCURACY);
411         goto err;
412     }
413     for (i = 0; i < sk_CONF_VALUE_num(list); ++i) {
414         CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
415         if (strcmp(val->name, ENV_VALUE_SECS) == 0) {
416             if (val->value)
417                 secs = atoi(val->value);
418         } else if (strcmp(val->name, ENV_VALUE_MILLISECS) == 0) {
419             if (val->value)
420                 millis = atoi(val->value);
421         } else if (strcmp(val->name, ENV_VALUE_MICROSECS) == 0) {
422             if (val->value)
423                 micros = atoi(val->value);
424         } else {
425             ts_CONF_invalid(section, ENV_ACCURACY);
426             goto err;
427         }
428     }
429     if (!TS_RESP_CTX_set_accuracy(ctx, secs, millis, micros))
430         goto err;
431
432     ret = 1;
433  err:
434     sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
435     return ret;
436 }
437
438 int TS_CONF_set_clock_precision_digits(CONF *conf, const char *section,
439                                        TS_RESP_CTX *ctx)
440 {
441     int ret = 0;
442     long digits = 0;
443
444     /*
445      * If not specified, set the default value to 0, i.e. sec precision
446      */
447     if (!NCONF_get_number_e(conf, section, ENV_CLOCK_PRECISION_DIGITS,
448                             &digits))
449         digits = 0;
450     if (digits < 0 || digits > TS_MAX_CLOCK_PRECISION_DIGITS) {
451         ts_CONF_invalid(section, ENV_CLOCK_PRECISION_DIGITS);
452         goto err;
453     }
454
455     if (!TS_RESP_CTX_set_clock_precision_digits(ctx, digits))
456         goto err;
457
458     return 1;
459  err:
460     return ret;
461 }
462
463 static int ts_CONF_add_flag(CONF *conf, const char *section,
464                             const char *field, int flag, TS_RESP_CTX *ctx)
465 {
466     const char *value = NCONF_get_string(conf, section, field);
467
468     if (value) {
469         if (strcmp(value, ENV_VALUE_YES) == 0)
470             TS_RESP_CTX_add_flags(ctx, flag);
471         else if (strcmp(value, ENV_VALUE_NO) != 0) {
472             ts_CONF_invalid(section, field);
473             return 0;
474         }
475     }
476
477     return 1;
478 }
479
480 int TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx)
481 {
482     return ts_CONF_add_flag(conf, section, ENV_ORDERING, TS_ORDERING, ctx);
483 }
484
485 int TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx)
486 {
487     return ts_CONF_add_flag(conf, section, ENV_TSA_NAME, TS_TSA_NAME, ctx);
488 }
489
490 int TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section,
491                                   TS_RESP_CTX *ctx)
492 {
493     return ts_CONF_add_flag(conf, section, ENV_ESS_CERT_ID_CHAIN,
494                             TS_ESS_CERT_ID_CHAIN, ctx);
495 }