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::Functions qw/canonpath/;
|
---|
14 | use File::Copy;
|
---|
15 | use OpenSSL::Test qw/:DEFAULT srctop_file bldtop_dir ok_nofips with/;
|
---|
16 | use OpenSSL::Test::Utils;
|
---|
17 |
|
---|
18 | setup("test_verify");
|
---|
19 |
|
---|
20 | sub verify {
|
---|
21 | my ($cert, $purpose, $trusted, $untrusted, @opts) = @_;
|
---|
22 | my @path = qw(test certs);
|
---|
23 | my @args = qw(openssl verify -auth_level 1);
|
---|
24 | push(@args, "-purpose", $purpose) if $purpose ne "";
|
---|
25 | push(@args, @opts);
|
---|
26 | for (@$trusted) { push(@args, "-trusted", srctop_file(@path, "$_.pem")) }
|
---|
27 | for (@$untrusted) { push(@args, "-untrusted", srctop_file(@path, "$_.pem")) }
|
---|
28 | push(@args, srctop_file(@path, "$cert.pem"));
|
---|
29 | run(app([@args]));
|
---|
30 | }
|
---|
31 |
|
---|
32 | plan tests => 175;
|
---|
33 |
|
---|
34 | # Canonical success
|
---|
35 | ok(verify("ee-cert", "sslserver", ["root-cert"], ["ca-cert"]),
|
---|
36 | "accept compat trust");
|
---|
37 |
|
---|
38 | # Root CA variants
|
---|
39 | ok(!verify("ee-cert", "sslserver", [qw(root-nonca)], [qw(ca-cert)]),
|
---|
40 | "fail trusted non-ca root");
|
---|
41 | ok(!verify("ee-cert", "sslserver", [qw(nroot+serverAuth)], [qw(ca-cert)]),
|
---|
42 | "fail server trust non-ca root");
|
---|
43 | ok(!verify("ee-cert", "sslserver", [qw(nroot+anyEKU)], [qw(ca-cert)]),
|
---|
44 | "fail wildcard trust non-ca root");
|
---|
45 | ok(!verify("ee-cert", "sslserver", [qw(root-cert2)], [qw(ca-cert)]),
|
---|
46 | "fail wrong root key");
|
---|
47 | ok(!verify("ee-cert", "sslserver", [qw(root-name2)], [qw(ca-cert)]),
|
---|
48 | "fail wrong root DN");
|
---|
49 |
|
---|
50 | # Critical extensions
|
---|
51 |
|
---|
52 | ok(verify("ee-cert-noncrit-unknown-ext", "", ["root-cert"], ["ca-cert"]),
|
---|
53 | "accept non-critical unknown extension");
|
---|
54 | ok(!verify("ee-cert-crit-unknown-ext", "", ["root-cert"], ["ca-cert"]),
|
---|
55 | "reject critical unknown extension");
|
---|
56 | ok(verify("ee-cert-ocsp-nocheck", "", ["root-cert"], ["ca-cert"]),
|
---|
57 | "accept critical OCSP No Check");
|
---|
58 |
|
---|
59 | # Explicit trust/purpose combinations
|
---|
60 | #
|
---|
61 | ok(verify("ee-cert", "sslserver", [qw(sroot-cert)], [qw(ca-cert)]),
|
---|
62 | "accept server purpose");
|
---|
63 | ok(!verify("ee-cert", "sslserver", [qw(croot-cert)], [qw(ca-cert)]),
|
---|
64 | "fail client purpose");
|
---|
65 | ok(verify("ee-cert", "sslserver", [qw(root+serverAuth)], [qw(ca-cert)]),
|
---|
66 | "accept server trust");
|
---|
67 | ok(verify("ee-cert", "sslserver", [qw(sroot+serverAuth)], [qw(ca-cert)]),
|
---|
68 | "accept server trust with server purpose");
|
---|
69 | ok(verify("ee-cert", "sslserver", [qw(croot+serverAuth)], [qw(ca-cert)]),
|
---|
70 | "accept server trust with client purpose");
|
---|
71 | # Wildcard trust
|
---|
72 | ok(verify("ee-cert", "sslserver", [qw(root+anyEKU)], [qw(ca-cert)]),
|
---|
73 | "accept wildcard trust");
|
---|
74 | ok(verify("ee-cert", "sslserver", [qw(sroot+anyEKU)], [qw(ca-cert)]),
|
---|
75 | "accept wildcard trust with server purpose");
|
---|
76 | ok(verify("ee-cert", "sslserver", [qw(croot+anyEKU)], [qw(ca-cert)]),
|
---|
77 | "accept wildcard trust with client purpose");
|
---|
78 | # Inapplicable mistrust
|
---|
79 | ok(verify("ee-cert", "sslserver", [qw(root-clientAuth)], [qw(ca-cert)]),
|
---|
80 | "accept client mistrust");
|
---|
81 | ok(verify("ee-cert", "sslserver", [qw(sroot-clientAuth)], [qw(ca-cert)]),
|
---|
82 | "accept client mistrust with server purpose");
|
---|
83 | ok(!verify("ee-cert", "sslserver", [qw(croot-clientAuth)], [qw(ca-cert)]),
|
---|
84 | "fail client mistrust with client purpose");
|
---|
85 | # Inapplicable trust
|
---|
86 | ok(!verify("ee-cert", "sslserver", [qw(root+clientAuth)], [qw(ca-cert)]),
|
---|
87 | "fail client trust");
|
---|
88 | ok(!verify("ee-cert", "sslserver", [qw(sroot+clientAuth)], [qw(ca-cert)]),
|
---|
89 | "fail client trust with server purpose");
|
---|
90 | ok(!verify("ee-cert", "sslserver", [qw(croot+clientAuth)], [qw(ca-cert)]),
|
---|
91 | "fail client trust with client purpose");
|
---|
92 | # Server mistrust
|
---|
93 | ok(!verify("ee-cert", "sslserver", [qw(root-serverAuth)], [qw(ca-cert)]),
|
---|
94 | "fail rejected EKU");
|
---|
95 | ok(!verify("ee-cert", "sslserver", [qw(sroot-serverAuth)], [qw(ca-cert)]),
|
---|
96 | "fail server mistrust with server purpose");
|
---|
97 | ok(!verify("ee-cert", "sslserver", [qw(croot-serverAuth)], [qw(ca-cert)]),
|
---|
98 | "fail server mistrust with client purpose");
|
---|
99 | # Wildcard mistrust
|
---|
100 | ok(!verify("ee-cert", "sslserver", [qw(root-anyEKU)], [qw(ca-cert)]),
|
---|
101 | "fail wildcard mistrust");
|
---|
102 | ok(!verify("ee-cert", "sslserver", [qw(sroot-anyEKU)], [qw(ca-cert)]),
|
---|
103 | "fail wildcard mistrust with server purpose");
|
---|
104 | ok(!verify("ee-cert", "sslserver", [qw(croot-anyEKU)], [qw(ca-cert)]),
|
---|
105 | "fail wildcard mistrust with client purpose");
|
---|
106 |
|
---|
107 | # Check that trusted-first is on by setting up paths to different roots
|
---|
108 | # depending on whether the intermediate is the trusted or untrusted one.
|
---|
109 | #
|
---|
110 | ok(verify("ee-cert", "sslserver", [qw(root-serverAuth root-cert2 ca-root2)],
|
---|
111 | [qw(ca-cert)]),
|
---|
112 | "accept trusted-first path");
|
---|
113 | ok(verify("ee-cert", "sslserver", [qw(root-cert root2+serverAuth ca-root2)],
|
---|
114 | [qw(ca-cert)]),
|
---|
115 | "accept trusted-first path with server trust");
|
---|
116 | ok(!verify("ee-cert", "sslserver", [qw(root-cert root2-serverAuth ca-root2)],
|
---|
117 | [qw(ca-cert)]),
|
---|
118 | "fail trusted-first path with server mistrust");
|
---|
119 | ok(!verify("ee-cert", "sslserver", [qw(root-cert root2+clientAuth ca-root2)],
|
---|
120 | [qw(ca-cert)]),
|
---|
121 | "fail trusted-first path with client trust");
|
---|
122 |
|
---|
123 | # CA variants
|
---|
124 | ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-nonca)]),
|
---|
125 | "fail non-CA untrusted intermediate");
|
---|
126 | ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-nonbc)]),
|
---|
127 | "fail non-CA untrusted intermediate");
|
---|
128 | ok(!verify("ee-cert", "sslserver", [qw(root-cert ca-nonca)], []),
|
---|
129 | "fail non-CA trust-store intermediate");
|
---|
130 | ok(!verify("ee-cert", "sslserver", [qw(root-cert ca-nonbc)], []),
|
---|
131 | "fail non-CA trust-store intermediate");
|
---|
132 | ok(!verify("ee-cert", "sslserver", [qw(root-cert nca+serverAuth)], []),
|
---|
133 | "fail non-CA server trust intermediate");
|
---|
134 | ok(!verify("ee-cert", "sslserver", [qw(root-cert nca+anyEKU)], []),
|
---|
135 | "fail non-CA wildcard trust intermediate");
|
---|
136 | ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-cert2)]),
|
---|
137 | "fail wrong intermediate CA key");
|
---|
138 | ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-name2)]),
|
---|
139 | "fail wrong intermediate CA DN");
|
---|
140 | ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-root2)]),
|
---|
141 | "fail wrong intermediate CA issuer");
|
---|
142 | ok(!verify("ee-cert", "sslserver", [], [qw(ca-cert)], "-partial_chain"),
|
---|
143 | "fail untrusted partial chain");
|
---|
144 | ok(verify("ee-cert", "sslserver", [qw(ca-cert)], [], "-partial_chain"),
|
---|
145 | "accept trusted partial chain");
|
---|
146 | ok(!verify("ee-cert", "sslserver", [qw(ca-expired)], [], "-partial_chain"),
|
---|
147 | "reject expired trusted partial chain"); # this check is beyond RFC 5280
|
---|
148 | ok(!verify("ee-cert", "sslserver", [qw(root-expired)], [qw(ca-cert)]),
|
---|
149 | "reject expired trusted root"); # this check is beyond RFC 5280
|
---|
150 | ok(verify("ee-cert", "sslserver", [qw(sca-cert)], [], "-partial_chain"),
|
---|
151 | "accept partial chain with server purpose");
|
---|
152 | ok(!verify("ee-cert", "sslserver", [qw(cca-cert)], [], "-partial_chain"),
|
---|
153 | "fail partial chain with client purpose");
|
---|
154 | ok(verify("ee-cert", "sslserver", [qw(ca+serverAuth)], [], "-partial_chain"),
|
---|
155 | "accept server trust partial chain");
|
---|
156 | ok(verify("ee-cert", "sslserver", [qw(cca+serverAuth)], [], "-partial_chain"),
|
---|
157 | "accept server trust client purpose partial chain");
|
---|
158 | ok(verify("ee-cert", "sslserver", [qw(ca-clientAuth)], [], "-partial_chain"),
|
---|
159 | "accept client mistrust partial chain");
|
---|
160 | ok(verify("ee-cert", "sslserver", [qw(ca+anyEKU)], [], "-partial_chain"),
|
---|
161 | "accept wildcard trust partial chain");
|
---|
162 | ok(!verify("ee-cert", "sslserver", [], [qw(ca+serverAuth)], "-partial_chain"),
|
---|
163 | "fail untrusted partial issuer with ignored server trust");
|
---|
164 | ok(!verify("ee-cert", "sslserver", [qw(ca-serverAuth)], [], "-partial_chain"),
|
---|
165 | "fail server mistrust partial chain");
|
---|
166 | ok(!verify("ee-cert", "sslserver", [qw(ca+clientAuth)], [], "-partial_chain"),
|
---|
167 | "fail client trust partial chain");
|
---|
168 | ok(!verify("ee-cert", "sslserver", [qw(ca-anyEKU)], [], "-partial_chain"),
|
---|
169 | "fail wildcard mistrust partial chain");
|
---|
170 |
|
---|
171 | # We now test auxiliary trust even for intermediate trusted certs without
|
---|
172 | # -partial_chain. Note that "-trusted_first" is now always on and cannot
|
---|
173 | # be disabled.
|
---|
174 | ok(verify("ee-cert", "sslserver", [qw(root-cert ca+serverAuth)], [qw(ca-cert)]),
|
---|
175 | "accept server trust");
|
---|
176 | ok(verify("ee-cert", "sslserver", [qw(root-cert ca+anyEKU)], [qw(ca-cert)]),
|
---|
177 | "accept wildcard trust");
|
---|
178 | ok(verify("ee-cert", "sslserver", [qw(root-cert sca-cert)], [qw(ca-cert)]),
|
---|
179 | "accept server purpose");
|
---|
180 | ok(verify("ee-cert", "sslserver", [qw(root-cert sca+serverAuth)], [qw(ca-cert)]),
|
---|
181 | "accept server trust and purpose");
|
---|
182 | ok(verify("ee-cert", "sslserver", [qw(root-cert sca+anyEKU)], [qw(ca-cert)]),
|
---|
183 | "accept wildcard trust and server purpose");
|
---|
184 | ok(verify("ee-cert", "sslserver", [qw(root-cert sca-clientAuth)], [qw(ca-cert)]),
|
---|
185 | "accept client mistrust and server purpose");
|
---|
186 | ok(verify("ee-cert", "sslserver", [qw(root-cert cca+serverAuth)], [qw(ca-cert)]),
|
---|
187 | "accept server trust and client purpose");
|
---|
188 | ok(verify("ee-cert", "sslserver", [qw(root-cert cca+anyEKU)], [qw(ca-cert)]),
|
---|
189 | "accept wildcard trust and client purpose");
|
---|
190 | ok(!verify("ee-cert", "sslserver", [qw(root-cert cca-cert)], [qw(ca-cert)]),
|
---|
191 | "fail client purpose");
|
---|
192 | ok(!verify("ee-cert", "sslserver", [qw(root-cert ca-anyEKU)], [qw(ca-cert)]),
|
---|
193 | "fail wildcard mistrust");
|
---|
194 | ok(!verify("ee-cert", "sslserver", [qw(root-cert ca-serverAuth)], [qw(ca-cert)]),
|
---|
195 | "fail server mistrust");
|
---|
196 | ok(!verify("ee-cert", "sslserver", [qw(root-cert ca+clientAuth)], [qw(ca-cert)]),
|
---|
197 | "fail client trust");
|
---|
198 | ok(!verify("ee-cert", "sslserver", [qw(root-cert sca+clientAuth)], [qw(ca-cert)]),
|
---|
199 | "fail client trust and server purpose");
|
---|
200 | ok(!verify("ee-cert", "sslserver", [qw(root-cert cca+clientAuth)], [qw(ca-cert)]),
|
---|
201 | "fail client trust and client purpose");
|
---|
202 | ok(!verify("ee-cert", "sslserver", [qw(root-cert cca-serverAuth)], [qw(ca-cert)]),
|
---|
203 | "fail server mistrust and client purpose");
|
---|
204 | ok(!verify("ee-cert", "sslserver", [qw(root-cert cca-clientAuth)], [qw(ca-cert)]),
|
---|
205 | "fail client mistrust and client purpose");
|
---|
206 | ok(!verify("ee-cert", "sslserver", [qw(root-cert sca-serverAuth)], [qw(ca-cert)]),
|
---|
207 | "fail server mistrust and server purpose");
|
---|
208 | ok(!verify("ee-cert", "sslserver", [qw(root-cert sca-anyEKU)], [qw(ca-cert)]),
|
---|
209 | "fail wildcard mistrust and server purpose");
|
---|
210 | ok(!verify("ee-cert", "sslserver", [qw(root-cert cca-anyEKU)], [qw(ca-cert)]),
|
---|
211 | "fail wildcard mistrust and client purpose");
|
---|
212 |
|
---|
213 | # EE variants
|
---|
214 | ok(verify("ee-client", "sslclient", [qw(root-cert)], [qw(ca-cert)]),
|
---|
215 | "accept client chain");
|
---|
216 | ok(!verify("ee-client", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
|
---|
217 | "fail server leaf purpose");
|
---|
218 | ok(!verify("ee-cert", "sslclient", [qw(root-cert)], [qw(ca-cert)]),
|
---|
219 | "fail client leaf purpose");
|
---|
220 | ok(!verify("ee-cert2", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
|
---|
221 | "fail wrong intermediate CA key");
|
---|
222 | ok(!verify("ee-name2", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
|
---|
223 | "fail wrong intermediate CA DN");
|
---|
224 | ok(!verify("ee-expired", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
|
---|
225 | "fail expired leaf");
|
---|
226 | ok(verify("ee-cert", "sslserver", [qw(ee-cert)], [], "-partial_chain"),
|
---|
227 | "accept last-resort direct leaf match");
|
---|
228 | ok(verify("ee-client", "sslclient", [qw(ee-client)], [], "-partial_chain"),
|
---|
229 | "accept last-resort direct leaf match");
|
---|
230 | ok(!verify("ee-cert", "sslserver", [qw(ee-client)], [], "-partial_chain"),
|
---|
231 | "fail last-resort direct leaf non-match");
|
---|
232 | ok(verify("ee-cert", "sslserver", [qw(ee+serverAuth)], [], "-partial_chain"),
|
---|
233 | "accept direct match with server trust");
|
---|
234 | ok(!verify("ee-cert", "sslserver", [qw(ee-serverAuth)], [], "-partial_chain"),
|
---|
235 | "fail direct match with server mistrust");
|
---|
236 | ok(verify("ee-client", "sslclient", [qw(ee+clientAuth)], [], "-partial_chain"),
|
---|
237 | "accept direct match with client trust");
|
---|
238 | ok(!verify("ee-client", "sslclient", [qw(ee-clientAuth)], [], "-partial_chain"),
|
---|
239 | "reject direct match with client mistrust");
|
---|
240 | ok(verify("ee-pathlen", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
|
---|
241 | "accept non-ca with pathlen:0 by default");
|
---|
242 | ok(!verify("ee-pathlen", "sslserver", [qw(root-cert)], [qw(ca-cert)], "-x509_strict"),
|
---|
243 | "reject non-ca with pathlen:0 with strict flag");
|
---|
244 |
|
---|
245 | # EE veaiants wrt timestamp signing
|
---|
246 | ok(verify("ee-timestampsign-CABforum", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
247 | "accept timestampsign according to CAB forum");
|
---|
248 | ok(!verify("ee-timestampsign-CABforum-noncritxku", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
249 | "fail timestampsign according to CAB forum with extendedKeyUsage not critical");
|
---|
250 | ok(!verify("ee-timestampsign-CABforum-serverauth", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
251 | "fail timestampsign according to CAB forum with serverAuth");
|
---|
252 | ok(!verify("ee-timestampsign-CABforum-anyextkeyusage", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
253 | "fail timestampsign according to CAB forum with anyExtendedKeyUsage");
|
---|
254 | ok(!verify("ee-timestampsign-CABforum-crlsign", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
255 | "fail timestampsign according to CAB forum with cRLSign");
|
---|
256 | ok(!verify("ee-timestampsign-CABforum-keycertsign", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
257 | "fail timestampsign according to CAB forum with keyCertSign");
|
---|
258 | ok(verify("ee-timestampsign-rfc3161", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
259 | "accept timestampsign according to RFC 3161");
|
---|
260 | ok(!verify("ee-timestampsign-rfc3161-noncritxku", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
261 | "fail timestampsign according to RFC 3161 with extendedKeyUsage not critical");
|
---|
262 | ok(verify("ee-timestampsign-rfc3161-digsig", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
|
---|
263 | "accept timestampsign according to RFC 3161 with digitalSignature");
|
---|
264 |
|
---|
265 | # Proxy certificates
|
---|
266 | ok(!verify("pc1-cert", "sslclient", [qw(root-cert)], [qw(ee-client ca-cert)]),
|
---|
267 | "fail to accept proxy cert without -allow_proxy_certs");
|
---|
268 | ok(verify("pc1-cert", "sslclient", [qw(root-cert)], [qw(ee-client ca-cert)],
|
---|
269 | "-allow_proxy_certs"),
|
---|
270 | "accept proxy cert 1");
|
---|
271 | ok(verify("pc2-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
|
---|
272 | "-allow_proxy_certs"),
|
---|
273 | "accept proxy cert 2");
|
---|
274 | ok(!verify("bad-pc3-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
|
---|
275 | "-allow_proxy_certs"),
|
---|
276 | "fail proxy cert with incorrect subject");
|
---|
277 | ok(!verify("bad-pc4-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
|
---|
278 | "-allow_proxy_certs"),
|
---|
279 | "fail proxy cert with incorrect pathlen");
|
---|
280 | ok(verify("pc5-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
|
---|
281 | "-allow_proxy_certs"),
|
---|
282 | "accept proxy cert missing proxy policy");
|
---|
283 | ok(!verify("pc6-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
|
---|
284 | "-allow_proxy_certs"),
|
---|
285 | "failed proxy cert where last CN was added as a multivalue RDN component");
|
---|
286 |
|
---|
287 | # Security level tests
|
---|
288 | ok(verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "2"),
|
---|
289 | "accept RSA 2048 chain at auth level 2");
|
---|
290 | ok(!verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "3"),
|
---|
291 | "reject RSA 2048 root at auth level 3");
|
---|
292 | ok(verify("ee-cert", "", ["root-cert-768"], ["ca-cert-768i"], "-auth_level", "0"),
|
---|
293 | "accept RSA 768 root at auth level 0");
|
---|
294 | ok(!verify("ee-cert", "", ["root-cert-768"], ["ca-cert-768i"]),
|
---|
295 | "reject RSA 768 root at auth level 1");
|
---|
296 | ok(verify("ee-cert-768i", "", ["root-cert"], ["ca-cert-768"], "-auth_level", "0"),
|
---|
297 | "accept RSA 768 intermediate at auth level 0");
|
---|
298 | ok(!verify("ee-cert-768i", "", ["root-cert"], ["ca-cert-768"]),
|
---|
299 | "reject RSA 768 intermediate at auth level 1");
|
---|
300 | ok(verify("ee-cert-768", "", ["root-cert"], ["ca-cert"], "-auth_level", "0"),
|
---|
301 | "accept RSA 768 leaf at auth level 0");
|
---|
302 | ok(!verify("ee-cert-768", "", ["root-cert"], ["ca-cert"]),
|
---|
303 | "reject RSA 768 leaf at auth level 1");
|
---|
304 | #
|
---|
305 | ok(verify("ee-cert", "", ["root-cert-md5"], ["ca-cert"], "-auth_level", "2"),
|
---|
306 | "accept md5 self-signed TA at auth level 2");
|
---|
307 | ok(verify("ee-cert", "", ["ca-cert-md5-any"], [], "-auth_level", "2"),
|
---|
308 | "accept md5 intermediate TA at auth level 2");
|
---|
309 | ok(verify("ee-cert", "", ["root-cert"], ["ca-cert-md5"], "-auth_level", "0"),
|
---|
310 | "accept md5 intermediate at auth level 0");
|
---|
311 | ok(!verify("ee-cert", "", ["root-cert"], ["ca-cert-md5"]),
|
---|
312 | "reject md5 intermediate at auth level 1");
|
---|
313 | ok(verify("ee-cert-md5", "", ["root-cert"], ["ca-cert"], "-auth_level", "0"),
|
---|
314 | "accept md5 leaf at auth level 0");
|
---|
315 | ok(!verify("ee-cert-md5", "", ["root-cert"], ["ca-cert"]),
|
---|
316 | "reject md5 leaf at auth level 1");
|
---|
317 |
|
---|
318 | # Explicit vs named curve tests
|
---|
319 | SKIP: {
|
---|
320 | skip "EC is not supported by this OpenSSL build", 3
|
---|
321 | if disabled("ec");
|
---|
322 | ok(!verify("ee-cert-ec-explicit", "", ["root-cert"],
|
---|
323 | ["ca-cert-ec-named"]),
|
---|
324 | "reject explicit curve leaf with named curve intermediate");
|
---|
325 | ok(!verify("ee-cert-ec-named-explicit", "", ["root-cert"],
|
---|
326 | ["ca-cert-ec-explicit"]),
|
---|
327 | "reject named curve leaf with explicit curve intermediate");
|
---|
328 | ok(verify("ee-cert-ec-named-named", "", ["root-cert"],
|
---|
329 | ["ca-cert-ec-named"]),
|
---|
330 | "accept named curve leaf with named curve intermediate");
|
---|
331 | }
|
---|
332 | # Same as above but with base provider used for decoding
|
---|
333 | SKIP: {
|
---|
334 | my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
|
---|
335 | my $provconf = srctop_file("test", "fips-and-base.cnf");
|
---|
336 | my $provpath = bldtop_dir("providers");
|
---|
337 | my @prov = ("-provider-path", $provpath);
|
---|
338 |
|
---|
339 | skip "EC is not supported or FIPS is disabled", 3
|
---|
340 | if disabled("ec") || $no_fips;
|
---|
341 |
|
---|
342 | run(test(["fips_version_test", "-config", $provconf, ">3.0.0"]),
|
---|
343 | capture => 1, statusvar => \my $exit);
|
---|
344 | skip "FIPS provider version is too old", 3
|
---|
345 | if !$exit;
|
---|
346 |
|
---|
347 | $ENV{OPENSSL_CONF} = $provconf;
|
---|
348 |
|
---|
349 | ok(!verify("ee-cert-ec-explicit", "", ["root-cert"],
|
---|
350 | ["ca-cert-ec-named"], @prov),
|
---|
351 | "reject explicit curve leaf with named curve intermediate w/fips");
|
---|
352 | ok(!verify("ee-cert-ec-named-explicit", "", ["root-cert"],
|
---|
353 | ["ca-cert-ec-explicit"], @prov),
|
---|
354 | "reject named curve leaf with explicit curve intermediate w/fips");
|
---|
355 | ok(verify("ee-cert-ec-named-named", "", ["root-cert"],
|
---|
356 | ["ca-cert-ec-named"], @prov),
|
---|
357 | "accept named curve leaf with named curve intermediate w/fips");
|
---|
358 |
|
---|
359 | delete $ENV{OPENSSL_CONF};
|
---|
360 | }
|
---|
361 |
|
---|
362 | # Depth tests, note the depth limit bounds the number of CA certificates
|
---|
363 | # between the trust-anchor and the leaf, so, for example, with a root->ca->leaf
|
---|
364 | # chain, depth = 1 is sufficient, but depth == 0 is not.
|
---|
365 | #
|
---|
366 | ok(verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-verify_depth", "2"),
|
---|
367 | "accept chain with verify_depth 2");
|
---|
368 | ok(verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-verify_depth", "1"),
|
---|
369 | "accept chain with verify_depth 1");
|
---|
370 | ok(!verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-verify_depth", "0"),
|
---|
371 | "reject chain with verify_depth 0");
|
---|
372 | ok(verify("ee-cert", "", ["ca-cert-md5-any"], [], "-verify_depth", "0"),
|
---|
373 | "accept md5 intermediate TA with verify_depth 0");
|
---|
374 |
|
---|
375 | # Name Constraints tests.
|
---|
376 |
|
---|
377 | ok(verify("alt1-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
378 | "Name Constraints everything permitted");
|
---|
379 |
|
---|
380 | ok(verify("alt2-cert", "", ["root-cert"], ["ncca2-cert"], ),
|
---|
381 | "Name Constraints nothing excluded");
|
---|
382 |
|
---|
383 | ok(verify("alt3-cert", "", ["root-cert"], ["ncca1-cert", "ncca3-cert"], ),
|
---|
384 | "Name Constraints nested test all permitted");
|
---|
385 |
|
---|
386 | ok(verify("goodcn1-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
387 | "Name Constraints CNs permitted");
|
---|
388 |
|
---|
389 | ok(verify("goodcn2-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
390 | "Name Constraints CNs permitted - no SAN extension");
|
---|
391 |
|
---|
392 | ok(!verify("badcn1-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
393 | "Name Constraints CNs not permitted");
|
---|
394 |
|
---|
395 | ok(!verify("badalt1-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
396 | "Name Constraints hostname not permitted");
|
---|
397 |
|
---|
398 | ok(!verify("badalt2-cert", "", ["root-cert"], ["ncca2-cert"], ),
|
---|
399 | "Name Constraints hostname excluded");
|
---|
400 |
|
---|
401 | ok(!verify("badalt3-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
402 | "Name Constraints email address not permitted");
|
---|
403 |
|
---|
404 | ok(!verify("badalt4-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
405 | "Name Constraints subject email address not permitted");
|
---|
406 |
|
---|
407 | ok(!verify("badalt5-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
408 | "Name Constraints IP address not permitted");
|
---|
409 |
|
---|
410 | ok(!verify("badalt6-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
411 | "Name Constraints CN hostname not permitted");
|
---|
412 |
|
---|
413 | ok(!verify("badalt7-cert", "", ["root-cert"], ["ncca1-cert"], ),
|
---|
414 | "Name Constraints CN BMPSTRING hostname not permitted");
|
---|
415 |
|
---|
416 | ok(!verify("badalt8-cert", "", ["root-cert"], ["ncca1-cert", "ncca3-cert"], ),
|
---|
417 | "Name constraints nested DNS name not permitted 1");
|
---|
418 |
|
---|
419 | ok(!verify("badalt9-cert", "", ["root-cert"], ["ncca1-cert", "ncca3-cert"], ),
|
---|
420 | "Name constraints nested DNS name not permitted 2");
|
---|
421 |
|
---|
422 | ok(!verify("badalt10-cert", "", ["root-cert"], ["ncca1-cert", "ncca3-cert"], ),
|
---|
423 | "Name constraints nested DNS name excluded");
|
---|
424 |
|
---|
425 | ok(!verify("bad-othername-cert", "", ["root-cert"], ["nccaothername-cert"], ),
|
---|
426 | "CVE-2022-4203 type confusion test");
|
---|
427 |
|
---|
428 | #Check that we get the expected failure return code
|
---|
429 | with({ exit_checker => sub { return shift == 2; } },
|
---|
430 | sub {
|
---|
431 | ok(verify("bad-othername-namec", "", ["bad-othername-namec-inter"], [],
|
---|
432 | "-partial_chain", "-attime", "1623060000"),
|
---|
433 | "Name constraints bad othername name constraint");
|
---|
434 | });
|
---|
435 |
|
---|
436 | ok(verify("ee-pss-sha1-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "0"),
|
---|
437 | "Accept PSS signature using SHA1 at auth level 0");
|
---|
438 |
|
---|
439 | ok(verify("ee-pss-sha256-cert", "", ["root-cert"], ["ca-cert"], ),
|
---|
440 | "CA with PSS signature using SHA256");
|
---|
441 |
|
---|
442 | ok(!verify("ee-pss-sha1-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "1"),
|
---|
443 | "Reject PSS signature using SHA1 and auth level 1");
|
---|
444 |
|
---|
445 | ok(verify("ee-pss-sha256-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "2"),
|
---|
446 | "PSS signature using SHA256 and auth level 2");
|
---|
447 |
|
---|
448 | ok(verify("ee-pss-cert", "", ["root-cert"], ["ca-pss-cert"], ),
|
---|
449 | "CA PSS signature");
|
---|
450 | ok(!verify("ee-pss-wrong1.5-cert", "", ["root-cert"], ["ca-pss-cert"], ),
|
---|
451 | "CA producing regular PKCS#1 v1.5 signature with PSA-PSS key");
|
---|
452 |
|
---|
453 | ok(!verify("many-names1", "", ["many-constraints"], ["many-constraints"], ),
|
---|
454 | "Too many names and constraints to check (1)");
|
---|
455 | ok(!verify("many-names2", "", ["many-constraints"], ["many-constraints"], ),
|
---|
456 | "Too many names and constraints to check (2)");
|
---|
457 | ok(!verify("many-names3", "", ["many-constraints"], ["many-constraints"], ),
|
---|
458 | "Too many names and constraints to check (3)");
|
---|
459 |
|
---|
460 | ok(verify("some-names1", "", ["many-constraints"], ["many-constraints"], ),
|
---|
461 | "Not too many names and constraints to check (1)");
|
---|
462 | ok(verify("some-names2", "", ["many-constraints"], ["many-constraints"], ),
|
---|
463 | "Not too many names and constraints to check (2)");
|
---|
464 | ok(verify("some-names2", "", ["many-constraints"], ["many-constraints"], ),
|
---|
465 | "Not too many names and constraints to check (3)");
|
---|
466 | ok(verify("root-cert-rsa2", "", ["root-cert-rsa2"], [], "-check_ss_sig"),
|
---|
467 | "Public Key Algorithm rsa instead of rsaEncryption");
|
---|
468 |
|
---|
469 | ok(verify("ee-self-signed", "", ["ee-self-signed"], [], "-attime", "1593565200"),
|
---|
470 | "accept trusted self-signed EE cert excluding key usage keyCertSign");
|
---|
471 | ok(verify("ee-ss-with-keyCertSign", "", ["ee-ss-with-keyCertSign"], []),
|
---|
472 | "accept trusted self-signed EE cert with key usage keyCertSign also when strict");
|
---|
473 |
|
---|
474 | SKIP: {
|
---|
475 | skip "Ed25519 is not supported by this OpenSSL build", 6
|
---|
476 | if disabled("ec");
|
---|
477 |
|
---|
478 | # ED25519 certificate from draft-ietf-curdle-pkix-04
|
---|
479 | ok(verify("ee-ed25519", "", ["root-ed25519"], []),
|
---|
480 | "accept X25519 EE cert issued by trusted Ed25519 self-signed CA cert");
|
---|
481 |
|
---|
482 | ok(!verify("ee-ed25519", "", ["root-ed25519"], [], "-x509_strict"),
|
---|
483 | "reject X25519 EE cert in strict mode since AKID is missing");
|
---|
484 |
|
---|
485 | ok(!verify("root-ed25519", "", ["ee-ed25519"], []),
|
---|
486 | "fail Ed25519 CA and EE certs swapped");
|
---|
487 |
|
---|
488 | ok(verify("root-ed25519", "", ["root-ed25519"], []),
|
---|
489 | "accept trusted Ed25519 self-signed CA cert");
|
---|
490 |
|
---|
491 | ok(!verify("ee-ed25519", "", ["ee-ed25519"], []),
|
---|
492 | "fail trusted Ed25519-signed self-issued X25519 cert");
|
---|
493 |
|
---|
494 | ok(verify("ee-ed25519", "", ["ee-ed25519"], [], "-partial_chain"),
|
---|
495 | "accept last-resort direct leaf match Ed25519-signed self-issued cert");
|
---|
496 |
|
---|
497 | }
|
---|
498 |
|
---|
499 | SKIP: {
|
---|
500 | skip "SM2 is not supported by this OpenSSL build", 2 if disabled("sm2");
|
---|
501 |
|
---|
502 | ok_nofips(verify("sm2", "", ["sm2-ca-cert"], [], "-vfyopt", "distid:1234567812345678"),
|
---|
503 | "SM2 ID test");
|
---|
504 | ok_nofips(verify("sm2", "", ["sm2-ca-cert"], [], "-vfyopt", "hexdistid:31323334353637383132333435363738"),
|
---|
505 | "SM2 hex ID test");
|
---|
506 | }
|
---|
507 |
|
---|
508 | # Mixed content tests
|
---|
509 | my $cert_file = srctop_file('test', 'certs', 'root-cert.pem');
|
---|
510 | my $rsa_file = srctop_file('test', 'certs', 'key-pass-12345.pem');
|
---|
511 |
|
---|
512 | SKIP: {
|
---|
513 | my $certplusrsa_file = 'certplusrsa.pem';
|
---|
514 | my $certplusrsa;
|
---|
515 |
|
---|
516 | skip "Couldn't create certplusrsa.pem", 1
|
---|
517 | unless ( open $certplusrsa, '>', $certplusrsa_file
|
---|
518 | and copy($cert_file, $certplusrsa)
|
---|
519 | and copy($rsa_file, $certplusrsa)
|
---|
520 | and close $certplusrsa );
|
---|
521 |
|
---|
522 | ok(run(app([ qw(openssl verify -trusted), $certplusrsa_file, $cert_file ])),
|
---|
523 | 'Mixed cert + key file test');
|
---|
524 | }
|
---|
525 |
|
---|
526 | SKIP: {
|
---|
527 | my $rsapluscert_file = 'rsapluscert.pem';
|
---|
528 | my $rsapluscert;
|
---|
529 |
|
---|
530 | skip "Couldn't create rsapluscert.pem", 1
|
---|
531 | unless ( open $rsapluscert, '>', $rsapluscert_file
|
---|
532 | and copy($rsa_file, $rsapluscert)
|
---|
533 | and copy($cert_file, $rsapluscert)
|
---|
534 | and close $rsapluscert );
|
---|
535 |
|
---|
536 | ok(run(app([ qw(openssl verify -trusted), $rsapluscert_file, $cert_file ])),
|
---|
537 | 'Mixed key + cert file test');
|
---|
538 | }
|
---|
539 |
|
---|
540 | # Certificate Policies
|
---|
541 | ok(verify("ee-cert-policies", "", ["root-cert"], ["ca-pol-cert"],
|
---|
542 | "-policy_check", "-policy", "1.3.6.1.4.1.16604.998855.1",
|
---|
543 | "-explicit_policy"),
|
---|
544 | "Certificate policy");
|
---|
545 |
|
---|
546 | ok(!verify("ee-cert-policies-bad", "", ["root-cert"], ["ca-pol-cert"],
|
---|
547 | "-policy_check", "-policy", "1.3.6.1.4.1.16604.998855.1",
|
---|
548 | "-explicit_policy"),
|
---|
549 | "Bad certificate policy");
|
---|