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