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