Make "make variables" config attributes for overridable flags
With the support of "make variables" comes the possibility for the
user to override them. However, we need to make a difference between
defaults that we use (and that should be overridable by the user) and
flags that are crucial for building OpenSSL (should not be
overridable).
Typically, overridable flags are those setting optimization levels,
warnings levels, that kind of thing, while non-overridable flags are,
for example, macros that indicate aspects of how the config target
should be treated, such as L_ENDIAN and B_ENDIAN.
We do that differentiation by allowing upper case attributes in the
config targets, named exactly like the "make variables" we support,
and reserving the lower case attributes for non-overridable project
flags.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5534)
2018-03-06 19:35:30 +00:00
|
|
|
#!{- $config{HASHBANGPERL} -}
|
2018-03-20 13:00:17 +00:00
|
|
|
# Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2016-04-20 02:10:43 +00:00
|
|
|
#
|
2018-12-06 12:00:26 +00:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-20 02:10:43 +00:00
|
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
|
|
# in the file LICENSE in the source distribution or at
|
|
|
|
# https://www.openssl.org/source/license.html
|
|
|
|
|
1999-01-01 00:54:48 +00:00
|
|
|
#
|
2015-05-01 01:44:40 +00:00
|
|
|
# Wrapper around the ca to make it easier to use
|
2016-01-25 20:19:59 +00:00
|
|
|
#
|
|
|
|
# {- join("\n# ", @autowarntext) -}
|
1999-01-01 00:54:48 +00:00
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
my $openssl = "openssl";
|
|
|
|
if(defined $ENV{'OPENSSL'}) {
|
|
|
|
$openssl = $ENV{'OPENSSL'};
|
2005-02-01 23:48:37 +00:00
|
|
|
} else {
|
2015-05-01 01:44:40 +00:00
|
|
|
$ENV{'OPENSSL'} = $openssl;
|
2005-02-01 23:48:37 +00:00
|
|
|
}
|
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
my $verbose = 1;
|
1999-01-01 00:54:48 +00:00
|
|
|
|
2016-05-23 13:47:43 +00:00
|
|
|
my $OPENSSL_CONFIG = $ENV{"OPENSSL_CONFIG"} || "";
|
2015-05-01 01:44:40 +00:00
|
|
|
my $DAYS = "-days 365";
|
|
|
|
my $CADAYS = "-days 1095"; # 3 years
|
2015-10-27 19:11:48 +00:00
|
|
|
my $REQ = "$openssl req $OPENSSL_CONFIG";
|
|
|
|
my $CA = "$openssl ca $OPENSSL_CONFIG";
|
2015-05-01 01:44:40 +00:00
|
|
|
my $VERIFY = "$openssl verify";
|
|
|
|
my $X509 = "$openssl x509";
|
|
|
|
my $PKCS12 = "$openssl pkcs12";
|
1999-01-01 00:54:48 +00:00
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
# default openssl.cnf file has setup as per the following
|
|
|
|
my $CATOP = "./demoCA";
|
|
|
|
my $CAKEY = "cakey.pem";
|
|
|
|
my $CAREQ = "careq.pem";
|
|
|
|
my $CACERT = "cacert.pem";
|
|
|
|
my $CACRL = "crl.pem";
|
|
|
|
my $DIRMODE = 0777;
|
1999-01-01 00:54:48 +00:00
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
my $NEWKEY = "newkey.pem";
|
|
|
|
my $NEWREQ = "newreq.pem";
|
|
|
|
my $NEWCERT = "newcert.pem";
|
|
|
|
my $NEWP12 = "newcert.p12";
|
|
|
|
my $RET = 0;
|
2016-05-23 13:47:43 +00:00
|
|
|
my $WHAT = shift @ARGV || "";
|
2016-10-28 07:01:02 +00:00
|
|
|
my @OPENSSL_CMDS = ("req", "ca", "pkcs12", "x509", "verify");
|
|
|
|
my %EXTRA = extra_args(\@ARGV, "-extra-");
|
2015-05-01 01:44:40 +00:00
|
|
|
my $FILE;
|
1999-01-01 00:54:48 +00:00
|
|
|
|
2016-10-28 07:01:02 +00:00
|
|
|
sub extra_args {
|
|
|
|
my ($args_ref, $arg_prefix) = @_;
|
|
|
|
my %eargs = map {
|
|
|
|
if ($_ < $#$args_ref) {
|
|
|
|
my ($arg, $value) = splice(@$args_ref, $_, 2);
|
|
|
|
$arg =~ s/$arg_prefix//;
|
|
|
|
($arg, $value);
|
|
|
|
} else {
|
|
|
|
();
|
|
|
|
}
|
|
|
|
} reverse grep($$args_ref[$_] =~ /$arg_prefix/, 0..$#$args_ref);
|
|
|
|
my %empty = map { ($_, "") } @OPENSSL_CMDS;
|
|
|
|
return (%empty, %eargs);
|
|
|
|
}
|
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
# See if reason for a CRL entry is valid; exit if not.
|
|
|
|
sub crl_reason_ok
|
|
|
|
{
|
|
|
|
my $r = shift;
|
1999-01-01 00:54:48 +00:00
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
if ($r eq 'unspecified' || $r eq 'keyCompromise'
|
|
|
|
|| $r eq 'CACompromise' || $r eq 'affiliationChanged'
|
|
|
|
|| $r eq 'superseded' || $r eq 'cessationOfOperation'
|
|
|
|
|| $r eq 'certificateHold' || $r eq 'removeFromCRL') {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
print STDERR "Invalid CRL reason; must be one of:\n";
|
|
|
|
print STDERR " unspecified, keyCompromise, CACompromise,\n";
|
|
|
|
print STDERR " affiliationChanged, superseded, cessationOfOperation\n";
|
|
|
|
print STDERR " certificateHold, removeFromCRL";
|
|
|
|
exit 1;
|
1999-01-01 00:54:48 +00:00
|
|
|
}
|
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
# Copy a PEM-format file; return like exit status (zero means ok)
|
|
|
|
sub copy_pemfile
|
|
|
|
{
|
|
|
|
my ($infile, $outfile, $bound) = @_;
|
|
|
|
my $found = 0;
|
1999-01-01 00:54:48 +00:00
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
open IN, $infile || die "Cannot open $infile, $!";
|
|
|
|
open OUT, ">$outfile" || die "Cannot write to $outfile, $!";
|
|
|
|
while (<IN>) {
|
|
|
|
$found = 1 if /^-----BEGIN.*$bound/;
|
|
|
|
print OUT $_ if $found;
|
|
|
|
$found = 2, last if /^-----END.*$bound/;
|
|
|
|
}
|
|
|
|
close IN;
|
|
|
|
close OUT;
|
|
|
|
return $found == 2 ? 0 : 1;
|
2014-09-04 20:59:44 +00:00
|
|
|
}
|
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
# Wrapper around system; useful for debugging. Returns just the exit status
|
|
|
|
sub run
|
|
|
|
{
|
|
|
|
my $cmd = shift;
|
|
|
|
print "====\n$cmd\n" if $verbose;
|
|
|
|
my $status = system($cmd);
|
|
|
|
print "==> $status\n====\n" if $verbose;
|
|
|
|
return $status >> 8;
|
1999-01-01 00:54:48 +00:00
|
|
|
}
|
2015-05-01 01:44:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
if ( $WHAT =~ /^(-\?|-h|-help)$/ ) {
|
2016-10-28 07:01:02 +00:00
|
|
|
print STDERR "usage: CA.pl -newcert | -newreq | -newreq-nodes | -xsign | -sign | -signCA | -signcert | -crl | -newca [-extra-cmd extra-params]\n";
|
|
|
|
print STDERR " CA.pl -pkcs12 [-extra-pkcs12 extra-params] [certname]\n";
|
|
|
|
print STDERR " CA.pl -verify [-extra-verify extra-params] certfile ...\n";
|
|
|
|
print STDERR " CA.pl -revoke [-extra-ca extra-params] certfile [reason]\n";
|
2015-05-01 01:44:40 +00:00
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
if ($WHAT eq '-newcert' ) {
|
|
|
|
# create a certificate
|
2016-10-28 07:01:02 +00:00
|
|
|
$RET = run("$REQ -new -x509 -keyout $NEWKEY -out $NEWCERT $DAYS $EXTRA{req}");
|
2015-05-01 01:44:40 +00:00
|
|
|
print "Cert is in $NEWCERT, private key is in $NEWKEY\n" if $RET == 0;
|
2017-01-13 19:06:03 +00:00
|
|
|
} elsif ($WHAT eq '-precert' ) {
|
2016-03-10 19:15:13 +00:00
|
|
|
# create a pre-certificate
|
2017-01-13 19:10:26 +00:00
|
|
|
$RET = run("$REQ -x509 -precert -keyout $NEWKEY -out $NEWCERT $DAYS");
|
2016-03-10 19:15:13 +00:00
|
|
|
print "Pre-cert is in $NEWCERT, private key is in $NEWKEY\n" if $RET == 0;
|
2017-10-07 18:59:18 +00:00
|
|
|
} elsif ($WHAT =~ /^\-newreq(\-nodes)?$/ ) {
|
2015-05-01 01:44:40 +00:00
|
|
|
# create a certificate request
|
2017-10-06 15:06:12 +00:00
|
|
|
$RET = run("$REQ -new $1 -keyout $NEWKEY -out $NEWREQ $DAYS $EXTRA{req}");
|
2015-05-01 01:44:40 +00:00
|
|
|
print "Request is in $NEWREQ, private key is in $NEWKEY\n" if $RET == 0;
|
|
|
|
} elsif ($WHAT eq '-newca' ) {
|
|
|
|
# create the directory hierarchy
|
|
|
|
mkdir ${CATOP}, $DIRMODE;
|
|
|
|
mkdir "${CATOP}/certs", $DIRMODE;
|
|
|
|
mkdir "${CATOP}/crl", $DIRMODE ;
|
|
|
|
mkdir "${CATOP}/newcerts", $DIRMODE;
|
|
|
|
mkdir "${CATOP}/private", $DIRMODE;
|
|
|
|
open OUT, ">${CATOP}/index.txt";
|
|
|
|
close OUT;
|
|
|
|
open OUT, ">${CATOP}/crlnumber";
|
|
|
|
print OUT "01\n";
|
|
|
|
close OUT;
|
|
|
|
# ask user for existing CA certificate
|
|
|
|
print "CA certificate filename (or enter to create)\n";
|
2016-02-13 07:53:13 +00:00
|
|
|
$FILE = "" unless defined($FILE = <STDIN>);
|
|
|
|
$FILE =~ s{\R$}{};
|
|
|
|
if ($FILE ne "") {
|
2015-05-01 01:44:40 +00:00
|
|
|
copy_pemfile($FILE,"${CATOP}/private/$CAKEY", "PRIVATE");
|
|
|
|
copy_pemfile($FILE,"${CATOP}/$CACERT", "CERTIFICATE");
|
|
|
|
} else {
|
|
|
|
print "Making CA certificate ...\n";
|
|
|
|
$RET = run("$REQ -new -keyout"
|
|
|
|
. " ${CATOP}/private/$CAKEY"
|
2016-10-28 07:01:02 +00:00
|
|
|
. " -out ${CATOP}/$CAREQ $EXTRA{req}");
|
2015-05-01 01:44:40 +00:00
|
|
|
$RET = run("$CA -create_serial"
|
|
|
|
. " -out ${CATOP}/$CACERT $CADAYS -batch"
|
|
|
|
. " -keyfile ${CATOP}/private/$CAKEY -selfsign"
|
2016-10-28 07:01:02 +00:00
|
|
|
. " -extensions v3_ca $EXTRA{ca}"
|
2015-05-01 01:44:40 +00:00
|
|
|
. " -infiles ${CATOP}/$CAREQ") if $RET == 0;
|
|
|
|
print "CA certificate is in ${CATOP}/$CACERT\n" if $RET == 0;
|
|
|
|
}
|
|
|
|
} elsif ($WHAT eq '-pkcs12' ) {
|
2017-12-03 12:23:21 +00:00
|
|
|
my $cname = $ARGV[0];
|
2015-05-01 01:44:40 +00:00
|
|
|
$cname = "My Certificate" unless defined $cname;
|
|
|
|
$RET = run("$PKCS12 -in $NEWCERT -inkey $NEWKEY"
|
|
|
|
. " -certfile ${CATOP}/$CACERT"
|
|
|
|
. " -out $NEWP12"
|
2016-10-28 07:01:02 +00:00
|
|
|
. " -export -name \"$cname\" $EXTRA{pkcs12}");
|
2015-05-01 01:44:40 +00:00
|
|
|
print "PKCS #12 file is in $NEWP12\n" if $RET == 0;
|
|
|
|
} elsif ($WHAT eq '-xsign' ) {
|
2016-10-28 07:01:02 +00:00
|
|
|
$RET = run("$CA -policy policy_anything $EXTRA{ca} -infiles $NEWREQ");
|
2015-05-01 01:44:40 +00:00
|
|
|
} elsif ($WHAT eq '-sign' ) {
|
2016-10-28 07:01:02 +00:00
|
|
|
$RET = run("$CA -policy policy_anything -out $NEWCERT $EXTRA{ca} -infiles $NEWREQ");
|
2015-05-01 01:44:40 +00:00
|
|
|
print "Signed certificate is in $NEWCERT\n" if $RET == 0;
|
|
|
|
} elsif ($WHAT eq '-signCA' ) {
|
|
|
|
$RET = run("$CA -policy policy_anything -out $NEWCERT"
|
2016-10-28 07:01:02 +00:00
|
|
|
. " -extensions v3_ca $EXTRA{ca} -infiles $NEWREQ");
|
2015-05-01 01:44:40 +00:00
|
|
|
print "Signed CA certificate is in $NEWCERT\n" if $RET == 0;
|
|
|
|
} elsif ($WHAT eq '-signcert' ) {
|
|
|
|
$RET = run("$X509 -x509toreq -in $NEWREQ -signkey $NEWREQ"
|
2016-10-28 07:01:02 +00:00
|
|
|
. " -out tmp.pem $EXTRA{x509}");
|
2015-05-01 01:44:40 +00:00
|
|
|
$RET = run("$CA -policy policy_anything -out $NEWCERT"
|
2016-10-28 07:01:02 +00:00
|
|
|
. "$EXTRA{ca} -infiles tmp.pem") if $RET == 0;
|
2015-05-01 01:44:40 +00:00
|
|
|
print "Signed certificate is in $NEWCERT\n" if $RET == 0;
|
|
|
|
} elsif ($WHAT eq '-verify' ) {
|
2015-05-01 11:11:17 +00:00
|
|
|
my @files = @ARGV ? @ARGV : ( $NEWCERT );
|
|
|
|
my $file;
|
2015-05-01 01:44:40 +00:00
|
|
|
foreach $file (@files) {
|
2016-10-28 07:01:02 +00:00
|
|
|
my $status = run("$VERIFY \"-CAfile\" ${CATOP}/$CACERT $file $EXTRA{verify}");
|
2015-05-01 01:44:40 +00:00
|
|
|
$RET = $status if $status != 0;
|
|
|
|
}
|
|
|
|
} elsif ($WHAT eq '-crl' ) {
|
2016-10-28 07:01:02 +00:00
|
|
|
$RET = run("$CA -gencrl -out ${CATOP}/crl/$CACRL $EXTRA{ca}");
|
2015-05-01 01:44:40 +00:00
|
|
|
print "Generated CRL is in ${CATOP}/crl/$CACRL\n" if $RET == 0;
|
|
|
|
} elsif ($WHAT eq '-revoke' ) {
|
2017-12-03 12:23:21 +00:00
|
|
|
my $cname = $ARGV[0];
|
2015-05-01 01:44:40 +00:00
|
|
|
if (!defined $cname) {
|
|
|
|
print "Certificate filename is required; reason optional.\n";
|
|
|
|
exit 1;
|
|
|
|
}
|
2017-12-03 12:23:21 +00:00
|
|
|
my $reason = $ARGV[1];
|
2015-05-01 01:44:40 +00:00
|
|
|
$reason = " -crl_reason $reason"
|
|
|
|
if defined $reason && crl_reason_ok($reason);
|
2016-10-28 07:01:02 +00:00
|
|
|
$RET = run("$CA -revoke \"$cname\"" . $reason . $EXTRA{ca});
|
2015-05-01 01:44:40 +00:00
|
|
|
} else {
|
|
|
|
print STDERR "Unknown arg \"$WHAT\"\n";
|
|
|
|
print STDERR "Use -help for help.\n";
|
|
|
|
exit 1;
|
1999-01-01 00:54:48 +00:00
|
|
|
}
|
|
|
|
|
2015-05-01 01:44:40 +00:00
|
|
|
exit $RET;
|