]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/recipes/25-test_x509.t
Validate config options during x509 extension creation
[thirdparty/openssl.git] / test / recipes / 25-test_x509.t
CommitLineData
596d6b7e 1#! /usr/bin/env perl
da1c088f 2# Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
596d6b7e 3#
909f1a2e 4# Licensed under the Apache License 2.0 (the "License"). You may not use
596d6b7e
RS
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
4650de3e
RL
9
10use strict;
11use warnings;
12
13use File::Spec;
1f019cd0 14use OpenSSL::Test::Utils;
42e0ccdf 15use OpenSSL::Test qw/:DEFAULT srctop_file/;
4650de3e
RL
16
17setup("test_x509");
18
bac7e687 19plan tests => 44;
4650de3e 20
53d0d01f
MC
21# Prevent MSys2 filename munging for arguments that look like file paths but
22# aren't
23$ENV{MSYS2_ARG_CONV_EXCL} = "/CN=";
24
abc4439c 25require_ok(srctop_file("test", "recipes", "tconversion.pl"));
4650de3e 26
f0a057dd 27my @certs = qw(test certs);
abc4439c 28my $pem = srctop_file(@certs, "cyrillic.pem");
42f7a489
RL
29my $out_msb = "out-cyrillic.msb";
30my $out_utf8 = "out-cyrillic.utf8";
d105a24c
TM
31my $der = "cyrillic.der";
32my $der2 = "cyrillic.der";
abc4439c
DDO
33my $msb = srctop_file(@certs, "cyrillic.msb");
34my $utf = srctop_file(@certs, "cyrillic.utf8");
4772610c 35
42f7a489 36ok(run(app(["openssl", "x509", "-text", "-in", $pem, "-out", $out_msb,
4772610c 37 "-nameopt", "esc_msb"])));
2c8a740a 38is(cmp_text($out_msb, $msb),
05458fdb 39 0, 'Comparing esc_msb output with cyrillic.msb');
42f7a489 40ok(run(app(["openssl", "x509", "-text", "-in", $pem, "-out", $out_utf8,
4772610c 41 "-nameopt", "utf8"])));
2c8a740a 42is(cmp_text($out_utf8, $utf),
05458fdb 43 0, 'Comparing utf8 output with cyrillic.utf8');
4772610c 44
d105a24c 45SKIP: {
2a33470b 46 skip "DES disabled", 1 if disabled("des");
53d0d01f 47 skip "Platform doesn't support command line UTF-8", 1 if $^O =~ /^(VMS|msys)$/;
2a33470b
DDO
48
49 my $p12 = srctop_file("test", "shibboleth.pfx");
50 my $p12pass = "σύνθημα γνώρισμα";
51 my $out_pem = "out.pem";
52 ok(run(app(["openssl", "x509", "-text", "-in", $p12, "-out", $out_pem,
53 "-passin", "pass:$p12pass"])));
8cadc517 54 # not unlinking $out_pem
2a33470b
DDO
55}
56
d105a24c
TM
57ok(!run(app(["openssl", "x509", "-in", $pem, "-inform", "DER",
58 "-out", $der, "-outform", "DER"])),
59 "Checking failure of mismatching -inform DER");
60ok(run(app(["openssl", "x509", "-in", $pem, "-inform", "PEM",
61 "-out", $der, "-outform", "DER"])),
62 "Conversion to DER");
63ok(!run(app(["openssl", "x509", "-in", $der, "-inform", "PEM",
64 "-out", $der2, "-outform", "DER"])),
65 "Checking failure of mismatching -inform PEM");
66
49b36afb
DDO
67# producing and checking self-issued (but not self-signed) cert
68my $subj = "/CN=CA"; # using same DN as in issuer of ee-cert.pem
69my $extfile = srctop_file("test", "v3_ca_exts.cnf");
70my $pkey = srctop_file(@certs, "ca-key.pem"); # issuer private key
71my $pubkey = "ca-pubkey.pem"; # the corresponding issuer public key
72# use any (different) key for signing our self-issued cert:
0e89b396 73my $key = srctop_file(@certs, "serverkey.pem");
49b36afb
DDO
74my $selfout = "self-issued.out";
75my $testcert = srctop_file(@certs, "ee-cert.pem");
76ok(run(app(["openssl", "pkey", "-in", $pkey, "-pubout", "-out", $pubkey]))
0e89b396
DDO
77&& run(app(["openssl", "x509", "-new", "-force_pubkey", $pubkey, "-subj", $subj,
78 "-extfile", $extfile, "-key", $key, "-out", $selfout]))
49b36afb
DDO
79&& run(app(["openssl", "verify", "-no_check_time",
80 "-trusted", $selfout, "-partial_chain", $testcert])));
81# not unlinking $pubkey
82# not unlinking $selfout
52958608 83
0e89b396
DDO
84# simple way of directly producing a CA-signed cert with private/pubkey input
85my $ca = srctop_file(@certs, "ca-cert.pem"); # issuer cert
86my $caout = "ca-issued.out";
87ok(run(app(["openssl", "x509", "-new", "-force_pubkey", $key, "-subj", "/CN=EE",
88 "-extfile", $extfile, "-CA", $ca, "-CAkey", $pkey, "-out", $caout]))
89&& run(app(["openssl", "verify", "-no_check_time",
90 "-trusted", $ca, "-partial_chain", $caout])));
91
4650de3e 92subtest 'x509 -- x.509 v1 certificate' => sub {
b40498c6 93 tconversion( -type => 'x509', -prefix => 'x509v1',
abc4439c 94 -in => srctop_file("test", "testx509.pem") );
4650de3e
RL
95};
96subtest 'x509 -- first x.509 v3 certificate' => sub {
b40498c6 97 tconversion( -type => 'x509', -prefix => 'x509v3-1',
abc4439c 98 -in => srctop_file("test", "v3-cert1.pem") );
4650de3e
RL
99};
100subtest 'x509 -- second x.509 v3 certificate' => sub {
b40498c6 101 tconversion( -type => 'x509', -prefix => 'x509v3-2',
abc4439c 102 -in => srctop_file("test", "v3-cert2.pem") );
4650de3e 103};
e417070c
RS
104
105subtest 'x509 -- pathlen' => sub {
abc4439c 106 ok(run(test(["v3ext", srctop_file(@certs, "pathlen.pem")])));
47f387e9
DWG
107};
108
f0a057dd
DDO
109cert_contains(srctop_file(@certs, "fake-gp.pem"),
110 "2.16.528.1.1003.1.3.5.5.2-1-0000006666-Z-12345678-01.015-12345678",
111 1, 'x500 -- subjectAltName');
29844ea5 112
91bc783a
JW
113cert_contains(srctop_file(@certs, "ext-noAssertion.pem"),
114 "No Assertion",
115 1, 'X.509 Not Assertion Extension');
116
117cert_contains(srctop_file(@certs, "ext-groupAC.pem"),
118 "Group Attribute Certificate",
119 1, 'X.509 Group Attribute Certificate Extension');
120
121cert_contains(srctop_file(@certs, "ext-sOAIdentifier.pem"),
122 "Source of Authority",
123 1, 'X.509 Source of Authority Extension');
124
125cert_contains(srctop_file(@certs, "ext-noRevAvail.pem"),
126 "No Revocation Available",
127 1, 'X.509 No Revocation Available');
128
129cert_contains(srctop_file(@certs, "ext-singleUse.pem"),
130 "Single Use",
131 1, 'X509v3 Single Use');
132
133cert_contains(srctop_file(@certs, "ext-indirectIssuer.pem"),
134 "Indirect Issuer",
135 1, 'X.509 Indirect Issuer');
136
29844ea5
DDO
137sub test_errors { # actually tests diagnostics of OSSL_STORE
138 my ($expected, $cert, @opts) = @_;
abc4439c 139 my $infile = srctop_file(@certs, $cert);
29844ea5 140 my @args = qw(openssl x509 -in);
9032c2c1 141 push(@args, $infile, @opts);
29844ea5 142 my $tmpfile = 'out.txt';
9032c2c1
DDO
143 my $res = grep(/-text/, @opts) ? run(app([@args], stdout => $tmpfile))
144 : !run(app([@args], stderr => $tmpfile));
29844ea5
DDO
145 my $found = 0;
146 open(my $in, '<', $tmpfile) or die "Could not open file $tmpfile";
147 while(<$in>) {
148 print; # this may help debugging
149 $res &&= !m/asn1 encoding/; # output must not include ASN.1 parse errors
150 $found = 1 if m/$expected/; # output must include $expected
151 }
152 close $in;
9032c2c1 153 # $tmpfile is kept to help with investigation in case of failure
29844ea5
DDO
154 return $res && $found;
155}
156
f7626d0b
DDO
157# 3 tests for non-existence of spurious OSSL_STORE ASN.1 parse error output.
158# This requires provoking a failure exit of the app after reading input files.
1a683b80 159ok(test_errors("Bad output format", "root-cert.pem", '-outform', 'http'),
f7626d0b 160 "load root-cert errors");
29844ea5 161ok(test_errors("RC2-40-CBC", "v3-certs-RC2.p12", '-passin', 'pass:v3-certs'),
f7626d0b 162 "load v3-certs-RC2 no asn1 errors"); # error msg should mention "RC2-40-CBC"
9032c2c1
DDO
163SKIP: {
164 skip "sm2 not disabled", 1 if !disabled("sm2");
165
237cb05d 166 ok(test_errors("Unable to load Public Key", "sm2.pem", '-text'),
9032c2c1
DDO
167 "error loading unsupported sm2 cert");
168}
55b7fa26
HH
169
170# 3 tests for -dateopts formats
171ok(run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "rfc_822",
172 "-in", srctop_file("test/certs", "ca-cert.pem")])),
173 "Run with rfc_8222 -dateopt format");
174ok(run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "iso_8601",
175 "-in", srctop_file("test/certs", "ca-cert.pem")])),
176 "Run with iso_8601 -dateopt format");
177ok(!run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "invalid_format",
178 "-in", srctop_file("test/certs", "ca-cert.pem")])),
179 "Run with invalid -dateopt format");
29fcd2e7
TS
180
181# extracts issuer from a -text formatted-output
182sub get_issuer {
183 my $f = shift(@_);
184 my $issuer = "";
185 open my $fh, $f or die;
186 while (my $line = <$fh>) {
187 if ($line =~ /Issuer:/) {
188 $issuer = $line;
189 }
190 }
191 close $fh;
192 return $issuer;
193}
194
195# Tests for signing certs (broken in 1.1.1o)
196my $a_key = "a-key.pem";
197my $a_cert = "a-cert.pem";
198my $a2_cert = "a2-cert.pem";
199my $ca_key = "ca-key.pem";
200my $ca_cert = "ca-cert.pem";
201my $cnf = srctop_file('apps', 'openssl.cnf');
202
203# Create cert A
204ok(run(app(["openssl", "req", "-x509", "-newkey", "rsa:2048",
205 "-config", $cnf,
206 "-keyout", $a_key, "-out", $a_cert, "-days", "365",
207 "-nodes", "-subj", "/CN=test.example.com"])));
208# Create cert CA - note key size
209ok(run(app(["openssl", "req", "-x509", "-newkey", "rsa:4096",
210 "-config", $cnf,
211 "-keyout", $ca_key, "-out", $ca_cert, "-days", "3650",
212 "-nodes", "-subj", "/CN=ca.example.com"])));
213# Sign cert A with CA (errors on 1.1.1o)
214ok(run(app(["openssl", "x509", "-in", $a_cert, "-CA", $ca_cert,
215 "-CAkey", $ca_key, "-set_serial", "1234567890",
216 "-preserve_dates", "-sha256", "-text", "-out", $a2_cert])));
217# verify issuer is CA
218ok (get_issuer($a2_cert) =~ /CN=ca.example.com/);
219
bac7e687
NH
220my $in_csr = srctop_file('test', 'certs', 'x509-check.csr');
221my $in_key = srctop_file('test', 'certs', 'x509-check-key.pem');
222my $invextfile = srctop_file('test', 'invalid-x509.cnf');
223# Test that invalid extensions settings fail
224ok(!run(app(["openssl", "x509", "-req", "-in", $in_csr, "-signkey", $in_key,
225 "-out", "/dev/null", "-days", "3650" , "-extensions", "ext",
226 "-extfile", $invextfile])));
227
29fcd2e7
TS
228# Tests for issue #16080 (fixed in 1.1.1o)
229my $b_key = "b-key.pem";
230my $b_csr = "b-cert.csr";
231my $b_cert = "b-cert.pem";
232# Create the CSR
233ok(run(app(["openssl", "req", "-new", "-newkey", "rsa:4096",
234 "-keyout", $b_key, "-out", $b_csr, "-nodes",
235 "-config", $cnf,
236 "-subj", "/CN=b.example.com"])));
237# Sign it - position of "-text" matters!
238ok(run(app(["openssl", "x509", "-req", "-text", "-CAcreateserial",
239 "-CA", $ca_cert, "-CAkey", $ca_key,
240 "-in", $b_csr, "-out", $b_cert])));
241# Verify issuer is CA
242ok(get_issuer($b_cert) =~ /CN=ca.example.com/);
29d4d8e8 243
342e3652
DDO
244# although no explicit extensions given:
245has_version($b_cert, 3);
246has_SKID($b_cert, 1);
247has_AKID($b_cert, 1);
248
42a6a25b
AK
249# Tests for https://github.com/openssl/openssl/issues/10442 (fixed in 1.1.1a)
250# (incorrect default `-CAcreateserial` if `-CA` path has a dot in it)
251my $folder_with_dot = "test_x509.folder";
252ok(mkdir $folder_with_dot);
253my $ca_cert_dot_in_dir = File::Spec->catfile($folder_with_dot, "ca-cert.pem");
254ok(copy($ca_cert,$ca_cert_dot_in_dir));
255my $ca_serial_dot_in_dir = File::Spec->catfile($folder_with_dot, "ca-cert.srl");
256
257ok(run(app(["openssl", "x509", "-req", "-text", "-CAcreateserial",
258 "-CA", $ca_cert_dot_in_dir, "-CAkey", $ca_key,
259 "-in", $b_csr])));
260ok(-e $ca_serial_dot_in_dir);
261
29d4d8e8 262SKIP: {
263 skip "EC is not supported by this OpenSSL build", 1
264 if disabled("ec");
265 ok(run(test(["x509_test"])), "running x509_test");
266}