2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
58 /* ====================================================================
59 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
87 * 6. Redistributions of any form whatsoever must retain the following
89 * "This product includes software developed by the OpenSSL Project
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
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 * ====================================================================
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).
115 #include <sys/types.h>
116 #include <sys/stat.h>
118 #include <openssl/err.h>
119 #include <openssl/x509.h>
120 #include <openssl/x509v3.h>
121 #include <openssl/pem.h>
122 #include <openssl/pkcs12.h>
123 #include <openssl/ui.h>
124 #include <openssl/safestack.h>
125 #ifndef OPENSSL_NO_ENGINE
126 #include <openssl/engine.h>
139 static UI_METHOD
*ui_method
= NULL
;
141 static int set_table_opts(unsigned long *flags
, const char *arg
, const NAME_EX_TBL
*in_tbl
);
142 static int set_multi_opts(unsigned long *flags
, const char *arg
, const NAME_EX_TBL
*in_tbl
);
144 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
145 /* Looks like this stuff is worth moving into separate function */
147 load_netscape_key(BIO
*err
, BIO
*key
, const char *file
,
148 const char *key_descrip
, int format
);
151 int app_init(long mesgwin
);
152 #ifdef undef /* never finished - probably never will be :-) */
153 int args_from_file(char *file
, int *argc
, char **argv
[])
158 static char *buf
=NULL
;
159 static char **arg
=NULL
;
163 if (stat(file
,&stbuf
) < 0) return(0);
172 len
=(unsigned int)stbuf
.st_size
;
173 if (buf
!= NULL
) OPENSSL_free(buf
);
174 buf
=(char *)OPENSSL_malloc(len
+1);
175 if (buf
== NULL
) return(0);
177 len
=fread(buf
,1,len
,fp
);
178 if (len
<= 1) return(0);
184 if (arg
!= NULL
) OPENSSL_free(arg
);
185 arg
=(char **)OPENSSL_malloc(sizeof(char *)*(i
*2));
193 if (*p
== '#') /* comment line */
195 while (*p
&& (*p
!= '\n')) p
++;
198 /* else we have a line */
201 while (*p
&& ((*p
!= ' ') && (*p
!= '\t') && (*p
!= '\n')))
209 /* else it is a tab or space */
211 while (*p
&& ((*p
== ' ') || (*p
== '\t') || (*p
== '\n')))
221 while (*p
&& (*p
!= '\n')) p
++;
223 /* else *p == '\n' */
233 if ((*s
== 'D') || (*s
== 'd'))
235 else if ((*s
== 'T') || (*s
== 't'))
237 else if ((*s
== 'P') || (*s
== 'p'))
239 else if ((*s
== 'N') || (*s
== 'n'))
240 return(FORMAT_NETSCAPE
);
241 else if ((*s
== 'S') || (*s
== 's'))
242 return(FORMAT_SMIME
);
244 || (strcmp(s
,"PKCS12") == 0) || (strcmp(s
,"pkcs12") == 0)
245 || (strcmp(s
,"P12") == 0) || (strcmp(s
,"p12") == 0))
246 return(FORMAT_PKCS12
);
247 else if ((*s
== 'E') || (*s
== 'e'))
248 return(FORMAT_ENGINE
);
250 return(FORMAT_UNDEF
);
253 #if defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN16)
254 void program_name(char *in
, char *out
, int size
)
260 /* find the last '/', '\' or ':' */
261 for (i
=n
-1; i
>0; i
--)
263 if ((in
[i
] == '/') || (in
[i
] == '\\') || (in
[i
] == ':'))
272 /* strip off trailing .exe if present. */
273 if ((n
> 4) && (p
[n
-4] == '.') &&
274 ((p
[n
-3] == 'e') || (p
[n
-3] == 'E')) &&
275 ((p
[n
-2] == 'x') || (p
[n
-2] == 'X')) &&
276 ((p
[n
-1] == 'e') || (p
[n
-1] == 'E')))
283 if ((p
[i
] >= 'A') && (p
[i
] <= 'Z'))
291 #ifdef OPENSSL_SYS_VMS
292 void program_name(char *in
, char *out
, int size
)
297 while(*chars
!= '\0')
308 strncpy(out
,p
,size
-1);
319 void program_name(char *in
, char *out
, int size
)
328 BUF_strlcpy(out
,p
,size
);
333 #ifdef OPENSSL_SYS_VMS
334 int VMS_strcasecmp(const char *str1
, const char *str2
)
336 while (*str1
&& *str2
)
338 int res
= toupper(*str1
) - toupper(*str2
);
339 if (res
) return res
< 0 ? -1 : 1;
349 int chopup_args(ARGS
*arg
, char *buf
, int *argc
, char **argv
[])
362 arg
->data
=(char **)OPENSSL_malloc(sizeof(char *)*arg
->count
);
364 for (i
=0; i
<arg
->count
; i
++)
371 /* first scan over white space */
373 while (*p
&& ((*p
== ' ') || (*p
== '\t') || (*p
== '\n')))
377 /* The start of something good :-) */
378 if (num
>= arg
->count
)
381 arg
->data
=(char **)OPENSSL_realloc(arg
->data
,
382 sizeof(char *)*arg
->count
);
383 if (argc
== 0) return(0);
387 /* now look for the end of this */
388 if ((*p
== '\'') || (*p
== '\"')) /* scan for closing quote */
391 arg
->data
[num
-1]++; /* jump over quote */
392 while (*p
&& (*p
!= i
))
398 while (*p
&& ((*p
!= ' ') &&
399 (*p
!= '\t') && (*p
!= '\n')))
415 int app_init(long mesgwin
)
422 int dump_cert_text (BIO
*out
, X509
*x
)
426 p
=X509_NAME_oneline(X509_get_subject_name(x
),NULL
,0);
427 BIO_puts(out
,"subject=");
431 p
=X509_NAME_oneline(X509_get_issuer_name(x
),NULL
,0);
432 BIO_puts(out
,"\nissuer=");
440 static int ui_open(UI
*ui
)
442 return UI_method_get_opener(UI_OpenSSL())(ui
);
444 static int ui_read(UI
*ui
, UI_STRING
*uis
)
446 if (UI_get_input_flags(uis
) & UI_INPUT_FLAG_DEFAULT_PWD
447 && UI_get0_user_data(ui
))
449 switch(UI_get_string_type(uis
))
454 const char *password
=
455 ((PW_CB_DATA
*)UI_get0_user_data(ui
))->password
;
456 if (password
&& password
[0] != '\0')
458 UI_set_result(ui
, uis
, password
);
466 return UI_method_get_reader(UI_OpenSSL())(ui
, uis
);
468 static int ui_write(UI
*ui
, UI_STRING
*uis
)
470 if (UI_get_input_flags(uis
) & UI_INPUT_FLAG_DEFAULT_PWD
471 && UI_get0_user_data(ui
))
473 switch(UI_get_string_type(uis
))
478 const char *password
=
479 ((PW_CB_DATA
*)UI_get0_user_data(ui
))->password
;
480 if (password
&& password
[0] != '\0')
487 return UI_method_get_writer(UI_OpenSSL())(ui
, uis
);
489 static int ui_close(UI
*ui
)
491 return UI_method_get_closer(UI_OpenSSL())(ui
);
493 int setup_ui_method(void)
495 ui_method
= UI_create_method("OpenSSL application user interface");
496 UI_method_set_opener(ui_method
, ui_open
);
497 UI_method_set_reader(ui_method
, ui_read
);
498 UI_method_set_writer(ui_method
, ui_write
);
499 UI_method_set_closer(ui_method
, ui_close
);
502 void destroy_ui_method(void)
506 UI_destroy_method(ui_method
);
510 int password_callback(char *buf
, int bufsiz
, int verify
,
515 const char *prompt_info
= NULL
;
516 const char *password
= NULL
;
517 PW_CB_DATA
*cb_data
= (PW_CB_DATA
*)cb_tmp
;
521 if (cb_data
->password
)
522 password
= cb_data
->password
;
523 if (cb_data
->prompt_info
)
524 prompt_info
= cb_data
->prompt_info
;
529 res
= strlen(password
);
532 memcpy(buf
, password
, res
);
536 ui
= UI_new_method(ui_method
);
544 prompt
= UI_construct_prompt(ui
, "pass phrase",
545 cb_data
->prompt_info
);
547 ui_flags
|= UI_INPUT_FLAG_DEFAULT_PWD
;
548 UI_ctrl(ui
, UI_CTRL_PRINT_ERRORS
, 1, 0, 0);
551 ok
= UI_add_input_string(ui
,prompt
,ui_flags
,buf
,
552 PW_MIN_LENGTH
,BUFSIZ
-1);
553 if (ok
>= 0 && verify
)
555 buff
= (char *)OPENSSL_malloc(bufsiz
);
556 ok
= UI_add_verify_string(ui
,prompt
,ui_flags
,buff
,
557 PW_MIN_LENGTH
,BUFSIZ
-1, buf
);
564 while (ok
< 0 && UI_ctrl(ui
, UI_CTRL_IS_REDOABLE
, 0, 0, 0));
568 OPENSSL_cleanse(buff
,(unsigned int)bufsiz
);
576 BIO_printf(bio_err
, "User interface error\n");
577 ERR_print_errors(bio_err
);
578 OPENSSL_cleanse(buf
,(unsigned int)bufsiz
);
583 BIO_printf(bio_err
,"aborted!\n");
584 OPENSSL_cleanse(buf
,(unsigned int)bufsiz
);
588 OPENSSL_free(prompt
);
593 static char *app_get_pass(BIO
*err
, char *arg
, int keepbio
);
595 int app_passwd(BIO
*err
, char *arg1
, char *arg2
, char **pass1
, char **pass2
)
598 if(!arg2
|| !arg1
|| strcmp(arg1
, arg2
)) same
= 0;
601 *pass1
= app_get_pass(err
, arg1
, same
);
602 if(!*pass1
) return 0;
603 } else if(pass1
) *pass1
= NULL
;
605 *pass2
= app_get_pass(err
, arg2
, same
? 2 : 0);
606 if(!*pass2
) return 0;
607 } else if(pass2
) *pass2
= NULL
;
611 static char *app_get_pass(BIO
*err
, char *arg
, int keepbio
)
613 char *tmp
, tpass
[APP_PASS_LEN
];
614 static BIO
*pwdbio
= NULL
;
616 if(!strncmp(arg
, "pass:", 5)) return BUF_strdup(arg
+ 5);
617 if(!strncmp(arg
, "env:", 4)) {
618 tmp
= getenv(arg
+ 4);
620 BIO_printf(err
, "Can't read environment variable %s\n", arg
+ 4);
623 return BUF_strdup(tmp
);
625 if(!keepbio
|| !pwdbio
) {
626 if(!strncmp(arg
, "file:", 5)) {
627 pwdbio
= BIO_new_file(arg
+ 5, "r");
629 BIO_printf(err
, "Can't open file %s\n", arg
+ 5);
632 } else if(!strncmp(arg
, "fd:", 3)) {
635 if(i
>= 0) pwdbio
= BIO_new_fd(i
, BIO_NOCLOSE
);
636 if((i
< 0) || !pwdbio
) {
637 BIO_printf(err
, "Can't access file descriptor %s\n", arg
+ 3);
640 /* Can't do BIO_gets on an fd BIO so add a buffering BIO */
641 btmp
= BIO_new(BIO_f_buffer());
642 pwdbio
= BIO_push(btmp
, pwdbio
);
643 } else if(!strcmp(arg
, "stdin")) {
644 pwdbio
= BIO_new_fp(stdin
, BIO_NOCLOSE
);
646 BIO_printf(err
, "Can't open BIO for stdin\n");
650 BIO_printf(err
, "Invalid password argument \"%s\"\n", arg
);
654 i
= BIO_gets(pwdbio
, tpass
, APP_PASS_LEN
);
656 BIO_free_all(pwdbio
);
660 BIO_printf(err
, "Error reading password from BIO\n");
663 tmp
= strchr(tpass
, '\n');
665 return BUF_strdup(tpass
);
668 int add_oid_section(BIO
*err
, CONF
*conf
)
671 STACK_OF(CONF_VALUE
) *sktmp
;
674 if(!(p
=NCONF_get_string(conf
,NULL
,"oid_section")))
679 if(!(sktmp
= NCONF_get_section(conf
, p
))) {
680 BIO_printf(err
, "problem loading oid section %s\n", p
);
683 for(i
= 0; i
< sk_CONF_VALUE_num(sktmp
); i
++) {
684 cnf
= sk_CONF_VALUE_value(sktmp
, i
);
685 if(OBJ_create(cnf
->value
, cnf
->name
, cnf
->name
) == NID_undef
) {
686 BIO_printf(err
, "problem creating object %s=%s\n",
687 cnf
->name
, cnf
->value
);
694 X509
*load_cert(BIO
*err
, const char *file
, int format
,
695 const char *pass
, ENGINE
*e
, const char *cert_descrip
)
697 ASN1_HEADER
*ah
=NULL
;
702 if ((cert
=BIO_new(BIO_s_file())) == NULL
)
704 ERR_print_errors(err
);
710 setvbuf(stdin
, NULL
, _IONBF
, 0);
711 BIO_set_fp(cert
,stdin
,BIO_NOCLOSE
);
715 if (BIO_read_filename(cert
,file
) <= 0)
717 BIO_printf(err
, "Error opening %s %s\n",
719 ERR_print_errors(err
);
724 if (format
== FORMAT_ASN1
)
725 x
=d2i_X509_bio(cert
,NULL
);
726 else if (format
== FORMAT_NETSCAPE
)
728 unsigned char *p
,*op
;
731 /* We sort of have to do it this way because it is sort of nice
732 * to read the header first and check it, then
733 * try to read the certificate */
737 if ((buf
== NULL
) || (!BUF_MEM_grow(buf
,size
+1024*10)))
739 i
=BIO_read(cert
,&(buf
->data
[size
]),1024*10);
744 perror("reading certificate");
748 p
=(unsigned char *)buf
->data
;
751 /* First load the header */
752 if ((ah
=d2i_ASN1_HEADER(NULL
,&p
,(long)size
)) == NULL
)
754 if ((ah
->header
== NULL
) || (ah
->header
->data
== NULL
) ||
755 (strncmp(NETSCAPE_CERT_HDR
,(char *)ah
->header
->data
,
756 ah
->header
->length
) != 0))
758 BIO_printf(err
,"Error reading header on certificate\n");
761 /* header is ok, so now read the object */
763 ah
->meth
=X509_asn1_meth();
764 if ((ah
=d2i_ASN1_HEADER(&ah
,&p
,(long)size
)) == NULL
)
769 else if (format
== FORMAT_PEM
)
770 x
=PEM_read_bio_X509_AUX(cert
,NULL
,
771 (pem_password_cb
*)password_callback
, NULL
);
772 else if (format
== FORMAT_PKCS12
)
774 PKCS12
*p12
= d2i_PKCS12_bio(cert
, NULL
);
776 PKCS12_parse(p12
, NULL
, NULL
, &x
, NULL
);
781 BIO_printf(err
,"bad input format specified for %s\n",
788 BIO_printf(err
,"unable to load certificate\n");
789 ERR_print_errors(err
);
791 if (ah
!= NULL
) ASN1_HEADER_free(ah
);
792 if (cert
!= NULL
) BIO_free(cert
);
793 if (buf
!= NULL
) BUF_MEM_free(buf
);
797 EVP_PKEY
*load_key(BIO
*err
, const char *file
, int format
, int maybe_stdin
,
798 const char *pass
, ENGINE
*e
, const char *key_descrip
)
804 cb_data
.password
= pass
;
805 cb_data
.prompt_info
= file
;
807 if (file
== NULL
&& (!maybe_stdin
|| format
== FORMAT_ENGINE
))
809 BIO_printf(err
,"no keyfile specified\n");
812 #ifndef OPENSSL_NO_ENGINE
813 if (format
== FORMAT_ENGINE
)
816 BIO_printf(bio_err
,"no engine specified\n");
818 pkey
= ENGINE_load_private_key(e
, file
,
819 ui_method
, &cb_data
);
823 key
=BIO_new(BIO_s_file());
826 ERR_print_errors(err
);
829 if (file
== NULL
&& maybe_stdin
)
831 setvbuf(stdin
, NULL
, _IONBF
, 0);
832 BIO_set_fp(key
,stdin
,BIO_NOCLOSE
);
835 if (BIO_read_filename(key
,file
) <= 0)
837 BIO_printf(err
, "Error opening %s %s\n",
839 ERR_print_errors(err
);
842 if (format
== FORMAT_ASN1
)
844 pkey
=d2i_PrivateKey_bio(key
, NULL
);
846 else if (format
== FORMAT_PEM
)
848 pkey
=PEM_read_bio_PrivateKey(key
,NULL
,
849 (pem_password_cb
*)password_callback
, &cb_data
);
851 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
852 else if (format
== FORMAT_NETSCAPE
|| format
== FORMAT_IISSGC
)
853 pkey
= load_netscape_key(err
, key
, file
, key_descrip
, format
);
855 else if (format
== FORMAT_PKCS12
)
857 PKCS12
*p12
= d2i_PKCS12_bio(key
, NULL
);
859 PKCS12_parse(p12
, pass
, &pkey
, NULL
, NULL
);
865 BIO_printf(err
,"bad input format specified for key file\n");
869 if (key
!= NULL
) BIO_free(key
);
871 BIO_printf(err
,"unable to load %s\n", key_descrip
);
875 EVP_PKEY
*load_pubkey(BIO
*err
, const char *file
, int format
, int maybe_stdin
,
876 const char *pass
, ENGINE
*e
, const char *key_descrip
)
882 cb_data
.password
= pass
;
883 cb_data
.prompt_info
= file
;
885 if (file
== NULL
&& (!maybe_stdin
|| format
== FORMAT_ENGINE
))
887 BIO_printf(err
,"no keyfile specified\n");
890 #ifndef OPENSSL_NO_ENGINE
891 if (format
== FORMAT_ENGINE
)
894 BIO_printf(bio_err
,"no engine specified\n");
896 pkey
= ENGINE_load_public_key(e
, file
,
897 ui_method
, &cb_data
);
901 key
=BIO_new(BIO_s_file());
904 ERR_print_errors(err
);
907 if (file
== NULL
&& maybe_stdin
)
909 setvbuf(stdin
, NULL
, _IONBF
, 0);
910 BIO_set_fp(key
,stdin
,BIO_NOCLOSE
);
913 if (BIO_read_filename(key
,file
) <= 0)
915 BIO_printf(err
, "Error opening %s %s\n",
917 ERR_print_errors(err
);
920 if (format
== FORMAT_ASN1
)
922 pkey
=d2i_PUBKEY_bio(key
, NULL
);
924 else if (format
== FORMAT_PEM
)
926 pkey
=PEM_read_bio_PUBKEY(key
,NULL
,
927 (pem_password_cb
*)password_callback
, &cb_data
);
929 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
930 else if (format
== FORMAT_NETSCAPE
|| format
== FORMAT_IISSGC
)
931 pkey
= load_netscape_key(err
, key
, file
, key_descrip
, format
);
935 BIO_printf(err
,"bad input format specified for key file\n");
939 if (key
!= NULL
) BIO_free(key
);
941 BIO_printf(err
,"unable to load %s\n", key_descrip
);
945 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
947 load_netscape_key(BIO
*err
, BIO
*key
, const char *file
,
948 const char *key_descrip
, int format
)
953 const unsigned char *p
;
957 pkey
= EVP_PKEY_new();
959 if (buf
== NULL
|| pkey
== NULL
)
963 if (!BUF_MEM_grow_clean(buf
,size
+1024*10))
965 i
= BIO_read(key
, &(buf
->data
[size
]), 1024*10);
971 BIO_printf(err
, "Error reading %s %s",
976 p
=(unsigned char *)buf
->data
;
977 rsa
= d2i_RSA_NET(NULL
,&p
,(long)size
,NULL
,
978 (format
== FORMAT_IISSGC
? 1 : 0));
982 EVP_PKEY_set1_RSA(pkey
, rsa
);
989 #endif /* ndef OPENSSL_NO_RC4 */
991 STACK_OF(X509
) *load_certs(BIO
*err
, const char *file
, int format
,
992 const char *pass
, ENGINE
*e
, const char *cert_descrip
)
996 STACK_OF(X509
) *othercerts
= NULL
;
997 STACK_OF(X509_INFO
) *allcerts
= NULL
;
1001 cb_data
.password
= pass
;
1002 cb_data
.prompt_info
= file
;
1004 if((certs
= BIO_new(BIO_s_file())) == NULL
)
1006 ERR_print_errors(err
);
1011 BIO_set_fp(certs
,stdin
,BIO_NOCLOSE
);
1014 if (BIO_read_filename(certs
,file
) <= 0)
1016 BIO_printf(err
, "Error opening %s %s\n",
1017 cert_descrip
, file
);
1018 ERR_print_errors(err
);
1023 if (format
== FORMAT_PEM
)
1025 othercerts
= sk_X509_new_null();
1028 sk_X509_free(othercerts
);
1032 allcerts
= PEM_X509_INFO_read_bio(certs
, NULL
,
1033 (pem_password_cb
*)password_callback
, &cb_data
);
1034 for(i
= 0; i
< sk_X509_INFO_num(allcerts
); i
++)
1036 xi
= sk_X509_INFO_value (allcerts
, i
);
1039 sk_X509_push(othercerts
, xi
->x509
);
1046 BIO_printf(err
,"bad input format specified for %s\n",
1051 if (othercerts
== NULL
)
1053 BIO_printf(err
,"unable to load certificates\n");
1054 ERR_print_errors(err
);
1056 if (allcerts
) sk_X509_INFO_pop_free(allcerts
, X509_INFO_free
);
1057 if (certs
!= NULL
) BIO_free(certs
);
1062 #define X509V3_EXT_UNKNOWN_MASK (0xfL << 16)
1063 /* Return error for unknown extensions */
1064 #define X509V3_EXT_DEFAULT 0
1065 /* Print error for unknown extensions */
1066 #define X509V3_EXT_ERROR_UNKNOWN (1L << 16)
1067 /* ASN1 parse unknown extensions */
1068 #define X509V3_EXT_PARSE_UNKNOWN (2L << 16)
1069 /* BIO_dump unknown extensions */
1070 #define X509V3_EXT_DUMP_UNKNOWN (3L << 16)
1072 #define X509_FLAG_CA (X509_FLAG_NO_ISSUER | X509_FLAG_NO_PUBKEY | \
1073 X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION)
1075 int set_cert_ex(unsigned long *flags
, const char *arg
)
1077 static const NAME_EX_TBL cert_tbl
[] = {
1078 { "compatible", X509_FLAG_COMPAT
, 0xffffffffl
},
1079 { "ca_default", X509_FLAG_CA
, 0xffffffffl
},
1080 { "no_header", X509_FLAG_NO_HEADER
, 0},
1081 { "no_version", X509_FLAG_NO_VERSION
, 0},
1082 { "no_serial", X509_FLAG_NO_SERIAL
, 0},
1083 { "no_signame", X509_FLAG_NO_SIGNAME
, 0},
1084 { "no_validity", X509_FLAG_NO_VALIDITY
, 0},
1085 { "no_subject", X509_FLAG_NO_SUBJECT
, 0},
1086 { "no_issuer", X509_FLAG_NO_ISSUER
, 0},
1087 { "no_pubkey", X509_FLAG_NO_PUBKEY
, 0},
1088 { "no_extensions", X509_FLAG_NO_EXTENSIONS
, 0},
1089 { "no_sigdump", X509_FLAG_NO_SIGDUMP
, 0},
1090 { "no_aux", X509_FLAG_NO_AUX
, 0},
1091 { "no_attributes", X509_FLAG_NO_ATTRIBUTES
, 0},
1092 { "ext_default", X509V3_EXT_DEFAULT
, X509V3_EXT_UNKNOWN_MASK
},
1093 { "ext_error", X509V3_EXT_ERROR_UNKNOWN
, X509V3_EXT_UNKNOWN_MASK
},
1094 { "ext_parse", X509V3_EXT_PARSE_UNKNOWN
, X509V3_EXT_UNKNOWN_MASK
},
1095 { "ext_dump", X509V3_EXT_DUMP_UNKNOWN
, X509V3_EXT_UNKNOWN_MASK
},
1098 return set_multi_opts(flags
, arg
, cert_tbl
);
1101 int set_name_ex(unsigned long *flags
, const char *arg
)
1103 static const NAME_EX_TBL ex_tbl
[] = {
1104 { "esc_2253", ASN1_STRFLGS_ESC_2253
, 0},
1105 { "esc_ctrl", ASN1_STRFLGS_ESC_CTRL
, 0},
1106 { "esc_msb", ASN1_STRFLGS_ESC_MSB
, 0},
1107 { "use_quote", ASN1_STRFLGS_ESC_QUOTE
, 0},
1108 { "utf8", ASN1_STRFLGS_UTF8_CONVERT
, 0},
1109 { "ignore_type", ASN1_STRFLGS_IGNORE_TYPE
, 0},
1110 { "show_type", ASN1_STRFLGS_SHOW_TYPE
, 0},
1111 { "dump_all", ASN1_STRFLGS_DUMP_ALL
, 0},
1112 { "dump_nostr", ASN1_STRFLGS_DUMP_UNKNOWN
, 0},
1113 { "dump_der", ASN1_STRFLGS_DUMP_DER
, 0},
1114 { "compat", XN_FLAG_COMPAT
, 0xffffffffL
},
1115 { "sep_comma_plus", XN_FLAG_SEP_COMMA_PLUS
, XN_FLAG_SEP_MASK
},
1116 { "sep_comma_plus_space", XN_FLAG_SEP_CPLUS_SPC
, XN_FLAG_SEP_MASK
},
1117 { "sep_semi_plus_space", XN_FLAG_SEP_SPLUS_SPC
, XN_FLAG_SEP_MASK
},
1118 { "sep_multiline", XN_FLAG_SEP_MULTILINE
, XN_FLAG_SEP_MASK
},
1119 { "dn_rev", XN_FLAG_DN_REV
, 0},
1120 { "nofname", XN_FLAG_FN_NONE
, XN_FLAG_FN_MASK
},
1121 { "sname", XN_FLAG_FN_SN
, XN_FLAG_FN_MASK
},
1122 { "lname", XN_FLAG_FN_LN
, XN_FLAG_FN_MASK
},
1123 { "align", XN_FLAG_FN_ALIGN
, 0},
1124 { "oid", XN_FLAG_FN_OID
, XN_FLAG_FN_MASK
},
1125 { "space_eq", XN_FLAG_SPC_EQ
, 0},
1126 { "dump_unknown", XN_FLAG_DUMP_UNKNOWN_FIELDS
, 0},
1127 { "RFC2253", XN_FLAG_RFC2253
, 0xffffffffL
},
1128 { "oneline", XN_FLAG_ONELINE
, 0xffffffffL
},
1129 { "multiline", XN_FLAG_MULTILINE
, 0xffffffffL
},
1130 { "ca_default", XN_FLAG_MULTILINE
, 0xffffffffL
},
1133 return set_multi_opts(flags
, arg
, ex_tbl
);
1136 int set_ext_copy(int *copy_type
, const char *arg
)
1138 if (!strcasecmp(arg
, "none"))
1139 *copy_type
= EXT_COPY_NONE
;
1140 else if (!strcasecmp(arg
, "copy"))
1141 *copy_type
= EXT_COPY_ADD
;
1142 else if (!strcasecmp(arg
, "copyall"))
1143 *copy_type
= EXT_COPY_ALL
;
1149 int copy_extensions(X509
*x
, X509_REQ
*req
, int copy_type
)
1151 STACK_OF(X509_EXTENSION
) *exts
= NULL
;
1152 X509_EXTENSION
*ext
, *tmpext
;
1154 int i
, idx
, ret
= 0;
1155 if (!x
|| !req
|| (copy_type
== EXT_COPY_NONE
))
1157 exts
= X509_REQ_get_extensions(req
);
1159 for(i
= 0; i
< sk_X509_EXTENSION_num(exts
); i
++) {
1160 ext
= sk_X509_EXTENSION_value(exts
, i
);
1161 obj
= X509_EXTENSION_get_object(ext
);
1162 idx
= X509_get_ext_by_OBJ(x
, obj
, -1);
1163 /* Does extension exist? */
1165 /* If normal copy don't override existing extension */
1166 if (copy_type
== EXT_COPY_ADD
)
1168 /* Delete all extensions of same type */
1170 tmpext
= X509_get_ext(x
, idx
);
1171 X509_delete_ext(x
, idx
);
1172 X509_EXTENSION_free(tmpext
);
1173 idx
= X509_get_ext_by_OBJ(x
, obj
, -1);
1174 } while (idx
!= -1);
1176 if (!X509_add_ext(x
, ext
, -1))
1184 sk_X509_EXTENSION_pop_free(exts
, X509_EXTENSION_free
);
1192 static int set_multi_opts(unsigned long *flags
, const char *arg
, const NAME_EX_TBL
*in_tbl
)
1194 STACK_OF(CONF_VALUE
) *vals
;
1198 vals
= X509V3_parse_list(arg
);
1199 for (i
= 0; i
< sk_CONF_VALUE_num(vals
); i
++) {
1200 val
= sk_CONF_VALUE_value(vals
, i
);
1201 if (!set_table_opts(flags
, val
->name
, in_tbl
))
1204 sk_CONF_VALUE_pop_free(vals
, X509V3_conf_free
);
1208 static int set_table_opts(unsigned long *flags
, const char *arg
, const NAME_EX_TBL
*in_tbl
)
1211 const NAME_EX_TBL
*ptbl
;
1217 } else if (c
== '+') {
1222 for(ptbl
= in_tbl
; ptbl
->name
; ptbl
++) {
1223 if(!strcasecmp(arg
, ptbl
->name
)) {
1224 *flags
&= ~ptbl
->mask
;
1225 if(c
) *flags
|= ptbl
->flag
;
1226 else *flags
&= ~ptbl
->flag
;
1233 void print_name(BIO
*out
, char *title
, X509_NAME
*nm
, unsigned long lflags
)
1239 if(title
) BIO_puts(out
, title
);
1240 if((lflags
& XN_FLAG_SEP_MASK
) == XN_FLAG_SEP_MULTILINE
) {
1244 if(lflags
== XN_FLAG_COMPAT
) {
1245 buf
= X509_NAME_oneline(nm
, 0, 0);
1247 BIO_puts(out
, "\n");
1250 if(mline
) BIO_puts(out
, "\n");
1251 X509_NAME_print_ex(out
, nm
, indent
, lflags
);
1252 BIO_puts(out
, "\n");
1256 X509_STORE
*setup_verify(BIO
*bp
, char *CAfile
, char *CApath
)
1259 X509_LOOKUP
*lookup
;
1260 if(!(store
= X509_STORE_new())) goto end
;
1261 lookup
=X509_STORE_add_lookup(store
,X509_LOOKUP_file());
1262 if (lookup
== NULL
) goto end
;
1264 if(!X509_LOOKUP_load_file(lookup
,CAfile
,X509_FILETYPE_PEM
)) {
1265 BIO_printf(bp
, "Error loading file %s\n", CAfile
);
1268 } else X509_LOOKUP_load_file(lookup
,NULL
,X509_FILETYPE_DEFAULT
);
1270 lookup
=X509_STORE_add_lookup(store
,X509_LOOKUP_hash_dir());
1271 if (lookup
== NULL
) goto end
;
1273 if(!X509_LOOKUP_add_dir(lookup
,CApath
,X509_FILETYPE_PEM
)) {
1274 BIO_printf(bp
, "Error loading directory %s\n", CApath
);
1277 } else X509_LOOKUP_add_dir(lookup
,NULL
,X509_FILETYPE_DEFAULT
);
1282 X509_STORE_free(store
);
1286 #ifndef OPENSSL_NO_ENGINE
1287 /* Try to load an engine in a shareable library */
1288 static ENGINE
*try_load_engine(BIO
*err
, const char *engine
, int debug
)
1290 ENGINE
*e
= ENGINE_by_id("dynamic");
1293 if (!ENGINE_ctrl_cmd_string(e
, "SO_PATH", engine
, 0)
1294 || !ENGINE_ctrl_cmd_string(e
, "LOAD", NULL
, 0))
1303 ENGINE
*setup_engine(BIO
*err
, const char *engine
, int debug
)
1309 if(strcmp(engine
, "auto") == 0)
1311 BIO_printf(err
,"enabling auto ENGINE support\n");
1312 ENGINE_register_all_complete();
1315 if((e
= ENGINE_by_id(engine
)) == NULL
1316 && (e
= try_load_engine(err
, engine
, debug
)) == NULL
)
1318 BIO_printf(err
,"invalid engine \"%s\"\n", engine
);
1319 ERR_print_errors(err
);
1324 ENGINE_ctrl(e
, ENGINE_CTRL_SET_LOGSTREAM
,
1327 ENGINE_ctrl_cmd(e
, "SET_USER_INTERFACE", 0, ui_method
, 0, 1);
1328 if(!ENGINE_set_default(e
, ENGINE_METHOD_ALL
))
1330 BIO_printf(err
,"can't use that engine\n");
1331 ERR_print_errors(err
);
1336 BIO_printf(err
,"engine \"%s\" set.\n", ENGINE_get_id(e
));
1338 /* Free our "structural" reference. */
1345 int load_config(BIO
*err
, CONF
*cnf
)
1352 OPENSSL_load_builtin_modules();
1354 if (CONF_modules_load(cnf
, NULL
, 0) <= 0)
1356 BIO_printf(err
, "Error configuring OpenSSL\n");
1357 ERR_print_errors(err
);
1363 char *make_config_name()
1365 const char *t
=X509_get_default_cert_area();
1369 len
=strlen(t
)+strlen(OPENSSL_CONF
)+2;
1370 p
=OPENSSL_malloc(len
);
1371 BUF_strlcpy(p
,t
,len
);
1372 #ifndef OPENSSL_SYS_VMS
1373 BUF_strlcat(p
,"/",len
);
1375 BUF_strlcat(p
,OPENSSL_CONF
,len
);
1380 static unsigned long index_serial_hash(const char **a
)
1385 while (*n
== '0') n
++;
1386 return(lh_strhash(n
));
1389 static int index_serial_cmp(const char **a
, const char **b
)
1393 for (aa
=a
[DB_serial
]; *aa
== '0'; aa
++);
1394 for (bb
=b
[DB_serial
]; *bb
== '0'; bb
++);
1395 return(strcmp(aa
,bb
));
1398 static int index_name_qual(char **a
)
1399 { return(a
[0][0] == 'V'); }
1401 static unsigned long index_name_hash(const char **a
)
1402 { return(lh_strhash(a
[DB_name
])); }
1404 int index_name_cmp(const char **a
, const char **b
)
1405 { return(strcmp(a
[DB_name
],
1408 static IMPLEMENT_LHASH_HASH_FN(index_serial_hash
,const char **)
1409 static IMPLEMENT_LHASH_COMP_FN(index_serial_cmp
,const char **)
1410 static IMPLEMENT_LHASH_HASH_FN(index_name_hash
,const char **)
1411 static IMPLEMENT_LHASH_COMP_FN(index_name_cmp
,const char **)
1416 BIGNUM
*load_serial(char *serialfile
, int create
, ASN1_INTEGER
**retai
)
1420 MS_STATIC
char buf
[1024];
1421 ASN1_INTEGER
*ai
=NULL
;
1423 ai
=ASN1_INTEGER_new();
1424 if (ai
== NULL
) goto err
;
1426 if ((in
=BIO_new(BIO_s_file())) == NULL
)
1428 ERR_print_errors(bio_err
);
1432 if (BIO_read_filename(in
,serialfile
) <= 0)
1442 if (ret
== NULL
|| !rand_serial(ret
, ai
))
1443 BIO_printf(bio_err
, "Out of memory\n");
1448 if (!a2i_ASN1_INTEGER(in
,ai
,buf
,1024))
1450 BIO_printf(bio_err
,"unable to load number from %s\n",
1454 ret
=ASN1_INTEGER_to_BN(ai
,NULL
);
1457 BIO_printf(bio_err
,"error converting number from bin to BIGNUM\n");
1468 if (in
!= NULL
) BIO_free(in
);
1469 if (ai
!= NULL
) ASN1_INTEGER_free(ai
);
1473 int save_serial(char *serialfile
, char *suffix
, BIGNUM
*serial
, ASN1_INTEGER
**retai
)
1478 ASN1_INTEGER
*ai
=NULL
;
1482 j
= strlen(serialfile
);
1484 j
= strlen(serialfile
) + strlen(suffix
) + 1;
1487 BIO_printf(bio_err
,"file name too long\n");
1492 BUF_strlcpy(buf
[0], serialfile
, BSIZE
);
1495 #ifndef OPENSSL_SYS_VMS
1496 j
= BIO_snprintf(buf
[0], sizeof buf
[0], "%s.%s", serialfile
, suffix
);
1498 j
= BIO_snprintf(buf
[0], sizeof buf
[0], "%s-%s", serialfile
, suffix
);
1502 BIO_printf(bio_err
, "DEBUG: writing \"%s\"\n", buf
[0]);
1504 out
=BIO_new(BIO_s_file());
1507 ERR_print_errors(bio_err
);
1510 if (BIO_write_filename(out
,buf
[0]) <= 0)
1516 if ((ai
=BN_to_ASN1_INTEGER(serial
,NULL
)) == NULL
)
1518 BIO_printf(bio_err
,"error converting serial to ASN.1 format\n");
1521 i2a_ASN1_INTEGER(out
,ai
);
1530 if (out
!= NULL
) BIO_free_all(out
);
1531 if (ai
!= NULL
) ASN1_INTEGER_free(ai
);
1535 int rotate_serial(char *serialfile
, char *new_suffix
, char *old_suffix
)
1541 i
= strlen(serialfile
) + strlen(old_suffix
);
1542 j
= strlen(serialfile
) + strlen(new_suffix
);
1546 BIO_printf(bio_err
,"file name too long\n");
1550 #ifndef OPENSSL_SYS_VMS
1551 j
= BIO_snprintf(buf
[0], sizeof buf
[0], "%s.%s",
1552 serialfile
, new_suffix
);
1554 j
= BIO_snprintf(buf
[0], sizeof buf
[0], "%s-%s",
1555 serialfile
, new_suffix
);
1557 #ifndef OPENSSL_SYS_VMS
1558 j
= BIO_snprintf(buf
[1], sizeof buf
[1], "%s.%s",
1559 serialfile
, old_suffix
);
1561 j
= BIO_snprintf(buf
[1], sizeof buf
[1], "%s-%s",
1562 serialfile
, old_suffix
);
1564 if (stat(serialfile
,&sb
) < 0)
1568 && errno
!= ENOTDIR
)
1575 BIO_printf(bio_err
, "DEBUG: renaming \"%s\" to \"%s\"\n",
1576 serialfile
, buf
[1]);
1578 if (rename(serialfile
,buf
[1]) < 0)
1581 "unable to rename %s to %s\n",
1582 serialfile
, buf
[1]);
1588 BIO_printf(bio_err
, "DEBUG: renaming \"%s\" to \"%s\"\n",
1591 if (rename(buf
[0],serialfile
) < 0)
1594 "unable to rename %s to %s\n",
1597 rename(buf
[1],serialfile
);
1605 int rand_serial(BIGNUM
*b
, ASN1_INTEGER
*ai
)
1617 if (!BN_pseudo_rand(btmp
, SERIAL_RAND_BITS
, 0, 0))
1619 if (ai
&& !BN_to_ASN1_INTEGER(btmp
, ai
))
1632 CA_DB
*load_index(char *dbfile
, DB_ATTR
*db_attr
)
1634 CA_DB
*retdb
= NULL
;
1635 TXT_DB
*tmpdb
= NULL
;
1636 BIO
*in
= BIO_new(BIO_s_file());
1637 CONF
*dbattr_conf
= NULL
;
1643 ERR_print_errors(bio_err
);
1646 if (BIO_read_filename(in
,dbfile
) <= 0)
1649 BIO_printf(bio_err
,"unable to open '%s'\n",dbfile
);
1652 if ((tmpdb
= TXT_DB_read(in
,DB_NUMBER
)) == NULL
)
1654 if (tmpdb
!= NULL
) TXT_DB_free(tmpdb
);
1658 #ifndef OPENSSL_SYS_VMS
1659 BIO_snprintf(buf
[0], sizeof buf
[0], "%s.attr", dbfile
);
1661 BIO_snprintf(buf
[0], sizeof buf
[0], "%s-attr", dbfile
);
1663 dbattr_conf
= NCONF_new(NULL
);
1664 if (NCONF_load(dbattr_conf
,buf
[0],&errorline
) <= 0)
1669 "error on line %ld of db attribute file '%s'\n"
1675 NCONF_free(dbattr_conf
);
1680 if ((retdb
= OPENSSL_malloc(sizeof(CA_DB
))) == NULL
)
1682 fprintf(stderr
, "Out of memory\n");
1689 retdb
->attributes
= *db_attr
;
1692 retdb
->attributes
.unique_subject
= 1;
1697 char *p
= NCONF_get_string(dbattr_conf
,NULL
,"unique_subject");
1700 BIO_printf(bio_err
, "DEBUG[load_index]: unique_subject = \"%s\"\n", p
);
1703 case 'f': /* false */
1704 case 'F': /* FALSE */
1707 retdb
->attributes
.unique_subject
= 0;
1709 case 't': /* true */
1710 case 'T': /* TRUE */
1714 retdb
->attributes
.unique_subject
= 1;
1721 if (dbattr_conf
) NCONF_free(dbattr_conf
);
1722 if (tmpdb
) TXT_DB_free(tmpdb
);
1723 if (in
) BIO_free_all(in
);
1727 int index_index(CA_DB
*db
)
1729 if (!TXT_DB_create_index(db
->db
, DB_serial
, NULL
,
1730 LHASH_HASH_FN(index_serial_hash
),
1731 LHASH_COMP_FN(index_serial_cmp
)))
1734 "error creating serial number index:(%ld,%ld,%ld)\n",
1735 db
->db
->error
,db
->db
->arg1
,db
->db
->arg2
);
1739 if (db
->attributes
.unique_subject
1740 && !TXT_DB_create_index(db
->db
, DB_name
, index_name_qual
,
1741 LHASH_HASH_FN(index_name_hash
),
1742 LHASH_COMP_FN(index_name_cmp
)))
1744 BIO_printf(bio_err
,"error creating name index:(%ld,%ld,%ld)\n",
1745 db
->db
->error
,db
->db
->arg1
,db
->db
->arg2
);
1751 int save_index(char *dbfile
, char *suffix
, CA_DB
*db
)
1754 BIO
*out
= BIO_new(BIO_s_file());
1759 ERR_print_errors(bio_err
);
1763 j
= strlen(dbfile
) + strlen(suffix
);
1766 BIO_printf(bio_err
,"file name too long\n");
1770 #ifndef OPENSSL_SYS_VMS
1771 j
= BIO_snprintf(buf
[2], sizeof buf
[2], "%s.attr", dbfile
);
1773 j
= BIO_snprintf(buf
[2], sizeof buf
[2], "%s-attr", dbfile
);
1775 #ifndef OPENSSL_SYS_VMS
1776 j
= BIO_snprintf(buf
[1], sizeof buf
[1], "%s.attr.%s", dbfile
, suffix
);
1778 j
= BIO_snprintf(buf
[1], sizeof buf
[1], "%s-attr-%s", dbfile
, suffix
);
1780 #ifndef OPENSSL_SYS_VMS
1781 j
= BIO_snprintf(buf
[0], sizeof buf
[0], "%s.%s", dbfile
, suffix
);
1783 j
= BIO_snprintf(buf
[0], sizeof buf
[0], "%s-%s", dbfile
, suffix
);
1786 BIO_printf(bio_err
, "DEBUG: writing \"%s\"\n", buf
[0]);
1788 if (BIO_write_filename(out
,buf
[0]) <= 0)
1791 BIO_printf(bio_err
,"unable to open '%s'\n", dbfile
);
1794 j
=TXT_DB_write(out
,db
->db
);
1795 if (j
<= 0) goto err
;
1799 out
= BIO_new(BIO_s_file());
1801 BIO_printf(bio_err
, "DEBUG: writing \"%s\"\n", buf
[1]);
1803 if (BIO_write_filename(out
,buf
[1]) <= 0)
1806 BIO_printf(bio_err
,"unable to open '%s'\n", buf
[2]);
1809 BIO_printf(out
,"unique_subject = %s\n",
1810 db
->attributes
.unique_subject
? "yes" : "no");
1818 int rotate_index(char *dbfile
, char *new_suffix
, char *old_suffix
)
1824 i
= strlen(dbfile
) + strlen(old_suffix
);
1825 j
= strlen(dbfile
) + strlen(new_suffix
);
1829 BIO_printf(bio_err
,"file name too long\n");
1833 #ifndef OPENSSL_SYS_VMS
1834 j
= BIO_snprintf(buf
[4], sizeof buf
[4], "%s.attr", dbfile
);
1836 j
= BIO_snprintf(buf
[4], sizeof buf
[4], "%s-attr", dbfile
);
1838 #ifndef OPENSSL_SYS_VMS
1839 j
= BIO_snprintf(buf
[2], sizeof buf
[2], "%s.attr.%s",
1840 dbfile
, new_suffix
);
1842 j
= BIO_snprintf(buf
[2], sizeof buf
[2], "%s-attr-%s",
1843 dbfile
, new_suffix
);
1845 #ifndef OPENSSL_SYS_VMS
1846 j
= BIO_snprintf(buf
[0], sizeof buf
[0], "%s.%s",
1847 dbfile
, new_suffix
);
1849 j
= BIO_snprintf(buf
[0], sizeof buf
[0], "%s-%s",
1850 dbfile
, new_suffix
);
1852 #ifndef OPENSSL_SYS_VMS
1853 j
= BIO_snprintf(buf
[1], sizeof buf
[1], "%s.%s",
1854 dbfile
, old_suffix
);
1856 j
= BIO_snprintf(buf
[1], sizeof buf
[1], "%s-%s",
1857 dbfile
, old_suffix
);
1859 #ifndef OPENSSL_SYS_VMS
1860 j
= BIO_snprintf(buf
[3], sizeof buf
[3], "%s.attr.%s",
1861 dbfile
, old_suffix
);
1863 j
= BIO_snprintf(buf
[3], sizeof buf
[3], "%s-attr-%s",
1864 dbfile
, old_suffix
);
1866 if (stat(dbfile
,&sb
) < 0)
1870 && errno
!= ENOTDIR
)
1877 BIO_printf(bio_err
, "DEBUG: renaming \"%s\" to \"%s\"\n",
1880 if (rename(dbfile
,buf
[1]) < 0)
1883 "unable to rename %s to %s\n",
1890 BIO_printf(bio_err
, "DEBUG: renaming \"%s\" to \"%s\"\n",
1893 if (rename(buf
[0],dbfile
) < 0)
1896 "unable to rename %s to %s\n",
1899 rename(buf
[1],dbfile
);
1902 if (stat(buf
[4],&sb
) < 0)
1906 && errno
!= ENOTDIR
)
1913 BIO_printf(bio_err
, "DEBUG: renaming \"%s\" to \"%s\"\n",
1916 if (rename(buf
[4],buf
[3]) < 0)
1919 "unable to rename %s to %s\n",
1922 rename(dbfile
,buf
[0]);
1923 rename(buf
[1],dbfile
);
1928 BIO_printf(bio_err
, "DEBUG: renaming \"%s\" to \"%s\"\n",
1931 if (rename(buf
[2],buf
[4]) < 0)
1934 "unable to rename %s to %s\n",
1937 rename(buf
[3],buf
[4]);
1938 rename(dbfile
,buf
[0]);
1939 rename(buf
[1],dbfile
);
1947 void free_index(CA_DB
*db
)
1951 if (db
->db
) TXT_DB_free(db
->db
);
1956 /* This code MUST COME AFTER anything that uses rename() */
1957 #ifdef OPENSSL_SYS_WIN32
1958 int WIN32_rename(char *from
, char *to
)
1960 #ifndef OPENSSL_SYS_WINCE
1961 /* Windows rename gives an error if 'to' exists, so delete it
1962 * first and ignore file not found errror
1964 if((remove(to
) != 0) && (errno
!= ENOENT
))
1967 return rename(from
, to
);
1969 /* convert strings to UNICODE */
1971 BOOL result
= FALSE
;
1975 wfrom
= malloc((strlen(from
)+1)*2);
1976 wto
= malloc((strlen(to
)+1)*2);
1977 if (wfrom
!= NULL
&& wto
!= NULL
)
1979 for (i
=0; i
<(int)strlen(from
)+1; i
++)
1980 wfrom
[i
] = (short)from
[i
];
1981 for (i
=0; i
<(int)strlen(to
)+1; i
++)
1982 wto
[i
] = (short)to
[i
];
1983 result
= MoveFile(wfrom
, wto
);