free NULL cleanup 11
[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 "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
72 #define BASE_SECTION                    "tsa"
73 #define ENV_DEFAULT_TSA                 "default_tsa"
74 #define ENV_SERIAL                      "serial"
75 #define ENV_CRYPTO_DEVICE               "crypto_device"
76 #define ENV_SIGNER_CERT                 "signer_cert"
77 #define ENV_CERTS                       "certs"
78 #define ENV_SIGNER_KEY                  "signer_key"
79 #define ENV_DEFAULT_POLICY              "default_policy"
80 #define ENV_OTHER_POLICIES              "other_policies"
81 #define ENV_DIGESTS                     "digests"
82 #define ENV_ACCURACY                    "accuracy"
83 #define ENV_ORDERING                    "ordering"
84 #define ENV_TSA_NAME                    "tsa_name"
85 #define ENV_ESS_CERT_ID_CHAIN           "ess_cert_id_chain"
86 #define ENV_VALUE_SECS                  "secs"
87 #define ENV_VALUE_MILLISECS             "millisecs"
88 #define ENV_VALUE_MICROSECS             "microsecs"
89 #define ENV_CLOCK_PRECISION_DIGITS      "clock_precision_digits"
90 #define ENV_VALUE_YES                   "yes"
91 #define ENV_VALUE_NO                    "no"
92
93 /* Function definitions for certificate and key loading. */
94
95 X509 *TS_CONF_load_cert(const char *file)
96 {
97     BIO *cert = NULL;
98     X509 *x = NULL;
99
100     if ((cert = BIO_new_file(file, "r")) == NULL)
101         goto end;
102     x = PEM_read_bio_X509_AUX(cert, NULL, NULL, NULL);
103  end:
104     if (x == NULL)
105         fprintf(stderr, "unable to load certificate: %s\n", file);
106     BIO_free(cert);
107     return x;
108 }
109
110 STACK_OF(X509) *TS_CONF_load_certs(const char *file)
111 {
112     BIO *certs = NULL;
113     STACK_OF(X509) *othercerts = NULL;
114     STACK_OF(X509_INFO) *allcerts = NULL;
115     int i;
116
117     if (!(certs = BIO_new_file(file, "r")))
118         goto end;
119
120     if (!(othercerts = sk_X509_new_null()))
121         goto end;
122     allcerts = PEM_X509_INFO_read_bio(certs, NULL, NULL, NULL);
123     for (i = 0; i < sk_X509_INFO_num(allcerts); i++) {
124         X509_INFO *xi = sk_X509_INFO_value(allcerts, i);
125         if (xi->x509) {
126             sk_X509_push(othercerts, xi->x509);
127             xi->x509 = NULL;
128         }
129     }
130  end:
131     if (othercerts == NULL)
132         fprintf(stderr, "unable to load certificates: %s\n", file);
133     sk_X509_INFO_pop_free(allcerts, X509_INFO_free);
134     BIO_free(certs);
135     return othercerts;
136 }
137
138 EVP_PKEY *TS_CONF_load_key(const char *file, const char *pass)
139 {
140     BIO *key = NULL;
141     EVP_PKEY *pkey = NULL;
142
143     if (!(key = BIO_new_file(file, "r")))
144         goto end;
145     pkey = PEM_read_bio_PrivateKey(key, NULL, NULL, (char *)pass);
146  end:
147     if (pkey == NULL)
148         fprintf(stderr, "unable to load private key: %s\n", file);
149     BIO_free(key);
150     return pkey;
151 }
152
153 /* Function definitions for handling configuration options. */
154
155 static void TS_CONF_lookup_fail(const char *name, const char *tag)
156 {
157     fprintf(stderr, "variable lookup failed for %s::%s\n", name, tag);
158 }
159
160 static void TS_CONF_invalid(const char *name, const char *tag)
161 {
162     fprintf(stderr, "invalid variable value for %s::%s\n", name, tag);
163 }
164
165 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section)
166 {
167     if (!section) {
168         section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA);
169         if (!section)
170             TS_CONF_lookup_fail(BASE_SECTION, ENV_DEFAULT_TSA);
171     }
172     return section;
173 }
174
175 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
176                        TS_RESP_CTX *ctx)
177 {
178     int ret = 0;
179     char *serial = NCONF_get_string(conf, section, ENV_SERIAL);
180     if (!serial) {
181         TS_CONF_lookup_fail(section, ENV_SERIAL);
182         goto err;
183     }
184     TS_RESP_CTX_set_serial_cb(ctx, cb, serial);
185
186     ret = 1;
187  err:
188     return ret;
189 }
190
191 #ifndef OPENSSL_NO_ENGINE
192
193 int TS_CONF_set_crypto_device(CONF *conf, const char *section,
194                               const char *device)
195 {
196     int ret = 0;
197
198     if (!device)
199         device = NCONF_get_string(conf, section, ENV_CRYPTO_DEVICE);
200
201     if (device && !TS_CONF_set_default_engine(device)) {
202         TS_CONF_invalid(section, ENV_CRYPTO_DEVICE);
203         goto err;
204     }
205     ret = 1;
206  err:
207     return ret;
208 }
209
210 int TS_CONF_set_default_engine(const char *name)
211 {
212     ENGINE *e = NULL;
213     int ret = 0;
214
215     /* Leave the default if builtin specified. */
216     if (strcmp(name, "builtin") == 0)
217         return 1;
218
219     if (!(e = ENGINE_by_id(name)))
220         goto err;
221     /* Enable the use of the NCipher HSM for forked children. */
222     if (strcmp(name, "chil") == 0)
223         ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0);
224     /* All the operations are going to be carried out by the engine. */
225     if (!ENGINE_set_default(e, ENGINE_METHOD_ALL))
226         goto err;
227     ret = 1;
228  err:
229     if (!ret) {
230         TSerr(TS_F_TS_CONF_SET_DEFAULT_ENGINE, TS_R_COULD_NOT_SET_ENGINE);
231         ERR_add_error_data(2, "engine:", name);
232     }
233     ENGINE_free(e);
234     return ret;
235 }
236
237 #endif
238
239 int TS_CONF_set_signer_cert(CONF *conf, const char *section,
240                             const char *cert, TS_RESP_CTX *ctx)
241 {
242     int ret = 0;
243     X509 *cert_obj = NULL;
244     if (!cert)
245         cert = NCONF_get_string(conf, section, ENV_SIGNER_CERT);
246     if (!cert) {
247         TS_CONF_lookup_fail(section, ENV_SIGNER_CERT);
248         goto err;
249     }
250     if (!(cert_obj = TS_CONF_load_cert(cert)))
251         goto err;
252     if (!TS_RESP_CTX_set_signer_cert(ctx, cert_obj))
253         goto err;
254
255     ret = 1;
256  err:
257     X509_free(cert_obj);
258     return ret;
259 }
260
261 int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
262                       TS_RESP_CTX *ctx)
263 {
264     int ret = 0;
265     STACK_OF(X509) *certs_obj = NULL;
266     if (!certs)
267         certs = NCONF_get_string(conf, section, ENV_CERTS);
268     /* Certificate chain is optional. */
269     if (!certs)
270         goto end;
271     if (!(certs_obj = TS_CONF_load_certs(certs)))
272         goto err;
273     if (!TS_RESP_CTX_set_certs(ctx, certs_obj))
274         goto err;
275  end:
276     ret = 1;
277  err:
278     sk_X509_pop_free(certs_obj, X509_free);
279     return ret;
280 }
281
282 int TS_CONF_set_signer_key(CONF *conf, const char *section,
283                            const char *key, const char *pass,
284                            TS_RESP_CTX *ctx)
285 {
286     int ret = 0;
287     EVP_PKEY *key_obj = NULL;
288     if (!key)
289         key = NCONF_get_string(conf, section, ENV_SIGNER_KEY);
290     if (!key) {
291         TS_CONF_lookup_fail(section, ENV_SIGNER_KEY);
292         goto err;
293     }
294     if (!(key_obj = TS_CONF_load_key(key, pass)))
295         goto err;
296     if (!TS_RESP_CTX_set_signer_key(ctx, key_obj))
297         goto err;
298
299     ret = 1;
300  err:
301     EVP_PKEY_free(key_obj);
302     return ret;
303 }
304
305 int TS_CONF_set_def_policy(CONF *conf, const char *section,
306                            const char *policy, TS_RESP_CTX *ctx)
307 {
308     int ret = 0;
309     ASN1_OBJECT *policy_obj = NULL;
310     if (!policy)
311         policy = NCONF_get_string(conf, section, ENV_DEFAULT_POLICY);
312     if (!policy) {
313         TS_CONF_lookup_fail(section, ENV_DEFAULT_POLICY);
314         goto err;
315     }
316     if (!(policy_obj = OBJ_txt2obj(policy, 0))) {
317         TS_CONF_invalid(section, ENV_DEFAULT_POLICY);
318         goto err;
319     }
320     if (!TS_RESP_CTX_set_def_policy(ctx, policy_obj))
321         goto err;
322
323     ret = 1;
324  err:
325     ASN1_OBJECT_free(policy_obj);
326     return ret;
327 }
328
329 int TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx)
330 {
331     int ret = 0;
332     int i;
333     STACK_OF(CONF_VALUE) *list = NULL;
334     char *policies = NCONF_get_string(conf, section,
335                                       ENV_OTHER_POLICIES);
336     /* If no other policy is specified, that's fine. */
337     if (policies && !(list = X509V3_parse_list(policies))) {
338         TS_CONF_invalid(section, ENV_OTHER_POLICIES);
339         goto err;
340     }
341     for (i = 0; i < sk_CONF_VALUE_num(list); ++i) {
342         CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
343         const char *extval = val->value ? val->value : val->name;
344         ASN1_OBJECT *objtmp;
345         if (!(objtmp = OBJ_txt2obj(extval, 0))) {
346             TS_CONF_invalid(section, ENV_OTHER_POLICIES);
347             goto err;
348         }
349         if (!TS_RESP_CTX_add_policy(ctx, objtmp))
350             goto err;
351         ASN1_OBJECT_free(objtmp);
352     }
353
354     ret = 1;
355  err:
356     sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
357     return ret;
358 }
359
360 int TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx)
361 {
362     int ret = 0;
363     int i;
364     STACK_OF(CONF_VALUE) *list = NULL;
365     char *digests = NCONF_get_string(conf, section, ENV_DIGESTS);
366     if (!digests) {
367         TS_CONF_lookup_fail(section, ENV_DIGESTS);
368         goto err;
369     }
370     if (!(list = X509V3_parse_list(digests))) {
371         TS_CONF_invalid(section, ENV_DIGESTS);
372         goto err;
373     }
374     if (sk_CONF_VALUE_num(list) == 0) {
375         TS_CONF_invalid(section, ENV_DIGESTS);
376         goto err;
377     }
378     for (i = 0; i < sk_CONF_VALUE_num(list); ++i) {
379         CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
380         const char *extval = val->value ? val->value : val->name;
381         const EVP_MD *md;
382         if (!(md = EVP_get_digestbyname(extval))) {
383             TS_CONF_invalid(section, ENV_DIGESTS);
384             goto err;
385         }
386         if (!TS_RESP_CTX_add_md(ctx, md))
387             goto err;
388     }
389
390     ret = 1;
391  err:
392     sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
393     return ret;
394 }
395
396 int TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx)
397 {
398     int ret = 0;
399     int i;
400     int secs = 0, millis = 0, micros = 0;
401     STACK_OF(CONF_VALUE) *list = NULL;
402     char *accuracy = NCONF_get_string(conf, section, ENV_ACCURACY);
403
404     if (accuracy && !(list = X509V3_parse_list(accuracy))) {
405         TS_CONF_invalid(section, ENV_ACCURACY);
406         goto err;
407     }
408     for (i = 0; i < sk_CONF_VALUE_num(list); ++i) {
409         CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
410         if (strcmp(val->name, ENV_VALUE_SECS) == 0) {
411             if (val->value)
412                 secs = atoi(val->value);
413         } else if (strcmp(val->name, ENV_VALUE_MILLISECS) == 0) {
414             if (val->value)
415                 millis = atoi(val->value);
416         } else if (strcmp(val->name, ENV_VALUE_MICROSECS) == 0) {
417             if (val->value)
418                 micros = atoi(val->value);
419         } else {
420             TS_CONF_invalid(section, ENV_ACCURACY);
421             goto err;
422         }
423     }
424     if (!TS_RESP_CTX_set_accuracy(ctx, secs, millis, micros))
425         goto err;
426
427     ret = 1;
428  err:
429     sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
430     return ret;
431 }
432
433 int TS_CONF_set_clock_precision_digits(CONF *conf, const char *section,
434                                        TS_RESP_CTX *ctx)
435 {
436     int ret = 0;
437     long digits = 0;
438
439     /*
440      * If not specified, set the default value to 0, i.e. sec precision
441      */
442     if (!NCONF_get_number_e(conf, section, ENV_CLOCK_PRECISION_DIGITS,
443                             &digits))
444         digits = 0;
445     if (digits < 0 || digits > TS_MAX_CLOCK_PRECISION_DIGITS) {
446         TS_CONF_invalid(section, ENV_CLOCK_PRECISION_DIGITS);
447         goto err;
448     }
449
450     if (!TS_RESP_CTX_set_clock_precision_digits(ctx, digits))
451         goto err;
452
453     return 1;
454  err:
455     return ret;
456 }
457
458 static int TS_CONF_add_flag(CONF *conf, const char *section,
459                             const char *field, int flag, TS_RESP_CTX *ctx)
460 {
461     /* Default is false. */
462     const char *value = NCONF_get_string(conf, section, field);
463     if (value) {
464         if (strcmp(value, ENV_VALUE_YES) == 0)
465             TS_RESP_CTX_add_flags(ctx, flag);
466         else if (strcmp(value, ENV_VALUE_NO) != 0) {
467             TS_CONF_invalid(section, field);
468             return 0;
469         }
470     }
471
472     return 1;
473 }
474
475 int TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx)
476 {
477     return TS_CONF_add_flag(conf, section, ENV_ORDERING, TS_ORDERING, ctx);
478 }
479
480 int TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx)
481 {
482     return TS_CONF_add_flag(conf, section, ENV_TSA_NAME, TS_TSA_NAME, ctx);
483 }
484
485 int TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section,
486                                   TS_RESP_CTX *ctx)
487 {
488     return TS_CONF_add_flag(conf, section, ENV_ESS_CERT_ID_CHAIN,
489                             TS_ESS_CERT_ID_CHAIN, ctx);
490 }