adb0417bd8ca163809fb9bc7c61af9c8986da76d
[openssl.git] / apps / lib / opt.c
1 /*
2  * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 /*
11  * This file is also used by the test suite. Do not #include "apps.h".
12  */
13 #include "opt.h"
14 #include "fmt.h"
15 #include "app_libctx.h"
16 #include "internal/nelem.h"
17 #include "internal/numbers.h"
18 #include <string.h>
19 #if !defined(OPENSSL_SYS_MSDOS)
20 # include <unistd.h>
21 #endif
22
23 #include <stdlib.h>
24 #include <errno.h>
25 #include <ctype.h>
26 #include <limits.h>
27 #include <openssl/err.h>
28 #include <openssl/bio.h>
29 #include <openssl/x509v3.h>
30
31 #define MAX_OPT_HELP_WIDTH 30
32 const char OPT_HELP_STR[] = "-H";
33 const char OPT_MORE_STR[] = "-M";
34 const char OPT_SECTION_STR[] = "-S";
35 const char OPT_PARAM_STR[] = "-P";
36
37 /* Our state */
38 static char **argv;
39 static int argc;
40 static int opt_index;
41 static char *arg;
42 static char *flag;
43 static char *dunno;
44 static const OPTIONS *unknown;
45 static const OPTIONS *opts;
46 static char prog[40];
47
48 /*
49  * Return the simple name of the program; removing various platform gunk.
50  */
51 #if defined(OPENSSL_SYS_WIN32)
52
53 const char *opt_path_end(const char *filename)
54 {
55     const char *p;
56
57     /* find the last '/', '\' or ':' */
58     for (p = filename + strlen(filename); --p > filename; )
59         if (*p == '/' || *p == '\\' || *p == ':') {
60             p++;
61             break;
62         }
63     return p;
64 }
65
66 char *opt_progname(const char *argv0)
67 {
68     size_t i, n;
69     const char *p;
70     char *q;
71
72     p = opt_path_end(argv0);
73
74     /* Strip off trailing nonsense. */
75     n = strlen(p);
76     if (n > 4 &&
77         (strcmp(&p[n - 4], ".exe") == 0 || strcmp(&p[n - 4], ".EXE") == 0))
78         n -= 4;
79
80     /* Copy over the name, in lowercase. */
81     if (n > sizeof(prog) - 1)
82         n = sizeof(prog) - 1;
83     for (q = prog, i = 0; i < n; i++, p++)
84         *q++ = tolower((unsigned char)*p);
85     *q = '\0';
86     return prog;
87 }
88
89 #elif defined(OPENSSL_SYS_VMS)
90
91 const char *opt_path_end(const char *filename)
92 {
93     const char *p;
94
95     /* Find last special character sys:[foo.bar]openssl */
96     for (p = filename + strlen(filename); --p > filename;)
97         if (*p == ':' || *p == ']' || *p == '>') {
98             p++;
99             break;
100         }
101     return p;
102 }
103
104 char *opt_progname(const char *argv0)
105 {
106     const char *p, *q;
107
108     /* Find last special character sys:[foo.bar]openssl */
109     p = opt_path_end(argv0);
110     q = strrchr(p, '.');
111     if (prog != p)
112         strncpy(prog, p, sizeof(prog) - 1);
113     prog[sizeof(prog) - 1] = '\0';
114     if (q != NULL && q - p < sizeof(prog))
115         prog[q - p] = '\0';
116     return prog;
117 }
118
119 #else
120
121 const char *opt_path_end(const char *filename)
122 {
123     const char *p;
124
125     /* Could use strchr, but this is like the ones above. */
126     for (p = filename + strlen(filename); --p > filename;)
127         if (*p == '/') {
128             p++;
129             break;
130         }
131     return p;
132 }
133
134 char *opt_progname(const char *argv0)
135 {
136     const char *p;
137
138     p = opt_path_end(argv0);
139     if (prog != p)
140         strncpy(prog, p, sizeof(prog) - 1);
141     prog[sizeof(prog) - 1] = '\0';
142     return prog;
143 }
144 #endif
145
146 char *opt_appname(const char *argv0)
147 {
148     size_t len = strlen(prog);
149
150     if (argv0 != NULL)
151         BIO_snprintf(prog + len, sizeof(prog) - len - 1, " %s", argv0);
152     return prog;
153 }
154
155 char *opt_getprog(void)
156 {
157     return prog;
158 }
159
160 /* Set up the arg parsing. */
161 char *opt_init(int ac, char **av, const OPTIONS *o)
162 {
163     /* Store state. */
164     argc = ac;
165     argv = av;
166     opt_begin();
167     opts = o;
168     unknown = NULL;
169
170     /* Make sure prog name is set for usage output */
171     (void)opt_progname(argv[0]);
172
173     /* Check all options up until the PARAM marker (if present) */
174     for (; o->name != NULL && o->name != OPT_PARAM_STR; ++o) {
175 #ifndef NDEBUG
176         const OPTIONS *next;
177         int duplicated, i;
178 #endif
179
180         if (o->name == OPT_HELP_STR
181                 || o->name == OPT_MORE_STR
182                 || o->name == OPT_SECTION_STR)
183             continue;
184 #ifndef NDEBUG
185         i = o->valtype;
186
187         /* Make sure options are legit. */
188         OPENSSL_assert(o->name[0] != '-');
189         if (o->valtype == '.')
190             OPENSSL_assert(o->retval == OPT_PARAM);
191         else
192             OPENSSL_assert(o->retval == OPT_DUP || o->retval > OPT_PARAM);
193         switch (i) {
194         case   0: case '-': case '.':
195         case '/': case '<': case '>': case 'E': case 'F':
196         case 'M': case 'U': case 'f': case 'l': case 'n': case 'p': case 's':
197         case 'u': case 'c': case ':': case 'N':
198             break;
199         default:
200             OPENSSL_assert(0);
201         }
202
203         /* Make sure there are no duplicates. */
204         for (next = o + 1; next->name; ++next) {
205             /*
206              * Some compilers inline strcmp and the assert string is too long.
207              */
208             duplicated = next->retval != OPT_DUP
209                 && strcmp(o->name, next->name) == 0;
210             if (duplicated) {
211                 opt_printf_stderr("%s: Internal error: duplicate option %s\n",
212                                   prog, o->name);
213                 OPENSSL_assert(!duplicated);
214             }
215         }
216 #endif
217         if (o->name[0] == '\0') {
218             OPENSSL_assert(unknown == NULL);
219             unknown = o;
220             OPENSSL_assert(unknown->valtype == 0 || unknown->valtype == '-');
221         }
222     }
223     return prog;
224 }
225
226 static OPT_PAIR formats[] = {
227     {"PEM/DER", OPT_FMT_PEMDER},
228     {"pkcs12", OPT_FMT_PKCS12},
229     {"smime", OPT_FMT_SMIME},
230     {"engine", OPT_FMT_ENGINE},
231     {"msblob", OPT_FMT_MSBLOB},
232     {"nss", OPT_FMT_NSS},
233     {"text", OPT_FMT_TEXT},
234     {"http", OPT_FMT_HTTP},
235     {"pvk", OPT_FMT_PVK},
236     {NULL}
237 };
238
239 /* Print an error message about a failed format parse. */
240 static int opt_format_error(const char *s, unsigned long flags)
241 {
242     OPT_PAIR *ap;
243
244     if (flags == OPT_FMT_PEMDER) {
245         opt_printf_stderr("%s: Bad format \"%s\"; must be pem or der\n",
246                           prog, s);
247     } else {
248         opt_printf_stderr("%s: Bad format \"%s\"; must be one of:\n",
249                           prog, s);
250         for (ap = formats; ap->name; ap++)
251             if (flags & ap->retval)
252                 opt_printf_stderr("   %s\n", ap->name);
253     }
254     return 0;
255 }
256
257 /* Parse a format string, put it into *result; return 0 on failure, else 1. */
258 int opt_format(const char *s, unsigned long flags, int *result)
259 {
260     switch (*s) {
261     default:
262         opt_printf_stderr("%s: Bad format \"%s\"\n", prog, s);
263         return 0;
264     case 'D':
265     case 'd':
266         if ((flags & OPT_FMT_PEMDER) == 0)
267             return opt_format_error(s, flags);
268         *result = FORMAT_ASN1;
269         break;
270     case 'T':
271     case 't':
272         if ((flags & OPT_FMT_TEXT) == 0)
273             return opt_format_error(s, flags);
274         *result = FORMAT_TEXT;
275         break;
276     case 'N':
277     case 'n':
278         if ((flags & OPT_FMT_NSS) == 0)
279             return opt_format_error(s, flags);
280         if (strcmp(s, "NSS") != 0 && strcmp(s, "nss") != 0)
281             return opt_format_error(s, flags);
282         *result = FORMAT_NSS;
283         break;
284     case 'S':
285     case 's':
286         if ((flags & OPT_FMT_SMIME) == 0)
287             return opt_format_error(s, flags);
288         *result = FORMAT_SMIME;
289         break;
290     case 'M':
291     case 'm':
292         if ((flags & OPT_FMT_MSBLOB) == 0)
293             return opt_format_error(s, flags);
294         *result = FORMAT_MSBLOB;
295         break;
296     case 'E':
297     case 'e':
298         if ((flags & OPT_FMT_ENGINE) == 0)
299             return opt_format_error(s, flags);
300         *result = FORMAT_ENGINE;
301         break;
302     case 'H':
303     case 'h':
304         if ((flags & OPT_FMT_HTTP) == 0)
305             return opt_format_error(s, flags);
306         *result = FORMAT_HTTP;
307         break;
308     case '1':
309         if ((flags & OPT_FMT_PKCS12) == 0)
310             return opt_format_error(s, flags);
311         *result = FORMAT_PKCS12;
312         break;
313     case 'P':
314     case 'p':
315         if (s[1] == '\0' || strcmp(s, "PEM") == 0 || strcmp(s, "pem") == 0) {
316             if ((flags & OPT_FMT_PEMDER) == 0)
317                 return opt_format_error(s, flags);
318             *result = FORMAT_PEM;
319         } else if (strcmp(s, "PVK") == 0 || strcmp(s, "pvk") == 0) {
320             if ((flags & OPT_FMT_PVK) == 0)
321                 return opt_format_error(s, flags);
322             *result = FORMAT_PVK;
323         } else if (strcmp(s, "P12") == 0 || strcmp(s, "p12") == 0
324                    || strcmp(s, "PKCS12") == 0 || strcmp(s, "pkcs12") == 0) {
325             if ((flags & OPT_FMT_PKCS12) == 0)
326                 return opt_format_error(s, flags);
327             *result = FORMAT_PKCS12;
328         } else {
329             opt_printf_stderr("%s: Bad format \"%s\"\n", prog, s);
330             return 0;
331         }
332         break;
333     }
334     return 1;
335 }
336
337 /* Return string representing the given format. */
338 static const char *format2str(int format)
339 {
340     switch (format) {
341     default:
342         return "(undefined)";
343     case FORMAT_PEM:
344         return "PEM";
345     case FORMAT_ASN1:
346         return "DER";
347     case FORMAT_TEXT:
348         return "TEXT";
349     case FORMAT_NSS:
350         return "NSS";
351     case FORMAT_SMIME:
352         return "SMIME";
353     case FORMAT_MSBLOB:
354         return "MSBLOB";
355     case FORMAT_ENGINE:
356         return "ENGINE";
357     case FORMAT_HTTP:
358         return "HTTP";
359     case FORMAT_PKCS12:
360         return "P12";
361     case FORMAT_PVK:
362         return "PVK";
363     }
364 }
365
366 /* Print an error message about unsuitable/unsupported format requested. */
367 void print_format_error(int format, unsigned long flags)
368 {
369     (void)opt_format_error(format2str(format), flags);
370 }
371
372 /*
373  * Parse a cipher name, put it in *cipherp after freeing what was there, if
374  * cipherp is not NULL.  Return 0 on failure, else 1.
375  */
376 int opt_cipher_silent(const char *name, EVP_CIPHER **cipherp)
377 {
378     EVP_CIPHER *c;
379
380     ERR_set_mark();
381     if ((c = EVP_CIPHER_fetch(NULL, name, NULL)) != NULL
382         || (c = (EVP_CIPHER *)EVP_get_cipherbyname(name)) != NULL) {
383         ERR_pop_to_mark();
384         if (cipherp != NULL) {
385             EVP_CIPHER_free(*cipherp);
386             *cipherp = c;
387         } else {
388             EVP_CIPHER_free(c);
389         }
390         return 1;
391     }
392     ERR_clear_last_mark();
393     return 0;
394 }
395
396 int opt_cipher_any(const char *name, EVP_CIPHER **cipherp)
397 {
398     int ret;
399
400     if ((ret = opt_cipher_silent(name, cipherp)) == 0)
401         opt_printf_stderr("%s: Unknown cipher: %s\n", prog, name);
402     return ret;
403 }
404
405 int opt_cipher(const char *name, EVP_CIPHER **cipherp)
406 {
407      int mode, ret = 0;
408      unsigned long int flags;
409      EVP_CIPHER *c = NULL;
410
411      if (opt_cipher_any(name, &c)) {
412         mode = EVP_CIPHER_get_mode(c);
413         flags = EVP_CIPHER_get_flags(c);
414         if (mode == EVP_CIPH_XTS_MODE) {
415             opt_printf_stderr("%s XTS ciphers not supported\n", prog);
416         } else if ((flags & EVP_CIPH_FLAG_AEAD_CIPHER) != 0) {
417             opt_printf_stderr("%s: AEAD ciphers not supported\n", prog);
418         } else {
419             ret = 1;
420             if (cipherp != NULL)
421                 *cipherp = c;
422         }
423     }
424     return ret;
425 }
426
427 /*
428  * Parse message digest name, put it in *EVP_MD; return 0 on failure, else 1.
429  */
430 int opt_md_silent(const char *name, EVP_MD **mdp)
431 {
432     EVP_MD_free(*mdp);
433
434     ERR_set_mark();
435     if ((*mdp = EVP_MD_fetch(NULL, name, NULL)) != NULL
436         || (*mdp = (EVP_MD *)EVP_get_digestbyname(name)) != NULL) {
437         ERR_pop_to_mark();
438         return 1;
439     }
440     ERR_clear_last_mark();
441     return 0;
442 }
443
444 int opt_md(const char *name, EVP_MD **mdp)
445 {
446     int ret;
447
448     if ((ret = opt_md_silent(name, mdp)) == 0)
449         opt_printf_stderr("%s: Unknown option or message digest: %s\n", prog,
450                           name != NULL ? name : "\"\"");
451     return ret;
452 }
453
454 /* Look through a list of name/value pairs. */
455 int opt_pair(const char *name, const OPT_PAIR* pairs, int *result)
456 {
457     const OPT_PAIR *pp;
458
459     for (pp = pairs; pp->name; pp++)
460         if (strcmp(pp->name, name) == 0) {
461             *result = pp->retval;
462             return 1;
463         }
464     opt_printf_stderr("%s: Value must be one of:\n", prog);
465     for (pp = pairs; pp->name; pp++)
466         opt_printf_stderr("\t%s\n", pp->name);
467     return 0;
468 }
469
470 /* Look through a list of valid names */
471 int opt_string(const char *name, const char **options)
472 {
473     const char **p;
474
475     for (p = options; *p != NULL; p++)
476         if (strcmp(*p, name) == 0)
477             return 1;
478     opt_printf_stderr("%s: Value must be one of:\n", prog);
479     for (p = options; *p != NULL; p++)
480         opt_printf_stderr("\t%s\n", *p);
481     return 0;
482 }
483
484 /* Parse an int, put it into *result; return 0 on failure, else 1. */
485 int opt_int(const char *value, int *result)
486 {
487     long l;
488
489     if (!opt_long(value, &l))
490         return 0;
491     *result = (int)l;
492     if (*result != l) {
493         opt_printf_stderr("%s: Value \"%s\" outside integer range\n",
494                           prog, value);
495         return 0;
496     }
497     return 1;
498 }
499
500 /* Parse and return an integer, assuming range has been checked before. */
501 int opt_int_arg(void)
502 {
503     int result = -1;
504
505     (void)opt_int(arg, &result);
506     return result;
507 }
508
509 static void opt_number_error(const char *v)
510 {
511     size_t i = 0;
512     struct strstr_pair_st {
513         char *prefix;
514         char *name;
515     } b[] = {
516         {"0x", "a hexadecimal"},
517         {"0X", "a hexadecimal"},
518         {"0", "an octal"}
519     };
520
521     for (i = 0; i < OSSL_NELEM(b); i++) {
522         if (strncmp(v, b[i].prefix, strlen(b[i].prefix)) == 0) {
523             opt_printf_stderr("%s: Can't parse \"%s\" as %s number\n",
524                               prog, v, b[i].name);
525             return;
526         }
527     }
528     opt_printf_stderr("%s: Can't parse \"%s\" as a number\n", prog, v);
529     return;
530 }
531
532 /* Parse a long, put it into *result; return 0 on failure, else 1. */
533 int opt_long(const char *value, long *result)
534 {
535     int oerrno = errno;
536     long l;
537     char *endp;
538
539     errno = 0;
540     l = strtol(value, &endp, 0);
541     if (*endp
542             || endp == value
543             || ((l == LONG_MAX || l == LONG_MIN) && errno == ERANGE)
544             || (l == 0 && errno != 0)) {
545         opt_number_error(value);
546         errno = oerrno;
547         return 0;
548     }
549     *result = l;
550     errno = oerrno;
551     return 1;
552 }
553
554 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L && \
555     defined(INTMAX_MAX) && defined(UINTMAX_MAX) && \
556     !defined(OPENSSL_NO_INTTYPES_H)
557
558 /* Parse an intmax_t, put it into *result; return 0 on failure, else 1. */
559 int opt_intmax(const char *value, ossl_intmax_t *result)
560 {
561     int oerrno = errno;
562     intmax_t m;
563     char *endp;
564
565     errno = 0;
566     m = strtoimax(value, &endp, 0);
567     if (*endp
568             || endp == value
569             || ((m == INTMAX_MAX || m == INTMAX_MIN)
570                 && errno == ERANGE)
571             || (m == 0 && errno != 0)) {
572         opt_number_error(value);
573         errno = oerrno;
574         return 0;
575     }
576     /* Ensure that the value in |m| is never too big for |*result| */
577     if (sizeof(m) > sizeof(*result)
578         && (m < OSSL_INTMAX_MIN || m > OSSL_INTMAX_MAX)) {
579         opt_number_error(value);
580         return 0;
581     }
582     *result = (ossl_intmax_t)m;
583     errno = oerrno;
584     return 1;
585 }
586
587 /* Parse a uintmax_t, put it into *result; return 0 on failure, else 1. */
588 int opt_uintmax(const char *value, ossl_uintmax_t *result)
589 {
590     int oerrno = errno;
591     uintmax_t m;
592     char *endp;
593
594     errno = 0;
595     m = strtoumax(value, &endp, 0);
596     if (*endp
597             || endp == value
598             || (m == UINTMAX_MAX && errno == ERANGE)
599             || (m == 0 && errno != 0)) {
600         opt_number_error(value);
601         errno = oerrno;
602         return 0;
603     }
604     /* Ensure that the value in |m| is never too big for |*result| */
605     if (sizeof(m) > sizeof(*result)
606         && m > OSSL_UINTMAX_MAX) {
607         opt_number_error(value);
608         return 0;
609     }
610     *result = (ossl_intmax_t)m;
611     errno = oerrno;
612     return 1;
613 }
614 #else
615 /* Fallback implementations based on long */
616 int opt_intmax(const char *value, ossl_intmax_t *result)
617 {
618     long m;
619     int ret;
620
621     if ((ret = opt_long(value, &m)))
622         *result = m;
623     return ret;
624 }
625
626 int opt_uintmax(const char *value, ossl_uintmax_t *result)
627 {
628     unsigned long m;
629     int ret;
630
631     if ((ret = opt_ulong(value, &m)))
632         *result = m;
633     return ret;
634 }
635 #endif
636
637 /*
638  * Parse an unsigned long, put it into *result; return 0 on failure, else 1.
639  */
640 int opt_ulong(const char *value, unsigned long *result)
641 {
642     int oerrno = errno;
643     char *endptr;
644     unsigned long l;
645
646     errno = 0;
647     l = strtoul(value, &endptr, 0);
648     if (*endptr
649             || endptr == value
650             || ((l == ULONG_MAX) && errno == ERANGE)
651             || (l == 0 && errno != 0)) {
652         opt_number_error(value);
653         errno = oerrno;
654         return 0;
655     }
656     *result = l;
657     errno = oerrno;
658     return 1;
659 }
660
661 /*
662  * We pass opt as an int but cast it to "enum range" so that all the
663  * items in the OPT_V_ENUM enumeration are caught; this makes -Wswitch
664  * in gcc do the right thing.
665  */
666 enum range { OPT_V_ENUM };
667
668 int opt_verify(int opt, X509_VERIFY_PARAM *vpm)
669 {
670     int i;
671     ossl_intmax_t t = 0;
672     ASN1_OBJECT *otmp;
673     X509_PURPOSE *xptmp;
674     const X509_VERIFY_PARAM *vtmp;
675
676     OPENSSL_assert(vpm != NULL);
677     OPENSSL_assert(opt > OPT_V__FIRST);
678     OPENSSL_assert(opt < OPT_V__LAST);
679
680     switch ((enum range)opt) {
681     case OPT_V__FIRST:
682     case OPT_V__LAST:
683         return 0;
684     case OPT_V_POLICY:
685         otmp = OBJ_txt2obj(opt_arg(), 0);
686         if (otmp == NULL) {
687             opt_printf_stderr("%s: Invalid Policy %s\n", prog, opt_arg());
688             return 0;
689         }
690         X509_VERIFY_PARAM_add0_policy(vpm, otmp);
691         break;
692     case OPT_V_PURPOSE:
693         /* purpose name -> purpose index */
694         i = X509_PURPOSE_get_by_sname(opt_arg());
695         if (i < 0) {
696             opt_printf_stderr("%s: Invalid purpose %s\n", prog, opt_arg());
697             return 0;
698         }
699
700         /* purpose index -> purpose object */
701         xptmp = X509_PURPOSE_get0(i);
702
703         /* purpose object -> purpose value */
704         i = X509_PURPOSE_get_id(xptmp);
705
706         if (!X509_VERIFY_PARAM_set_purpose(vpm, i)) {
707             opt_printf_stderr("%s: Internal error setting purpose %s\n",
708                               prog, opt_arg());
709             return 0;
710         }
711         break;
712     case OPT_V_VERIFY_NAME:
713         vtmp = X509_VERIFY_PARAM_lookup(opt_arg());
714         if (vtmp == NULL) {
715             opt_printf_stderr("%s: Invalid verify name %s\n",
716                               prog, opt_arg());
717             return 0;
718         }
719         X509_VERIFY_PARAM_set1(vpm, vtmp);
720         break;
721     case OPT_V_VERIFY_DEPTH:
722         i = atoi(opt_arg());
723         if (i >= 0)
724             X509_VERIFY_PARAM_set_depth(vpm, i);
725         break;
726     case OPT_V_VERIFY_AUTH_LEVEL:
727         i = atoi(opt_arg());
728         if (i >= 0)
729             X509_VERIFY_PARAM_set_auth_level(vpm, i);
730         break;
731     case OPT_V_ATTIME:
732         if (!opt_intmax(opt_arg(), &t))
733             return 0;
734         if (t != (time_t)t) {
735             opt_printf_stderr("%s: epoch time out of range %s\n",
736                               prog, opt_arg());
737             return 0;
738         }
739         X509_VERIFY_PARAM_set_time(vpm, (time_t)t);
740         break;
741     case OPT_V_VERIFY_HOSTNAME:
742         if (!X509_VERIFY_PARAM_set1_host(vpm, opt_arg(), 0))
743             return 0;
744         break;
745     case OPT_V_VERIFY_EMAIL:
746         if (!X509_VERIFY_PARAM_set1_email(vpm, opt_arg(), 0))
747             return 0;
748         break;
749     case OPT_V_VERIFY_IP:
750         if (!X509_VERIFY_PARAM_set1_ip_asc(vpm, opt_arg()))
751             return 0;
752         break;
753     case OPT_V_IGNORE_CRITICAL:
754         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_IGNORE_CRITICAL);
755         break;
756     case OPT_V_ISSUER_CHECKS:
757         /* NOP, deprecated */
758         break;
759     case OPT_V_CRL_CHECK:
760         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_CRL_CHECK);
761         break;
762     case OPT_V_CRL_CHECK_ALL:
763         X509_VERIFY_PARAM_set_flags(vpm,
764                                     X509_V_FLAG_CRL_CHECK |
765                                     X509_V_FLAG_CRL_CHECK_ALL);
766         break;
767     case OPT_V_POLICY_CHECK:
768         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_POLICY_CHECK);
769         break;
770     case OPT_V_EXPLICIT_POLICY:
771         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_EXPLICIT_POLICY);
772         break;
773     case OPT_V_INHIBIT_ANY:
774         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_INHIBIT_ANY);
775         break;
776     case OPT_V_INHIBIT_MAP:
777         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_INHIBIT_MAP);
778         break;
779     case OPT_V_X509_STRICT:
780         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_X509_STRICT);
781         break;
782     case OPT_V_EXTENDED_CRL:
783         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_EXTENDED_CRL_SUPPORT);
784         break;
785     case OPT_V_USE_DELTAS:
786         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_USE_DELTAS);
787         break;
788     case OPT_V_POLICY_PRINT:
789         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_NOTIFY_POLICY);
790         break;
791     case OPT_V_CHECK_SS_SIG:
792         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_CHECK_SS_SIGNATURE);
793         break;
794     case OPT_V_TRUSTED_FIRST:
795         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_TRUSTED_FIRST);
796         break;
797     case OPT_V_SUITEB_128_ONLY:
798         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_SUITEB_128_LOS_ONLY);
799         break;
800     case OPT_V_SUITEB_128:
801         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_SUITEB_128_LOS);
802         break;
803     case OPT_V_SUITEB_192:
804         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_SUITEB_192_LOS);
805         break;
806     case OPT_V_PARTIAL_CHAIN:
807         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_PARTIAL_CHAIN);
808         break;
809     case OPT_V_NO_ALT_CHAINS:
810         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_NO_ALT_CHAINS);
811         break;
812     case OPT_V_NO_CHECK_TIME:
813         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_NO_CHECK_TIME);
814         break;
815     case OPT_V_ALLOW_PROXY_CERTS:
816         X509_VERIFY_PARAM_set_flags(vpm, X509_V_FLAG_ALLOW_PROXY_CERTS);
817         break;
818     }
819     return 1;
820
821 }
822
823 void opt_begin(void)
824 {
825     opt_index = 1;
826     arg = NULL;
827     flag = NULL;
828 }
829
830 /*
831  * Parse the next flag (and value if specified), return 0 if done, -1 on
832  * error, otherwise the flag's retval.
833  */
834 int opt_next(void)
835 {
836     char *p;
837     const OPTIONS *o;
838     int ival;
839     long lval;
840     unsigned long ulval;
841     ossl_intmax_t imval;
842     ossl_uintmax_t umval;
843
844     /* Look at current arg; at end of the list? */
845     arg = NULL;
846     p = argv[opt_index];
847     if (p == NULL)
848         return 0;
849
850     /* If word doesn't start with a -, we're done. */
851     if (*p != '-')
852         return 0;
853
854     /* Hit "--" ? We're done. */
855     opt_index++;
856     if (strcmp(p, "--") == 0)
857         return 0;
858
859     /* Allow -nnn and --nnn */
860     if (*++p == '-')
861         p++;
862     flag = p - 1;
863
864     /* If we have --flag=foo, snip it off */
865     if ((arg = strchr(p, '=')) != NULL)
866         *arg++ = '\0';
867     for (o = opts; o->name; ++o) {
868         /* If not this option, move on to the next one. */
869         if (!(strcmp(p, "h") == 0 && strcmp(o->name, "help") == 0)
870                 && strcmp(p, o->name) != 0)
871             continue;
872
873         /* If it doesn't take a value, make sure none was given. */
874         if (o->valtype == 0 || o->valtype == '-') {
875             if (arg) {
876                 opt_printf_stderr("%s: Option -%s does not take a value\n",
877                                   prog, p);
878                 return -1;
879             }
880             return o->retval;
881         }
882
883         /* Want a value; get the next param if =foo not used. */
884         if (arg == NULL) {
885             if (argv[opt_index] == NULL) {
886                 opt_printf_stderr("%s: Option -%s needs a value\n",
887                                   prog, o->name);
888                 return -1;
889             }
890             arg = argv[opt_index++];
891         }
892
893         /* Syntax-check value. */
894         switch (o->valtype) {
895         default:
896         case 's':
897         case ':':
898             /* Just a string. */
899             break;
900         case '.':
901             /* Parameters */
902             break;
903         case '/':
904             if (opt_isdir(arg) > 0)
905                 break;
906             opt_printf_stderr("%s: Not a directory: %s\n", prog, arg);
907             return -1;
908         case '<':
909             /* Input file. */
910             break;
911         case '>':
912             /* Output file. */
913             break;
914         case 'p':
915         case 'n':
916         case 'N':
917             if (!opt_int(arg, &ival))
918                 return -1;
919             if (o->valtype == 'p' && ival <= 0) {
920                 opt_printf_stderr("%s: Non-positive number \"%s\" for option -%s\n",
921                                   prog, arg, o->name);
922                 return -1;
923             }
924             if (o->valtype == 'N' && ival < 0) {
925                 opt_printf_stderr("%s: Negative number \"%s\" for option -%s\n",
926                                   prog, arg, o->name);
927                 return -1;
928             }
929             break;
930         case 'M':
931             if (!opt_intmax(arg, &imval))
932                 return -1;
933             break;
934         case 'U':
935             if (!opt_uintmax(arg, &umval))
936                 return -1;
937             break;
938         case 'l':
939             if (!opt_long(arg, &lval))
940                 return -1;
941             break;
942         case 'u':
943             if (!opt_ulong(arg, &ulval))
944                 return -1;
945             break;
946         case 'c':
947         case 'E':
948         case 'F':
949         case 'f':
950             if (opt_format(arg,
951                            o->valtype == 'c' ? OPT_FMT_PDS :
952                            o->valtype == 'E' ? OPT_FMT_PDE :
953                            o->valtype == 'F' ? OPT_FMT_PEMDER
954                            : OPT_FMT_ANY, &ival))
955                 break;
956             opt_printf_stderr("%s: Invalid format \"%s\" for option -%s\n",
957                               prog, arg, o->name);
958             return -1;
959         }
960
961         /* Return the flag value. */
962         return o->retval;
963     }
964     if (unknown != NULL) {
965         dunno = p;
966         return unknown->retval;
967     }
968     opt_printf_stderr("%s: Unknown option: -%s\n", prog, p);
969     return -1;
970 }
971
972 /* Return the most recent flag parameter. */
973 char *opt_arg(void)
974 {
975     return arg;
976 }
977
978 /* Return the most recent flag (option name including the preceding '-'). */
979 char *opt_flag(void)
980 {
981     return flag;
982 }
983
984 /* Return the unknown option. */
985 char *opt_unknown(void)
986 {
987     return dunno;
988 }
989
990 /* Return the rest of the arguments after parsing flags. */
991 char **opt_rest(void)
992 {
993     return &argv[opt_index];
994 }
995
996 /* How many items in remaining args? */
997 int opt_num_rest(void)
998 {
999     int i = 0;
1000     char **pp;
1001
1002     for (pp = opt_rest(); *pp; pp++, i++)
1003         continue;
1004     return i;
1005 }
1006
1007 /* Return a string describing the parameter type. */
1008 static const char *valtype2param(const OPTIONS *o)
1009 {
1010     switch (o->valtype) {
1011     case 0:
1012     case '-':
1013         return "";
1014     case ':':
1015         return "uri";
1016     case 's':
1017         return "val";
1018     case '/':
1019         return "dir";
1020     case '<':
1021         return "infile";
1022     case '>':
1023         return "outfile";
1024     case 'p':
1025         return "+int";
1026     case 'n':
1027         return "int";
1028     case 'l':
1029         return "long";
1030     case 'u':
1031         return "ulong";
1032     case 'E':
1033         return "PEM|DER|ENGINE";
1034     case 'F':
1035         return "PEM|DER";
1036     case 'f':
1037         return "format";
1038     case 'M':
1039         return "intmax";
1040     case 'N':
1041         return "nonneg";
1042     case 'U':
1043         return "uintmax";
1044     }
1045     return "parm";
1046 }
1047
1048 static void opt_print(const OPTIONS *o, int doingparams, int width)
1049 {
1050     const char* help;
1051     char start[80 + 1];
1052     char *p;
1053
1054         help = o->helpstr ? o->helpstr : "(No additional info)";
1055         if (o->name == OPT_HELP_STR) {
1056             opt_printf_stderr(help, prog);
1057             return;
1058         }
1059         if (o->name == OPT_SECTION_STR) {
1060             opt_printf_stderr("\n");
1061             opt_printf_stderr(help, prog);
1062             return;
1063         }
1064         if (o->name == OPT_PARAM_STR) {
1065             opt_printf_stderr("\nParameters:\n");
1066             return;
1067         }
1068
1069         /* Pad out prefix */
1070         memset(start, ' ', sizeof(start) - 1);
1071         start[sizeof(start) - 1] = '\0';
1072
1073         if (o->name == OPT_MORE_STR) {
1074             /* Continuation of previous line; pad and print. */
1075             start[width] = '\0';
1076             opt_printf_stderr("%s  %s\n", start, help);
1077             return;
1078         }
1079
1080         /* Build up the "-flag [param]" part. */
1081         p = start;
1082         *p++ = ' ';
1083         if (!doingparams)
1084             *p++ = '-';
1085         if (o->name[0])
1086             p += strlen(strcpy(p, o->name));
1087         else
1088             *p++ = '*';
1089         if (o->valtype != '-') {
1090             *p++ = ' ';
1091             p += strlen(strcpy(p, valtype2param(o)));
1092         }
1093         *p = ' ';
1094         if ((int)(p - start) >= MAX_OPT_HELP_WIDTH) {
1095             *p = '\0';
1096             opt_printf_stderr("%s\n", start);
1097             memset(start, ' ', sizeof(start));
1098         }
1099         start[width] = '\0';
1100         opt_printf_stderr("%s  %s\n", start, help);
1101 }
1102
1103 void opt_help(const OPTIONS *list)
1104 {
1105     const OPTIONS *o;
1106     int i, sawparams = 0, width = 5;
1107     int standard_prolog;
1108     char start[80 + 1];
1109
1110     /* Starts with its own help message? */
1111     standard_prolog = list[0].name != OPT_HELP_STR;
1112
1113     /* Find the widest help. */
1114     for (o = list; o->name; o++) {
1115         if (o->name == OPT_MORE_STR)
1116             continue;
1117         i = 2 + (int)strlen(o->name);
1118         if (o->valtype != '-')
1119             i += 1 + strlen(valtype2param(o));
1120         if (i < MAX_OPT_HELP_WIDTH && i > width)
1121             width = i;
1122         OPENSSL_assert(i < (int)sizeof(start));
1123     }
1124
1125     if (standard_prolog) {
1126         opt_printf_stderr("Usage: %s [options]\n", prog);
1127         if (list[0].name != OPT_SECTION_STR)
1128             opt_printf_stderr("Valid options are:\n", prog);
1129     }
1130
1131     /* Now let's print. */
1132     for (o = list; o->name; o++) {
1133         if (o->name == OPT_PARAM_STR)
1134             sawparams = 1;
1135         opt_print(o, sawparams, width);
1136     }
1137 }
1138
1139 /* opt_isdir section */
1140 #ifdef _WIN32
1141 # include <windows.h>
1142 int opt_isdir(const char *name)
1143 {
1144     DWORD attr;
1145 # if defined(UNICODE) || defined(_UNICODE)
1146     size_t i, len_0 = strlen(name) + 1;
1147     WCHAR tempname[MAX_PATH];
1148
1149     if (len_0 > MAX_PATH)
1150         return -1;
1151
1152 #  if !defined(_WIN32_WCE) || _WIN32_WCE>=101
1153     if (!MultiByteToWideChar(CP_ACP, 0, name, len_0, tempname, MAX_PATH))
1154 #  endif
1155         for (i = 0; i < len_0; i++)
1156             tempname[i] = (WCHAR)name[i];
1157
1158     attr = GetFileAttributes(tempname);
1159 # else
1160     attr = GetFileAttributes(name);
1161 # endif
1162     if (attr == INVALID_FILE_ATTRIBUTES)
1163         return -1;
1164     return ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0);
1165 }
1166 #else
1167 # include <sys/stat.h>
1168 # ifndef S_ISDIR
1169 #  if defined(_S_IFMT) && defined(_S_IFDIR)
1170 #   define S_ISDIR(a)   (((a) & _S_IFMT) == _S_IFDIR)
1171 #  else
1172 #   define S_ISDIR(a)   (((a) & S_IFMT) == S_IFDIR)
1173 #  endif
1174 # endif
1175
1176 int opt_isdir(const char *name)
1177 {
1178 # if defined(S_ISDIR)
1179     struct stat st;
1180
1181     if (stat(name, &st) == 0)
1182         return S_ISDIR(st.st_mode);
1183     else
1184         return -1;
1185 # else
1186     return -1;
1187 # endif
1188 }
1189 #endif