]> git.ipfire.org Git - thirdparty/openssl.git/blob - apps/apps.c
Run util/openssl-format-source -v -c .
[thirdparty/openssl.git] / apps / apps.c
1 /* apps/apps.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58 /* ====================================================================
59 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
60 *
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
63 * are met:
64 *
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
67 *
68 * 2. Redistributions in binary form must reproduce the above copyright
69 * notice, this list of conditions and the following disclaimer in
70 * the documentation and/or other materials provided with the
71 * distribution.
72 *
73 * 3. All advertising materials mentioning features or use of this
74 * software must display the following acknowledgment:
75 * "This product includes software developed by the OpenSSL Project
76 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77 *
78 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79 * endorse or promote products derived from this software without
80 * prior written permission. For written permission, please contact
81 * openssl-core@openssl.org.
82 *
83 * 5. Products derived from this software may not be called "OpenSSL"
84 * nor may "OpenSSL" appear in their names without prior written
85 * permission of the OpenSSL Project.
86 *
87 * 6. Redistributions of any form whatsoever must retain the following
88 * acknowledgment:
89 * "This product includes software developed by the OpenSSL Project
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91 *
92 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
96 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103 * OF THE POSSIBILITY OF SUCH DAMAGE.
104 * ====================================================================
105 *
106 * This product includes cryptographic software written by Eric Young
107 * (eay@cryptsoft.com). This product includes software written by Tim
108 * Hudson (tjh@cryptsoft.com).
109 *
110 */
111
112 #if !defined(_POSIX_C_SOURCE) && defined(OPENSSL_SYS_VMS)
113 /*
114 * On VMS, you need to define this to get the declaration of fileno(). The
115 * value 2 is to make sure no function defined in POSIX-2 is left undefined.
116 */
117 # define _POSIX_C_SOURCE 2
118 #endif
119 #include <stdio.h>
120 #include <stdlib.h>
121 #include <string.h>
122 #if !defined(OPENSSL_SYSNAME_WIN32) && !defined(OPENSSL_SYSNAME_WINCE) && !defined(NETWARE_CLIB)
123 # include <strings.h>
124 #endif
125 #include <sys/types.h>
126 #include <ctype.h>
127 #include <errno.h>
128 #include <assert.h>
129 #include <openssl/err.h>
130 #include <openssl/x509.h>
131 #include <openssl/x509v3.h>
132 #include <openssl/pem.h>
133 #include <openssl/pkcs12.h>
134 #include <openssl/ui.h>
135 #include <openssl/safestack.h>
136 #ifndef OPENSSL_NO_ENGINE
137 # include <openssl/engine.h>
138 #endif
139 #ifndef OPENSSL_NO_RSA
140 # include <openssl/rsa.h>
141 #endif
142 #include <openssl/bn.h>
143 #ifndef OPENSSL_NO_JPAKE
144 # include <openssl/jpake.h>
145 #endif
146
147 #define NON_MAIN
148 #include "apps.h"
149 #undef NON_MAIN
150
151 #ifdef _WIN32
152 static int WIN32_rename(const char *from, const char *to);
153 # define rename(from,to) WIN32_rename((from),(to))
154 #endif
155
156 typedef struct {
157 const char *name;
158 unsigned long flag;
159 unsigned long mask;
160 } NAME_EX_TBL;
161
162 static UI_METHOD *ui_method = NULL;
163
164 static int set_table_opts(unsigned long *flags, const char *arg,
165 const NAME_EX_TBL * in_tbl);
166 static int set_multi_opts(unsigned long *flags, const char *arg,
167 const NAME_EX_TBL * in_tbl);
168
169 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
170 /* Looks like this stuff is worth moving into separate function */
171 static EVP_PKEY *load_netscape_key(BIO *err, BIO *key, const char *file,
172 const char *key_descrip, int format);
173 #endif
174
175 int app_init(long mesgwin);
176 #ifdef undef /* never finished - probably never will be
177 * :-) */
178 int args_from_file(char *file, int *argc, char **argv[])
179 {
180 FILE *fp;
181 int num, i;
182 unsigned int len;
183 static char *buf = NULL;
184 static char **arg = NULL;
185 char *p;
186
187 fp = fopen(file, "r");
188 if (fp == NULL)
189 return (0);
190
191 if (fseek(fp, 0, SEEK_END) == 0)
192 len = ftell(fp), rewind(fp);
193 else
194 len = -1;
195 if (len <= 0) {
196 fclose(fp);
197 return (0);
198 }
199
200 *argc = 0;
201 *argv = NULL;
202
203 if (buf != NULL)
204 OPENSSL_free(buf);
205 buf = (char *)OPENSSL_malloc(len + 1);
206 if (buf == NULL)
207 return (0);
208
209 len = fread(buf, 1, len, fp);
210 if (len <= 1)
211 return (0);
212 buf[len] = '\0';
213
214 i = 0;
215 for (p = buf; *p; p++)
216 if (*p == '\n')
217 i++;
218 if (arg != NULL)
219 OPENSSL_free(arg);
220 arg = (char **)OPENSSL_malloc(sizeof(char *) * (i * 2));
221
222 *argv = arg;
223 num = 0;
224 p = buf;
225 for (;;) {
226 if (!*p)
227 break;
228 if (*p == '#') { /* comment line */
229 while (*p && (*p != '\n'))
230 p++;
231 continue;
232 }
233 /* else we have a line */
234 *(arg++) = p;
235 num++;
236 while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n')))
237 p++;
238 if (!*p)
239 break;
240 if (*p == '\n') {
241 *(p++) = '\0';
242 continue;
243 }
244 /* else it is a tab or space */
245 p++;
246 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
247 p++;
248 if (!*p)
249 break;
250 if (*p == '\n') {
251 p++;
252 continue;
253 }
254 *(arg++) = p++;
255 num++;
256 while (*p && (*p != '\n'))
257 p++;
258 if (!*p)
259 break;
260 /* else *p == '\n' */
261 *(p++) = '\0';
262 }
263 *argc = num;
264 return (1);
265 }
266 #endif
267
268 int str2fmt(char *s)
269 {
270 if (s == NULL)
271 return FORMAT_UNDEF;
272 if ((*s == 'D') || (*s == 'd'))
273 return (FORMAT_ASN1);
274 else if ((*s == 'T') || (*s == 't'))
275 return (FORMAT_TEXT);
276 else if ((strcmp(s, "NSS") == 0) || (strcmp(s, "nss") == 0))
277 return (FORMAT_NSS);
278 else if ((*s == 'N') || (*s == 'n'))
279 return (FORMAT_NETSCAPE);
280 else if ((*s == 'S') || (*s == 's'))
281 return (FORMAT_SMIME);
282 else if ((*s == 'M') || (*s == 'm'))
283 return (FORMAT_MSBLOB);
284 else if ((*s == '1')
285 || (strcmp(s, "PKCS12") == 0) || (strcmp(s, "pkcs12") == 0)
286 || (strcmp(s, "P12") == 0) || (strcmp(s, "p12") == 0))
287 return (FORMAT_PKCS12);
288 else if ((*s == 'E') || (*s == 'e'))
289 return (FORMAT_ENGINE);
290 else if ((*s == 'H') || (*s == 'h'))
291 return FORMAT_HTTP;
292 else if ((*s == 'P') || (*s == 'p')) {
293 if (s[1] == 'V' || s[1] == 'v')
294 return FORMAT_PVK;
295 else
296 return (FORMAT_PEM);
297 } else
298 return (FORMAT_UNDEF);
299 }
300
301 #if defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_NETWARE)
302 void program_name(char *in, char *out, int size)
303 {
304 int i, n;
305 char *p = NULL;
306
307 n = strlen(in);
308 /* find the last '/', '\' or ':' */
309 for (i = n - 1; i > 0; i--) {
310 if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':')) {
311 p = &(in[i + 1]);
312 break;
313 }
314 }
315 if (p == NULL)
316 p = in;
317 n = strlen(p);
318
319 # if defined(OPENSSL_SYS_NETWARE)
320 /* strip off trailing .nlm if present. */
321 if ((n > 4) && (p[n - 4] == '.') &&
322 ((p[n - 3] == 'n') || (p[n - 3] == 'N')) &&
323 ((p[n - 2] == 'l') || (p[n - 2] == 'L')) &&
324 ((p[n - 1] == 'm') || (p[n - 1] == 'M')))
325 n -= 4;
326 # else
327 /* strip off trailing .exe if present. */
328 if ((n > 4) && (p[n - 4] == '.') &&
329 ((p[n - 3] == 'e') || (p[n - 3] == 'E')) &&
330 ((p[n - 2] == 'x') || (p[n - 2] == 'X')) &&
331 ((p[n - 1] == 'e') || (p[n - 1] == 'E')))
332 n -= 4;
333 # endif
334
335 if (n > size - 1)
336 n = size - 1;
337
338 for (i = 0; i < n; i++) {
339 if ((p[i] >= 'A') && (p[i] <= 'Z'))
340 out[i] = p[i] - 'A' + 'a';
341 else
342 out[i] = p[i];
343 }
344 out[n] = '\0';
345 }
346 #else
347 # ifdef OPENSSL_SYS_VMS
348 void program_name(char *in, char *out, int size)
349 {
350 char *p = in, *q;
351 char *chars = ":]>";
352
353 while (*chars != '\0') {
354 q = strrchr(p, *chars);
355 if (q > p)
356 p = q + 1;
357 chars++;
358 }
359
360 q = strrchr(p, '.');
361 if (q == NULL)
362 q = p + strlen(p);
363 strncpy(out, p, size - 1);
364 if (q - p >= size) {
365 out[size - 1] = '\0';
366 } else {
367 out[q - p] = '\0';
368 }
369 }
370 # else
371 void program_name(char *in, char *out, int size)
372 {
373 char *p;
374
375 p = strrchr(in, '/');
376 if (p != NULL)
377 p++;
378 else
379 p = in;
380 BUF_strlcpy(out, p, size);
381 }
382 # endif
383 #endif
384
385 int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[])
386 {
387 int num, i;
388 char *p;
389
390 *argc = 0;
391 *argv = NULL;
392
393 i = 0;
394 if (arg->count == 0) {
395 arg->count = 20;
396 arg->data = (char **)OPENSSL_malloc(sizeof(char *) * arg->count);
397 if (arg->data == NULL)
398 return 0;
399 }
400 for (i = 0; i < arg->count; i++)
401 arg->data[i] = NULL;
402
403 num = 0;
404 p = buf;
405 for (;;) {
406 /* first scan over white space */
407 if (!*p)
408 break;
409 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
410 p++;
411 if (!*p)
412 break;
413
414 /* The start of something good :-) */
415 if (num >= arg->count) {
416 char **tmp_p;
417 int tlen = arg->count + 20;
418 tmp_p = (char **)OPENSSL_realloc(arg->data,
419 sizeof(char *) * tlen);
420 if (tmp_p == NULL)
421 return 0;
422 arg->data = tmp_p;
423 arg->count = tlen;
424 /* initialize newly allocated data */
425 for (i = num; i < arg->count; i++)
426 arg->data[i] = NULL;
427 }
428 arg->data[num++] = p;
429
430 /* now look for the end of this */
431 if ((*p == '\'') || (*p == '\"')) { /* scan for closing quote */
432 i = *(p++);
433 arg->data[num - 1]++; /* jump over quote */
434 while (*p && (*p != i))
435 p++;
436 *p = '\0';
437 } else {
438 while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n')))
439 p++;
440
441 if (*p == '\0')
442 p--;
443 else
444 *p = '\0';
445 }
446 p++;
447 }
448 *argc = num;
449 *argv = arg->data;
450 return (1);
451 }
452
453 #ifndef APP_INIT
454 int app_init(long mesgwin)
455 {
456 return (1);
457 }
458 #endif
459
460 int dump_cert_text(BIO *out, X509 *x)
461 {
462 char *p;
463
464 p = X509_NAME_oneline(X509_get_subject_name(x), NULL, 0);
465 BIO_puts(out, "subject=");
466 BIO_puts(out, p);
467 OPENSSL_free(p);
468
469 p = X509_NAME_oneline(X509_get_issuer_name(x), NULL, 0);
470 BIO_puts(out, "\nissuer=");
471 BIO_puts(out, p);
472 BIO_puts(out, "\n");
473 OPENSSL_free(p);
474
475 return 0;
476 }
477
478 static int ui_open(UI *ui)
479 {
480 return UI_method_get_opener(UI_OpenSSL())(ui);
481 }
482
483 static int ui_read(UI *ui, UI_STRING *uis)
484 {
485 if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
486 && UI_get0_user_data(ui)) {
487 switch (UI_get_string_type(uis)) {
488 case UIT_PROMPT:
489 case UIT_VERIFY:
490 {
491 const char *password =
492 ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
493 if (password && password[0] != '\0') {
494 UI_set_result(ui, uis, password);
495 return 1;
496 }
497 }
498 default:
499 break;
500 }
501 }
502 return UI_method_get_reader(UI_OpenSSL())(ui, uis);
503 }
504
505 static int ui_write(UI *ui, UI_STRING *uis)
506 {
507 if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
508 && UI_get0_user_data(ui)) {
509 switch (UI_get_string_type(uis)) {
510 case UIT_PROMPT:
511 case UIT_VERIFY:
512 {
513 const char *password =
514 ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
515 if (password && password[0] != '\0')
516 return 1;
517 }
518 default:
519 break;
520 }
521 }
522 return UI_method_get_writer(UI_OpenSSL())(ui, uis);
523 }
524
525 static int ui_close(UI *ui)
526 {
527 return UI_method_get_closer(UI_OpenSSL())(ui);
528 }
529
530 int setup_ui_method(void)
531 {
532 ui_method = UI_create_method("OpenSSL application user interface");
533 UI_method_set_opener(ui_method, ui_open);
534 UI_method_set_reader(ui_method, ui_read);
535 UI_method_set_writer(ui_method, ui_write);
536 UI_method_set_closer(ui_method, ui_close);
537 return 0;
538 }
539
540 void destroy_ui_method(void)
541 {
542 if (ui_method) {
543 UI_destroy_method(ui_method);
544 ui_method = NULL;
545 }
546 }
547
548 int password_callback(char *buf, int bufsiz, int verify, PW_CB_DATA *cb_tmp)
549 {
550 UI *ui = NULL;
551 int res = 0;
552 const char *prompt_info = NULL;
553 const char *password = NULL;
554 PW_CB_DATA *cb_data = (PW_CB_DATA *)cb_tmp;
555
556 if (cb_data) {
557 if (cb_data->password)
558 password = cb_data->password;
559 if (cb_data->prompt_info)
560 prompt_info = cb_data->prompt_info;
561 }
562
563 if (password) {
564 res = strlen(password);
565 if (res > bufsiz)
566 res = bufsiz;
567 memcpy(buf, password, res);
568 return res;
569 }
570
571 ui = UI_new_method(ui_method);
572 if (ui) {
573 int ok = 0;
574 char *buff = NULL;
575 int ui_flags = 0;
576 char *prompt = NULL;
577
578 prompt = UI_construct_prompt(ui, "pass phrase", prompt_info);
579
580 ui_flags |= UI_INPUT_FLAG_DEFAULT_PWD;
581 UI_ctrl(ui, UI_CTRL_PRINT_ERRORS, 1, 0, 0);
582
583 if (ok >= 0)
584 ok = UI_add_input_string(ui, prompt, ui_flags, buf,
585 PW_MIN_LENGTH, bufsiz - 1);
586 if (ok >= 0 && verify) {
587 buff = (char *)OPENSSL_malloc(bufsiz);
588 ok = UI_add_verify_string(ui, prompt, ui_flags, buff,
589 PW_MIN_LENGTH, bufsiz - 1, buf);
590 }
591 if (ok >= 0)
592 do {
593 ok = UI_process(ui);
594 }
595 while (ok < 0 && UI_ctrl(ui, UI_CTRL_IS_REDOABLE, 0, 0, 0));
596
597 if (buff) {
598 OPENSSL_cleanse(buff, (unsigned int)bufsiz);
599 OPENSSL_free(buff);
600 }
601
602 if (ok >= 0)
603 res = strlen(buf);
604 if (ok == -1) {
605 BIO_printf(bio_err, "User interface error\n");
606 ERR_print_errors(bio_err);
607 OPENSSL_cleanse(buf, (unsigned int)bufsiz);
608 res = 0;
609 }
610 if (ok == -2) {
611 BIO_printf(bio_err, "aborted!\n");
612 OPENSSL_cleanse(buf, (unsigned int)bufsiz);
613 res = 0;
614 }
615 UI_free(ui);
616 OPENSSL_free(prompt);
617 }
618 return res;
619 }
620
621 static char *app_get_pass(BIO *err, char *arg, int keepbio);
622
623 int app_passwd(BIO *err, char *arg1, char *arg2, char **pass1, char **pass2)
624 {
625 int same;
626 if (!arg2 || !arg1 || strcmp(arg1, arg2))
627 same = 0;
628 else
629 same = 1;
630 if (arg1) {
631 *pass1 = app_get_pass(err, arg1, same);
632 if (!*pass1)
633 return 0;
634 } else if (pass1)
635 *pass1 = NULL;
636 if (arg2) {
637 *pass2 = app_get_pass(err, arg2, same ? 2 : 0);
638 if (!*pass2)
639 return 0;
640 } else if (pass2)
641 *pass2 = NULL;
642 return 1;
643 }
644
645 static char *app_get_pass(BIO *err, char *arg, int keepbio)
646 {
647 char *tmp, tpass[APP_PASS_LEN];
648 static BIO *pwdbio = NULL;
649 int i;
650 if (!strncmp(arg, "pass:", 5))
651 return BUF_strdup(arg + 5);
652 if (!strncmp(arg, "env:", 4)) {
653 tmp = getenv(arg + 4);
654 if (!tmp) {
655 BIO_printf(err, "Can't read environment variable %s\n", arg + 4);
656 return NULL;
657 }
658 return BUF_strdup(tmp);
659 }
660 if (!keepbio || !pwdbio) {
661 if (!strncmp(arg, "file:", 5)) {
662 pwdbio = BIO_new_file(arg + 5, "r");
663 if (!pwdbio) {
664 BIO_printf(err, "Can't open file %s\n", arg + 5);
665 return NULL;
666 }
667 #if !defined(_WIN32)
668 /*
669 * Under _WIN32, which covers even Win64 and CE, file
670 * descriptors referenced by BIO_s_fd are not inherited
671 * by child process and therefore below is not an option.
672 * It could have been an option if bss_fd.c was operating
673 * on real Windows descriptors, such as those obtained
674 * with CreateFile.
675 */
676 } else if (!strncmp(arg, "fd:", 3)) {
677 BIO *btmp;
678 i = atoi(arg + 3);
679 if (i >= 0)
680 pwdbio = BIO_new_fd(i, BIO_NOCLOSE);
681 if ((i < 0) || !pwdbio) {
682 BIO_printf(err, "Can't access file descriptor %s\n", arg + 3);
683 return NULL;
684 }
685 /*
686 * Can't do BIO_gets on an fd BIO so add a buffering BIO
687 */
688 btmp = BIO_new(BIO_f_buffer());
689 pwdbio = BIO_push(btmp, pwdbio);
690 #endif
691 } else if (!strcmp(arg, "stdin")) {
692 pwdbio = BIO_new_fp(stdin, BIO_NOCLOSE);
693 if (!pwdbio) {
694 BIO_printf(err, "Can't open BIO for stdin\n");
695 return NULL;
696 }
697 } else {
698 BIO_printf(err, "Invalid password argument \"%s\"\n", arg);
699 return NULL;
700 }
701 }
702 i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
703 if (keepbio != 1) {
704 BIO_free_all(pwdbio);
705 pwdbio = NULL;
706 }
707 if (i <= 0) {
708 BIO_printf(err, "Error reading password from BIO\n");
709 return NULL;
710 }
711 tmp = strchr(tpass, '\n');
712 if (tmp)
713 *tmp = 0;
714 return BUF_strdup(tpass);
715 }
716
717 int add_oid_section(BIO *err, CONF *conf)
718 {
719 char *p;
720 STACK_OF(CONF_VALUE) *sktmp;
721 CONF_VALUE *cnf;
722 int i;
723 if (!(p = NCONF_get_string(conf, NULL, "oid_section"))) {
724 ERR_clear_error();
725 return 1;
726 }
727 if (!(sktmp = NCONF_get_section(conf, p))) {
728 BIO_printf(err, "problem loading oid section %s\n", p);
729 return 0;
730 }
731 for (i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
732 cnf = sk_CONF_VALUE_value(sktmp, i);
733 if (OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
734 BIO_printf(err, "problem creating object %s=%s\n",
735 cnf->name, cnf->value);
736 return 0;
737 }
738 }
739 return 1;
740 }
741
742 static int load_pkcs12(BIO *err, BIO *in, const char *desc,
743 pem_password_cb *pem_cb, void *cb_data,
744 EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca)
745 {
746 const char *pass;
747 char tpass[PEM_BUFSIZE];
748 int len, ret = 0;
749 PKCS12 *p12;
750 p12 = d2i_PKCS12_bio(in, NULL);
751 if (p12 == NULL) {
752 BIO_printf(err, "Error loading PKCS12 file for %s\n", desc);
753 goto die;
754 }
755 /* See if an empty password will do */
756 if (PKCS12_verify_mac(p12, "", 0) || PKCS12_verify_mac(p12, NULL, 0))
757 pass = "";
758 else {
759 if (!pem_cb)
760 pem_cb = (pem_password_cb *)password_callback;
761 len = pem_cb(tpass, PEM_BUFSIZE, 0, cb_data);
762 if (len < 0) {
763 BIO_printf(err, "Passpharse callback error for %s\n", desc);
764 goto die;
765 }
766 if (len < PEM_BUFSIZE)
767 tpass[len] = 0;
768 if (!PKCS12_verify_mac(p12, tpass, len)) {
769 BIO_printf(err,
770 "Mac verify error (wrong password?) in PKCS12 file for %s\n",
771 desc);
772 goto die;
773 }
774 pass = tpass;
775 }
776 ret = PKCS12_parse(p12, pass, pkey, cert, ca);
777 die:
778 if (p12)
779 PKCS12_free(p12);
780 return ret;
781 }
782
783 int load_cert_crl_http(const char *url, BIO *err,
784 X509 **pcert, X509_CRL **pcrl)
785 {
786 char *host = NULL, *port = NULL, *path = NULL;
787 BIO *bio = NULL;
788 OCSP_REQ_CTX *rctx = NULL;
789 int use_ssl, rv = 0;
790 if (!OCSP_parse_url(url, &host, &port, &path, &use_ssl))
791 goto err;
792 if (use_ssl) {
793 if (err)
794 BIO_puts(err, "https not supported\n");
795 goto err;
796 }
797 bio = BIO_new_connect(host);
798 if (!bio || !BIO_set_conn_port(bio, port))
799 goto err;
800 rctx = OCSP_REQ_CTX_new(bio, 1024);
801 if (!rctx)
802 goto err;
803 if (!OCSP_REQ_CTX_http(rctx, "GET", path))
804 goto err;
805 if (!OCSP_REQ_CTX_add1_header(rctx, "Host", host))
806 goto err;
807 if (pcert) {
808 do {
809 rv = X509_http_nbio(rctx, pcert);
810 }
811 while (rv == -1);
812 } else {
813 do {
814 rv = X509_CRL_http_nbio(rctx, pcrl);
815 } while (rv == -1);
816 }
817
818 err:
819 if (host)
820 OPENSSL_free(host);
821 if (path)
822 OPENSSL_free(path);
823 if (port)
824 OPENSSL_free(port);
825 if (bio)
826 BIO_free_all(bio);
827 if (rctx)
828 OCSP_REQ_CTX_free(rctx);
829 if (rv != 1) {
830 if (bio && err)
831 BIO_printf(bio_err, "Error loading %s from %s\n",
832 pcert ? "certificate" : "CRL", url);
833 ERR_print_errors(bio_err);
834 }
835 return rv;
836 }
837
838 X509 *load_cert(BIO *err, const char *file, int format,
839 const char *pass, ENGINE *e, const char *cert_descrip)
840 {
841 X509 *x = NULL;
842 BIO *cert;
843
844 if (format == FORMAT_HTTP) {
845 load_cert_crl_http(file, err, &x, NULL);
846 return x;
847 }
848
849 if ((cert = BIO_new(BIO_s_file())) == NULL) {
850 ERR_print_errors(err);
851 goto end;
852 }
853
854 if (file == NULL) {
855 #ifdef _IONBF
856 # ifndef OPENSSL_NO_SETVBUF_IONBF
857 setvbuf(stdin, NULL, _IONBF, 0);
858 # endif /* ndef OPENSSL_NO_SETVBUF_IONBF */
859 #endif
860 BIO_set_fp(cert, stdin, BIO_NOCLOSE);
861 } else {
862 if (BIO_read_filename(cert, file) <= 0) {
863 BIO_printf(err, "Error opening %s %s\n", cert_descrip, file);
864 ERR_print_errors(err);
865 goto end;
866 }
867 }
868
869 if (format == FORMAT_ASN1)
870 x = d2i_X509_bio(cert, NULL);
871 else if (format == FORMAT_NETSCAPE) {
872 NETSCAPE_X509 *nx;
873 nx = ASN1_item_d2i_bio(ASN1_ITEM_rptr(NETSCAPE_X509), cert, NULL);
874 if (nx == NULL)
875 goto end;
876
877 if ((strncmp(NETSCAPE_CERT_HDR, (char *)nx->header->data,
878 nx->header->length) != 0)) {
879 NETSCAPE_X509_free(nx);
880 BIO_printf(err, "Error reading header on certificate\n");
881 goto end;
882 }
883 x = nx->cert;
884 nx->cert = NULL;
885 NETSCAPE_X509_free(nx);
886 } else if (format == FORMAT_PEM)
887 x = PEM_read_bio_X509_AUX(cert, NULL,
888 (pem_password_cb *)password_callback, NULL);
889 else if (format == FORMAT_PKCS12) {
890 if (!load_pkcs12(err, cert, cert_descrip, NULL, NULL, NULL, &x, NULL))
891 goto end;
892 } else {
893 BIO_printf(err, "bad input format specified for %s\n", cert_descrip);
894 goto end;
895 }
896 end:
897 if (x == NULL) {
898 BIO_printf(err, "unable to load certificate\n");
899 ERR_print_errors(err);
900 }
901 if (cert != NULL)
902 BIO_free(cert);
903 return (x);
904 }
905
906 X509_CRL *load_crl(const char *infile, int format)
907 {
908 X509_CRL *x = NULL;
909 BIO *in = NULL;
910
911 if (format == FORMAT_HTTP) {
912 load_cert_crl_http(infile, bio_err, NULL, &x);
913 return x;
914 }
915
916 in = BIO_new(BIO_s_file());
917 if (in == NULL) {
918 ERR_print_errors(bio_err);
919 goto end;
920 }
921
922 if (infile == NULL)
923 BIO_set_fp(in, stdin, BIO_NOCLOSE);
924 else {
925 if (BIO_read_filename(in, infile) <= 0) {
926 perror(infile);
927 goto end;
928 }
929 }
930 if (format == FORMAT_ASN1)
931 x = d2i_X509_CRL_bio(in, NULL);
932 else if (format == FORMAT_PEM)
933 x = PEM_read_bio_X509_CRL(in, NULL, NULL, NULL);
934 else {
935 BIO_printf(bio_err, "bad input format specified for input crl\n");
936 goto end;
937 }
938 if (x == NULL) {
939 BIO_printf(bio_err, "unable to load CRL\n");
940 ERR_print_errors(bio_err);
941 goto end;
942 }
943
944 end:
945 BIO_free(in);
946 return (x);
947 }
948
949 EVP_PKEY *load_key(BIO *err, const char *file, int format, int maybe_stdin,
950 const char *pass, ENGINE *e, const char *key_descrip)
951 {
952 BIO *key = NULL;
953 EVP_PKEY *pkey = NULL;
954 PW_CB_DATA cb_data;
955
956 cb_data.password = pass;
957 cb_data.prompt_info = file;
958
959 if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
960 BIO_printf(err, "no keyfile specified\n");
961 goto end;
962 }
963 #ifndef OPENSSL_NO_ENGINE
964 if (format == FORMAT_ENGINE) {
965 if (!e)
966 BIO_printf(err, "no engine specified\n");
967 else {
968 pkey = ENGINE_load_private_key(e, file, ui_method, &cb_data);
969 if (!pkey) {
970 BIO_printf(err, "cannot load %s from engine\n", key_descrip);
971 ERR_print_errors(err);
972 }
973 }
974 goto end;
975 }
976 #endif
977 key = BIO_new(BIO_s_file());
978 if (key == NULL) {
979 ERR_print_errors(err);
980 goto end;
981 }
982 if (file == NULL && maybe_stdin) {
983 #ifdef _IONBF
984 # ifndef OPENSSL_NO_SETVBUF_IONBF
985 setvbuf(stdin, NULL, _IONBF, 0);
986 # endif /* ndef OPENSSL_NO_SETVBUF_IONBF */
987 #endif
988 BIO_set_fp(key, stdin, BIO_NOCLOSE);
989 } else if (BIO_read_filename(key, file) <= 0) {
990 BIO_printf(err, "Error opening %s %s\n", key_descrip, file);
991 ERR_print_errors(err);
992 goto end;
993 }
994 if (format == FORMAT_ASN1) {
995 pkey = d2i_PrivateKey_bio(key, NULL);
996 } else if (format == FORMAT_PEM) {
997 pkey = PEM_read_bio_PrivateKey(key, NULL,
998 (pem_password_cb *)password_callback,
999 &cb_data);
1000 }
1001 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
1002 else if (format == FORMAT_NETSCAPE || format == FORMAT_IISSGC)
1003 pkey = load_netscape_key(err, key, file, key_descrip, format);
1004 #endif
1005 else if (format == FORMAT_PKCS12) {
1006 if (!load_pkcs12(err, key, key_descrip,
1007 (pem_password_cb *)password_callback, &cb_data,
1008 &pkey, NULL, NULL))
1009 goto end;
1010 }
1011 #if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA) && !defined (OPENSSL_NO_RC4)
1012 else if (format == FORMAT_MSBLOB)
1013 pkey = b2i_PrivateKey_bio(key);
1014 else if (format == FORMAT_PVK)
1015 pkey = b2i_PVK_bio(key, (pem_password_cb *)password_callback,
1016 &cb_data);
1017 #endif
1018 else {
1019 BIO_printf(err, "bad input format specified for key file\n");
1020 goto end;
1021 }
1022 end:
1023 if (key != NULL)
1024 BIO_free(key);
1025 if (pkey == NULL) {
1026 BIO_printf(err, "unable to load %s\n", key_descrip);
1027 ERR_print_errors(err);
1028 }
1029 return (pkey);
1030 }
1031
1032 EVP_PKEY *load_pubkey(BIO *err, const char *file, int format, int maybe_stdin,
1033 const char *pass, ENGINE *e, const char *key_descrip)
1034 {
1035 BIO *key = NULL;
1036 EVP_PKEY *pkey = NULL;
1037 PW_CB_DATA cb_data;
1038
1039 cb_data.password = pass;
1040 cb_data.prompt_info = file;
1041
1042 if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
1043 BIO_printf(err, "no keyfile specified\n");
1044 goto end;
1045 }
1046 #ifndef OPENSSL_NO_ENGINE
1047 if (format == FORMAT_ENGINE) {
1048 if (!e)
1049 BIO_printf(bio_err, "no engine specified\n");
1050 else
1051 pkey = ENGINE_load_public_key(e, file, ui_method, &cb_data);
1052 goto end;
1053 }
1054 #endif
1055 key = BIO_new(BIO_s_file());
1056 if (key == NULL) {
1057 ERR_print_errors(err);
1058 goto end;
1059 }
1060 if (file == NULL && maybe_stdin) {
1061 #ifdef _IONBF
1062 # ifndef OPENSSL_NO_SETVBUF_IONBF
1063 setvbuf(stdin, NULL, _IONBF, 0);
1064 # endif /* ndef OPENSSL_NO_SETVBUF_IONBF */
1065 #endif
1066 BIO_set_fp(key, stdin, BIO_NOCLOSE);
1067 } else if (BIO_read_filename(key, file) <= 0) {
1068 BIO_printf(err, "Error opening %s %s\n", key_descrip, file);
1069 ERR_print_errors(err);
1070 goto end;
1071 }
1072 if (format == FORMAT_ASN1) {
1073 pkey = d2i_PUBKEY_bio(key, NULL);
1074 }
1075 #ifndef OPENSSL_NO_RSA
1076 else if (format == FORMAT_ASN1RSA) {
1077 RSA *rsa;
1078 rsa = d2i_RSAPublicKey_bio(key, NULL);
1079 if (rsa) {
1080 pkey = EVP_PKEY_new();
1081 if (pkey)
1082 EVP_PKEY_set1_RSA(pkey, rsa);
1083 RSA_free(rsa);
1084 } else
1085 pkey = NULL;
1086 } else if (format == FORMAT_PEMRSA) {
1087 RSA *rsa;
1088 rsa = PEM_read_bio_RSAPublicKey(key, NULL,
1089 (pem_password_cb *)password_callback,
1090 &cb_data);
1091 if (rsa) {
1092 pkey = EVP_PKEY_new();
1093 if (pkey)
1094 EVP_PKEY_set1_RSA(pkey, rsa);
1095 RSA_free(rsa);
1096 } else
1097 pkey = NULL;
1098 }
1099 #endif
1100 else if (format == FORMAT_PEM) {
1101 pkey = PEM_read_bio_PUBKEY(key, NULL,
1102 (pem_password_cb *)password_callback,
1103 &cb_data);
1104 }
1105 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
1106 else if (format == FORMAT_NETSCAPE || format == FORMAT_IISSGC)
1107 pkey = load_netscape_key(err, key, file, key_descrip, format);
1108 #endif
1109 #if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA)
1110 else if (format == FORMAT_MSBLOB)
1111 pkey = b2i_PublicKey_bio(key);
1112 #endif
1113 else {
1114 BIO_printf(err, "bad input format specified for key file\n");
1115 goto end;
1116 }
1117 end:
1118 if (key != NULL)
1119 BIO_free(key);
1120 if (pkey == NULL)
1121 BIO_printf(err, "unable to load %s\n", key_descrip);
1122 return (pkey);
1123 }
1124
1125 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
1126 static EVP_PKEY *load_netscape_key(BIO *err, BIO *key, const char *file,
1127 const char *key_descrip, int format)
1128 {
1129 EVP_PKEY *pkey;
1130 BUF_MEM *buf;
1131 RSA *rsa;
1132 const unsigned char *p;
1133 int size, i;
1134
1135 buf = BUF_MEM_new();
1136 pkey = EVP_PKEY_new();
1137 size = 0;
1138 if (buf == NULL || pkey == NULL)
1139 goto error;
1140 for (;;) {
1141 if (!BUF_MEM_grow_clean(buf, size + 1024 * 10))
1142 goto error;
1143 i = BIO_read(key, &(buf->data[size]), 1024 * 10);
1144 size += i;
1145 if (i == 0)
1146 break;
1147 if (i < 0) {
1148 BIO_printf(err, "Error reading %s %s", key_descrip, file);
1149 goto error;
1150 }
1151 }
1152 p = (unsigned char *)buf->data;
1153 rsa = d2i_RSA_NET(NULL, &p, (long)size, NULL,
1154 (format == FORMAT_IISSGC ? 1 : 0));
1155 if (rsa == NULL)
1156 goto error;
1157 BUF_MEM_free(buf);
1158 EVP_PKEY_set1_RSA(pkey, rsa);
1159 return pkey;
1160 error:
1161 BUF_MEM_free(buf);
1162 EVP_PKEY_free(pkey);
1163 return NULL;
1164 }
1165 #endif /* ndef OPENSSL_NO_RC4 */
1166
1167 static int load_certs_crls(BIO *err, const char *file, int format,
1168 const char *pass, ENGINE *e, const char *desc,
1169 STACK_OF(X509) **pcerts,
1170 STACK_OF(X509_CRL) **pcrls)
1171 {
1172 int i;
1173 BIO *bio;
1174 STACK_OF(X509_INFO) *xis = NULL;
1175 X509_INFO *xi;
1176 PW_CB_DATA cb_data;
1177 int rv = 0;
1178
1179 cb_data.password = pass;
1180 cb_data.prompt_info = file;
1181
1182 if (format != FORMAT_PEM) {
1183 BIO_printf(err, "bad input format specified for %s\n", desc);
1184 return 0;
1185 }
1186
1187 if (file == NULL)
1188 bio = BIO_new_fp(stdin, BIO_NOCLOSE);
1189 else
1190 bio = BIO_new_file(file, "r");
1191
1192 if (bio == NULL) {
1193 BIO_printf(err, "Error opening %s %s\n", desc, file ? file : "stdin");
1194 ERR_print_errors(err);
1195 return 0;
1196 }
1197
1198 xis = PEM_X509_INFO_read_bio(bio, NULL,
1199 (pem_password_cb *)password_callback,
1200 &cb_data);
1201
1202 BIO_free(bio);
1203
1204 if (pcerts) {
1205 *pcerts = sk_X509_new_null();
1206 if (!*pcerts)
1207 goto end;
1208 }
1209
1210 if (pcrls) {
1211 *pcrls = sk_X509_CRL_new_null();
1212 if (!*pcrls)
1213 goto end;
1214 }
1215
1216 for (i = 0; i < sk_X509_INFO_num(xis); i++) {
1217 xi = sk_X509_INFO_value(xis, i);
1218 if (xi->x509 && pcerts) {
1219 if (!sk_X509_push(*pcerts, xi->x509))
1220 goto end;
1221 xi->x509 = NULL;
1222 }
1223 if (xi->crl && pcrls) {
1224 if (!sk_X509_CRL_push(*pcrls, xi->crl))
1225 goto end;
1226 xi->crl = NULL;
1227 }
1228 }
1229
1230 if (pcerts && sk_X509_num(*pcerts) > 0)
1231 rv = 1;
1232
1233 if (pcrls && sk_X509_CRL_num(*pcrls) > 0)
1234 rv = 1;
1235
1236 end:
1237
1238 if (xis)
1239 sk_X509_INFO_pop_free(xis, X509_INFO_free);
1240
1241 if (rv == 0) {
1242 if (pcerts) {
1243 sk_X509_pop_free(*pcerts, X509_free);
1244 *pcerts = NULL;
1245 }
1246 if (pcrls) {
1247 sk_X509_CRL_pop_free(*pcrls, X509_CRL_free);
1248 *pcrls = NULL;
1249 }
1250 BIO_printf(err, "unable to load %s\n",
1251 pcerts ? "certificates" : "CRLs");
1252 ERR_print_errors(err);
1253 }
1254 return rv;
1255 }
1256
1257 STACK_OF(X509) *load_certs(BIO *err, const char *file, int format,
1258 const char *pass, ENGINE *e, const char *desc)
1259 {
1260 STACK_OF(X509) *certs;
1261 if (!load_certs_crls(err, file, format, pass, e, desc, &certs, NULL))
1262 return NULL;
1263 return certs;
1264 }
1265
1266 STACK_OF(X509_CRL) *load_crls(BIO *err, const char *file, int format,
1267 const char *pass, ENGINE *e, const char *desc)
1268 {
1269 STACK_OF(X509_CRL) *crls;
1270 if (!load_certs_crls(err, file, format, pass, e, desc, NULL, &crls))
1271 return NULL;
1272 return crls;
1273 }
1274
1275 #define X509V3_EXT_UNKNOWN_MASK (0xfL << 16)
1276 /* Return error for unknown extensions */
1277 #define X509V3_EXT_DEFAULT 0
1278 /* Print error for unknown extensions */
1279 #define X509V3_EXT_ERROR_UNKNOWN (1L << 16)
1280 /* ASN1 parse unknown extensions */
1281 #define X509V3_EXT_PARSE_UNKNOWN (2L << 16)
1282 /* BIO_dump unknown extensions */
1283 #define X509V3_EXT_DUMP_UNKNOWN (3L << 16)
1284
1285 #define X509_FLAG_CA (X509_FLAG_NO_ISSUER | X509_FLAG_NO_PUBKEY | \
1286 X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION)
1287
1288 int set_cert_ex(unsigned long *flags, const char *arg)
1289 {
1290 static const NAME_EX_TBL cert_tbl[] = {
1291 {"compatible", X509_FLAG_COMPAT, 0xffffffffl},
1292 {"ca_default", X509_FLAG_CA, 0xffffffffl},
1293 {"no_header", X509_FLAG_NO_HEADER, 0},
1294 {"no_version", X509_FLAG_NO_VERSION, 0},
1295 {"no_serial", X509_FLAG_NO_SERIAL, 0},
1296 {"no_signame", X509_FLAG_NO_SIGNAME, 0},
1297 {"no_validity", X509_FLAG_NO_VALIDITY, 0},
1298 {"no_subject", X509_FLAG_NO_SUBJECT, 0},
1299 {"no_issuer", X509_FLAG_NO_ISSUER, 0},
1300 {"no_pubkey", X509_FLAG_NO_PUBKEY, 0},
1301 {"no_extensions", X509_FLAG_NO_EXTENSIONS, 0},
1302 {"no_sigdump", X509_FLAG_NO_SIGDUMP, 0},
1303 {"no_aux", X509_FLAG_NO_AUX, 0},
1304 {"no_attributes", X509_FLAG_NO_ATTRIBUTES, 0},
1305 {"ext_default", X509V3_EXT_DEFAULT, X509V3_EXT_UNKNOWN_MASK},
1306 {"ext_error", X509V3_EXT_ERROR_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1307 {"ext_parse", X509V3_EXT_PARSE_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1308 {"ext_dump", X509V3_EXT_DUMP_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1309 {NULL, 0, 0}
1310 };
1311 return set_multi_opts(flags, arg, cert_tbl);
1312 }
1313
1314 int set_name_ex(unsigned long *flags, const char *arg)
1315 {
1316 static const NAME_EX_TBL ex_tbl[] = {
1317 {"esc_2253", ASN1_STRFLGS_ESC_2253, 0},
1318 {"esc_ctrl", ASN1_STRFLGS_ESC_CTRL, 0},
1319 {"esc_msb", ASN1_STRFLGS_ESC_MSB, 0},
1320 {"use_quote", ASN1_STRFLGS_ESC_QUOTE, 0},
1321 {"utf8", ASN1_STRFLGS_UTF8_CONVERT, 0},
1322 {"ignore_type", ASN1_STRFLGS_IGNORE_TYPE, 0},
1323 {"show_type", ASN1_STRFLGS_SHOW_TYPE, 0},
1324 {"dump_all", ASN1_STRFLGS_DUMP_ALL, 0},
1325 {"dump_nostr", ASN1_STRFLGS_DUMP_UNKNOWN, 0},
1326 {"dump_der", ASN1_STRFLGS_DUMP_DER, 0},
1327 {"compat", XN_FLAG_COMPAT, 0xffffffffL},
1328 {"sep_comma_plus", XN_FLAG_SEP_COMMA_PLUS, XN_FLAG_SEP_MASK},
1329 {"sep_comma_plus_space", XN_FLAG_SEP_CPLUS_SPC, XN_FLAG_SEP_MASK},
1330 {"sep_semi_plus_space", XN_FLAG_SEP_SPLUS_SPC, XN_FLAG_SEP_MASK},
1331 {"sep_multiline", XN_FLAG_SEP_MULTILINE, XN_FLAG_SEP_MASK},
1332 {"dn_rev", XN_FLAG_DN_REV, 0},
1333 {"nofname", XN_FLAG_FN_NONE, XN_FLAG_FN_MASK},
1334 {"sname", XN_FLAG_FN_SN, XN_FLAG_FN_MASK},
1335 {"lname", XN_FLAG_FN_LN, XN_FLAG_FN_MASK},
1336 {"align", XN_FLAG_FN_ALIGN, 0},
1337 {"oid", XN_FLAG_FN_OID, XN_FLAG_FN_MASK},
1338 {"space_eq", XN_FLAG_SPC_EQ, 0},
1339 {"dump_unknown", XN_FLAG_DUMP_UNKNOWN_FIELDS, 0},
1340 {"RFC2253", XN_FLAG_RFC2253, 0xffffffffL},
1341 {"oneline", XN_FLAG_ONELINE, 0xffffffffL},
1342 {"multiline", XN_FLAG_MULTILINE, 0xffffffffL},
1343 {"ca_default", XN_FLAG_MULTILINE, 0xffffffffL},
1344 {NULL, 0, 0}
1345 };
1346 return set_multi_opts(flags, arg, ex_tbl);
1347 }
1348
1349 int set_ext_copy(int *copy_type, const char *arg)
1350 {
1351 if (!strcasecmp(arg, "none"))
1352 *copy_type = EXT_COPY_NONE;
1353 else if (!strcasecmp(arg, "copy"))
1354 *copy_type = EXT_COPY_ADD;
1355 else if (!strcasecmp(arg, "copyall"))
1356 *copy_type = EXT_COPY_ALL;
1357 else
1358 return 0;
1359 return 1;
1360 }
1361
1362 int copy_extensions(X509 *x, X509_REQ *req, int copy_type)
1363 {
1364 STACK_OF(X509_EXTENSION) *exts = NULL;
1365 X509_EXTENSION *ext, *tmpext;
1366 ASN1_OBJECT *obj;
1367 int i, idx, ret = 0;
1368 if (!x || !req || (copy_type == EXT_COPY_NONE))
1369 return 1;
1370 exts = X509_REQ_get_extensions(req);
1371
1372 for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
1373 ext = sk_X509_EXTENSION_value(exts, i);
1374 obj = X509_EXTENSION_get_object(ext);
1375 idx = X509_get_ext_by_OBJ(x, obj, -1);
1376 /* Does extension exist? */
1377 if (idx != -1) {
1378 /* If normal copy don't override existing extension */
1379 if (copy_type == EXT_COPY_ADD)
1380 continue;
1381 /* Delete all extensions of same type */
1382 do {
1383 tmpext = X509_get_ext(x, idx);
1384 X509_delete_ext(x, idx);
1385 X509_EXTENSION_free(tmpext);
1386 idx = X509_get_ext_by_OBJ(x, obj, -1);
1387 } while (idx != -1);
1388 }
1389 if (!X509_add_ext(x, ext, -1))
1390 goto end;
1391 }
1392
1393 ret = 1;
1394
1395 end:
1396
1397 sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
1398
1399 return ret;
1400 }
1401
1402 static int set_multi_opts(unsigned long *flags, const char *arg,
1403 const NAME_EX_TBL * in_tbl)
1404 {
1405 STACK_OF(CONF_VALUE) *vals;
1406 CONF_VALUE *val;
1407 int i, ret = 1;
1408 if (!arg)
1409 return 0;
1410 vals = X509V3_parse_list(arg);
1411 for (i = 0; i < sk_CONF_VALUE_num(vals); i++) {
1412 val = sk_CONF_VALUE_value(vals, i);
1413 if (!set_table_opts(flags, val->name, in_tbl))
1414 ret = 0;
1415 }
1416 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
1417 return ret;
1418 }
1419
1420 static int set_table_opts(unsigned long *flags, const char *arg,
1421 const NAME_EX_TBL * in_tbl)
1422 {
1423 char c;
1424 const NAME_EX_TBL *ptbl;
1425 c = arg[0];
1426
1427 if (c == '-') {
1428 c = 0;
1429 arg++;
1430 } else if (c == '+') {
1431 c = 1;
1432 arg++;
1433 } else
1434 c = 1;
1435
1436 for (ptbl = in_tbl; ptbl->name; ptbl++) {
1437 if (!strcasecmp(arg, ptbl->name)) {
1438 *flags &= ~ptbl->mask;
1439 if (c)
1440 *flags |= ptbl->flag;
1441 else
1442 *flags &= ~ptbl->flag;
1443 return 1;
1444 }
1445 }
1446 return 0;
1447 }
1448
1449 void print_name(BIO *out, const char *title, X509_NAME *nm,
1450 unsigned long lflags)
1451 {
1452 char *buf;
1453 char mline = 0;
1454 int indent = 0;
1455
1456 if (title)
1457 BIO_puts(out, title);
1458 if ((lflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
1459 mline = 1;
1460 indent = 4;
1461 }
1462 if (lflags == XN_FLAG_COMPAT) {
1463 buf = X509_NAME_oneline(nm, 0, 0);
1464 BIO_puts(out, buf);
1465 BIO_puts(out, "\n");
1466 OPENSSL_free(buf);
1467 } else {
1468 if (mline)
1469 BIO_puts(out, "\n");
1470 X509_NAME_print_ex(out, nm, indent, lflags);
1471 BIO_puts(out, "\n");
1472 }
1473 }
1474
1475 X509_STORE *setup_verify(BIO *bp, char *CAfile, char *CApath)
1476 {
1477 X509_STORE *store;
1478 X509_LOOKUP *lookup;
1479 if (!(store = X509_STORE_new()))
1480 goto end;
1481 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file());
1482 if (lookup == NULL)
1483 goto end;
1484 if (CAfile) {
1485 if (!X509_LOOKUP_load_file(lookup, CAfile, X509_FILETYPE_PEM)) {
1486 BIO_printf(bp, "Error loading file %s\n", CAfile);
1487 goto end;
1488 }
1489 } else
1490 X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
1491
1492 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_hash_dir());
1493 if (lookup == NULL)
1494 goto end;
1495 if (CApath) {
1496 if (!X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM)) {
1497 BIO_printf(bp, "Error loading directory %s\n", CApath);
1498 goto end;
1499 }
1500 } else
1501 X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
1502
1503 ERR_clear_error();
1504 return store;
1505 end:
1506 X509_STORE_free(store);
1507 return NULL;
1508 }
1509
1510 #ifndef OPENSSL_NO_ENGINE
1511 /* Try to load an engine in a shareable library */
1512 static ENGINE *try_load_engine(BIO *err, const char *engine, int debug)
1513 {
1514 ENGINE *e = ENGINE_by_id("dynamic");
1515 if (e) {
1516 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", engine, 0)
1517 || !ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0)) {
1518 ENGINE_free(e);
1519 e = NULL;
1520 }
1521 }
1522 return e;
1523 }
1524
1525 ENGINE *setup_engine(BIO *err, const char *engine, int debug)
1526 {
1527 ENGINE *e = NULL;
1528
1529 if (engine) {
1530 if (strcmp(engine, "auto") == 0) {
1531 BIO_printf(err, "enabling auto ENGINE support\n");
1532 ENGINE_register_all_complete();
1533 return NULL;
1534 }
1535 if ((e = ENGINE_by_id(engine)) == NULL
1536 && (e = try_load_engine(err, engine, debug)) == NULL) {
1537 BIO_printf(err, "invalid engine \"%s\"\n", engine);
1538 ERR_print_errors(err);
1539 return NULL;
1540 }
1541 if (debug) {
1542 ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM, 0, err, 0);
1543 }
1544 ENGINE_ctrl_cmd(e, "SET_USER_INTERFACE", 0, ui_method, 0, 1);
1545 if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
1546 BIO_printf(err, "can't use that engine\n");
1547 ERR_print_errors(err);
1548 ENGINE_free(e);
1549 return NULL;
1550 }
1551
1552 BIO_printf(err, "engine \"%s\" set.\n", ENGINE_get_id(e));
1553
1554 /* Free our "structural" reference. */
1555 ENGINE_free(e);
1556 }
1557 return e;
1558 }
1559 #endif
1560
1561 int load_config(BIO *err, CONF *cnf)
1562 {
1563 static int load_config_called = 0;
1564 if (load_config_called)
1565 return 1;
1566 load_config_called = 1;
1567 if (!cnf)
1568 cnf = config;
1569 if (!cnf)
1570 return 1;
1571
1572 OPENSSL_load_builtin_modules();
1573
1574 if (CONF_modules_load(cnf, NULL, 0) <= 0) {
1575 BIO_printf(err, "Error configuring OpenSSL\n");
1576 ERR_print_errors(err);
1577 return 0;
1578 }
1579 return 1;
1580 }
1581
1582 char *make_config_name()
1583 {
1584 const char *t = X509_get_default_cert_area();
1585 size_t len;
1586 char *p;
1587
1588 len = strlen(t) + strlen(OPENSSL_CONF) + 2;
1589 p = OPENSSL_malloc(len);
1590 if (p == NULL)
1591 return NULL;
1592 BUF_strlcpy(p, t, len);
1593 #ifndef OPENSSL_SYS_VMS
1594 BUF_strlcat(p, "/", len);
1595 #endif
1596 BUF_strlcat(p, OPENSSL_CONF, len);
1597
1598 return p;
1599 }
1600
1601 static unsigned long index_serial_hash(const OPENSSL_CSTRING *a)
1602 {
1603 const char *n;
1604
1605 n = a[DB_serial];
1606 while (*n == '0')
1607 n++;
1608 return (lh_strhash(n));
1609 }
1610
1611 static int index_serial_cmp(const OPENSSL_CSTRING *a,
1612 const OPENSSL_CSTRING *b)
1613 {
1614 const char *aa, *bb;
1615
1616 for (aa = a[DB_serial]; *aa == '0'; aa++) ;
1617 for (bb = b[DB_serial]; *bb == '0'; bb++) ;
1618 return (strcmp(aa, bb));
1619 }
1620
1621 static int index_name_qual(char **a)
1622 {
1623 return (a[0][0] == 'V');
1624 }
1625
1626 static unsigned long index_name_hash(const OPENSSL_CSTRING *a)
1627 {
1628 return (lh_strhash(a[DB_name]));
1629 }
1630
1631 int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b)
1632 {
1633 return (strcmp(a[DB_name], b[DB_name]));
1634 }
1635
1636 static IMPLEMENT_LHASH_HASH_FN(index_serial, OPENSSL_CSTRING)
1637 static IMPLEMENT_LHASH_COMP_FN(index_serial, OPENSSL_CSTRING)
1638 static IMPLEMENT_LHASH_HASH_FN(index_name, OPENSSL_CSTRING)
1639 static IMPLEMENT_LHASH_COMP_FN(index_name, OPENSSL_CSTRING)
1640 #undef BSIZE
1641 #define BSIZE 256
1642 BIGNUM *load_serial(char *serialfile, int create, ASN1_INTEGER **retai)
1643 {
1644 BIO *in = NULL;
1645 BIGNUM *ret = NULL;
1646 MS_STATIC char buf[1024];
1647 ASN1_INTEGER *ai = NULL;
1648
1649 ai = ASN1_INTEGER_new();
1650 if (ai == NULL)
1651 goto err;
1652
1653 if ((in = BIO_new(BIO_s_file())) == NULL) {
1654 ERR_print_errors(bio_err);
1655 goto err;
1656 }
1657
1658 if (BIO_read_filename(in, serialfile) <= 0) {
1659 if (!create) {
1660 perror(serialfile);
1661 goto err;
1662 } else {
1663 ret = BN_new();
1664 if (ret == NULL || !rand_serial(ret, ai))
1665 BIO_printf(bio_err, "Out of memory\n");
1666 }
1667 } else {
1668 if (!a2i_ASN1_INTEGER(in, ai, buf, 1024)) {
1669 BIO_printf(bio_err, "unable to load number from %s\n",
1670 serialfile);
1671 goto err;
1672 }
1673 ret = ASN1_INTEGER_to_BN(ai, NULL);
1674 if (ret == NULL) {
1675 BIO_printf(bio_err,
1676 "error converting number from bin to BIGNUM\n");
1677 goto err;
1678 }
1679 }
1680
1681 if (ret && retai) {
1682 *retai = ai;
1683 ai = NULL;
1684 }
1685 err:
1686 if (in != NULL)
1687 BIO_free(in);
1688 if (ai != NULL)
1689 ASN1_INTEGER_free(ai);
1690 return (ret);
1691 }
1692
1693 int save_serial(char *serialfile, char *suffix, BIGNUM *serial,
1694 ASN1_INTEGER **retai)
1695 {
1696 char buf[1][BSIZE];
1697 BIO *out = NULL;
1698 int ret = 0;
1699 ASN1_INTEGER *ai = NULL;
1700 int j;
1701
1702 if (suffix == NULL)
1703 j = strlen(serialfile);
1704 else
1705 j = strlen(serialfile) + strlen(suffix) + 1;
1706 if (j >= BSIZE) {
1707 BIO_printf(bio_err, "file name too long\n");
1708 goto err;
1709 }
1710
1711 if (suffix == NULL)
1712 BUF_strlcpy(buf[0], serialfile, BSIZE);
1713 else {
1714 #ifndef OPENSSL_SYS_VMS
1715 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, suffix);
1716 #else
1717 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, suffix);
1718 #endif
1719 }
1720 #ifdef RL_DEBUG
1721 BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1722 #endif
1723 out = BIO_new(BIO_s_file());
1724 if (out == NULL) {
1725 ERR_print_errors(bio_err);
1726 goto err;
1727 }
1728 if (BIO_write_filename(out, buf[0]) <= 0) {
1729 perror(serialfile);
1730 goto err;
1731 }
1732
1733 if ((ai = BN_to_ASN1_INTEGER(serial, NULL)) == NULL) {
1734 BIO_printf(bio_err, "error converting serial to ASN.1 format\n");
1735 goto err;
1736 }
1737 i2a_ASN1_INTEGER(out, ai);
1738 BIO_puts(out, "\n");
1739 ret = 1;
1740 if (retai) {
1741 *retai = ai;
1742 ai = NULL;
1743 }
1744 err:
1745 if (out != NULL)
1746 BIO_free_all(out);
1747 if (ai != NULL)
1748 ASN1_INTEGER_free(ai);
1749 return (ret);
1750 }
1751
1752 int rotate_serial(char *serialfile, char *new_suffix, char *old_suffix)
1753 {
1754 char buf[5][BSIZE];
1755 int i, j;
1756
1757 i = strlen(serialfile) + strlen(old_suffix);
1758 j = strlen(serialfile) + strlen(new_suffix);
1759 if (i > j)
1760 j = i;
1761 if (j + 1 >= BSIZE) {
1762 BIO_printf(bio_err, "file name too long\n");
1763 goto err;
1764 }
1765 #ifndef OPENSSL_SYS_VMS
1766 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, new_suffix);
1767 #else
1768 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, new_suffix);
1769 #endif
1770 #ifndef OPENSSL_SYS_VMS
1771 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", serialfile, old_suffix);
1772 #else
1773 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", serialfile, old_suffix);
1774 #endif
1775 #ifdef RL_DEBUG
1776 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1777 serialfile, buf[1]);
1778 #endif
1779 if (rename(serialfile, buf[1]) < 0 && errno != ENOENT
1780 #ifdef ENOTDIR
1781 && errno != ENOTDIR
1782 #endif
1783 ) {
1784 BIO_printf(bio_err,
1785 "unable to rename %s to %s\n", serialfile, buf[1]);
1786 perror("reason");
1787 goto err;
1788 }
1789 #ifdef RL_DEBUG
1790 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1791 buf[0], serialfile);
1792 #endif
1793 if (rename(buf[0], serialfile) < 0) {
1794 BIO_printf(bio_err,
1795 "unable to rename %s to %s\n", buf[0], serialfile);
1796 perror("reason");
1797 rename(buf[1], serialfile);
1798 goto err;
1799 }
1800 return 1;
1801 err:
1802 return 0;
1803 }
1804
1805 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai)
1806 {
1807 BIGNUM *btmp;
1808 int ret = 0;
1809 if (b)
1810 btmp = b;
1811 else
1812 btmp = BN_new();
1813
1814 if (!btmp)
1815 return 0;
1816
1817 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1818 goto error;
1819 if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1820 goto error;
1821
1822 ret = 1;
1823
1824 error:
1825
1826 if (!b)
1827 BN_free(btmp);
1828
1829 return ret;
1830 }
1831
1832 CA_DB *load_index(char *dbfile, DB_ATTR *db_attr)
1833 {
1834 CA_DB *retdb = NULL;
1835 TXT_DB *tmpdb = NULL;
1836 BIO *in = BIO_new(BIO_s_file());
1837 CONF *dbattr_conf = NULL;
1838 char buf[1][BSIZE];
1839 long errorline = -1;
1840
1841 if (in == NULL) {
1842 ERR_print_errors(bio_err);
1843 goto err;
1844 }
1845 if (BIO_read_filename(in, dbfile) <= 0) {
1846 perror(dbfile);
1847 BIO_printf(bio_err, "unable to open '%s'\n", dbfile);
1848 goto err;
1849 }
1850 if ((tmpdb = TXT_DB_read(in, DB_NUMBER)) == NULL)
1851 goto err;
1852
1853 #ifndef OPENSSL_SYS_VMS
1854 BIO_snprintf(buf[0], sizeof buf[0], "%s.attr", dbfile);
1855 #else
1856 BIO_snprintf(buf[0], sizeof buf[0], "%s-attr", dbfile);
1857 #endif
1858 dbattr_conf = NCONF_new(NULL);
1859 if (NCONF_load(dbattr_conf, buf[0], &errorline) <= 0) {
1860 if (errorline > 0) {
1861 BIO_printf(bio_err,
1862 "error on line %ld of db attribute file '%s'\n",
1863 errorline, buf[0]);
1864 goto err;
1865 } else {
1866 NCONF_free(dbattr_conf);
1867 dbattr_conf = NULL;
1868 }
1869 }
1870
1871 if ((retdb = OPENSSL_malloc(sizeof(CA_DB))) == NULL) {
1872 fprintf(stderr, "Out of memory\n");
1873 goto err;
1874 }
1875
1876 retdb->db = tmpdb;
1877 tmpdb = NULL;
1878 if (db_attr)
1879 retdb->attributes = *db_attr;
1880 else {
1881 retdb->attributes.unique_subject = 1;
1882 }
1883
1884 if (dbattr_conf) {
1885 char *p = NCONF_get_string(dbattr_conf, NULL, "unique_subject");
1886 if (p) {
1887 #ifdef RL_DEBUG
1888 BIO_printf(bio_err,
1889 "DEBUG[load_index]: unique_subject = \"%s\"\n", p);
1890 #endif
1891 retdb->attributes.unique_subject = parse_yesno(p, 1);
1892 }
1893 }
1894
1895 err:
1896 if (dbattr_conf)
1897 NCONF_free(dbattr_conf);
1898 if (tmpdb)
1899 TXT_DB_free(tmpdb);
1900 if (in)
1901 BIO_free_all(in);
1902 return retdb;
1903 }
1904
1905 int index_index(CA_DB *db)
1906 {
1907 if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1908 LHASH_HASH_FN(index_serial),
1909 LHASH_COMP_FN(index_serial))) {
1910 BIO_printf(bio_err,
1911 "error creating serial number index:(%ld,%ld,%ld)\n",
1912 db->db->error, db->db->arg1, db->db->arg2);
1913 return 0;
1914 }
1915
1916 if (db->attributes.unique_subject
1917 && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1918 LHASH_HASH_FN(index_name),
1919 LHASH_COMP_FN(index_name))) {
1920 BIO_printf(bio_err, "error creating name index:(%ld,%ld,%ld)\n",
1921 db->db->error, db->db->arg1, db->db->arg2);
1922 return 0;
1923 }
1924 return 1;
1925 }
1926
1927 int save_index(const char *dbfile, const char *suffix, CA_DB *db)
1928 {
1929 char buf[3][BSIZE];
1930 BIO *out = BIO_new(BIO_s_file());
1931 int j;
1932
1933 if (out == NULL) {
1934 ERR_print_errors(bio_err);
1935 goto err;
1936 }
1937
1938 j = strlen(dbfile) + strlen(suffix);
1939 if (j + 6 >= BSIZE) {
1940 BIO_printf(bio_err, "file name too long\n");
1941 goto err;
1942 }
1943 #ifndef OPENSSL_SYS_VMS
1944 j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr", dbfile);
1945 #else
1946 j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr", dbfile);
1947 #endif
1948 #ifndef OPENSSL_SYS_VMS
1949 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.attr.%s", dbfile, suffix);
1950 #else
1951 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-attr-%s", dbfile, suffix);
1952 #endif
1953 #ifndef OPENSSL_SYS_VMS
1954 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, suffix);
1955 #else
1956 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, suffix);
1957 #endif
1958 #ifdef RL_DEBUG
1959 BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1960 #endif
1961 if (BIO_write_filename(out, buf[0]) <= 0) {
1962 perror(dbfile);
1963 BIO_printf(bio_err, "unable to open '%s'\n", dbfile);
1964 goto err;
1965 }
1966 j = TXT_DB_write(out, db->db);
1967 if (j <= 0)
1968 goto err;
1969
1970 BIO_free(out);
1971
1972 out = BIO_new(BIO_s_file());
1973 #ifdef RL_DEBUG
1974 BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[1]);
1975 #endif
1976 if (BIO_write_filename(out, buf[1]) <= 0) {
1977 perror(buf[2]);
1978 BIO_printf(bio_err, "unable to open '%s'\n", buf[2]);
1979 goto err;
1980 }
1981 BIO_printf(out, "unique_subject = %s\n",
1982 db->attributes.unique_subject ? "yes" : "no");
1983 BIO_free(out);
1984
1985 return 1;
1986 err:
1987 return 0;
1988 }
1989
1990 int rotate_index(const char *dbfile, const char *new_suffix,
1991 const char *old_suffix)
1992 {
1993 char buf[5][BSIZE];
1994 int i, j;
1995
1996 i = strlen(dbfile) + strlen(old_suffix);
1997 j = strlen(dbfile) + strlen(new_suffix);
1998 if (i > j)
1999 j = i;
2000 if (j + 6 >= BSIZE) {
2001 BIO_printf(bio_err, "file name too long\n");
2002 goto err;
2003 }
2004 #ifndef OPENSSL_SYS_VMS
2005 j = BIO_snprintf(buf[4], sizeof buf[4], "%s.attr", dbfile);
2006 #else
2007 j = BIO_snprintf(buf[4], sizeof buf[4], "%s-attr", dbfile);
2008 #endif
2009 #ifndef OPENSSL_SYS_VMS
2010 j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr.%s", dbfile, new_suffix);
2011 #else
2012 j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr-%s", dbfile, new_suffix);
2013 #endif
2014 #ifndef OPENSSL_SYS_VMS
2015 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, new_suffix);
2016 #else
2017 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, new_suffix);
2018 #endif
2019 #ifndef OPENSSL_SYS_VMS
2020 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", dbfile, old_suffix);
2021 #else
2022 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", dbfile, old_suffix);
2023 #endif
2024 #ifndef OPENSSL_SYS_VMS
2025 j = BIO_snprintf(buf[3], sizeof buf[3], "%s.attr.%s", dbfile, old_suffix);
2026 #else
2027 j = BIO_snprintf(buf[3], sizeof buf[3], "%s-attr-%s", dbfile, old_suffix);
2028 #endif
2029 #ifdef RL_DEBUG
2030 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", dbfile, buf[1]);
2031 #endif
2032 if (rename(dbfile, buf[1]) < 0 && errno != ENOENT
2033 #ifdef ENOTDIR
2034 && errno != ENOTDIR
2035 #endif
2036 ) {
2037 BIO_printf(bio_err, "unable to rename %s to %s\n", dbfile, buf[1]);
2038 perror("reason");
2039 goto err;
2040 }
2041 #ifdef RL_DEBUG
2042 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[0], dbfile);
2043 #endif
2044 if (rename(buf[0], dbfile) < 0) {
2045 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[0], dbfile);
2046 perror("reason");
2047 rename(buf[1], dbfile);
2048 goto err;
2049 }
2050 #ifdef RL_DEBUG
2051 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[4], buf[3]);
2052 #endif
2053 if (rename(buf[4], buf[3]) < 0 && errno != ENOENT
2054 #ifdef ENOTDIR
2055 && errno != ENOTDIR
2056 #endif
2057 ) {
2058 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[4], buf[3]);
2059 perror("reason");
2060 rename(dbfile, buf[0]);
2061 rename(buf[1], dbfile);
2062 goto err;
2063 }
2064 #ifdef RL_DEBUG
2065 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[2], buf[4]);
2066 #endif
2067 if (rename(buf[2], buf[4]) < 0) {
2068 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[2], buf[4]);
2069 perror("reason");
2070 rename(buf[3], buf[4]);
2071 rename(dbfile, buf[0]);
2072 rename(buf[1], dbfile);
2073 goto err;
2074 }
2075 return 1;
2076 err:
2077 return 0;
2078 }
2079
2080 void free_index(CA_DB *db)
2081 {
2082 if (db) {
2083 if (db->db)
2084 TXT_DB_free(db->db);
2085 OPENSSL_free(db);
2086 }
2087 }
2088
2089 int parse_yesno(const char *str, int def)
2090 {
2091 int ret = def;
2092 if (str) {
2093 switch (*str) {
2094 case 'f': /* false */
2095 case 'F': /* FALSE */
2096 case 'n': /* no */
2097 case 'N': /* NO */
2098 case '0': /* 0 */
2099 ret = 0;
2100 break;
2101 case 't': /* true */
2102 case 'T': /* TRUE */
2103 case 'y': /* yes */
2104 case 'Y': /* YES */
2105 case '1': /* 1 */
2106 ret = 1;
2107 break;
2108 default:
2109 ret = def;
2110 break;
2111 }
2112 }
2113 return ret;
2114 }
2115
2116 /*
2117 * subject is expected to be in the format /type0=value0/type1=value1/type2=...
2118 * where characters may be escaped by \
2119 */
2120 X509_NAME *parse_name(char *subject, long chtype, int multirdn)
2121 {
2122 size_t buflen = strlen(subject) + 1; /* to copy the types and values
2123 * into. due to escaping, the copy
2124 * can only become shorter */
2125 char *buf = OPENSSL_malloc(buflen);
2126 size_t max_ne = buflen / 2 + 1; /* maximum number of name elements */
2127 char **ne_types = OPENSSL_malloc(max_ne * sizeof(char *));
2128 char **ne_values = OPENSSL_malloc(max_ne * sizeof(char *));
2129 int *mval = OPENSSL_malloc(max_ne * sizeof(int));
2130
2131 char *sp = subject, *bp = buf;
2132 int i, ne_num = 0;
2133
2134 X509_NAME *n = NULL;
2135 int nid;
2136
2137 if (!buf || !ne_types || !ne_values || !mval) {
2138 BIO_printf(bio_err, "malloc error\n");
2139 goto error;
2140 }
2141
2142 if (*subject != '/') {
2143 BIO_printf(bio_err, "Subject does not start with '/'.\n");
2144 goto error;
2145 }
2146 sp++; /* skip leading / */
2147
2148 /* no multivalued RDN by default */
2149 mval[ne_num] = 0;
2150
2151 while (*sp) {
2152 /* collect type */
2153 ne_types[ne_num] = bp;
2154 while (*sp) {
2155 if (*sp == '\\') { /* is there anything to escape in the
2156 * type...? */
2157 if (*++sp)
2158 *bp++ = *sp++;
2159 else {
2160 BIO_printf(bio_err,
2161 "escape character at end of string\n");
2162 goto error;
2163 }
2164 } else if (*sp == '=') {
2165 sp++;
2166 *bp++ = '\0';
2167 break;
2168 } else
2169 *bp++ = *sp++;
2170 }
2171 if (!*sp) {
2172 BIO_printf(bio_err,
2173 "end of string encountered while processing type of subject name element #%d\n",
2174 ne_num);
2175 goto error;
2176 }
2177 ne_values[ne_num] = bp;
2178 while (*sp) {
2179 if (*sp == '\\') {
2180 if (*++sp)
2181 *bp++ = *sp++;
2182 else {
2183 BIO_printf(bio_err,
2184 "escape character at end of string\n");
2185 goto error;
2186 }
2187 } else if (*sp == '/') {
2188 sp++;
2189 /* no multivalued RDN by default */
2190 mval[ne_num + 1] = 0;
2191 break;
2192 } else if (*sp == '+' && multirdn) {
2193 /*
2194 * a not escaped + signals a mutlivalued RDN
2195 */
2196 sp++;
2197 mval[ne_num + 1] = -1;
2198 break;
2199 } else
2200 *bp++ = *sp++;
2201 }
2202 *bp++ = '\0';
2203 ne_num++;
2204 }
2205
2206 if (!(n = X509_NAME_new()))
2207 goto error;
2208
2209 for (i = 0; i < ne_num; i++) {
2210 if ((nid = OBJ_txt2nid(ne_types[i])) == NID_undef) {
2211 BIO_printf(bio_err,
2212 "Subject Attribute %s has no known NID, skipped\n",
2213 ne_types[i]);
2214 continue;
2215 }
2216
2217 if (!*ne_values[i]) {
2218 BIO_printf(bio_err,
2219 "No value provided for Subject Attribute %s, skipped\n",
2220 ne_types[i]);
2221 continue;
2222 }
2223
2224 if (!X509_NAME_add_entry_by_NID
2225 (n, nid, chtype, (unsigned char *)ne_values[i], -1, -1, mval[i]))
2226 goto error;
2227 }
2228
2229 OPENSSL_free(ne_values);
2230 OPENSSL_free(ne_types);
2231 OPENSSL_free(buf);
2232 OPENSSL_free(mval);
2233 return n;
2234
2235 error:
2236 X509_NAME_free(n);
2237 if (ne_values)
2238 OPENSSL_free(ne_values);
2239 if (ne_types)
2240 OPENSSL_free(ne_types);
2241 if (mval)
2242 OPENSSL_free(mval);
2243 if (buf)
2244 OPENSSL_free(buf);
2245 return NULL;
2246 }
2247
2248 int args_verify(char ***pargs, int *pargc,
2249 int *badarg, BIO *err, X509_VERIFY_PARAM **pm)
2250 {
2251 ASN1_OBJECT *otmp = NULL;
2252 unsigned long flags = 0;
2253 int i;
2254 int purpose = 0, depth = -1;
2255 char **oldargs = *pargs;
2256 char *arg = **pargs, *argn = (*pargs)[1];
2257 const X509_VERIFY_PARAM *vpm = NULL;
2258 time_t at_time = 0;
2259 char *hostname = NULL;
2260 char *email = NULL;
2261 char *ipasc = NULL;
2262 if (!strcmp(arg, "-policy")) {
2263 if (!argn)
2264 *badarg = 1;
2265 else {
2266 otmp = OBJ_txt2obj(argn, 0);
2267 if (!otmp) {
2268 BIO_printf(err, "Invalid Policy \"%s\"\n", argn);
2269 *badarg = 1;
2270 }
2271 }
2272 (*pargs)++;
2273 } else if (strcmp(arg, "-purpose") == 0) {
2274 X509_PURPOSE *xptmp;
2275 if (!argn)
2276 *badarg = 1;
2277 else {
2278 i = X509_PURPOSE_get_by_sname(argn);
2279 if (i < 0) {
2280 BIO_printf(err, "unrecognized purpose\n");
2281 *badarg = 1;
2282 } else {
2283 xptmp = X509_PURPOSE_get0(i);
2284 purpose = X509_PURPOSE_get_id(xptmp);
2285 }
2286 }
2287 (*pargs)++;
2288 } else if (strcmp(arg, "-verify_name") == 0) {
2289 if (!argn)
2290 *badarg = 1;
2291 else {
2292 vpm = X509_VERIFY_PARAM_lookup(argn);
2293 if (!vpm) {
2294 BIO_printf(err, "unrecognized verify name\n");
2295 *badarg = 1;
2296 }
2297 }
2298 (*pargs)++;
2299 } else if (strcmp(arg, "-verify_depth") == 0) {
2300 if (!argn)
2301 *badarg = 1;
2302 else {
2303 depth = atoi(argn);
2304 if (depth < 0) {
2305 BIO_printf(err, "invalid depth\n");
2306 *badarg = 1;
2307 }
2308 }
2309 (*pargs)++;
2310 } else if (strcmp(arg, "-attime") == 0) {
2311 if (!argn)
2312 *badarg = 1;
2313 else {
2314 long timestamp;
2315 /*
2316 * interpret the -attime argument as seconds since Epoch
2317 */
2318 if (sscanf(argn, "%li", &timestamp) != 1) {
2319 BIO_printf(bio_err, "Error parsing timestamp %s\n", argn);
2320 *badarg = 1;
2321 }
2322 /* on some platforms time_t may be a float */
2323 at_time = (time_t)timestamp;
2324 }
2325 (*pargs)++;
2326 } else if (strcmp(arg, "-verify_hostname") == 0) {
2327 if (!argn)
2328 *badarg = 1;
2329 hostname = argn;
2330 (*pargs)++;
2331 } else if (strcmp(arg, "-verify_email") == 0) {
2332 if (!argn)
2333 *badarg = 1;
2334 email = argn;
2335 (*pargs)++;
2336 } else if (strcmp(arg, "-verify_ip") == 0) {
2337 if (!argn)
2338 *badarg = 1;
2339 ipasc = argn;
2340 (*pargs)++;
2341 } else if (!strcmp(arg, "-ignore_critical"))
2342 flags |= X509_V_FLAG_IGNORE_CRITICAL;
2343 else if (!strcmp(arg, "-issuer_checks"))
2344 flags |= X509_V_FLAG_CB_ISSUER_CHECK;
2345 else if (!strcmp(arg, "-crl_check"))
2346 flags |= X509_V_FLAG_CRL_CHECK;
2347 else if (!strcmp(arg, "-crl_check_all"))
2348 flags |= X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL;
2349 else if (!strcmp(arg, "-policy_check"))
2350 flags |= X509_V_FLAG_POLICY_CHECK;
2351 else if (!strcmp(arg, "-explicit_policy"))
2352 flags |= X509_V_FLAG_EXPLICIT_POLICY;
2353 else if (!strcmp(arg, "-inhibit_any"))
2354 flags |= X509_V_FLAG_INHIBIT_ANY;
2355 else if (!strcmp(arg, "-inhibit_map"))
2356 flags |= X509_V_FLAG_INHIBIT_MAP;
2357 else if (!strcmp(arg, "-x509_strict"))
2358 flags |= X509_V_FLAG_X509_STRICT;
2359 else if (!strcmp(arg, "-extended_crl"))
2360 flags |= X509_V_FLAG_EXTENDED_CRL_SUPPORT;
2361 else if (!strcmp(arg, "-use_deltas"))
2362 flags |= X509_V_FLAG_USE_DELTAS;
2363 else if (!strcmp(arg, "-policy_print"))
2364 flags |= X509_V_FLAG_NOTIFY_POLICY;
2365 else if (!strcmp(arg, "-check_ss_sig"))
2366 flags |= X509_V_FLAG_CHECK_SS_SIGNATURE;
2367 else if (!strcmp(arg, "-trusted_first"))
2368 flags |= X509_V_FLAG_TRUSTED_FIRST;
2369 else if (!strcmp(arg, "-suiteB_128_only"))
2370 flags |= X509_V_FLAG_SUITEB_128_LOS_ONLY;
2371 else if (!strcmp(arg, "-suiteB_128"))
2372 flags |= X509_V_FLAG_SUITEB_128_LOS;
2373 else if (!strcmp(arg, "-suiteB_192"))
2374 flags |= X509_V_FLAG_SUITEB_192_LOS;
2375 else if (!strcmp(arg, "-partial_chain"))
2376 flags |= X509_V_FLAG_PARTIAL_CHAIN;
2377 else
2378 return 0;
2379
2380 if (*badarg) {
2381 if (*pm)
2382 X509_VERIFY_PARAM_free(*pm);
2383 *pm = NULL;
2384 goto end;
2385 }
2386
2387 if (!*pm && !(*pm = X509_VERIFY_PARAM_new())) {
2388 *badarg = 1;
2389 goto end;
2390 }
2391
2392 if (vpm)
2393 X509_VERIFY_PARAM_set1(*pm, vpm);
2394
2395 if (otmp)
2396 X509_VERIFY_PARAM_add0_policy(*pm, otmp);
2397 if (flags)
2398 X509_VERIFY_PARAM_set_flags(*pm, flags);
2399
2400 if (purpose)
2401 X509_VERIFY_PARAM_set_purpose(*pm, purpose);
2402
2403 if (depth >= 0)
2404 X509_VERIFY_PARAM_set_depth(*pm, depth);
2405
2406 if (at_time)
2407 X509_VERIFY_PARAM_set_time(*pm, at_time);
2408
2409 if (hostname && !X509_VERIFY_PARAM_set1_host(*pm, hostname, 0))
2410 *badarg = 1;
2411
2412 if (email && !X509_VERIFY_PARAM_set1_email(*pm, email, 0))
2413 *badarg = 1;
2414
2415 if (ipasc && !X509_VERIFY_PARAM_set1_ip_asc(*pm, ipasc))
2416 *badarg = 1;
2417
2418 end:
2419
2420 (*pargs)++;
2421
2422 if (pargc)
2423 *pargc -= *pargs - oldargs;
2424
2425 return 1;
2426
2427 }
2428
2429 /*
2430 * Read whole contents of a BIO into an allocated memory buffer and return
2431 * it.
2432 */
2433
2434 int bio_to_mem(unsigned char **out, int maxlen, BIO *in)
2435 {
2436 BIO *mem;
2437 int len, ret;
2438 unsigned char tbuf[1024];
2439 mem = BIO_new(BIO_s_mem());
2440 if (!mem)
2441 return -1;
2442 for (;;) {
2443 if ((maxlen != -1) && maxlen < 1024)
2444 len = maxlen;
2445 else
2446 len = 1024;
2447 len = BIO_read(in, tbuf, len);
2448 if (len <= 0)
2449 break;
2450 if (BIO_write(mem, tbuf, len) != len) {
2451 BIO_free(mem);
2452 return -1;
2453 }
2454 maxlen -= len;
2455
2456 if (maxlen == 0)
2457 break;
2458 }
2459 ret = BIO_get_mem_data(mem, (char **)out);
2460 BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
2461 BIO_free(mem);
2462 return ret;
2463 }
2464
2465 int pkey_ctrl_string(EVP_PKEY_CTX *ctx, char *value)
2466 {
2467 int rv;
2468 char *stmp, *vtmp = NULL;
2469 stmp = BUF_strdup(value);
2470 if (!stmp)
2471 return -1;
2472 vtmp = strchr(stmp, ':');
2473 if (vtmp) {
2474 *vtmp = 0;
2475 vtmp++;
2476 }
2477 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
2478 OPENSSL_free(stmp);
2479 return rv;
2480 }
2481
2482 static void nodes_print(BIO *out, const char *name,
2483 STACK_OF(X509_POLICY_NODE) *nodes)
2484 {
2485 X509_POLICY_NODE *node;
2486 int i;
2487 BIO_printf(out, "%s Policies:", name);
2488 if (nodes) {
2489 BIO_puts(out, "\n");
2490 for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++) {
2491 node = sk_X509_POLICY_NODE_value(nodes, i);
2492 X509_POLICY_NODE_print(out, node, 2);
2493 }
2494 } else
2495 BIO_puts(out, " <empty>\n");
2496 }
2497
2498 void policies_print(BIO *out, X509_STORE_CTX *ctx)
2499 {
2500 X509_POLICY_TREE *tree;
2501 int explicit_policy;
2502 int free_out = 0;
2503 if (out == NULL) {
2504 out = BIO_new_fp(stderr, BIO_NOCLOSE);
2505 free_out = 1;
2506 }
2507 tree = X509_STORE_CTX_get0_policy_tree(ctx);
2508 explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);
2509
2510 BIO_printf(out, "Require explicit Policy: %s\n",
2511 explicit_policy ? "True" : "False");
2512
2513 nodes_print(out, "Authority", X509_policy_tree_get0_policies(tree));
2514 nodes_print(out, "User", X509_policy_tree_get0_user_policies(tree));
2515 if (free_out)
2516 BIO_free(out);
2517 }
2518
2519 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
2520
2521 static JPAKE_CTX *jpake_init(const char *us, const char *them,
2522 const char *secret)
2523 {
2524 BIGNUM *p = NULL;
2525 BIGNUM *g = NULL;
2526 BIGNUM *q = NULL;
2527 BIGNUM *bnsecret = BN_new();
2528 JPAKE_CTX *ctx;
2529
2530 /* Use a safe prime for p (that we found earlier) */
2531 BN_hex2bn(&p,
2532 "F9E5B365665EA7A05A9C534502780FEE6F1AB5BD4F49947FD036DBD7E905269AF46EF28B0FC07487EE4F5D20FB3C0AF8E700F3A2FA3414970CBED44FEDFF80CE78D800F184BB82435D137AADA2C6C16523247930A63B85661D1FC817A51ACD96168E95898A1F83A79FFB529368AA7833ABD1B0C3AEDDB14D2E1A2F71D99F763F");
2533 g = BN_new();
2534 BN_set_word(g, 2);
2535 q = BN_new();
2536 BN_rshift1(q, p);
2537
2538 BN_bin2bn((const unsigned char *)secret, strlen(secret), bnsecret);
2539
2540 ctx = JPAKE_CTX_new(us, them, p, g, q, bnsecret);
2541 BN_free(bnsecret);
2542 BN_free(q);
2543 BN_free(g);
2544 BN_free(p);
2545
2546 return ctx;
2547 }
2548
2549 static void jpake_send_part(BIO *conn, const JPAKE_STEP_PART *p)
2550 {
2551 BN_print(conn, p->gx);
2552 BIO_puts(conn, "\n");
2553 BN_print(conn, p->zkpx.gr);
2554 BIO_puts(conn, "\n");
2555 BN_print(conn, p->zkpx.b);
2556 BIO_puts(conn, "\n");
2557 }
2558
2559 static void jpake_send_step1(BIO *bconn, JPAKE_CTX *ctx)
2560 {
2561 JPAKE_STEP1 s1;
2562
2563 JPAKE_STEP1_init(&s1);
2564 JPAKE_STEP1_generate(&s1, ctx);
2565 jpake_send_part(bconn, &s1.p1);
2566 jpake_send_part(bconn, &s1.p2);
2567 (void)BIO_flush(bconn);
2568 JPAKE_STEP1_release(&s1);
2569 }
2570
2571 static void jpake_send_step2(BIO *bconn, JPAKE_CTX *ctx)
2572 {
2573 JPAKE_STEP2 s2;
2574
2575 JPAKE_STEP2_init(&s2);
2576 JPAKE_STEP2_generate(&s2, ctx);
2577 jpake_send_part(bconn, &s2);
2578 (void)BIO_flush(bconn);
2579 JPAKE_STEP2_release(&s2);
2580 }
2581
2582 static void jpake_send_step3a(BIO *bconn, JPAKE_CTX *ctx)
2583 {
2584 JPAKE_STEP3A s3a;
2585
2586 JPAKE_STEP3A_init(&s3a);
2587 JPAKE_STEP3A_generate(&s3a, ctx);
2588 BIO_write(bconn, s3a.hhk, sizeof s3a.hhk);
2589 (void)BIO_flush(bconn);
2590 JPAKE_STEP3A_release(&s3a);
2591 }
2592
2593 static void jpake_send_step3b(BIO *bconn, JPAKE_CTX *ctx)
2594 {
2595 JPAKE_STEP3B s3b;
2596
2597 JPAKE_STEP3B_init(&s3b);
2598 JPAKE_STEP3B_generate(&s3b, ctx);
2599 BIO_write(bconn, s3b.hk, sizeof s3b.hk);
2600 (void)BIO_flush(bconn);
2601 JPAKE_STEP3B_release(&s3b);
2602 }
2603
2604 static void readbn(BIGNUM **bn, BIO *bconn)
2605 {
2606 char buf[10240];
2607 int l;
2608
2609 l = BIO_gets(bconn, buf, sizeof buf);
2610 assert(l > 0);
2611 assert(buf[l - 1] == '\n');
2612 buf[l - 1] = '\0';
2613 BN_hex2bn(bn, buf);
2614 }
2615
2616 static void jpake_receive_part(JPAKE_STEP_PART *p, BIO *bconn)
2617 {
2618 readbn(&p->gx, bconn);
2619 readbn(&p->zkpx.gr, bconn);
2620 readbn(&p->zkpx.b, bconn);
2621 }
2622
2623 static void jpake_receive_step1(JPAKE_CTX *ctx, BIO *bconn)
2624 {
2625 JPAKE_STEP1 s1;
2626
2627 JPAKE_STEP1_init(&s1);
2628 jpake_receive_part(&s1.p1, bconn);
2629 jpake_receive_part(&s1.p2, bconn);
2630 if (!JPAKE_STEP1_process(ctx, &s1)) {
2631 ERR_print_errors(bio_err);
2632 exit(1);
2633 }
2634 JPAKE_STEP1_release(&s1);
2635 }
2636
2637 static void jpake_receive_step2(JPAKE_CTX *ctx, BIO *bconn)
2638 {
2639 JPAKE_STEP2 s2;
2640
2641 JPAKE_STEP2_init(&s2);
2642 jpake_receive_part(&s2, bconn);
2643 if (!JPAKE_STEP2_process(ctx, &s2)) {
2644 ERR_print_errors(bio_err);
2645 exit(1);
2646 }
2647 JPAKE_STEP2_release(&s2);
2648 }
2649
2650 static void jpake_receive_step3a(JPAKE_CTX *ctx, BIO *bconn)
2651 {
2652 JPAKE_STEP3A s3a;
2653 int l;
2654
2655 JPAKE_STEP3A_init(&s3a);
2656 l = BIO_read(bconn, s3a.hhk, sizeof s3a.hhk);
2657 assert(l == sizeof s3a.hhk);
2658 if (!JPAKE_STEP3A_process(ctx, &s3a)) {
2659 ERR_print_errors(bio_err);
2660 exit(1);
2661 }
2662 JPAKE_STEP3A_release(&s3a);
2663 }
2664
2665 static void jpake_receive_step3b(JPAKE_CTX *ctx, BIO *bconn)
2666 {
2667 JPAKE_STEP3B s3b;
2668 int l;
2669
2670 JPAKE_STEP3B_init(&s3b);
2671 l = BIO_read(bconn, s3b.hk, sizeof s3b.hk);
2672 assert(l == sizeof s3b.hk);
2673 if (!JPAKE_STEP3B_process(ctx, &s3b)) {
2674 ERR_print_errors(bio_err);
2675 exit(1);
2676 }
2677 JPAKE_STEP3B_release(&s3b);
2678 }
2679
2680 void jpake_client_auth(BIO *out, BIO *conn, const char *secret)
2681 {
2682 JPAKE_CTX *ctx;
2683 BIO *bconn;
2684
2685 BIO_puts(out, "Authenticating with JPAKE\n");
2686
2687 ctx = jpake_init("client", "server", secret);
2688
2689 bconn = BIO_new(BIO_f_buffer());
2690 BIO_push(bconn, conn);
2691
2692 jpake_send_step1(bconn, ctx);
2693 jpake_receive_step1(ctx, bconn);
2694 jpake_send_step2(bconn, ctx);
2695 jpake_receive_step2(ctx, bconn);
2696 jpake_send_step3a(bconn, ctx);
2697 jpake_receive_step3b(ctx, bconn);
2698
2699 BIO_puts(out, "JPAKE authentication succeeded, setting PSK\n");
2700
2701 if (psk_key)
2702 OPENSSL_free(psk_key);
2703
2704 psk_key = BN_bn2hex(JPAKE_get_shared_key(ctx));
2705
2706 BIO_pop(bconn);
2707 BIO_free(bconn);
2708
2709 JPAKE_CTX_free(ctx);
2710 }
2711
2712 void jpake_server_auth(BIO *out, BIO *conn, const char *secret)
2713 {
2714 JPAKE_CTX *ctx;
2715 BIO *bconn;
2716
2717 BIO_puts(out, "Authenticating with JPAKE\n");
2718
2719 ctx = jpake_init("server", "client", secret);
2720
2721 bconn = BIO_new(BIO_f_buffer());
2722 BIO_push(bconn, conn);
2723
2724 jpake_receive_step1(ctx, bconn);
2725 jpake_send_step1(bconn, ctx);
2726 jpake_receive_step2(ctx, bconn);
2727 jpake_send_step2(bconn, ctx);
2728 jpake_receive_step3a(ctx, bconn);
2729 jpake_send_step3b(bconn, ctx);
2730
2731 BIO_puts(out, "JPAKE authentication succeeded, setting PSK\n");
2732
2733 if (psk_key)
2734 OPENSSL_free(psk_key);
2735
2736 psk_key = BN_bn2hex(JPAKE_get_shared_key(ctx));
2737
2738 BIO_pop(bconn);
2739 BIO_free(bconn);
2740
2741 JPAKE_CTX_free(ctx);
2742 }
2743
2744 #endif
2745
2746 #ifndef OPENSSL_NO_TLSEXT
2747 /*-
2748 * next_protos_parse parses a comma separated list of strings into a string
2749 * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
2750 * outlen: (output) set to the length of the resulting buffer on success.
2751 * err: (maybe NULL) on failure, an error message line is written to this BIO.
2752 * in: a NUL termianted string like "abc,def,ghi"
2753 *
2754 * returns: a malloced buffer or NULL on failure.
2755 */
2756 unsigned char *next_protos_parse(unsigned short *outlen, const char *in)
2757 {
2758 size_t len;
2759 unsigned char *out;
2760 size_t i, start = 0;
2761
2762 len = strlen(in);
2763 if (len >= 65535)
2764 return NULL;
2765
2766 out = OPENSSL_malloc(strlen(in) + 1);
2767 if (!out)
2768 return NULL;
2769
2770 for (i = 0; i <= len; ++i) {
2771 if (i == len || in[i] == ',') {
2772 if (i - start > 255) {
2773 OPENSSL_free(out);
2774 return NULL;
2775 }
2776 out[start] = i - start;
2777 start = i + 1;
2778 } else
2779 out[i + 1] = in[i];
2780 }
2781
2782 *outlen = len + 1;
2783 return out;
2784 }
2785 #endif /* ndef OPENSSL_NO_TLSEXT */
2786
2787 void print_cert_checks(BIO *bio, X509 *x,
2788 const char *checkhost,
2789 const char *checkemail, const char *checkip)
2790 {
2791 if (x == NULL)
2792 return;
2793 if (checkhost) {
2794 BIO_printf(bio, "Hostname %s does%s match certificate\n",
2795 checkhost, X509_check_host(x, checkhost, 0, 0, NULL)
2796 ? "" : " NOT");
2797 }
2798
2799 if (checkemail) {
2800 BIO_printf(bio, "Email %s does%s match certificate\n",
2801 checkemail, X509_check_email(x, checkemail, 0,
2802 0) ? "" : " NOT");
2803 }
2804
2805 if (checkip) {
2806 BIO_printf(bio, "IP %s does%s match certificate\n",
2807 checkip, X509_check_ip_asc(x, checkip, 0) ? "" : " NOT");
2808 }
2809 }
2810
2811 /* Get first http URL from a DIST_POINT structure */
2812
2813 static const char *get_dp_url(DIST_POINT *dp)
2814 {
2815 GENERAL_NAMES *gens;
2816 GENERAL_NAME *gen;
2817 int i, gtype;
2818 ASN1_STRING *uri;
2819 if (!dp->distpoint || dp->distpoint->type != 0)
2820 return NULL;
2821 gens = dp->distpoint->name.fullname;
2822 for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
2823 gen = sk_GENERAL_NAME_value(gens, i);
2824 uri = GENERAL_NAME_get0_value(gen, &gtype);
2825 if (gtype == GEN_URI && ASN1_STRING_length(uri) > 6) {
2826 char *uptr = (char *)ASN1_STRING_data(uri);
2827 if (!strncmp(uptr, "http://", 7))
2828 return uptr;
2829 }
2830 }
2831 return NULL;
2832 }
2833
2834 /*
2835 * Look through a CRLDP structure and attempt to find an http URL to
2836 * downloads a CRL from.
2837 */
2838
2839 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
2840 {
2841 int i;
2842 const char *urlptr = NULL;
2843 for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
2844 DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
2845 urlptr = get_dp_url(dp);
2846 if (urlptr)
2847 return load_crl(urlptr, FORMAT_HTTP);
2848 }
2849 return NULL;
2850 }
2851
2852 /*
2853 * Example of downloading CRLs from CRLDP: not usable for real world as it
2854 * always downloads, doesn't support non-blocking I/O and doesn't cache
2855 * anything.
2856 */
2857
2858 static STACK_OF(X509_CRL) *crls_http_cb(X509_STORE_CTX *ctx, X509_NAME *nm)
2859 {
2860 X509 *x;
2861 STACK_OF(X509_CRL) *crls = NULL;
2862 X509_CRL *crl;
2863 STACK_OF(DIST_POINT) *crldp;
2864 x = X509_STORE_CTX_get_current_cert(ctx);
2865 crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
2866 crl = load_crl_crldp(crldp);
2867 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2868 if (!crl)
2869 return NULL;
2870 crls = sk_X509_CRL_new_null();
2871 sk_X509_CRL_push(crls, crl);
2872 /* Try to download delta CRL */
2873 crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
2874 crl = load_crl_crldp(crldp);
2875 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2876 if (crl)
2877 sk_X509_CRL_push(crls, crl);
2878 return crls;
2879 }
2880
2881 void store_setup_crl_download(X509_STORE *st)
2882 {
2883 X509_STORE_set_lookup_crls_cb(st, crls_http_cb);
2884 }
2885
2886 /*
2887 * Platform-specific sections
2888 */
2889 #if defined(_WIN32)
2890 # ifdef fileno
2891 # undef fileno
2892 # define fileno(a) (int)_fileno(a)
2893 # endif
2894
2895 # include <windows.h>
2896 # include <tchar.h>
2897
2898 static int WIN32_rename(const char *from, const char *to)
2899 {
2900 TCHAR *tfrom = NULL, *tto;
2901 DWORD err;
2902 int ret = 0;
2903
2904 if (sizeof(TCHAR) == 1) {
2905 tfrom = (TCHAR *)from;
2906 tto = (TCHAR *)to;
2907 } else { /* UNICODE path */
2908
2909 size_t i, flen = strlen(from) + 1, tlen = strlen(to) + 1;
2910 tfrom = (TCHAR *)malloc(sizeof(TCHAR) * (flen + tlen));
2911 if (tfrom == NULL)
2912 goto err;
2913 tto = tfrom + flen;
2914 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2915 if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen))
2916 # endif
2917 for (i = 0; i < flen; i++)
2918 tfrom[i] = (TCHAR)from[i];
2919 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2920 if (!MultiByteToWideChar(CP_ACP, 0, to, tlen, (WCHAR *)tto, tlen))
2921 # endif
2922 for (i = 0; i < tlen; i++)
2923 tto[i] = (TCHAR)to[i];
2924 }
2925
2926 if (MoveFile(tfrom, tto))
2927 goto ok;
2928 err = GetLastError();
2929 if (err == ERROR_ALREADY_EXISTS || err == ERROR_FILE_EXISTS) {
2930 if (DeleteFile(tto) && MoveFile(tfrom, tto))
2931 goto ok;
2932 err = GetLastError();
2933 }
2934 if (err == ERROR_FILE_NOT_FOUND || err == ERROR_PATH_NOT_FOUND)
2935 errno = ENOENT;
2936 else if (err == ERROR_ACCESS_DENIED)
2937 errno = EACCES;
2938 else
2939 errno = EINVAL; /* we could map more codes... */
2940 err:
2941 ret = -1;
2942 ok:
2943 if (tfrom != NULL && tfrom != (TCHAR *)from)
2944 free(tfrom);
2945 return ret;
2946 }
2947 #endif
2948
2949 /* app_tminterval section */
2950 #if defined(_WIN32)
2951 double app_tminterval(int stop, int usertime)
2952 {
2953 FILETIME now;
2954 double ret = 0;
2955 static ULARGE_INTEGER tmstart;
2956 static int warning = 1;
2957 # ifdef _WIN32_WINNT
2958 static HANDLE proc = NULL;
2959
2960 if (proc == NULL) {
2961 if (check_winnt())
2962 proc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
2963 GetCurrentProcessId());
2964 if (proc == NULL)
2965 proc = (HANDLE) - 1;
2966 }
2967
2968 if (usertime && proc != (HANDLE) - 1) {
2969 FILETIME junk;
2970 GetProcessTimes(proc, &junk, &junk, &junk, &now);
2971 } else
2972 # endif
2973 {
2974 SYSTEMTIME systime;
2975
2976 if (usertime && warning) {
2977 BIO_printf(bio_err, "To get meaningful results, run "
2978 "this program on idle system.\n");
2979 warning = 0;
2980 }
2981 GetSystemTime(&systime);
2982 SystemTimeToFileTime(&systime, &now);
2983 }
2984
2985 if (stop == TM_START) {
2986 tmstart.u.LowPart = now.dwLowDateTime;
2987 tmstart.u.HighPart = now.dwHighDateTime;
2988 } else {
2989 ULARGE_INTEGER tmstop;
2990
2991 tmstop.u.LowPart = now.dwLowDateTime;
2992 tmstop.u.HighPart = now.dwHighDateTime;
2993
2994 ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2995 }
2996
2997 return (ret);
2998 }
2999
3000 #elif defined(OPENSSL_SYS_NETWARE)
3001 # include <time.h>
3002
3003 double app_tminterval(int stop, int usertime)
3004 {
3005 double ret = 0;
3006 static clock_t tmstart;
3007 static int warning = 1;
3008
3009 if (usertime && warning) {
3010 BIO_printf(bio_err, "To get meaningful results, run "
3011 "this program on idle system.\n");
3012 warning = 0;
3013 }
3014
3015 if (stop == TM_START)
3016 tmstart = clock();
3017 else
3018 ret = (clock() - tmstart) / (double)CLOCKS_PER_SEC;
3019
3020 return (ret);
3021 }
3022
3023 #elif defined(OPENSSL_SYSTEM_VXWORKS)
3024 # include <time.h>
3025
3026 double app_tminterval(int stop, int usertime)
3027 {
3028 double ret = 0;
3029 # ifdef CLOCK_REALTIME
3030 static struct timespec tmstart;
3031 struct timespec now;
3032 # else
3033 static unsigned long tmstart;
3034 unsigned long now;
3035 # endif
3036 static int warning = 1;
3037
3038 if (usertime && warning) {
3039 BIO_printf(bio_err, "To get meaningful results, run "
3040 "this program on idle system.\n");
3041 warning = 0;
3042 }
3043 # ifdef CLOCK_REALTIME
3044 clock_gettime(CLOCK_REALTIME, &now);
3045 if (stop == TM_START)
3046 tmstart = now;
3047 else
3048 ret = ((now.tv_sec + now.tv_nsec * 1e-9)
3049 - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
3050 # else
3051 now = tickGet();
3052 if (stop == TM_START)
3053 tmstart = now;
3054 else
3055 ret = (now - tmstart) / (double)sysClkRateGet();
3056 # endif
3057 return (ret);
3058 }
3059
3060 #elif defined(OPENSSL_SYSTEM_VMS)
3061 # include <time.h>
3062 # include <times.h>
3063
3064 double app_tminterval(int stop, int usertime)
3065 {
3066 static clock_t tmstart;
3067 double ret = 0;
3068 clock_t now;
3069 # ifdef __TMS
3070 struct tms rus;
3071
3072 now = times(&rus);
3073 if (usertime)
3074 now = rus.tms_utime;
3075 # else
3076 if (usertime)
3077 now = clock(); /* sum of user and kernel times */
3078 else {
3079 struct timeval tv;
3080 gettimeofday(&tv, NULL);
3081 now = (clock_t)((unsigned long long)tv.tv_sec * CLK_TCK +
3082 (unsigned long long)tv.tv_usec * (1000000 / CLK_TCK)
3083 );
3084 }
3085 # endif
3086 if (stop == TM_START)
3087 tmstart = now;
3088 else
3089 ret = (now - tmstart) / (double)(CLK_TCK);
3090
3091 return (ret);
3092 }
3093
3094 #elif defined(_SC_CLK_TCK) /* by means of unistd.h */
3095 # include <sys/times.h>
3096
3097 double app_tminterval(int stop, int usertime)
3098 {
3099 double ret = 0;
3100 struct tms rus;
3101 clock_t now = times(&rus);
3102 static clock_t tmstart;
3103
3104 if (usertime)
3105 now = rus.tms_utime;
3106
3107 if (stop == TM_START)
3108 tmstart = now;
3109 else {
3110 long int tck = sysconf(_SC_CLK_TCK);
3111 ret = (now - tmstart) / (double)tck;
3112 }
3113
3114 return (ret);
3115 }
3116
3117 #else
3118 # include <sys/time.h>
3119 # include <sys/resource.h>
3120
3121 double app_tminterval(int stop, int usertime)
3122 {
3123 double ret = 0;
3124 struct rusage rus;
3125 struct timeval now;
3126 static struct timeval tmstart;
3127
3128 if (usertime)
3129 getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
3130 else
3131 gettimeofday(&now, NULL);
3132
3133 if (stop == TM_START)
3134 tmstart = now;
3135 else
3136 ret = ((now.tv_sec + now.tv_usec * 1e-6)
3137 - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
3138
3139 return ret;
3140 }
3141 #endif
3142
3143 /* app_isdir section */
3144 #ifdef _WIN32
3145 int app_isdir(const char *name)
3146 {
3147 HANDLE hList;
3148 WIN32_FIND_DATA FileData;
3149 # if defined(UNICODE) || defined(_UNICODE)
3150 size_t i, len_0 = strlen(name) + 1;
3151
3152 if (len_0 > sizeof(FileData.cFileName) / sizeof(FileData.cFileName[0]))
3153 return -1;
3154
3155 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
3156 if (!MultiByteToWideChar
3157 (CP_ACP, 0, name, len_0, FileData.cFileName, len_0))
3158 # endif
3159 for (i = 0; i < len_0; i++)
3160 FileData.cFileName[i] = (WCHAR)name[i];
3161
3162 hList = FindFirstFile(FileData.cFileName, &FileData);
3163 # else
3164 hList = FindFirstFile(name, &FileData);
3165 # endif
3166 if (hList == INVALID_HANDLE_VALUE)
3167 return -1;
3168 FindClose(hList);
3169 return ((FileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0);
3170 }
3171 #else
3172 # include <sys/stat.h>
3173 # ifndef S_ISDIR
3174 # if defined(_S_IFMT) && defined(_S_IFDIR)
3175 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
3176 # else
3177 # define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
3178 # endif
3179 # endif
3180
3181 int app_isdir(const char *name)
3182 {
3183 # if defined(S_ISDIR)
3184 struct stat st;
3185
3186 if (stat(name, &st) == 0)
3187 return S_ISDIR(st.st_mode);
3188 else
3189 return -1;
3190 # else
3191 return -1;
3192 # endif
3193 }
3194 #endif
3195
3196 /* raw_read|write section */
3197 #if defined(_WIN32) && defined(STD_INPUT_HANDLE)
3198 int raw_read_stdin(void *buf, int siz)
3199 {
3200 DWORD n;
3201 if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
3202 return (n);
3203 else
3204 return (-1);
3205 }
3206 #else
3207 int raw_read_stdin(void *buf, int siz)
3208 {
3209 return read(fileno(stdin), buf, siz);
3210 }
3211 #endif
3212
3213 #if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
3214 int raw_write_stdout(const void *buf, int siz)
3215 {
3216 DWORD n;
3217 if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
3218 return (n);
3219 else
3220 return (-1);
3221 }
3222 #else
3223 int raw_write_stdout(const void *buf, int siz)
3224 {
3225 return write(fileno(stdout), buf, siz);
3226 }
3227 #endif