Fix doc and help about ca -valid option
[openssl.git] / apps / ts.c
1 /*
2  * Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <openssl/opensslconf.h>
11 #ifdef OPENSSL_NO_TS
12 NON_EMPTY_TRANSLATION_UNIT
13 #else
14 # include <stdio.h>
15 # include <stdlib.h>
16 # include <string.h>
17 # include "apps.h"
18 # include <openssl/bio.h>
19 # include <openssl/err.h>
20 # include <openssl/pem.h>
21 # include <openssl/rand.h>
22 # include <openssl/ts.h>
23 # include <openssl/bn.h>
24
25 /* Request nonce length, in bits (must be a multiple of 8). */
26 # define NONCE_LENGTH            64
27
28 /* Name of config entry that defines the OID file. */
29 # define ENV_OID_FILE            "oid_file"
30
31 /* Is |EXACTLY_ONE| of three pointers set? */
32 # define EXACTLY_ONE(a, b, c) \
33         (( a && !b && !c) || \
34          ( b && !a && !c) || \
35          ( c && !a && !b))
36
37 static ASN1_OBJECT *txt2obj(const char *oid);
38 static CONF *load_config_file(const char *configfile);
39
40 /* Query related functions. */
41 static int query_command(const char *data, char *digest,
42                          const EVP_MD *md, const char *policy, int no_nonce,
43                          int cert, const char *in, const char *out, int text);
44 static TS_REQ *create_query(BIO *data_bio, char *digest, const EVP_MD *md,
45                             const char *policy, int no_nonce, int cert);
46 static int create_digest(BIO *input, char *digest,
47                          const EVP_MD *md, unsigned char **md_value);
48 static ASN1_INTEGER *create_nonce(int bits);
49
50 /* Reply related functions. */
51 static int reply_command(CONF *conf, char *section, char *engine,
52                          char *queryfile, char *passin, char *inkey,
53                          const EVP_MD *md, char *signer, char *chain,
54                          const char *policy, char *in, int token_in,
55                          char *out, int token_out, int text);
56 static TS_RESP *read_PKCS7(BIO *in_bio);
57 static TS_RESP *create_response(CONF *conf, const char *section, char *engine,
58                                 char *queryfile, char *passin,
59                                 char *inkey, const EVP_MD *md, char *signer,
60                                 char *chain, const char *policy);
61 static ASN1_INTEGER *serial_cb(TS_RESP_CTX *ctx, void *data);
62 static ASN1_INTEGER *next_serial(const char *serialfile);
63 static int save_ts_serial(const char *serialfile, ASN1_INTEGER *serial);
64
65 /* Verify related functions. */
66 static int verify_command(char *data, char *digest, char *queryfile,
67                           char *in, int token_in,
68                           char *CApath, char *CAfile, char *untrusted,
69                           X509_VERIFY_PARAM *vpm);
70 static TS_VERIFY_CTX *create_verify_ctx(char *data, char *digest,
71                                         char *queryfile,
72                                         char *CApath, char *CAfile,
73                                         char *untrusted,
74                                         X509_VERIFY_PARAM *vpm);
75 static X509_STORE *create_cert_store(char *CApath, char *CAfile,
76                                      X509_VERIFY_PARAM *vpm);
77 static int verify_cb(int ok, X509_STORE_CTX *ctx);
78
79 typedef enum OPTION_choice {
80     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
81     OPT_ENGINE, OPT_CONFIG, OPT_SECTION, OPT_QUERY, OPT_DATA,
82     OPT_DIGEST, OPT_RAND, OPT_TSPOLICY, OPT_NO_NONCE, OPT_CERT,
83     OPT_IN, OPT_TOKEN_IN, OPT_OUT, OPT_TOKEN_OUT, OPT_TEXT,
84     OPT_REPLY, OPT_QUERYFILE, OPT_PASSIN, OPT_INKEY, OPT_SIGNER,
85     OPT_CHAIN, OPT_VERIFY, OPT_CAPATH, OPT_CAFILE, OPT_UNTRUSTED,
86     OPT_MD, OPT_V_ENUM
87 } OPTION_CHOICE;
88
89 OPTIONS ts_options[] = {
90     {"help", OPT_HELP, '-', "Display this summary"},
91     {"config", OPT_CONFIG, '<', "Configuration file"},
92     {"section", OPT_SECTION, 's', "Section to use within config file"},
93     {"query", OPT_QUERY, '-', "Generate a TS query"},
94     {"data", OPT_DATA, '<', "File to hash"},
95     {"digest", OPT_DIGEST, 's', "Digest (as a hex string)"},
96     {"rand", OPT_RAND, 's',
97      "Load the file(s) into the random number generator"},
98     {"tspolicy", OPT_TSPOLICY, 's', "Policy OID to use"},
99     {"no_nonce", OPT_NO_NONCE, '-', "Do not include a nonce"},
100     {"cert", OPT_CERT, '-', "Put cert request into query"},
101     {"in", OPT_IN, '<', "Input file"},
102     {"token_in", OPT_TOKEN_IN, '-', "Input is a PKCS#7 file"},
103     {"out", OPT_OUT, '>', "Output file"},
104     {"token_out", OPT_TOKEN_OUT, '-', "Output is a PKCS#7 file"},
105     {"text", OPT_TEXT, '-', "Output text (not DER)"},
106     {"reply", OPT_REPLY, '-', "Generate a TS reply"},
107     {"queryfile", OPT_QUERYFILE, '<', "File containing a TS query"},
108     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
109     {"inkey", OPT_INKEY, '<', "File with private key for reply"},
110     {"signer", OPT_SIGNER, 's'},
111     {"chain", OPT_CHAIN, '<', "File with signer CA chain"},
112     {"verify", OPT_VERIFY, '-', "Verify a TS response"},
113     {"CApath", OPT_CAPATH, '/', "Path to trusted CA files"},
114     {"CAfile", OPT_CAFILE, '<', "File with trusted CA certs"},
115     {"untrusted", OPT_UNTRUSTED, '<', "File with untrusted certs"},
116     {"", OPT_MD, '-', "Any supported digest"},
117 # ifndef OPENSSL_NO_ENGINE
118     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
119 # endif
120     {OPT_HELP_STR, 1, '-', "\nOptions specific to 'ts -verify': \n"},
121     OPT_V_OPTIONS,
122     {OPT_HELP_STR, 1, '-', "\n"},
123     {NULL}
124 };
125
126 /*
127  * This command is so complex, special help is needed.
128  */
129 static char* opt_helplist[] = {
130     "Typical uses:",
131     "ts -query [-rand file...] [-config file] [-data file]",
132     "          [-digest hexstring] [-tspolicy oid] [-no_nonce] [-cert]",
133     "          [-in file] [-out file] [-text]",
134     "  or",
135     "ts -reply [-config file] [-section tsa_section]",
136     "          [-queryfile file] [-passin password]",
137     "          [-signer tsa_cert.pem] [-inkey private_key.pem]",
138     "          [-chain certs_file.pem] [-tspolicy oid]",
139     "          [-in file] [-token_in] [-out file] [-token_out]",
140 # ifndef OPENSSL_NO_ENGINE
141     "          [-text] [-engine id]",
142 # else
143     "          [-text]",
144 # endif
145     "  or",
146     "ts -verify -CApath dir -CAfile file.pem -untrusted file.pem",
147     "           [-data file] [-digest hexstring]",
148     "           [-queryfile file] -in file [-token_in]",
149     "           [[options specific to 'ts -verify']]",
150     NULL,
151 };
152
153 int ts_main(int argc, char **argv)
154 {
155     CONF *conf = NULL;
156     char *CAfile = NULL, *untrusted = NULL, *engine = NULL, *prog, **helpp;
157     char *configfile = default_config_file;
158     char *section = NULL, *password = NULL;
159     char *data = NULL, *digest = NULL, *rnd = NULL, *policy = NULL;
160     char *in = NULL, *out = NULL, *queryfile = NULL, *passin = NULL;
161     char *inkey = NULL, *signer = NULL, *chain = NULL, *CApath = NULL;
162     const EVP_MD *md = NULL;
163     OPTION_CHOICE o, mode = OPT_ERR;
164     int ret = 1, no_nonce = 0, cert = 0, text = 0;
165     int vpmtouched = 0;
166     X509_VERIFY_PARAM *vpm = NULL;
167     /* Input is ContentInfo instead of TimeStampResp. */
168     int token_in = 0;
169     /* Output is ContentInfo instead of TimeStampResp. */
170     int token_out = 0;
171
172     if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
173         goto end;
174
175     prog = opt_init(argc, argv, ts_options);
176     while ((o = opt_next()) != OPT_EOF) {
177         switch (o) {
178         case OPT_EOF:
179         case OPT_ERR:
180  opthelp:
181             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
182             goto end;
183         case OPT_HELP:
184             opt_help(ts_options);
185             for (helpp = opt_helplist; *helpp; ++helpp)
186                 BIO_printf(bio_err, "%s\n", *helpp);
187             ret = 0;
188             goto end;
189         case OPT_CONFIG:
190             configfile = opt_arg();
191             break;
192         case OPT_SECTION:
193             section = opt_arg();
194             break;
195         case OPT_QUERY:
196         case OPT_REPLY:
197         case OPT_VERIFY:
198             if (mode != OPT_ERR)
199                 goto opthelp;
200             mode = o;
201             break;
202         case OPT_DATA:
203             data = opt_arg();
204             break;
205         case OPT_DIGEST:
206             digest = opt_arg();
207             break;
208         case OPT_RAND:
209             rnd = opt_arg();
210             break;
211         case OPT_TSPOLICY:
212             policy = opt_arg();
213             break;
214         case OPT_NO_NONCE:
215             no_nonce = 1;
216             break;
217         case OPT_CERT:
218             cert = 1;
219             break;
220         case OPT_IN:
221             in = opt_arg();
222             break;
223         case OPT_TOKEN_IN:
224             token_in = 1;
225             break;
226         case OPT_OUT:
227             out = opt_arg();
228             break;
229         case OPT_TOKEN_OUT:
230             token_out = 1;
231             break;
232         case OPT_TEXT:
233             text = 1;
234             break;
235         case OPT_QUERYFILE:
236             queryfile = opt_arg();
237             break;
238         case OPT_PASSIN:
239             passin = opt_arg();
240             break;
241         case OPT_INKEY:
242             inkey = opt_arg();
243             break;
244         case OPT_SIGNER:
245             signer = opt_arg();
246             break;
247         case OPT_CHAIN:
248             chain = opt_arg();
249             break;
250         case OPT_CAPATH:
251             CApath = opt_arg();
252             break;
253         case OPT_CAFILE:
254             CAfile = opt_arg();
255             break;
256         case OPT_UNTRUSTED:
257             untrusted = opt_arg();
258             break;
259         case OPT_ENGINE:
260             engine = opt_arg();
261             break;
262         case OPT_MD:
263             if (!opt_md(opt_unknown(), &md))
264                 goto opthelp;
265             break;
266         case OPT_V_CASES:
267             if (!opt_verify(o, vpm))
268                 goto end;
269             vpmtouched++;
270             break;
271         }
272     }
273     if (mode == OPT_ERR || opt_num_rest() != 0)
274         goto opthelp;
275
276     /* Seed the random number generator if it is going to be used. */
277     if (mode == OPT_QUERY && !no_nonce) {
278         if (!app_RAND_load_file(NULL, 1) && rnd == NULL)
279             BIO_printf(bio_err, "warning, not much extra random "
280                        "data, consider using the -rand option\n");
281         if (rnd != NULL)
282             BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
283                        app_RAND_load_files(rnd));
284     }
285
286     if (mode == OPT_REPLY && passin &&
287         !app_passwd(passin, NULL, &password, NULL)) {
288         BIO_printf(bio_err, "Error getting password.\n");
289         goto end;
290     }
291
292     conf = load_config_file(configfile);
293     if (configfile != default_config_file && !app_load_modules(conf))
294         goto end;
295
296     /* Check parameter consistency and execute the appropriate function. */
297     switch (mode) {
298     default:
299     case OPT_ERR:
300         goto opthelp;
301     case OPT_QUERY:
302         if (vpmtouched)
303             goto opthelp;
304         if ((data != NULL) && (digest != NULL))
305             goto opthelp;
306         ret = !query_command(data, digest, md, policy, no_nonce, cert,
307                              in, out, text);
308         break;
309     case OPT_REPLY:
310         if (vpmtouched)
311             goto opthelp;
312         if ((in != NULL) && (queryfile != NULL))
313             goto opthelp;
314         if (in == NULL) {
315             if ((conf == NULL) || (token_in != 0))
316                 goto opthelp;
317         }
318         ret = !reply_command(conf, section, engine, queryfile,
319                              password, inkey, md, signer, chain, policy,
320                              in, token_in, out, token_out, text);
321         break;
322     case OPT_VERIFY:
323         if ((in == NULL) || !EXACTLY_ONE(queryfile, data, digest))
324             goto opthelp;
325         ret = !verify_command(data, digest, queryfile, in, token_in,
326                               CApath, CAfile, untrusted,
327                               vpmtouched ? vpm : NULL);
328     }
329
330  end:
331     X509_VERIFY_PARAM_free(vpm);
332     app_RAND_write_file(NULL);
333     NCONF_free(conf);
334     OPENSSL_free(password);
335     return (ret);
336 }
337
338 /*
339  * Configuration file-related function definitions.
340  */
341
342 static ASN1_OBJECT *txt2obj(const char *oid)
343 {
344     ASN1_OBJECT *oid_obj = NULL;
345
346     if ((oid_obj = OBJ_txt2obj(oid, 0)) == NULL)
347         BIO_printf(bio_err, "cannot convert %s to OID\n", oid);
348
349     return oid_obj;
350 }
351
352 static CONF *load_config_file(const char *configfile)
353 {
354     CONF *conf = app_load_config(configfile);
355
356     if (conf != NULL) {
357         const char *p;
358
359         BIO_printf(bio_err, "Using configuration from %s\n", configfile);
360         p = NCONF_get_string(conf, NULL, ENV_OID_FILE);
361         if (p != NULL) {
362             BIO *oid_bio = BIO_new_file(p, "r");
363             if (!oid_bio)
364                 ERR_print_errors(bio_err);
365             else {
366                 OBJ_create_objects(oid_bio);
367                 BIO_free_all(oid_bio);
368             }
369         } else
370             ERR_clear_error();
371         if (!add_oid_section(conf))
372             ERR_print_errors(bio_err);
373     }
374     return conf;
375 }
376
377 /*
378  * Query-related method definitions.
379  */
380 static int query_command(const char *data, char *digest, const EVP_MD *md,
381                          const char *policy, int no_nonce,
382                          int cert, const char *in, const char *out, int text)
383 {
384     int ret = 0;
385     TS_REQ *query = NULL;
386     BIO *in_bio = NULL;
387     BIO *data_bio = NULL;
388     BIO *out_bio = NULL;
389
390     /* Build query object. */
391     if (in != NULL) {
392         if ((in_bio = bio_open_default(in, 'r', FORMAT_ASN1)) == NULL)
393             goto end;
394         query = d2i_TS_REQ_bio(in_bio, NULL);
395     } else {
396         if (digest == NULL
397             && (data_bio = bio_open_default(data, 'r', FORMAT_ASN1)) == NULL)
398             goto end;
399         query = create_query(data_bio, digest, md, policy, no_nonce, cert);
400     }
401     if (query == NULL)
402         goto end;
403
404     if (text) {
405         if ((out_bio = bio_open_default(out, 'w', FORMAT_TEXT)) == NULL)
406             goto end;
407         if (!TS_REQ_print_bio(out_bio, query))
408             goto end;
409     } else {
410         if ((out_bio = bio_open_default(out, 'w', FORMAT_ASN1)) == NULL)
411             goto end;
412         if (!i2d_TS_REQ_bio(out_bio, query))
413             goto end;
414     }
415
416     ret = 1;
417
418  end:
419     ERR_print_errors(bio_err);
420     BIO_free_all(in_bio);
421     BIO_free_all(data_bio);
422     BIO_free_all(out_bio);
423     TS_REQ_free(query);
424     return ret;
425 }
426
427 static TS_REQ *create_query(BIO *data_bio, char *digest, const EVP_MD *md,
428                             const char *policy, int no_nonce, int cert)
429 {
430     int ret = 0;
431     TS_REQ *ts_req = NULL;
432     int len;
433     TS_MSG_IMPRINT *msg_imprint = NULL;
434     X509_ALGOR *algo = NULL;
435     unsigned char *data = NULL;
436     ASN1_OBJECT *policy_obj = NULL;
437     ASN1_INTEGER *nonce_asn1 = NULL;
438
439     if (md == NULL && (md = EVP_get_digestbyname("sha1")) == NULL)
440         goto err;
441     if ((ts_req = TS_REQ_new()) == NULL)
442         goto err;
443     if (!TS_REQ_set_version(ts_req, 1))
444         goto err;
445     if ((msg_imprint = TS_MSG_IMPRINT_new()) == NULL)
446         goto err;
447     if ((algo = X509_ALGOR_new()) == NULL)
448         goto err;
449     if ((algo->algorithm = OBJ_nid2obj(EVP_MD_type(md))) == NULL)
450         goto err;
451     if ((algo->parameter = ASN1_TYPE_new()) == NULL)
452         goto err;
453     algo->parameter->type = V_ASN1_NULL;
454     if (!TS_MSG_IMPRINT_set_algo(msg_imprint, algo))
455         goto err;
456     if ((len = create_digest(data_bio, digest, md, &data)) == 0)
457         goto err;
458     if (!TS_MSG_IMPRINT_set_msg(msg_imprint, data, len))
459         goto err;
460     if (!TS_REQ_set_msg_imprint(ts_req, msg_imprint))
461         goto err;
462     if (policy && (policy_obj = txt2obj(policy)) == NULL)
463         goto err;
464     if (policy_obj && !TS_REQ_set_policy_id(ts_req, policy_obj))
465         goto err;
466
467     /* Setting nonce if requested. */
468     if (!no_nonce && (nonce_asn1 = create_nonce(NONCE_LENGTH)) == NULL)
469         goto err;
470     if (nonce_asn1 && !TS_REQ_set_nonce(ts_req, nonce_asn1))
471         goto err;
472     if (!TS_REQ_set_cert_req(ts_req, cert))
473         goto err;
474
475     ret = 1;
476  err:
477     if (!ret) {
478         TS_REQ_free(ts_req);
479         ts_req = NULL;
480         BIO_printf(bio_err, "could not create query\n");
481         ERR_print_errors(bio_err);
482     }
483     TS_MSG_IMPRINT_free(msg_imprint);
484     X509_ALGOR_free(algo);
485     OPENSSL_free(data);
486     ASN1_OBJECT_free(policy_obj);
487     ASN1_INTEGER_free(nonce_asn1);
488     return ts_req;
489 }
490
491 static int create_digest(BIO *input, char *digest, const EVP_MD *md,
492                          unsigned char **md_value)
493 {
494     int md_value_len;
495     int rv = 0;
496     EVP_MD_CTX *md_ctx = NULL;
497
498     md_value_len = EVP_MD_size(md);
499     if (md_value_len < 0)
500         return 0;
501
502     if (input) {
503         unsigned char buffer[4096];
504         int length;
505
506         md_ctx = EVP_MD_CTX_new();
507         if (md_ctx == NULL)
508             return 0;
509         *md_value = app_malloc(md_value_len, "digest buffer");
510         if (!EVP_DigestInit(md_ctx, md))
511             goto err;
512         while ((length = BIO_read(input, buffer, sizeof(buffer))) > 0) {
513             if (!EVP_DigestUpdate(md_ctx, buffer, length))
514                 goto err;
515         }
516         if (!EVP_DigestFinal(md_ctx, *md_value, NULL))
517             goto err;
518         md_value_len = EVP_MD_size(md);
519     } else {
520         long digest_len;
521         *md_value = OPENSSL_hexstr2buf(digest, &digest_len);
522         if (!*md_value || md_value_len != digest_len) {
523             OPENSSL_free(*md_value);
524             *md_value = NULL;
525             BIO_printf(bio_err, "bad digest, %d bytes "
526                        "must be specified\n", md_value_len);
527             return 0;
528         }
529     }
530     rv = md_value_len;
531  err:
532     EVP_MD_CTX_free(md_ctx);
533     return rv;
534 }
535
536 static ASN1_INTEGER *create_nonce(int bits)
537 {
538     unsigned char buf[20];
539     ASN1_INTEGER *nonce = NULL;
540     int len = (bits - 1) / 8 + 1;
541     int i;
542
543     if (len > (int)sizeof(buf))
544         goto err;
545     if (RAND_bytes(buf, len) <= 0)
546         goto err;
547
548     /* Find the first non-zero byte and creating ASN1_INTEGER object. */
549     for (i = 0; i < len && !buf[i]; ++i)
550         continue;
551     if ((nonce = ASN1_INTEGER_new()) == NULL)
552         goto err;
553     OPENSSL_free(nonce->data);
554     nonce->length = len - i;
555     nonce->data = app_malloc(nonce->length + 1, "nonce buffer");
556     memcpy(nonce->data, buf + i, nonce->length);
557     return nonce;
558
559  err:
560     BIO_printf(bio_err, "could not create nonce\n");
561     ASN1_INTEGER_free(nonce);
562     return NULL;
563 }
564
565 /*
566  * Reply-related method definitions.
567  */
568
569 static int reply_command(CONF *conf, char *section, char *engine,
570                          char *queryfile, char *passin, char *inkey,
571                          const EVP_MD *md, char *signer, char *chain,
572                          const char *policy, char *in, int token_in,
573                          char *out, int token_out, int text)
574 {
575     int ret = 0;
576     TS_RESP *response = NULL;
577     BIO *in_bio = NULL;
578     BIO *query_bio = NULL;
579     BIO *inkey_bio = NULL;
580     BIO *signer_bio = NULL;
581     BIO *out_bio = NULL;
582
583     if (in != NULL) {
584         if ((in_bio = BIO_new_file(in, "rb")) == NULL)
585             goto end;
586         if (token_in) {
587             response = read_PKCS7(in_bio);
588         } else {
589             response = d2i_TS_RESP_bio(in_bio, NULL);
590         }
591     } else {
592         response = create_response(conf, section, engine, queryfile,
593                                    passin, inkey, md, signer, chain, policy);
594         if (response)
595             BIO_printf(bio_err, "Response has been generated.\n");
596         else
597             BIO_printf(bio_err, "Response is not generated.\n");
598     }
599     if (response == NULL)
600         goto end;
601
602     /* Write response. */
603     if (text) {
604         if ((out_bio = bio_open_default(out, 'w', FORMAT_TEXT)) == NULL)
605         goto end;
606         if (token_out) {
607             TS_TST_INFO *tst_info = TS_RESP_get_tst_info(response);
608             if (!TS_TST_INFO_print_bio(out_bio, tst_info))
609                 goto end;
610         } else {
611             if (!TS_RESP_print_bio(out_bio, response))
612                 goto end;
613         }
614     } else {
615         if ((out_bio = bio_open_default(out, 'w', FORMAT_ASN1)) == NULL)
616             goto end;
617         if (token_out) {
618             PKCS7 *token = TS_RESP_get_token(response);
619             if (!i2d_PKCS7_bio(out_bio, token))
620                 goto end;
621         } else {
622             if (!i2d_TS_RESP_bio(out_bio, response))
623                 goto end;
624         }
625     }
626
627     ret = 1;
628
629  end:
630     ERR_print_errors(bio_err);
631     BIO_free_all(in_bio);
632     BIO_free_all(query_bio);
633     BIO_free_all(inkey_bio);
634     BIO_free_all(signer_bio);
635     BIO_free_all(out_bio);
636     TS_RESP_free(response);
637     return ret;
638 }
639
640 /* Reads a PKCS7 token and adds default 'granted' status info to it. */
641 static TS_RESP *read_PKCS7(BIO *in_bio)
642 {
643     int ret = 0;
644     PKCS7 *token = NULL;
645     TS_TST_INFO *tst_info = NULL;
646     TS_RESP *resp = NULL;
647     TS_STATUS_INFO *si = NULL;
648
649     if ((token = d2i_PKCS7_bio(in_bio, NULL)) == NULL)
650         goto end;
651     if ((tst_info = PKCS7_to_TS_TST_INFO(token)) == NULL)
652         goto end;
653     if ((resp = TS_RESP_new()) == NULL)
654         goto end;
655     if ((si = TS_STATUS_INFO_new()) == NULL)
656         goto end;
657     if (!TS_STATUS_INFO_set_status(si, TS_STATUS_GRANTED))
658         goto end;
659     if (!TS_RESP_set_status_info(resp, si))
660         goto end;
661     TS_RESP_set_tst_info(resp, token, tst_info);
662     token = NULL;               /* Ownership is lost. */
663     tst_info = NULL;            /* Ownership is lost. */
664     ret = 1;
665
666  end:
667     PKCS7_free(token);
668     TS_TST_INFO_free(tst_info);
669     if (!ret) {
670         TS_RESP_free(resp);
671         resp = NULL;
672     }
673     TS_STATUS_INFO_free(si);
674     return resp;
675 }
676
677 static TS_RESP *create_response(CONF *conf, const char *section, char *engine,
678                                 char *queryfile, char *passin,
679                                 char *inkey, const EVP_MD *md, char *signer,
680                                 char *chain, const char *policy)
681 {
682     int ret = 0;
683     TS_RESP *response = NULL;
684     BIO *query_bio = NULL;
685     TS_RESP_CTX *resp_ctx = NULL;
686
687     if ((query_bio = BIO_new_file(queryfile, "rb")) == NULL)
688         goto end;
689     if ((section = TS_CONF_get_tsa_section(conf, section)) == NULL)
690         goto end;
691     if ((resp_ctx = TS_RESP_CTX_new()) == NULL)
692         goto end;
693     if (!TS_CONF_set_serial(conf, section, serial_cb, resp_ctx))
694         goto end;
695 # ifndef OPENSSL_NO_ENGINE
696     if (!TS_CONF_set_crypto_device(conf, section, engine))
697         goto end;
698 # endif
699     if (!TS_CONF_set_signer_cert(conf, section, signer, resp_ctx))
700         goto end;
701     if (!TS_CONF_set_certs(conf, section, chain, resp_ctx))
702         goto end;
703     if (!TS_CONF_set_signer_key(conf, section, inkey, passin, resp_ctx))
704         goto end;
705
706     if (md) {
707         if (!TS_RESP_CTX_set_signer_digest(resp_ctx, md))
708             goto end;
709     } else if (!TS_CONF_set_signer_digest(conf, section, NULL, resp_ctx)) {
710             goto end;
711     }
712
713     if (!TS_CONF_set_def_policy(conf, section, policy, resp_ctx))
714         goto end;
715     if (!TS_CONF_set_policies(conf, section, resp_ctx))
716         goto end;
717     if (!TS_CONF_set_digests(conf, section, resp_ctx))
718         goto end;
719     if (!TS_CONF_set_accuracy(conf, section, resp_ctx))
720         goto end;
721     if (!TS_CONF_set_clock_precision_digits(conf, section, resp_ctx))
722         goto end;
723     if (!TS_CONF_set_ordering(conf, section, resp_ctx))
724         goto end;
725     if (!TS_CONF_set_tsa_name(conf, section, resp_ctx))
726         goto end;
727     if (!TS_CONF_set_ess_cert_id_chain(conf, section, resp_ctx))
728         goto end;
729     if ((response = TS_RESP_create_response(resp_ctx, query_bio)) == NULL)
730         goto end;
731     ret = 1;
732
733  end:
734     if (!ret) {
735         TS_RESP_free(response);
736         response = NULL;
737     }
738     TS_RESP_CTX_free(resp_ctx);
739     BIO_free_all(query_bio);
740     return response;
741 }
742
743 static ASN1_INTEGER *serial_cb(TS_RESP_CTX *ctx, void *data)
744 {
745     const char *serial_file = (const char *)data;
746     ASN1_INTEGER *serial = next_serial(serial_file);
747
748     if (!serial) {
749         TS_RESP_CTX_set_status_info(ctx, TS_STATUS_REJECTION,
750                                     "Error during serial number "
751                                     "generation.");
752         TS_RESP_CTX_add_failure_info(ctx, TS_INFO_ADD_INFO_NOT_AVAILABLE);
753     } else
754         save_ts_serial(serial_file, serial);
755
756     return serial;
757 }
758
759 static ASN1_INTEGER *next_serial(const char *serialfile)
760 {
761     int ret = 0;
762     BIO *in = NULL;
763     ASN1_INTEGER *serial = NULL;
764     BIGNUM *bn = NULL;
765
766     if ((serial = ASN1_INTEGER_new()) == NULL)
767         goto err;
768
769     if ((in = BIO_new_file(serialfile, "r")) == NULL) {
770         ERR_clear_error();
771         BIO_printf(bio_err, "Warning: could not open file %s for "
772                    "reading, using serial number: 1\n", serialfile);
773         if (!ASN1_INTEGER_set(serial, 1))
774             goto err;
775     } else {
776         char buf[1024];
777         if (!a2i_ASN1_INTEGER(in, serial, buf, sizeof(buf))) {
778             BIO_printf(bio_err, "unable to load number from %s\n",
779                        serialfile);
780             goto err;
781         }
782         if ((bn = ASN1_INTEGER_to_BN(serial, NULL)) == NULL)
783             goto err;
784         ASN1_INTEGER_free(serial);
785         serial = NULL;
786         if (!BN_add_word(bn, 1))
787             goto err;
788         if ((serial = BN_to_ASN1_INTEGER(bn, NULL)) == NULL)
789             goto err;
790     }
791     ret = 1;
792
793  err:
794     if (!ret) {
795         ASN1_INTEGER_free(serial);
796         serial = NULL;
797     }
798     BIO_free_all(in);
799     BN_free(bn);
800     return serial;
801 }
802
803 static int save_ts_serial(const char *serialfile, ASN1_INTEGER *serial)
804 {
805     int ret = 0;
806     BIO *out = NULL;
807
808     if ((out = BIO_new_file(serialfile, "w")) == NULL)
809         goto err;
810     if (i2a_ASN1_INTEGER(out, serial) <= 0)
811         goto err;
812     if (BIO_puts(out, "\n") <= 0)
813         goto err;
814     ret = 1;
815  err:
816     if (!ret)
817         BIO_printf(bio_err, "could not save serial number to %s\n",
818                    serialfile);
819     BIO_free_all(out);
820     return ret;
821 }
822
823
824 /*
825  * Verify-related method definitions.
826  */
827
828 static int verify_command(char *data, char *digest, char *queryfile,
829                           char *in, int token_in,
830                           char *CApath, char *CAfile, char *untrusted,
831                           X509_VERIFY_PARAM *vpm)
832 {
833     BIO *in_bio = NULL;
834     PKCS7 *token = NULL;
835     TS_RESP *response = NULL;
836     TS_VERIFY_CTX *verify_ctx = NULL;
837     int ret = 0;
838
839     if ((in_bio = BIO_new_file(in, "rb")) == NULL)
840         goto end;
841     if (token_in) {
842         if ((token = d2i_PKCS7_bio(in_bio, NULL)) == NULL)
843             goto end;
844     } else {
845         if ((response = d2i_TS_RESP_bio(in_bio, NULL)) == NULL)
846             goto end;
847     }
848
849     if ((verify_ctx = create_verify_ctx(data, digest, queryfile,
850                                         CApath, CAfile, untrusted,
851                                         vpm)) == NULL)
852         goto end;
853
854     ret = token_in
855         ? TS_RESP_verify_token(verify_ctx, token)
856         : TS_RESP_verify_response(verify_ctx, response);
857
858  end:
859     printf("Verification: ");
860     if (ret)
861         printf("OK\n");
862     else {
863         printf("FAILED\n");
864         ERR_print_errors(bio_err);
865     }
866
867     BIO_free_all(in_bio);
868     PKCS7_free(token);
869     TS_RESP_free(response);
870     TS_VERIFY_CTX_free(verify_ctx);
871     return ret;
872 }
873
874 static TS_VERIFY_CTX *create_verify_ctx(char *data, char *digest,
875                                         char *queryfile,
876                                         char *CApath, char *CAfile,
877                                         char *untrusted,
878                                         X509_VERIFY_PARAM *vpm)
879 {
880     TS_VERIFY_CTX *ctx = NULL;
881     BIO *input = NULL;
882     TS_REQ *request = NULL;
883     int ret = 0;
884     int f = 0;
885
886     if (data != NULL || digest != NULL) {
887         if ((ctx = TS_VERIFY_CTX_new()) == NULL)
888             goto err;
889         f = TS_VFY_VERSION | TS_VFY_SIGNER;
890         if (data != NULL) {
891             f |= TS_VFY_DATA;
892             if (TS_VERIFY_CTX_set_data(ctx, BIO_new_file(data, "rb")) == NULL)
893                 goto err;
894         } else if (digest != NULL) {
895             long imprint_len;
896             unsigned char *hexstr = OPENSSL_hexstr2buf(digest, &imprint_len);
897             f |= TS_VFY_IMPRINT;
898             if (TS_VERIFY_CTX_set_imprint(ctx, hexstr, imprint_len) == NULL) {
899                 BIO_printf(bio_err, "invalid digest string\n");
900                 goto err;
901             }
902         }
903
904     } else if (queryfile != NULL) {
905         if ((input = BIO_new_file(queryfile, "rb")) == NULL)
906             goto err;
907         if ((request = d2i_TS_REQ_bio(input, NULL)) == NULL)
908             goto err;
909         if ((ctx = TS_REQ_to_TS_VERIFY_CTX(request, NULL)) == NULL)
910             goto err;
911     } else
912         return NULL;
913
914     /* Add the signature verification flag and arguments. */
915     TS_VERIFY_CTX_add_flags(ctx, f | TS_VFY_SIGNATURE);
916
917     /* Initialising the X509_STORE object. */
918     if (TS_VERIFY_CTX_set_store(ctx, create_cert_store(CApath, CAfile, vpm))
919             == NULL)
920         goto err;
921
922     /* Loading untrusted certificates. */
923     if (untrusted
924         && TS_VERIFY_CTS_set_certs(ctx, TS_CONF_load_certs(untrusted)) == NULL)
925         goto err;
926     ret = 1;
927
928  err:
929     if (!ret) {
930         TS_VERIFY_CTX_free(ctx);
931         ctx = NULL;
932     }
933     BIO_free_all(input);
934     TS_REQ_free(request);
935     return ctx;
936 }
937
938 static X509_STORE *create_cert_store(char *CApath, char *CAfile, X509_VERIFY_PARAM *vpm)
939 {
940     X509_STORE *cert_ctx = NULL;
941     X509_LOOKUP *lookup = NULL;
942     int i;
943
944     cert_ctx = X509_STORE_new();
945     X509_STORE_set_verify_cb(cert_ctx, verify_cb);
946     if (CApath != NULL) {
947         lookup = X509_STORE_add_lookup(cert_ctx, X509_LOOKUP_hash_dir());
948         if (lookup == NULL) {
949             BIO_printf(bio_err, "memory allocation failure\n");
950             goto err;
951         }
952         i = X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM);
953         if (!i) {
954             BIO_printf(bio_err, "Error loading directory %s\n", CApath);
955             goto err;
956         }
957     }
958
959     if (CAfile != NULL) {
960         lookup = X509_STORE_add_lookup(cert_ctx, X509_LOOKUP_file());
961         if (lookup == NULL) {
962             BIO_printf(bio_err, "memory allocation failure\n");
963             goto err;
964         }
965         i = X509_LOOKUP_load_file(lookup, CAfile, X509_FILETYPE_PEM);
966         if (!i) {
967             BIO_printf(bio_err, "Error loading file %s\n", CAfile);
968             goto err;
969         }
970     }
971
972     if (vpm != NULL)
973         X509_STORE_set1_param(cert_ctx, vpm);
974
975     return cert_ctx;
976
977  err:
978     X509_STORE_free(cert_ctx);
979     return NULL;
980 }
981
982 static int verify_cb(int ok, X509_STORE_CTX *ctx)
983 {
984     return ok;
985 }
986 #endif  /* ndef OPENSSL_NO_TS */