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