]> git.ipfire.org Git - thirdparty/openssl.git/blob - apps/apps.c
Merge the engine branch into the main trunk. All conflicts resolved.
[thirdparty/openssl.git] / apps / apps.c
1 /* apps/apps.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <string.h>
62 #include <sys/types.h>
63 #include <sys/stat.h>
64 #define NON_MAIN
65 #include "apps.h"
66 #undef NON_MAIN
67 #include <openssl/err.h>
68 #include <openssl/x509.h>
69 #include <openssl/pem.h>
70 #include <openssl/pkcs12.h>
71 #include <openssl/safestack.h>
72
73 #ifdef WINDOWS
74 # include "bss_file.c"
75 #endif
76
77 typedef struct {
78 char *name;
79 unsigned long flag;
80 unsigned long mask;
81 } NAME_EX_TBL;
82
83 static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl);
84
85 int app_init(long mesgwin);
86 #ifdef undef /* never finished - probably never will be :-) */
87 int args_from_file(char *file, int *argc, char **argv[])
88 {
89 FILE *fp;
90 int num,i;
91 unsigned int len;
92 static char *buf=NULL;
93 static char **arg=NULL;
94 char *p;
95 struct stat stbuf;
96
97 if (stat(file,&stbuf) < 0) return(0);
98
99 fp=fopen(file,"r");
100 if (fp == NULL)
101 return(0);
102
103 *argc=0;
104 *argv=NULL;
105
106 len=(unsigned int)stbuf.st_size;
107 if (buf != NULL) OPENSSL_free(buf);
108 buf=(char *)OPENSSL_malloc(len+1);
109 if (buf == NULL) return(0);
110
111 len=fread(buf,1,len,fp);
112 if (len <= 1) return(0);
113 buf[len]='\0';
114
115 i=0;
116 for (p=buf; *p; p++)
117 if (*p == '\n') i++;
118 if (arg != NULL) OPENSSL_free(arg);
119 arg=(char **)OPENSSL_malloc(sizeof(char *)*(i*2));
120
121 *argv=arg;
122 num=0;
123 p=buf;
124 for (;;)
125 {
126 if (!*p) break;
127 if (*p == '#') /* comment line */
128 {
129 while (*p && (*p != '\n')) p++;
130 continue;
131 }
132 /* else we have a line */
133 *(arg++)=p;
134 num++;
135 while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n')))
136 p++;
137 if (!*p) break;
138 if (*p == '\n')
139 {
140 *(p++)='\0';
141 continue;
142 }
143 /* else it is a tab or space */
144 p++;
145 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
146 p++;
147 if (!*p) break;
148 if (*p == '\n')
149 {
150 p++;
151 continue;
152 }
153 *(arg++)=p++;
154 num++;
155 while (*p && (*p != '\n')) p++;
156 if (!*p) break;
157 /* else *p == '\n' */
158 *(p++)='\0';
159 }
160 *argc=num;
161 return(1);
162 }
163 #endif
164
165 int str2fmt(char *s)
166 {
167 if ((*s == 'D') || (*s == 'd'))
168 return(FORMAT_ASN1);
169 else if ((*s == 'T') || (*s == 't'))
170 return(FORMAT_TEXT);
171 else if ((*s == 'P') || (*s == 'p'))
172 return(FORMAT_PEM);
173 else if ((*s == 'N') || (*s == 'n'))
174 return(FORMAT_NETSCAPE);
175 else if ((*s == 'S') || (*s == 's'))
176 return(FORMAT_SMIME);
177 else if ((*s == '1')
178 || (strcmp(s,"PKCS12") == 0) || (strcmp(s,"pkcs12") == 0)
179 || (strcmp(s,"P12") == 0) || (strcmp(s,"p12") == 0))
180 return(FORMAT_PKCS12);
181 else if ((*s == 'E') || (*s == 'e'))
182 return(FORMAT_ENGINE);
183 else
184 return(FORMAT_UNDEF);
185 }
186
187 #if defined(MSDOS) || defined(WIN32) || defined(WIN16)
188 void program_name(char *in, char *out, int size)
189 {
190 int i,n;
191 char *p=NULL;
192
193 n=strlen(in);
194 /* find the last '/', '\' or ':' */
195 for (i=n-1; i>0; i--)
196 {
197 if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':'))
198 {
199 p= &(in[i+1]);
200 break;
201 }
202 }
203 if (p == NULL)
204 p=in;
205 n=strlen(p);
206 /* strip off trailing .exe if present. */
207 if ((n > 4) && (p[n-4] == '.') &&
208 ((p[n-3] == 'e') || (p[n-3] == 'E')) &&
209 ((p[n-2] == 'x') || (p[n-2] == 'X')) &&
210 ((p[n-1] == 'e') || (p[n-1] == 'E')))
211 n-=4;
212 if (n > size-1)
213 n=size-1;
214
215 for (i=0; i<n; i++)
216 {
217 if ((p[i] >= 'A') && (p[i] <= 'Z'))
218 out[i]=p[i]-'A'+'a';
219 else
220 out[i]=p[i];
221 }
222 out[n]='\0';
223 }
224 #else
225 #ifdef VMS
226 void program_name(char *in, char *out, int size)
227 {
228 char *p=in, *q;
229 char *chars=":]>";
230
231 while(*chars != '\0')
232 {
233 q=strrchr(p,*chars);
234 if (q > p)
235 p = q + 1;
236 chars++;
237 }
238
239 q=strrchr(p,'.');
240 if (q == NULL)
241 q = in+size;
242 strncpy(out,p,q-p);
243 out[q-p]='\0';
244 }
245 #else
246 void program_name(char *in, char *out, int size)
247 {
248 char *p;
249
250 p=strrchr(in,'/');
251 if (p != NULL)
252 p++;
253 else
254 p=in;
255 strncpy(out,p,size-1);
256 out[size-1]='\0';
257 }
258 #endif
259 #endif
260
261 #ifdef WIN32
262 int WIN32_rename(char *from, char *to)
263 {
264 #ifdef WINNT
265 int ret;
266 /* Note: MoveFileEx() doesn't work under Win95, Win98 */
267
268 ret=MoveFileEx(from,to,MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED);
269 return(ret?0:-1);
270 #else
271 unlink(to);
272 return MoveFile(from, to);
273 #endif
274 }
275 #endif
276
277 int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[])
278 {
279 int num,len,i;
280 char *p;
281
282 *argc=0;
283 *argv=NULL;
284
285 len=strlen(buf);
286 i=0;
287 if (arg->count == 0)
288 {
289 arg->count=20;
290 arg->data=(char **)OPENSSL_malloc(sizeof(char *)*arg->count);
291 }
292 for (i=0; i<arg->count; i++)
293 arg->data[i]=NULL;
294
295 num=0;
296 p=buf;
297 for (;;)
298 {
299 /* first scan over white space */
300 if (!*p) break;
301 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
302 p++;
303 if (!*p) break;
304
305 /* The start of something good :-) */
306 if (num >= arg->count)
307 {
308 arg->count+=20;
309 arg->data=(char **)OPENSSL_realloc(arg->data,
310 sizeof(char *)*arg->count);
311 if (argc == 0) return(0);
312 }
313 arg->data[num++]=p;
314
315 /* now look for the end of this */
316 if ((*p == '\'') || (*p == '\"')) /* scan for closing quote */
317 {
318 i= *(p++);
319 arg->data[num-1]++; /* jump over quote */
320 while (*p && (*p != i))
321 p++;
322 *p='\0';
323 }
324 else
325 {
326 while (*p && ((*p != ' ') &&
327 (*p != '\t') && (*p != '\n')))
328 p++;
329
330 if (*p == '\0')
331 p--;
332 else
333 *p='\0';
334 }
335 p++;
336 }
337 *argc=num;
338 *argv=arg->data;
339 return(1);
340 }
341
342 #ifndef APP_INIT
343 int app_init(long mesgwin)
344 {
345 return(1);
346 }
347 #endif
348
349
350 int dump_cert_text (BIO *out, X509 *x)
351 {
352 char buf[256];
353 X509_NAME_oneline(X509_get_subject_name(x),buf,256);
354 BIO_puts(out,"subject=");
355 BIO_puts(out,buf);
356
357 X509_NAME_oneline(X509_get_issuer_name(x),buf,256);
358 BIO_puts(out,"\nissuer= ");
359 BIO_puts(out,buf);
360 BIO_puts(out,"\n");
361 return 0;
362 }
363
364 static char *app_get_pass(BIO *err, char *arg, int keepbio);
365
366 int app_passwd(BIO *err, char *arg1, char *arg2, char **pass1, char **pass2)
367 {
368 int same;
369 if(!arg2 || !arg1 || strcmp(arg1, arg2)) same = 0;
370 else same = 1;
371 if(arg1) {
372 *pass1 = app_get_pass(err, arg1, same);
373 if(!*pass1) return 0;
374 } else if(pass1) *pass1 = NULL;
375 if(arg2) {
376 *pass2 = app_get_pass(err, arg2, same ? 2 : 0);
377 if(!*pass2) return 0;
378 } else if(pass2) *pass2 = NULL;
379 return 1;
380 }
381
382 static char *app_get_pass(BIO *err, char *arg, int keepbio)
383 {
384 char *tmp, tpass[APP_PASS_LEN];
385 static BIO *pwdbio = NULL;
386 int i;
387 if(!strncmp(arg, "pass:", 5)) return BUF_strdup(arg + 5);
388 if(!strncmp(arg, "env:", 4)) {
389 tmp = getenv(arg + 4);
390 if(!tmp) {
391 BIO_printf(err, "Can't read environment variable %s\n", arg + 4);
392 return NULL;
393 }
394 return BUF_strdup(tmp);
395 }
396 if(!keepbio || !pwdbio) {
397 if(!strncmp(arg, "file:", 5)) {
398 pwdbio = BIO_new_file(arg + 5, "r");
399 if(!pwdbio) {
400 BIO_printf(err, "Can't open file %s\n", arg + 5);
401 return NULL;
402 }
403 } else if(!strncmp(arg, "fd:", 3)) {
404 BIO *btmp;
405 i = atoi(arg + 3);
406 if(i >= 0) pwdbio = BIO_new_fd(i, BIO_NOCLOSE);
407 if((i < 0) || !pwdbio) {
408 BIO_printf(err, "Can't access file descriptor %s\n", arg + 3);
409 return NULL;
410 }
411 /* Can't do BIO_gets on an fd BIO so add a buffering BIO */
412 btmp = BIO_new(BIO_f_buffer());
413 pwdbio = BIO_push(btmp, pwdbio);
414 } else if(!strcmp(arg, "stdin")) {
415 pwdbio = BIO_new_fp(stdin, BIO_NOCLOSE);
416 if(!pwdbio) {
417 BIO_printf(err, "Can't open BIO for stdin\n");
418 return NULL;
419 }
420 } else {
421 BIO_printf(err, "Invalid password argument \"%s\"\n", arg);
422 return NULL;
423 }
424 }
425 i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
426 if(keepbio != 1) {
427 BIO_free_all(pwdbio);
428 pwdbio = NULL;
429 }
430 if(i <= 0) {
431 BIO_printf(err, "Error reading password from BIO\n");
432 return NULL;
433 }
434 tmp = strchr(tpass, '\n');
435 if(tmp) *tmp = 0;
436 return BUF_strdup(tpass);
437 }
438
439 int add_oid_section(BIO *err, LHASH *conf)
440 {
441 char *p;
442 STACK_OF(CONF_VALUE) *sktmp;
443 CONF_VALUE *cnf;
444 int i;
445 if(!(p=CONF_get_string(conf,NULL,"oid_section"))) return 1;
446 if(!(sktmp = CONF_get_section(conf, p))) {
447 BIO_printf(err, "problem loading oid section %s\n", p);
448 return 0;
449 }
450 for(i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
451 cnf = sk_CONF_VALUE_value(sktmp, i);
452 if(OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
453 BIO_printf(err, "problem creating object %s=%s\n",
454 cnf->name, cnf->value);
455 return 0;
456 }
457 }
458 return 1;
459 }
460
461 X509 *load_cert(BIO *err, char *file, int format)
462 {
463 ASN1_HEADER *ah=NULL;
464 BUF_MEM *buf=NULL;
465 X509 *x=NULL;
466 BIO *cert;
467
468 if ((cert=BIO_new(BIO_s_file())) == NULL)
469 {
470 ERR_print_errors(err);
471 goto end;
472 }
473
474 if (file == NULL)
475 BIO_set_fp(cert,stdin,BIO_NOCLOSE);
476 else
477 {
478 if (BIO_read_filename(cert,file) <= 0)
479 {
480 perror(file);
481 goto end;
482 }
483 }
484
485 if (format == FORMAT_ASN1)
486 x=d2i_X509_bio(cert,NULL);
487 else if (format == FORMAT_NETSCAPE)
488 {
489 unsigned char *p,*op;
490 int size=0,i;
491
492 /* We sort of have to do it this way because it is sort of nice
493 * to read the header first and check it, then
494 * try to read the certificate */
495 buf=BUF_MEM_new();
496 for (;;)
497 {
498 if ((buf == NULL) || (!BUF_MEM_grow(buf,size+1024*10)))
499 goto end;
500 i=BIO_read(cert,&(buf->data[size]),1024*10);
501 size+=i;
502 if (i == 0) break;
503 if (i < 0)
504 {
505 perror("reading certificate");
506 goto end;
507 }
508 }
509 p=(unsigned char *)buf->data;
510 op=p;
511
512 /* First load the header */
513 if ((ah=d2i_ASN1_HEADER(NULL,&p,(long)size)) == NULL)
514 goto end;
515 if ((ah->header == NULL) || (ah->header->data == NULL) ||
516 (strncmp(NETSCAPE_CERT_HDR,(char *)ah->header->data,
517 ah->header->length) != 0))
518 {
519 BIO_printf(err,"Error reading header on certificate\n");
520 goto end;
521 }
522 /* header is ok, so now read the object */
523 p=op;
524 ah->meth=X509_asn1_meth();
525 if ((ah=d2i_ASN1_HEADER(&ah,&p,(long)size)) == NULL)
526 goto end;
527 x=(X509 *)ah->data;
528 ah->data=NULL;
529 }
530 else if (format == FORMAT_PEM)
531 x=PEM_read_bio_X509_AUX(cert,NULL,NULL,NULL);
532 else if (format == FORMAT_PKCS12)
533 {
534 PKCS12 *p12 = d2i_PKCS12_bio(cert, NULL);
535
536 PKCS12_parse(p12, NULL, NULL, &x, NULL);
537 PKCS12_free(p12);
538 p12 = NULL;
539 }
540 else {
541 BIO_printf(err,"bad input format specified for input cert\n");
542 goto end;
543 }
544 end:
545 if (x == NULL)
546 {
547 BIO_printf(err,"unable to load certificate\n");
548 ERR_print_errors(err);
549 }
550 if (ah != NULL) ASN1_HEADER_free(ah);
551 if (cert != NULL) BIO_free(cert);
552 if (buf != NULL) BUF_MEM_free(buf);
553 return(x);
554 }
555
556 EVP_PKEY *load_key(BIO *err, char *file, int format, char *pass)
557 {
558 BIO *key=NULL;
559 EVP_PKEY *pkey=NULL;
560
561 if (file == NULL)
562 {
563 BIO_printf(err,"no keyfile specified\n");
564 goto end;
565 }
566 key=BIO_new(BIO_s_file());
567 if (key == NULL)
568 {
569 ERR_print_errors(err);
570 goto end;
571 }
572 if (BIO_read_filename(key,file) <= 0)
573 {
574 perror(file);
575 goto end;
576 }
577 if (format == FORMAT_ASN1)
578 {
579 pkey=d2i_PrivateKey_bio(key, NULL);
580 }
581 else if (format == FORMAT_PEM)
582 {
583 pkey=PEM_read_bio_PrivateKey(key,NULL,NULL,pass);
584 }
585 else if (format == FORMAT_PKCS12)
586 {
587 PKCS12 *p12 = d2i_PKCS12_bio(key, NULL);
588
589 PKCS12_parse(p12, pass, &pkey, NULL, NULL);
590 PKCS12_free(p12);
591 p12 = NULL;
592 }
593 else
594 {
595 BIO_printf(err,"bad input format specified for key\n");
596 goto end;
597 }
598 end:
599 if (key != NULL) BIO_free(key);
600 if (pkey == NULL)
601 BIO_printf(err,"unable to load Private Key\n");
602 return(pkey);
603 }
604
605 EVP_PKEY *load_pubkey(BIO *err, char *file, int format)
606 {
607 BIO *key=NULL;
608 EVP_PKEY *pkey=NULL;
609
610 if (file == NULL)
611 {
612 BIO_printf(err,"no keyfile specified\n");
613 goto end;
614 }
615 key=BIO_new(BIO_s_file());
616 if (key == NULL)
617 {
618 ERR_print_errors(err);
619 goto end;
620 }
621 if (BIO_read_filename(key,file) <= 0)
622 {
623 perror(file);
624 goto end;
625 }
626 if (format == FORMAT_ASN1)
627 {
628 pkey=d2i_PUBKEY_bio(key, NULL);
629 }
630 else if (format == FORMAT_PEM)
631 {
632 pkey=PEM_read_bio_PUBKEY(key,NULL,NULL,NULL);
633 }
634 else
635 {
636 BIO_printf(err,"bad input format specified for key\n");
637 goto end;
638 }
639 end:
640 if (key != NULL) BIO_free(key);
641 if (pkey == NULL)
642 BIO_printf(err,"unable to load Public Key\n");
643 return(pkey);
644 }
645
646 STACK_OF(X509) *load_certs(BIO *err, char *file, int format)
647 {
648 BIO *certs;
649 int i;
650 STACK_OF(X509) *othercerts = NULL;
651 STACK_OF(X509_INFO) *allcerts = NULL;
652 X509_INFO *xi;
653
654 if((certs = BIO_new(BIO_s_file())) == NULL)
655 {
656 ERR_print_errors(err);
657 goto end;
658 }
659
660 if (file == NULL)
661 BIO_set_fp(certs,stdin,BIO_NOCLOSE);
662 else
663 {
664 if (BIO_read_filename(certs,file) <= 0)
665 {
666 perror(file);
667 goto end;
668 }
669 }
670
671 if (format == FORMAT_PEM)
672 {
673 othercerts = sk_X509_new_null();
674 if(!othercerts)
675 {
676 sk_X509_free(othercerts);
677 othercerts = NULL;
678 goto end;
679 }
680 allcerts = PEM_X509_INFO_read_bio(certs, NULL, NULL, NULL);
681 for(i = 0; i < sk_X509_INFO_num(allcerts); i++)
682 {
683 xi = sk_X509_INFO_value (allcerts, i);
684 if (xi->x509)
685 {
686 sk_X509_push(othercerts, xi->x509);
687 xi->x509 = NULL;
688 }
689 }
690 goto end;
691 }
692 else {
693 BIO_printf(err,"bad input format specified for input cert\n");
694 goto end;
695 }
696 end:
697 if (othercerts == NULL)
698 {
699 BIO_printf(err,"unable to load certificates\n");
700 ERR_print_errors(err);
701 }
702 if (allcerts) sk_X509_INFO_pop_free(allcerts, X509_INFO_free);
703 if (certs != NULL) BIO_free(certs);
704 return(othercerts);
705 }
706
707
708 #define X509V3_EXT_UNKNOWN_MASK (0xfL << 16)
709 /* Return error for unknown extensions */
710 #define X509V3_EXT_DEFAULT 0
711 /* Print error for unknown extensions */
712 #define X509V3_EXT_ERROR_UNKNOWN (1L << 16)
713 /* ASN1 parse unknown extensions */
714 #define X509V3_EXT_PARSE_UNKNOWN (2L << 16)
715 /* BIO_dump unknown extensions */
716 #define X509V3_EXT_DUMP_UNKNOWN (3L << 16)
717
718 int set_cert_ex(unsigned long *flags, const char *arg)
719 {
720 static const NAME_EX_TBL cert_tbl[] = {
721 { "compatible", X509_FLAG_COMPAT, 0xffffffffl},
722 { "no_header", X509_FLAG_NO_HEADER, 0},
723 { "no_version", X509_FLAG_NO_VERSION, 0},
724 { "no_serial", X509_FLAG_NO_SERIAL, 0},
725 { "no_signame", X509_FLAG_NO_SIGNAME, 0},
726 { "no_validity", X509_FLAG_NO_VALIDITY, 0},
727 { "no_subject", X509_FLAG_NO_SUBJECT, 0},
728 { "no_pubkey", X509_FLAG_NO_PUBKEY, 0},
729 { "no_extensions", X509_FLAG_NO_EXTENSIONS, 0},
730 { "no_sigdump", X509_FLAG_NO_SIGDUMP, 0},
731 { "no_aux", X509_FLAG_NO_AUX, 0},
732 { "ext_default", X509V3_EXT_DEFAULT, X509V3_EXT_UNKNOWN_MASK},
733 { "ext_error", X509V3_EXT_ERROR_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
734 { "ext_parse", X509V3_EXT_PARSE_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
735 { "ext_dump", X509V3_EXT_DUMP_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
736 { NULL, 0, 0}
737 };
738 return set_table_opts(flags, arg, cert_tbl);
739 }
740
741 int set_name_ex(unsigned long *flags, const char *arg)
742 {
743 static const NAME_EX_TBL ex_tbl[] = {
744 { "esc_2253", ASN1_STRFLGS_ESC_2253, 0},
745 { "esc_ctrl", ASN1_STRFLGS_ESC_CTRL, 0},
746 { "esc_msb", ASN1_STRFLGS_ESC_MSB, 0},
747 { "use_quote", ASN1_STRFLGS_ESC_QUOTE, 0},
748 { "utf8", ASN1_STRFLGS_UTF8_CONVERT, 0},
749 { "ignore_type", ASN1_STRFLGS_IGNORE_TYPE, 0},
750 { "show_type", ASN1_STRFLGS_SHOW_TYPE, 0},
751 { "dump_all", ASN1_STRFLGS_DUMP_ALL, 0},
752 { "dump_nostr", ASN1_STRFLGS_DUMP_UNKNOWN, 0},
753 { "dump_der", ASN1_STRFLGS_DUMP_DER, 0},
754 { "compat", XN_FLAG_COMPAT, 0xffffffffL},
755 { "sep_comma_plus", XN_FLAG_SEP_COMMA_PLUS, XN_FLAG_SEP_MASK},
756 { "sep_comma_plus_space", XN_FLAG_SEP_CPLUS_SPC, XN_FLAG_SEP_MASK},
757 { "sep_semi_plus_space", XN_FLAG_SEP_SPLUS_SPC, XN_FLAG_SEP_MASK},
758 { "sep_multiline", XN_FLAG_SEP_MULTILINE, XN_FLAG_SEP_MASK},
759 { "dn_rev", XN_FLAG_DN_REV, 0},
760 { "nofname", XN_FLAG_FN_NONE, XN_FLAG_FN_MASK},
761 { "sname", XN_FLAG_FN_SN, XN_FLAG_FN_MASK},
762 { "lname", XN_FLAG_FN_LN, XN_FLAG_FN_MASK},
763 { "oid", XN_FLAG_FN_OID, XN_FLAG_FN_MASK},
764 { "space_eq", XN_FLAG_SPC_EQ, 0},
765 { "dump_unknown", XN_FLAG_DUMP_UNKNOWN_FIELDS, 0},
766 { "RFC2253", XN_FLAG_RFC2253, 0xffffffffL},
767 { "oneline", XN_FLAG_ONELINE, 0xffffffffL},
768 { "multiline", XN_FLAG_MULTILINE, 0xffffffffL},
769 { NULL, 0, 0}
770 };
771 return set_table_opts(flags, arg, ex_tbl);
772 }
773
774 static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl)
775 {
776 char c;
777 const NAME_EX_TBL *ptbl;
778 c = arg[0];
779
780 if(c == '-') {
781 c = 0;
782 arg++;
783 } else if (c == '+') {
784 c = 1;
785 arg++;
786 } else c = 1;
787
788 for(ptbl = in_tbl; ptbl->name; ptbl++) {
789 if(!strcmp(arg, ptbl->name)) {
790 *flags &= ~ptbl->mask;
791 if(c) *flags |= ptbl->flag;
792 else *flags &= ~ptbl->flag;
793 return 1;
794 }
795 }
796 return 0;
797 }
798
799 void print_name(BIO *out, char *title, X509_NAME *nm, unsigned long lflags)
800 {
801 char buf[256];
802 char mline = 0;
803 int indent = 0;
804 if(title) BIO_puts(out, title);
805 if((lflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
806 mline = 1;
807 indent = 4;
808 }
809 if(lflags == XN_FLAG_COMPAT) {
810 X509_NAME_oneline(nm,buf,256);
811 BIO_puts(out,buf);
812 BIO_puts(out, "\n");
813 } else {
814 if(mline) BIO_puts(out, "\n");
815 X509_NAME_print_ex(out, nm, indent, lflags);
816 BIO_puts(out, "\n");
817 }
818 }
819