]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/x509.c
We have AES support in openssl speed
[thirdparty/openssl.git] / apps / x509.c
CommitLineData
d02b48c6 1/* apps/x509.c */
58964a49 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
a31011e8 59#include <assert.h>
d02b48c6
RE
60#include <stdio.h>
61#include <stdlib.h>
62#include <string.h>
cf1b7d96 63#ifdef OPENSSL_NO_STDIO
d02b48c6
RE
64#define APPS_WIN16
65#endif
66#include "apps.h"
ec577822
BM
67#include <openssl/bio.h>
68#include <openssl/asn1.h>
69#include <openssl/err.h>
70#include <openssl/bn.h>
71#include <openssl/evp.h>
72#include <openssl/x509.h>
73#include <openssl/x509v3.h>
74#include <openssl/objects.h>
75#include <openssl/pem.h>
d02b48c6
RE
76
77#undef PROG
78#define PROG x509_main
79
80#undef POSTFIX
81#define POSTFIX ".srl"
82#define DEF_DAYS 30
83
d02b48c6
RE
84static char *x509_usage[]={
85"usage: x509 args\n",
86" -inform arg - input format - default PEM (one of DER, NET or PEM)\n",
6720e947 87" -outform arg - output format - default PEM (one of DER, NET or PEM)\n",
d02b48c6
RE
88" -keyform arg - private key format - default PEM\n",
89" -CAform arg - CA format - default PEM\n",
90" -CAkeyform arg - CA key format - default PEM\n",
91" -in arg - input file - default stdin\n",
92" -out arg - output file - default stdout\n",
a3fe382e 93" -passin arg - private key password source\n",
d02b48c6
RE
94" -serial - print serial number value\n",
95" -hash - print hash value\n",
96" -subject - print subject DN\n",
97" -issuer - print issuer DN\n",
a91dedca 98" -email - print email address(es)\n",
d02b48c6
RE
99" -startdate - notBefore field\n",
100" -enddate - notAfter field\n",
673b102c 101" -purpose - print out certificate purposes\n",
d02b48c6
RE
102" -dates - both Before and After dates\n",
103" -modulus - print the RSA key modulus\n",
52664f50 104" -pubkey - output the public key\n",
d02b48c6 105" -fingerprint - print the certificate fingerprint\n",
ce1b4fe1 106" -alias - output certificate alias\n",
d02b48c6 107" -noout - no certificate output\n",
eb64730b 108" -ocspid - print OCSP hash values for the subject name and public key\n",
ce1b4fe1
DSH
109" -trustout - output a \"trusted\" certificate\n",
110" -clrtrust - clear all trusted purposes\n",
9868232a
DSH
111" -clrreject - clear all rejected purposes\n",
112" -addtrust arg - trust certificate for a given purpose\n",
113" -addreject arg - reject certificate for a given purpose\n",
ce1b4fe1 114" -setalias arg - set certificate alias\n",
d02b48c6 115" -days arg - How long till expiry of a signed certificate - def 30 days\n",
fd73a212
BL
116" -checkend arg - check whether the cert expires in the next arg seconds\n",
117" exit 1 if so, 0 if not\n",
d02b48c6
RE
118" -signkey arg - self sign cert with arg\n",
119" -x509toreq - output a certification request object\n",
120" -req - input is a certificate request, sign and output.\n",
121" -CA arg - set the CA certificate, must be PEM format.\n",
122" -CAkey arg - set the CA key, must be PEM format\n",
657e60fa 123" missing, it is assumed to be in the CA file.\n",
d02b48c6
RE
124" -CAcreateserial - create serial number file if it does not exist\n",
125" -CAserial - serial file\n",
acba75c5 126" -set_serial - serial number to use\n",
13e91dd3 127" -text - print the certificate in text form\n",
d02b48c6 128" -C - print out C code forms\n",
9868232a 129" -md2/-md5/-sha1/-mdc2 - digest to use\n",
3f45ed82 130" -extfile - configuration file with X509V3 extensions to add\n",
87a25f90 131" -extensions - section from config file with X509V3 extensions to add\n",
3bc90f23 132" -clrext - delete extensions before signing and input certificate\n",
a657546f 133" -nameopt arg - various certificate name options\n",
5270e702 134" -engine e - use engine e, possibly a hardware device.\n",
8ca533e3 135" -certopt arg - various certificate text options\n",
d02b48c6
RE
136NULL
137};
138
d02b48c6 139static int MS_CALLBACK callb(int ok, X509_STORE_CTX *ctx);
ae1bb4e5 140static int sign (X509 *x, EVP_PKEY *pkey,int days,int clrext, const EVP_MD *digest,
b7a26e6d 141 CONF *conf, char *section);
e778802f
BL
142static int x509_certify (X509_STORE *ctx,char *CAfile,const EVP_MD *digest,
143 X509 *x,X509 *xca,EVP_PKEY *pkey,char *serial,
b7a26e6d 144 int create,int days, int clrext, CONF *conf, char *section,
acba75c5 145 ASN1_INTEGER *sno);
d4cec6a1 146static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt);
d02b48c6
RE
147static int reqfile=0;
148
667ac4ec
RE
149int MAIN(int, char **);
150
6b691a5c 151int MAIN(int argc, char **argv)
d02b48c6 152 {
5270e702 153 ENGINE *e = NULL;
d02b48c6
RE
154 int ret=1;
155 X509_REQ *req=NULL;
156 X509 *x=NULL,*xca=NULL;
6447cce3 157 ASN1_OBJECT *objtmp;
d02b48c6 158 EVP_PKEY *Upkey=NULL,*CApkey=NULL;
acba75c5 159 ASN1_INTEGER *sno = NULL;
d02b48c6
RE
160 int i,num,badops=0;
161 BIO *out=NULL;
162 BIO *STDout=NULL;
6447cce3 163 STACK_OF(ASN1_OBJECT) *trust = NULL, *reject = NULL;
d02b48c6
RE
164 int informat,outformat,keyformat,CAformat,CAkeyformat;
165 char *infile=NULL,*outfile=NULL,*keyfile=NULL,*CAfile=NULL;
166 char *CAkeyfile=NULL,*CAserial=NULL;
6447cce3 167 char *alias=NULL;
d02b48c6 168 int text=0,serial=0,hash=0,subject=0,issuer=0,startdate=0,enddate=0;
eb64730b 169 int ocspid=0;
a91dedca 170 int noout=0,sign_flag=0,CA_flag=0,CA_createserial=0,email=0;
ae1bb4e5 171 int trustout=0,clrtrust=0,clrreject=0,aliasout=0,clrext=0;
d02b48c6 172 int C=0;
52664f50 173 int x509req=0,days=DEF_DAYS,modulus=0,pubkey=0;
673b102c 174 int pprint = 0;
d02b48c6
RE
175 char **pp;
176 X509_STORE *ctx=NULL;
177 X509_REQ *rq=NULL;
178 int fingerprint=0;
179 char buf[256];
e778802f 180 const EVP_MD *md_alg,*digest=EVP_md5();
b7a26e6d 181 CONF *extconf = NULL;
a3fe382e 182 char *extsect = NULL, *extfile = NULL, *passin = NULL, *passargin = NULL;
a31011e8 183 int need_rand = 0;
fd73a212 184 int checkend=0,checkoffset=0;
8ca533e3 185 unsigned long nmflag = 0, certflag = 0;
5270e702 186 char *engine=NULL;
d02b48c6
RE
187
188 reqfile=0;
189
190 apps_startup();
191
192 if (bio_err == NULL)
193 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
194 STDout=BIO_new_fp(stdout,BIO_NOCLOSE);
bc36ee62 195#ifdef OPENSSL_SYS_VMS
645749ef
RL
196 {
197 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
198 STDout = BIO_push(tmpbio, STDout);
199 }
200#endif
d02b48c6
RE
201
202 informat=FORMAT_PEM;
203 outformat=FORMAT_PEM;
204 keyformat=FORMAT_PEM;
205 CAformat=FORMAT_PEM;
206 CAkeyformat=FORMAT_PEM;
207
208 ctx=X509_STORE_new();
209 if (ctx == NULL) goto end;
210 X509_STORE_set_verify_cb_func(ctx,callb);
211
212 argc--;
213 argv++;
214 num=0;
215 while (argc >= 1)
216 {
217 if (strcmp(*argv,"-inform") == 0)
218 {
219 if (--argc < 1) goto bad;
220 informat=str2fmt(*(++argv));
221 }
222 else if (strcmp(*argv,"-outform") == 0)
223 {
224 if (--argc < 1) goto bad;
225 outformat=str2fmt(*(++argv));
226 }
227 else if (strcmp(*argv,"-keyform") == 0)
228 {
229 if (--argc < 1) goto bad;
230 keyformat=str2fmt(*(++argv));
231 }
232 else if (strcmp(*argv,"-req") == 0)
a31011e8 233 {
d02b48c6 234 reqfile=1;
a31011e8
BM
235 need_rand = 1;
236 }
d02b48c6
RE
237 else if (strcmp(*argv,"-CAform") == 0)
238 {
239 if (--argc < 1) goto bad;
240 CAformat=str2fmt(*(++argv));
241 }
242 else if (strcmp(*argv,"-CAkeyform") == 0)
243 {
244 if (--argc < 1) goto bad;
245 CAformat=str2fmt(*(++argv));
246 }
247 else if (strcmp(*argv,"-days") == 0)
248 {
249 if (--argc < 1) goto bad;
250 days=atoi(*(++argv));
251 if (days == 0)
252 {
dfeab068 253 BIO_printf(STDout,"bad number of days\n");
d02b48c6
RE
254 goto bad;
255 }
256 }
36217a94
DSH
257 else if (strcmp(*argv,"-passin") == 0)
258 {
259 if (--argc < 1) goto bad;
a3fe382e 260 passargin= *(++argv);
36217a94 261 }
3f45ed82 262 else if (strcmp(*argv,"-extfile") == 0)
b64f8256
DSH
263 {
264 if (--argc < 1) goto bad;
265 extfile= *(++argv);
266 }
87a25f90
DSH
267 else if (strcmp(*argv,"-extensions") == 0)
268 {
269 if (--argc < 1) goto bad;
270 extsect= *(++argv);
271 }
d02b48c6
RE
272 else if (strcmp(*argv,"-in") == 0)
273 {
274 if (--argc < 1) goto bad;
275 infile= *(++argv);
276 }
277 else if (strcmp(*argv,"-out") == 0)
278 {
279 if (--argc < 1) goto bad;
280 outfile= *(++argv);
281 }
282 else if (strcmp(*argv,"-signkey") == 0)
283 {
284 if (--argc < 1) goto bad;
285 keyfile= *(++argv);
286 sign_flag= ++num;
a31011e8 287 need_rand = 1;
d02b48c6
RE
288 }
289 else if (strcmp(*argv,"-CA") == 0)
290 {
291 if (--argc < 1) goto bad;
292 CAfile= *(++argv);
293 CA_flag= ++num;
a0ad17bb 294 need_rand = 1;
d02b48c6
RE
295 }
296 else if (strcmp(*argv,"-CAkey") == 0)
297 {
298 if (--argc < 1) goto bad;
299 CAkeyfile= *(++argv);
300 }
301 else if (strcmp(*argv,"-CAserial") == 0)
302 {
303 if (--argc < 1) goto bad;
304 CAserial= *(++argv);
305 }
acba75c5
DSH
306 else if (strcmp(*argv,"-set_serial") == 0)
307 {
308 if (--argc < 1) goto bad;
309 if (!(sno = s2i_ASN1_INTEGER(NULL, *(++argv))))
310 goto bad;
311 }
ce1b4fe1
DSH
312 else if (strcmp(*argv,"-addtrust") == 0)
313 {
314 if (--argc < 1) goto bad;
61f175f4
BM
315 if (!(objtmp = OBJ_txt2obj(*(++argv), 0)))
316 {
ce1b4fe1 317 BIO_printf(bio_err,
6447cce3 318 "Invalid trust object value %s\n", *argv);
ce1b4fe1 319 goto bad;
61f175f4
BM
320 }
321 if (!trust) trust = sk_ASN1_OBJECT_new_null();
6447cce3 322 sk_ASN1_OBJECT_push(trust, objtmp);
ce1b4fe1
DSH
323 trustout = 1;
324 }
9868232a 325 else if (strcmp(*argv,"-addreject") == 0)
ce1b4fe1
DSH
326 {
327 if (--argc < 1) goto bad;
61f175f4
BM
328 if (!(objtmp = OBJ_txt2obj(*(++argv), 0)))
329 {
ce1b4fe1 330 BIO_printf(bio_err,
6447cce3 331 "Invalid reject object value %s\n", *argv);
ce1b4fe1 332 goto bad;
61f175f4
BM
333 }
334 if (!reject) reject = sk_ASN1_OBJECT_new_null();
6447cce3 335 sk_ASN1_OBJECT_push(reject, objtmp);
ce1b4fe1
DSH
336 trustout = 1;
337 }
338 else if (strcmp(*argv,"-setalias") == 0)
339 {
340 if (--argc < 1) goto bad;
341 alias= *(++argv);
342 trustout = 1;
343 }
8ca533e3
DSH
344 else if (strcmp(*argv,"-certopt") == 0)
345 {
346 if (--argc < 1) goto bad;
347 if (!set_cert_ex(&certflag, *(++argv))) goto bad;
348 }
a657546f
DSH
349 else if (strcmp(*argv,"-nameopt") == 0)
350 {
351 if (--argc < 1) goto bad;
61f175f4 352 if (!set_name_ex(&nmflag, *(++argv))) goto bad;
a657546f 353 }
ce1b4fe1
DSH
354 else if (strcmp(*argv,"-setalias") == 0)
355 {
356 if (--argc < 1) goto bad;
357 alias= *(++argv);
358 trustout = 1;
359 }
5270e702
RL
360 else if (strcmp(*argv,"-engine") == 0)
361 {
362 if (--argc < 1) goto bad;
363 engine= *(++argv);
364 }
d02b48c6
RE
365 else if (strcmp(*argv,"-C") == 0)
366 C= ++num;
a91dedca
DSH
367 else if (strcmp(*argv,"-email") == 0)
368 email= ++num;
d02b48c6
RE
369 else if (strcmp(*argv,"-serial") == 0)
370 serial= ++num;
371 else if (strcmp(*argv,"-modulus") == 0)
372 modulus= ++num;
52664f50
DSH
373 else if (strcmp(*argv,"-pubkey") == 0)
374 pubkey= ++num;
d02b48c6
RE
375 else if (strcmp(*argv,"-x509toreq") == 0)
376 x509req= ++num;
377 else if (strcmp(*argv,"-text") == 0)
378 text= ++num;
379 else if (strcmp(*argv,"-hash") == 0)
380 hash= ++num;
381 else if (strcmp(*argv,"-subject") == 0)
382 subject= ++num;
383 else if (strcmp(*argv,"-issuer") == 0)
384 issuer= ++num;
385 else if (strcmp(*argv,"-fingerprint") == 0)
386 fingerprint= ++num;
387 else if (strcmp(*argv,"-dates") == 0)
388 {
389 startdate= ++num;
390 enddate= ++num;
391 }
673b102c
DSH
392 else if (strcmp(*argv,"-purpose") == 0)
393 pprint= ++num;
d02b48c6
RE
394 else if (strcmp(*argv,"-startdate") == 0)
395 startdate= ++num;
396 else if (strcmp(*argv,"-enddate") == 0)
397 enddate= ++num;
fd73a212
BL
398 else if (strcmp(*argv,"-checkend") == 0)
399 {
400 if (--argc < 1) goto bad;
401 checkoffset=atoi(*(++argv));
402 checkend=1;
403 }
d02b48c6
RE
404 else if (strcmp(*argv,"-noout") == 0)
405 noout= ++num;
ce1b4fe1
DSH
406 else if (strcmp(*argv,"-trustout") == 0)
407 trustout= 1;
408 else if (strcmp(*argv,"-clrtrust") == 0)
409 clrtrust= ++num;
9868232a
DSH
410 else if (strcmp(*argv,"-clrreject") == 0)
411 clrreject= ++num;
ce1b4fe1
DSH
412 else if (strcmp(*argv,"-alias") == 0)
413 aliasout= ++num;
d02b48c6
RE
414 else if (strcmp(*argv,"-CAcreateserial") == 0)
415 CA_createserial= ++num;
3bc90f23
BM
416 else if (strcmp(*argv,"-clrext") == 0)
417 clrext = 1;
418#if 1 /* stay backwards-compatible with 0.9.5; this should go away soon */
ae1bb4e5 419 else if (strcmp(*argv,"-crlext") == 0)
3bc90f23
BM
420 {
421 BIO_printf(bio_err,"use -clrext instead of -crlext\n");
ae1bb4e5 422 clrext = 1;
3bc90f23
BM
423 }
424#endif
eb64730b
RL
425 else if (strcmp(*argv,"-ocspid") == 0)
426 ocspid= ++num;
9868232a 427 else if ((md_alg=EVP_get_digestbyname(*argv + 1)))
d02b48c6
RE
428 {
429 /* ok */
430 digest=md_alg;
431 }
432 else
433 {
434 BIO_printf(bio_err,"unknown option %s\n",*argv);
435 badops=1;
436 break;
437 }
438 argc--;
439 argv++;
440 }
441
442 if (badops)
443 {
444bad:
445 for (pp=x509_usage; (*pp != NULL); pp++)
4327aae8 446 BIO_printf(bio_err,"%s",*pp);
d02b48c6
RE
447 goto end;
448 }
449
531d630b 450 e = setup_engine(bio_err, engine, 0);
5270e702 451
a31011e8
BM
452 if (need_rand)
453 app_RAND_load_file(NULL, bio_err, 0);
454
d02b48c6
RE
455 ERR_load_crypto_strings();
456
61f175f4
BM
457 if (!app_passwd(bio_err, passargin, NULL, &passin, NULL))
458 {
a3fe382e
DSH
459 BIO_printf(bio_err, "Error getting password\n");
460 goto end;
61f175f4 461 }
a3fe382e 462
d02b48c6
RE
463 if (!X509_STORE_set_default_paths(ctx))
464 {
465 ERR_print_errors(bio_err);
466 goto end;
467 }
468
469 if ((CAkeyfile == NULL) && (CA_flag) && (CAformat == FORMAT_PEM))
470 { CAkeyfile=CAfile; }
471 else if ((CA_flag) && (CAkeyfile == NULL))
472 {
473 BIO_printf(bio_err,"need to specify a CAkey if using the CA command\n");
474 goto end;
475 }
476
61f175f4
BM
477 if (extfile)
478 {
b64f8256 479 long errorline;
8b1a3a92 480 X509V3_CTX ctx2;
b7a26e6d
DSH
481 extconf = NCONF_new(NULL);
482 if (!NCONF_load(extconf, extfile,&errorline))
61f175f4 483 {
b64f8256
DSH
484 if (errorline <= 0)
485 BIO_printf(bio_err,
486 "error loading the config file '%s'\n",
487 extfile);
488 else
489 BIO_printf(bio_err,
490 "error on line %ld of config file '%s'\n"
491 ,errorline,extfile);
492 goto end;
61f175f4 493 }
2c0d1012
BM
494 if (!extsect)
495 {
b7a26e6d 496 extsect = NCONF_get_string(extconf, "default", "extensions");
2c0d1012
BM
497 if (!extsect)
498 {
499 ERR_clear_error();
500 extsect = "default";
501 }
502 }
8b1a3a92 503 X509V3_set_ctx_test(&ctx2);
b7a26e6d
DSH
504 X509V3_set_nconf(&ctx2, extconf);
505 if (!X509V3_EXT_add_nconf(extconf, &ctx2, extsect, NULL))
61f175f4 506 {
b64f8256
DSH
507 BIO_printf(bio_err,
508 "Error Loading extension section %s\n",
509 extsect);
510 ERR_print_errors(bio_err);
511 goto end;
61f175f4
BM
512 }
513 }
b64f8256
DSH
514
515
d02b48c6
RE
516 if (reqfile)
517 {
518 EVP_PKEY *pkey;
519 X509_CINF *ci;
520 BIO *in;
521
522 if (!sign_flag && !CA_flag)
523 {
524 BIO_printf(bio_err,"We need a private key to sign with\n");
525 goto end;
526 }
527 in=BIO_new(BIO_s_file());
528 if (in == NULL)
529 {
530 ERR_print_errors(bio_err);
531 goto end;
532 }
533
534 if (infile == NULL)
58964a49 535 BIO_set_fp(in,stdin,BIO_NOCLOSE|BIO_FP_TEXT);
d02b48c6
RE
536 else
537 {
538 if (BIO_read_filename(in,infile) <= 0)
539 {
540 perror(infile);
c4d0df0c 541 BIO_free(in);
d02b48c6
RE
542 goto end;
543 }
544 }
74678cc2 545 req=PEM_read_bio_X509_REQ(in,NULL,NULL,NULL);
d02b48c6
RE
546 BIO_free(in);
547
c4d0df0c
BM
548 if (req == NULL)
549 {
550 ERR_print_errors(bio_err);
551 goto end;
552 }
d02b48c6
RE
553
554 if ( (req->req_info == NULL) ||
555 (req->req_info->pubkey == NULL) ||
556 (req->req_info->pubkey->public_key == NULL) ||
557 (req->req_info->pubkey->public_key->data == NULL))
558 {
559 BIO_printf(bio_err,"The certificate request appears to corrupted\n");
560 BIO_printf(bio_err,"It does not contain a public key\n");
561 goto end;
562 }
563 if ((pkey=X509_REQ_get_pubkey(req)) == NULL)
564 {
565 BIO_printf(bio_err,"error unpacking public key\n");
566 goto end;
567 }
568 i=X509_REQ_verify(req,pkey);
cfcf6453 569 EVP_PKEY_free(pkey);
d02b48c6
RE
570 if (i < 0)
571 {
572 BIO_printf(bio_err,"Signature verification error\n");
573 ERR_print_errors(bio_err);
574 goto end;
575 }
576 if (i == 0)
577 {
578 BIO_printf(bio_err,"Signature did not match the certificate request\n");
579 goto end;
580 }
581 else
582 BIO_printf(bio_err,"Signature ok\n");
a657546f
DSH
583
584 print_name(bio_err, "subject=", X509_REQ_get_subject_name(req), nmflag);
d02b48c6
RE
585
586 if ((x=X509_new()) == NULL) goto end;
587 ci=x->cert_info;
588
acba75c5
DSH
589 if (sno)
590 {
591 if (!X509_set_serialNumber(x, sno))
592 goto end;
593 }
594 else if (!ASN1_INTEGER_set(X509_get_serialNumber(x),0)) goto end;
d02b48c6
RE
595 if (!X509_set_issuer_name(x,req->req_info->subject)) goto end;
596 if (!X509_set_subject_name(x,req->req_info->subject)) goto end;
597
598 X509_gmtime_adj(X509_get_notBefore(x),0);
599 X509_gmtime_adj(X509_get_notAfter(x),(long)60*60*24*days);
600
10061c7c
DSH
601 pkey = X509_REQ_get_pubkey(req);
602 X509_set_pubkey(x,pkey);
603 EVP_PKEY_free(pkey);
d02b48c6
RE
604 }
605 else
30b4c272 606 x=load_cert(bio_err,infile,informat,NULL,e,"Certificate");
d02b48c6
RE
607
608 if (x == NULL) goto end;
609 if (CA_flag)
610 {
30b4c272 611 xca=load_cert(bio_err,CAfile,CAformat,NULL,e,"CA Certificate");
d02b48c6
RE
612 if (xca == NULL) goto end;
613 }
614
615 if (!noout || text)
616 {
58964a49 617 OBJ_create("2.99999.3",
d02b48c6
RE
618 "SET.ex3","SET x509v3 extension 3");
619
620 out=BIO_new(BIO_s_file());
621 if (out == NULL)
622 {
623 ERR_print_errors(bio_err);
624 goto end;
625 }
626 if (outfile == NULL)
645749ef 627 {
d02b48c6 628 BIO_set_fp(out,stdout,BIO_NOCLOSE);
bc36ee62 629#ifdef OPENSSL_SYS_VMS
645749ef
RL
630 {
631 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
632 out = BIO_push(tmpbio, out);
633 }
634#endif
635 }
d02b48c6
RE
636 else
637 {
638 if (BIO_write_filename(out,outfile) <= 0)
639 {
640 perror(outfile);
641 goto end;
642 }
643 }
644 }
645
61f175f4 646 if (alias) X509_alias_set1(x, (unsigned char *)alias, -1);
ce1b4fe1 647
61f175f4
BM
648 if (clrtrust) X509_trust_clear(x);
649 if (clrreject) X509_reject_clear(x);
ce1b4fe1 650
61f175f4
BM
651 if (trust)
652 {
653 for (i = 0; i < sk_ASN1_OBJECT_num(trust); i++)
654 {
6447cce3 655 objtmp = sk_ASN1_OBJECT_value(trust, i);
c7cb16a8 656 X509_add1_trust_object(x, objtmp);
61f175f4 657 }
ce1b4fe1 658 }
ce1b4fe1 659
61f175f4
BM
660 if (reject)
661 {
662 for (i = 0; i < sk_ASN1_OBJECT_num(reject); i++)
663 {
6447cce3 664 objtmp = sk_ASN1_OBJECT_value(reject, i);
c7cb16a8 665 X509_add1_reject_object(x, objtmp);
61f175f4 666 }
ce1b4fe1 667 }
ce1b4fe1 668
d02b48c6
RE
669 if (num)
670 {
671 for (i=1; i<=num; i++)
672 {
673 if (issuer == i)
674 {
a657546f
DSH
675 print_name(STDout, "issuer= ",
676 X509_get_issuer_name(x), nmflag);
d02b48c6
RE
677 }
678 else if (subject == i)
679 {
d428bf8c 680 print_name(STDout, "subject= ",
a657546f 681 X509_get_subject_name(x), nmflag);
d02b48c6
RE
682 }
683 else if (serial == i)
684 {
dfeab068 685 BIO_printf(STDout,"serial=");
d02b48c6 686 i2a_ASN1_INTEGER(STDout,x->cert_info->serialNumber);
dfeab068 687 BIO_printf(STDout,"\n");
d02b48c6 688 }
a91dedca
DSH
689 else if (email == i)
690 {
691 int j;
692 STACK *emlst;
693 emlst = X509_get1_email(x);
61f175f4 694 for (j = 0; j < sk_num(emlst); j++)
a91dedca
DSH
695 BIO_printf(STDout, "%s\n", sk_value(emlst, j));
696 X509_email_free(emlst);
697 }
ce1b4fe1
DSH
698 else if (aliasout == i)
699 {
700 unsigned char *alstr;
6d0d5431 701 alstr = X509_alias_get0(x, NULL);
61f175f4 702 if (alstr) BIO_printf(STDout,"%s\n", alstr);
ce1b4fe1
DSH
703 else BIO_puts(STDout,"<No Alias>\n");
704 }
d02b48c6
RE
705 else if (hash == i)
706 {
dfeab068 707 BIO_printf(STDout,"%08lx\n",X509_subject_name_hash(x));
d02b48c6 708 }
673b102c
DSH
709 else if (pprint == i)
710 {
d4cec6a1
DSH
711 X509_PURPOSE *ptmp;
712 int j;
673b102c 713 BIO_printf(STDout, "Certificate purposes:\n");
61f175f4 714 for (j = 0; j < X509_PURPOSE_get_count(); j++)
d4cec6a1 715 {
6d0d5431 716 ptmp = X509_PURPOSE_get0(j);
d4cec6a1
DSH
717 purpose_print(STDout, x, ptmp);
718 }
673b102c 719 }
d02b48c6 720 else
d02b48c6
RE
721 if (modulus == i)
722 {
723 EVP_PKEY *pkey;
724
725 pkey=X509_get_pubkey(x);
726 if (pkey == NULL)
727 {
dfeab068 728 BIO_printf(bio_err,"Modulus=unavailable\n");
d02b48c6
RE
729 ERR_print_errors(bio_err);
730 goto end;
731 }
dfeab068 732 BIO_printf(STDout,"Modulus=");
cf1b7d96 733#ifndef OPENSSL_NO_RSA
d02b48c6
RE
734 if (pkey->type == EVP_PKEY_RSA)
735 BN_print(STDout,pkey->pkey.rsa->n);
736 else
7be304ac 737#endif
cf1b7d96 738#ifndef OPENSSL_NO_DSA
7be304ac
RE
739 if (pkey->type == EVP_PKEY_DSA)
740 BN_print(STDout,pkey->pkey.dsa->pub_key);
741 else
742#endif
dfeab068
RE
743 BIO_printf(STDout,"Wrong Algorithm type");
744 BIO_printf(STDout,"\n");
cfcf6453 745 EVP_PKEY_free(pkey);
d02b48c6 746 }
52664f50
DSH
747 else
748 if (pubkey == i)
749 {
750 EVP_PKEY *pkey;
751
752 pkey=X509_get_pubkey(x);
753 if (pkey == NULL)
754 {
755 BIO_printf(bio_err,"Error getting public key\n");
756 ERR_print_errors(bio_err);
757 goto end;
758 }
759 PEM_write_bio_PUBKEY(STDout, pkey);
760 EVP_PKEY_free(pkey);
761 }
d02b48c6 762 else
d02b48c6
RE
763 if (C == i)
764 {
765 unsigned char *d;
766 char *m;
767 int y,z;
768
769 X509_NAME_oneline(X509_get_subject_name(x),
770 buf,256);
dfeab068 771 BIO_printf(STDout,"/* subject:%s */\n",buf);
d02b48c6
RE
772 m=X509_NAME_oneline(
773 X509_get_issuer_name(x),buf,256);
dfeab068 774 BIO_printf(STDout,"/* issuer :%s */\n",buf);
d02b48c6
RE
775
776 z=i2d_X509(x,NULL);
26a3a48d 777 m=OPENSSL_malloc(z);
d02b48c6
RE
778
779 d=(unsigned char *)m;
780 z=i2d_X509_NAME(X509_get_subject_name(x),&d);
dfeab068 781 BIO_printf(STDout,"unsigned char XXX_subject_name[%d]={\n",z);
d02b48c6
RE
782 d=(unsigned char *)m;
783 for (y=0; y<z; y++)
784 {
dfeab068
RE
785 BIO_printf(STDout,"0x%02X,",d[y]);
786 if ((y & 0x0f) == 0x0f) BIO_printf(STDout,"\n");
d02b48c6 787 }
dfeab068
RE
788 if (y%16 != 0) BIO_printf(STDout,"\n");
789 BIO_printf(STDout,"};\n");
d02b48c6
RE
790
791 z=i2d_X509_PUBKEY(X509_get_X509_PUBKEY(x),&d);
dfeab068 792 BIO_printf(STDout,"unsigned char XXX_public_key[%d]={\n",z);
d02b48c6
RE
793 d=(unsigned char *)m;
794 for (y=0; y<z; y++)
795 {
dfeab068
RE
796 BIO_printf(STDout,"0x%02X,",d[y]);
797 if ((y & 0x0f) == 0x0f)
798 BIO_printf(STDout,"\n");
d02b48c6 799 }
dfeab068
RE
800 if (y%16 != 0) BIO_printf(STDout,"\n");
801 BIO_printf(STDout,"};\n");
d02b48c6
RE
802
803 z=i2d_X509(x,&d);
dfeab068 804 BIO_printf(STDout,"unsigned char XXX_certificate[%d]={\n",z);
d02b48c6
RE
805 d=(unsigned char *)m;
806 for (y=0; y<z; y++)
807 {
dfeab068
RE
808 BIO_printf(STDout,"0x%02X,",d[y]);
809 if ((y & 0x0f) == 0x0f)
810 BIO_printf(STDout,"\n");
d02b48c6 811 }
dfeab068
RE
812 if (y%16 != 0) BIO_printf(STDout,"\n");
813 BIO_printf(STDout,"};\n");
d02b48c6 814
26a3a48d 815 OPENSSL_free(m);
d02b48c6
RE
816 }
817 else if (text == i)
818 {
8ca533e3 819 X509_print_ex(out,x,nmflag, certflag);
d02b48c6
RE
820 }
821 else if (startdate == i)
822 {
823 BIO_puts(STDout,"notBefore=");
9b5cc156 824 ASN1_TIME_print(STDout,X509_get_notBefore(x));
d02b48c6
RE
825 BIO_puts(STDout,"\n");
826 }
827 else if (enddate == i)
828 {
829 BIO_puts(STDout,"notAfter=");
9b5cc156 830 ASN1_TIME_print(STDout,X509_get_notAfter(x));
d02b48c6
RE
831 BIO_puts(STDout,"\n");
832 }
833 else if (fingerprint == i)
834 {
835 int j;
836 unsigned int n;
837 unsigned char md[EVP_MAX_MD_SIZE];
838
9868232a 839 if (!X509_digest(x,digest,md,&n))
d02b48c6
RE
840 {
841 BIO_printf(bio_err,"out of memory\n");
842 goto end;
843 }
9868232a
DSH
844 BIO_printf(STDout,"%s Fingerprint=",
845 OBJ_nid2sn(EVP_MD_type(digest)));
d02b48c6
RE
846 for (j=0; j<(int)n; j++)
847 {
dfeab068 848 BIO_printf(STDout,"%02X%c",md[j],
d02b48c6
RE
849 (j+1 == (int)n)
850 ?'\n':':');
851 }
852 }
853
854 /* should be in the library */
855 else if ((sign_flag == i) && (x509req == 0))
856 {
857 BIO_printf(bio_err,"Getting Private key\n");
858 if (Upkey == NULL)
859 {
431b0cce 860 Upkey=load_key(bio_err,
30b4c272
RL
861 keyfile,keyformat, passin, e,
862 "Private key");
d02b48c6
RE
863 if (Upkey == NULL) goto end;
864 }
cf1b7d96 865#ifndef OPENSSL_NO_DSA
d02b48c6
RE
866 if (Upkey->type == EVP_PKEY_DSA)
867 digest=EVP_dss1();
868#endif
4d94ae00
BM
869#ifndef OPENSSL_NO_ECDSA
870 if (Upkey->type == EVP_PKEY_ECDSA)
871 digest=EVP_ecdsa();
872#endif
d02b48c6 873
a31011e8 874 assert(need_rand);
ae1bb4e5 875 if (!sign(x,Upkey,days,clrext,digest,
b64f8256 876 extconf, extsect)) goto end;
d02b48c6
RE
877 }
878 else if (CA_flag == i)
879 {
880 BIO_printf(bio_err,"Getting CA Private Key\n");
881 if (CAkeyfile != NULL)
882 {
431b0cce 883 CApkey=load_key(bio_err,
32d862ed 884 CAkeyfile,CAkeyformat, passin,
30b4c272 885 e, "CA Private Key");
d02b48c6
RE
886 if (CApkey == NULL) goto end;
887 }
cf1b7d96 888#ifndef OPENSSL_NO_DSA
d02b48c6
RE
889 if (CApkey->type == EVP_PKEY_DSA)
890 digest=EVP_dss1();
891#endif
4d94ae00
BM
892#ifndef OPENSSL_NO_ECDSA
893 if (CApkey->type == EVP_PKEY_ECDSA)
894 digest = EVP_ecdsa();
895#endif
dfeab068 896
a31011e8 897 assert(need_rand);
d02b48c6 898 if (!x509_certify(ctx,CAfile,digest,x,xca,
ae1bb4e5 899 CApkey, CAserial,CA_createserial,days, clrext,
acba75c5 900 extconf, extsect, sno))
d02b48c6
RE
901 goto end;
902 }
903 else if (x509req == i)
904 {
905 EVP_PKEY *pk;
906
907 BIO_printf(bio_err,"Getting request Private Key\n");
908 if (keyfile == NULL)
909 {
910 BIO_printf(bio_err,"no request key file specified\n");
911 goto end;
912 }
913 else
914 {
431b0cce 915 pk=load_key(bio_err,
30b4c272
RL
916 keyfile,FORMAT_PEM, passin, e,
917 "request key");
d02b48c6
RE
918 if (pk == NULL) goto end;
919 }
920
921 BIO_printf(bio_err,"Generating certificate request\n");
922
9868232a
DSH
923 if (pk->type == EVP_PKEY_DSA)
924 digest=EVP_dss1();
4d94ae00
BM
925 else if (pk->type == EVP_PKEY_ECDSA)
926 digest=EVP_ecdsa();
9868232a
DSH
927
928 rq=X509_to_X509_REQ(x,pk,digest);
d02b48c6
RE
929 EVP_PKEY_free(pk);
930 if (rq == NULL)
931 {
932 ERR_print_errors(bio_err);
933 goto end;
934 }
935 if (!noout)
936 {
937 X509_REQ_print(out,rq);
938 PEM_write_bio_X509_REQ(out,rq);
939 }
940 noout=1;
941 }
eb64730b
RL
942 else if (ocspid == i)
943 {
944 X509_ocspid_print(out, x);
945 }
d02b48c6
RE
946 }
947 }
948
61f175f4 949 if (checkend)
fd73a212 950 {
fd73a212
BL
951 time_t tnow=time(NULL);
952
61f175f4 953 if (ASN1_UTCTIME_cmp_time_t(X509_get_notAfter(x), tnow+checkoffset) == -1)
fd73a212
BL
954 {
955 BIO_printf(out,"Certificate will expire\n");
956 ret=1;
957 }
958 else
959 {
960 BIO_printf(out,"Certificate will not expire\n");
961 ret=0;
962 }
963 goto end;
964 }
965
d02b48c6
RE
966 if (noout)
967 {
968 ret=0;
969 goto end;
970 }
971
972 if (outformat == FORMAT_ASN1)
973 i=i2d_X509_bio(out,x);
61f175f4
BM
974 else if (outformat == FORMAT_PEM)
975 {
976 if (trustout) i=PEM_write_bio_X509_AUX(out,x);
ce1b4fe1 977 else i=PEM_write_bio_X509(out,x);
61f175f4
BM
978 }
979 else if (outformat == FORMAT_NETSCAPE)
d02b48c6
RE
980 {
981 ASN1_HEADER ah;
982 ASN1_OCTET_STRING os;
983
90ae4673
RL
984 os.data=(unsigned char *)NETSCAPE_CERT_HDR;
985 os.length=strlen(NETSCAPE_CERT_HDR);
d02b48c6
RE
986 ah.header= &os;
987 ah.data=(char *)x;
988 ah.meth=X509_asn1_meth();
989
990 /* no macro for this one yet */
991 i=ASN1_i2d_bio(i2d_ASN1_HEADER,out,(unsigned char *)&ah);
992 }
993 else {
994 BIO_printf(bio_err,"bad output format specified for outfile\n");
995 goto end;
996 }
61f175f4
BM
997 if (!i)
998 {
d02b48c6
RE
999 BIO_printf(bio_err,"unable to write certificate\n");
1000 ERR_print_errors(bio_err);
1001 goto end;
1002 }
1003 ret=0;
1004end:
a31011e8
BM
1005 if (need_rand)
1006 app_RAND_write_file(NULL, bio_err);
d02b48c6 1007 OBJ_cleanup();
b7a26e6d 1008 NCONF_free(extconf);
645749ef
RL
1009 BIO_free_all(out);
1010 BIO_free_all(STDout);
b64f8256
DSH
1011 X509_STORE_free(ctx);
1012 X509_REQ_free(req);
1013 X509_free(x);
1014 X509_free(xca);
1015 EVP_PKEY_free(Upkey);
1016 EVP_PKEY_free(CApkey);
1017 X509_REQ_free(rq);
acba75c5 1018 ASN1_INTEGER_free(sno);
6447cce3
DSH
1019 sk_ASN1_OBJECT_pop_free(trust, ASN1_OBJECT_free);
1020 sk_ASN1_OBJECT_pop_free(reject, ASN1_OBJECT_free);
61f175f4 1021 if (passin) OPENSSL_free(passin);
c04f8cf4 1022 apps_shutdown();
d02b48c6
RE
1023 EXIT(ret);
1024 }
1025
acba75c5 1026static ASN1_INTEGER *load_serial(char *CAfile, char *serialfile, int create)
d02b48c6 1027 {
acba75c5 1028 char *buf = NULL, *p;
d02b48c6 1029 MS_STATIC char buf2[1024];
a75d8beb 1030 ASN1_INTEGER *bs = NULL, *bs2 = NULL;
acba75c5 1031 BIO *io = NULL;
28143c66 1032 BIGNUM *serial = NULL;
a75d8beb 1033
acba75c5 1034 buf=OPENSSL_malloc( ((serialfile == NULL)
d02b48c6
RE
1035 ?(strlen(CAfile)+strlen(POSTFIX)+1)
1036 :(strlen(serialfile)))+1);
1037 if (buf == NULL) { BIO_printf(bio_err,"out of mem\n"); goto end; }
1038 if (serialfile == NULL)
1039 {
1040 strcpy(buf,CAfile);
1041 for (p=buf; *p; p++)
1042 if (*p == '.')
1043 {
1044 *p='\0';
1045 break;
1046 }
1047 strcat(buf,POSTFIX);
1048 }
1049 else
1050 strcpy(buf,serialfile);
1051 serial=BN_new();
1052 bs=ASN1_INTEGER_new();
1053 if ((serial == NULL) || (bs == NULL))
1054 {
1055 ERR_print_errors(bio_err);
1056 goto end;
1057 }
1058
1059 io=BIO_new(BIO_s_file());
1060 if (io == NULL)
1061 {
1062 ERR_print_errors(bio_err);
1063 goto end;
1064 }
1065
1066 if (BIO_read_filename(io,buf) <= 0)
1067 {
1068 if (!create)
1069 {
1070 perror(buf);
1071 goto end;
1072 }
1073 else
1074 {
8100490a
DSH
1075 ASN1_INTEGER_set(bs,1);
1076 BN_one(serial);
d02b48c6
RE
1077 }
1078 }
1079 else
1080 {
1081 if (!a2i_ASN1_INTEGER(io,bs,buf2,1024))
1082 {
1083 BIO_printf(bio_err,"unable to load serial number from %s\n",buf);
1084 ERR_print_errors(bio_err);
1085 goto end;
1086 }
1087 else
1088 {
1089 serial=BN_bin2bn(bs->data,bs->length,serial);
1090 if (serial == NULL)
1091 {
1092 BIO_printf(bio_err,"error converting bin 2 bn");
1093 goto end;
1094 }
1095 }
1096 }
1097
1098 if (!BN_add_word(serial,1))
1099 { BIO_printf(bio_err,"add_word failure\n"); goto end; }
a75d8beb
BM
1100 if (!(bs2 = BN_to_ASN1_INTEGER(serial, NULL)))
1101 { BIO_printf(bio_err,"error converting bn 2 asn1_integer\n"); goto end; }
d02b48c6
RE
1102 if (BIO_write_filename(io,buf) <= 0)
1103 {
1104 BIO_printf(bio_err,"error attempting to write serial number file\n");
1105 perror(buf);
1106 goto end;
1107 }
a75d8beb 1108 i2a_ASN1_INTEGER(io,bs2);
d02b48c6 1109 BIO_puts(io,"\n");
a75d8beb 1110
d02b48c6 1111 BIO_free(io);
a75d8beb
BM
1112 if (buf) OPENSSL_free(buf);
1113 ASN1_INTEGER_free(bs2);
1114 BN_free(serial);
d02b48c6 1115 io=NULL;
acba75c5
DSH
1116 return bs;
1117
1118 end:
a75d8beb 1119 if (buf) OPENSSL_free(buf);
acba75c5
DSH
1120 BIO_free(io);
1121 ASN1_INTEGER_free(bs);
1122 BN_free(serial);
1123 return NULL;
1124
1125 }
1126
1127static int x509_certify(X509_STORE *ctx, char *CAfile, const EVP_MD *digest,
1128 X509 *x, X509 *xca, EVP_PKEY *pkey, char *serialfile, int create,
b7a26e6d 1129 int days, int clrext, CONF *conf, char *section, ASN1_INTEGER *sno)
acba75c5
DSH
1130 {
1131 int ret=0;
1132 ASN1_INTEGER *bs=NULL;
1133 X509_STORE_CTX xsc;
1134 EVP_PKEY *upkey;
1135
1136 upkey = X509_get_pubkey(xca);
1137 EVP_PKEY_copy_parameters(upkey,pkey);
1138 EVP_PKEY_free(upkey);
1139
79aa04ef
GT
1140 if(!X509_STORE_CTX_init(&xsc,ctx,x,NULL))
1141 {
1142 BIO_printf(bio_err,"Error initialising X509 store\n");
1143 goto end;
1144 }
acba75c5
DSH
1145 if (sno) bs = sno;
1146 else if (!(bs = load_serial(CAfile, serialfile, create)))
1147 goto end;
1148
d02b48c6
RE
1149 if (!X509_STORE_add_cert(ctx,x)) goto end;
1150
1151 /* NOTE: this certificate can/should be self signed, unless it was
1152 * a certificate request in which case it is not. */
1153 X509_STORE_CTX_set_cert(&xsc,x);
1154 if (!reqfile && !X509_verify_cert(&xsc))
1155 goto end;
1156
dfeab068
RE
1157 if (!X509_check_private_key(xca,pkey))
1158 {
1159 BIO_printf(bio_err,"CA certificate and CA private key do not match\n");
1160 goto end;
1161 }
1162
d02b48c6
RE
1163 if (!X509_set_issuer_name(x,X509_get_subject_name(xca))) goto end;
1164 if (!X509_set_serialNumber(x,bs)) goto end;
1165
1166 if (X509_gmtime_adj(X509_get_notBefore(x),0L) == NULL)
1167 goto end;
1168
1169 /* hardwired expired */
1170 if (X509_gmtime_adj(X509_get_notAfter(x),(long)60*60*24*days) == NULL)
1171 goto end;
1172
61f175f4
BM
1173 if (clrext)
1174 {
1175 while (X509_get_ext_count(x) > 0) X509_delete_ext(x, 0);
1176 }
ae1bb4e5 1177
61f175f4
BM
1178 if (conf)
1179 {
8b1a3a92 1180 X509V3_CTX ctx2;
b64f8256 1181 X509_set_version(x,2); /* version 3 certificate */
8b1a3a92 1182 X509V3_set_ctx(&ctx2, xca, x, NULL, NULL, 0);
b7a26e6d
DSH
1183 X509V3_set_nconf(&ctx2, conf);
1184 if (!X509V3_EXT_add_nconf(conf, &ctx2, section, x)) goto end;
61f175f4 1185 }
b64f8256 1186
d02b48c6
RE
1187 if (!X509_sign(x,pkey,digest)) goto end;
1188 ret=1;
1189end:
1190 X509_STORE_CTX_cleanup(&xsc);
1191 if (!ret)
1192 ERR_print_errors(bio_err);
acba75c5 1193 if (!sno) ASN1_INTEGER_free(bs);
61f175f4 1194 return ret;
d02b48c6
RE
1195 }
1196
6b691a5c 1197static int MS_CALLBACK callb(int ok, X509_STORE_CTX *ctx)
d02b48c6 1198 {
d02b48c6
RE
1199 int err;
1200 X509 *err_cert;
1201
1202 /* it is ok to use a self signed certificate
1203 * This case will catch both the initial ok == 0 and the
1204 * final ok == 1 calls to this function */
1205 err=X509_STORE_CTX_get_error(ctx);
1206 if (err == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT)
61f175f4 1207 return 1;
d02b48c6
RE
1208
1209 /* BAD we should have gotten an error. Normally if everything
1210 * worked X509_STORE_CTX_get_error(ctx) will still be set to
1211 * DEPTH_ZERO_SELF_.... */
1212 if (ok)
1213 {
dfeab068 1214 BIO_printf(bio_err,"error with certificate to be certified - should be self signed\n");
61f175f4 1215 return 0;
d02b48c6
RE
1216 }
1217 else
1218 {
1219 err_cert=X509_STORE_CTX_get_current_cert(ctx);
a657546f 1220 print_name(bio_err, NULL, X509_get_subject_name(err_cert),0);
dfeab068 1221 BIO_printf(bio_err,"error with certificate - error %d at depth %d\n%s\n",
d02b48c6
RE
1222 err,X509_STORE_CTX_get_error_depth(ctx),
1223 X509_verify_cert_error_string(err));
61f175f4 1224 return 1;
d02b48c6
RE
1225 }
1226 }
1227
d02b48c6 1228/* self sign */
ae1bb4e5 1229static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext, const EVP_MD *digest,
b7a26e6d 1230 CONF *conf, char *section)
d02b48c6
RE
1231 {
1232
10061c7c
DSH
1233 EVP_PKEY *pktmp;
1234
1235 pktmp = X509_get_pubkey(x);
1236 EVP_PKEY_copy_parameters(pktmp,pkey);
1237 EVP_PKEY_save_parameters(pktmp,1);
1238 EVP_PKEY_free(pktmp);
d02b48c6
RE
1239
1240 if (!X509_set_issuer_name(x,X509_get_subject_name(x))) goto err;
1241 if (X509_gmtime_adj(X509_get_notBefore(x),0) == NULL) goto err;
1242
1243 /* Lets just make it 12:00am GMT, Jan 1 1970 */
1244 /* memcpy(x->cert_info->validity->notBefore,"700101120000Z",13); */
1245 /* 28 days to be certified */
1246
1247 if (X509_gmtime_adj(X509_get_notAfter(x),(long)60*60*24*days) == NULL)
1248 goto err;
1249
1250 if (!X509_set_pubkey(x,pkey)) goto err;
61f175f4
BM
1251 if (clrext)
1252 {
1253 while (X509_get_ext_count(x) > 0) X509_delete_ext(x, 0);
1254 }
1255 if (conf)
1256 {
b64f8256
DSH
1257 X509V3_CTX ctx;
1258 X509_set_version(x,2); /* version 3 certificate */
1259 X509V3_set_ctx(&ctx, x, x, NULL, NULL, 0);
b7a26e6d
DSH
1260 X509V3_set_nconf(&ctx, conf);
1261 if (!X509V3_EXT_add_nconf(conf, &ctx, section, x)) goto err;
61f175f4 1262 }
d02b48c6 1263 if (!X509_sign(x,pkey,digest)) goto err;
61f175f4 1264 return 1;
d02b48c6
RE
1265err:
1266 ERR_print_errors(bio_err);
61f175f4 1267 return 0;
d02b48c6 1268 }
673b102c 1269
d4cec6a1 1270static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt)
673b102c 1271{
673b102c
DSH
1272 int id, i, idret;
1273 char *pname;
673b102c 1274 id = X509_PURPOSE_get_id(pt);
c7cb16a8 1275 pname = X509_PURPOSE_get0_name(pt);
61f175f4
BM
1276 for (i = 0; i < 2; i++)
1277 {
d4cec6a1
DSH
1278 idret = X509_check_purpose(cert, id, i);
1279 BIO_printf(bio, "%s%s : ", pname, i ? " CA" : "");
61f175f4 1280 if (idret == 1) BIO_printf(bio, "Yes\n");
d4cec6a1
DSH
1281 else if (idret == 0) BIO_printf(bio, "No\n");
1282 else BIO_printf(bio, "Yes (WARNING code=%d)\n", idret);
61f175f4 1283 }
673b102c
DSH
1284 return 1;
1285}