123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591 |
- #! /usr/bin/env perl
- # Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
- #
- # Licensed under the Apache License 2.0 (the "License"). You may not use
- # 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
- use strict;
- use warnings;
- use File::Spec::Functions qw/canonpath/;
- use File::Copy;
- use OpenSSL::Test qw/:DEFAULT srctop_file bldtop_dir ok_nofips with/;
- use OpenSSL::Test::Utils;
- setup("test_verify");
- sub verify {
- my ($cert, $purpose, $trusted, $untrusted, @opts) = @_;
- my @path = qw(test certs);
- my @args = qw(openssl verify -auth_level 1);
- push(@args, "-purpose", $purpose) if $purpose ne "";
- push(@args, @opts);
- for (@$trusted) { push(@args, "-trusted", srctop_file(@path, "$_.pem")) }
- for (@$untrusted) { push(@args, "-untrusted", srctop_file(@path, "$_.pem")) }
- push(@args, srctop_file(@path, "$cert.pem"));
- run(app([@args]));
- }
- plan tests => 193;
- # Canonical success
- ok(verify("ee-cert", "sslserver", ["root-cert"], ["ca-cert"]),
- "accept compat trust");
- # Root CA variants
- ok(!verify("ee-cert", "sslserver", [qw(root-nonca)], [qw(ca-cert)]),
- "fail trusted non-ca root");
- ok(!verify("ee-cert", "sslserver", [qw(nroot+serverAuth)], [qw(ca-cert)]),
- "fail server trust non-ca root");
- ok(!verify("ee-cert", "sslserver", [qw(nroot+anyEKU)], [qw(ca-cert)]),
- "fail wildcard trust non-ca root");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert2)], [qw(ca-cert)]),
- "fail wrong root key");
- ok(!verify("ee-cert", "sslserver", [qw(root-name2)], [qw(ca-cert)]),
- "fail wrong root DN");
- # Critical extensions
- ok(verify("ee-cert-noncrit-unknown-ext", "", ["root-cert"], ["ca-cert"]),
- "accept non-critical unknown extension");
- ok(!verify("ee-cert-crit-unknown-ext", "", ["root-cert"], ["ca-cert"]),
- "reject critical unknown extension");
- ok(verify("ee-cert-ocsp-nocheck", "", ["root-cert"], ["ca-cert"]),
- "accept critical OCSP No Check");
- # Explicit trust/purpose combinations
- #
- ok(verify("ee-cert", "sslserver", [qw(sroot-cert)], [qw(ca-cert)]),
- "accept server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(croot-cert)], [qw(ca-cert)]),
- "fail client purpose");
- ok(verify("ee-cert", "sslserver", [qw(root+serverAuth)], [qw(ca-cert)]),
- "accept server trust");
- ok(verify("ee-cert", "sslserver", [qw(sroot+serverAuth)], [qw(ca-cert)]),
- "accept server trust with server purpose");
- ok(verify("ee-cert", "sslserver", [qw(croot+serverAuth)], [qw(ca-cert)]),
- "accept server trust with client purpose");
- # Wildcard trust
- ok(verify("ee-cert", "sslserver", [qw(root+anyEKU)], [qw(ca-cert)]),
- "accept wildcard trust");
- ok(verify("ee-cert", "sslserver", [qw(sroot+anyEKU)], [qw(ca-cert)]),
- "accept wildcard trust with server purpose");
- ok(verify("ee-cert", "sslserver", [qw(croot+anyEKU)], [qw(ca-cert)]),
- "accept wildcard trust with client purpose");
- # Inapplicable mistrust
- ok(verify("ee-cert", "sslserver", [qw(root-clientAuth)], [qw(ca-cert)]),
- "accept client mistrust");
- ok(verify("ee-cert", "sslserver", [qw(sroot-clientAuth)], [qw(ca-cert)]),
- "accept client mistrust with server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(croot-clientAuth)], [qw(ca-cert)]),
- "fail client mistrust with client purpose");
- # Inapplicable trust
- ok(!verify("ee-cert", "sslserver", [qw(root+clientAuth)], [qw(ca-cert)]),
- "fail client trust");
- ok(!verify("ee-cert", "sslserver", [qw(sroot+clientAuth)], [qw(ca-cert)]),
- "fail client trust with server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(croot+clientAuth)], [qw(ca-cert)]),
- "fail client trust with client purpose");
- # Server mistrust
- ok(!verify("ee-cert", "sslserver", [qw(root-serverAuth)], [qw(ca-cert)]),
- "fail rejected EKU");
- ok(!verify("ee-cert", "sslserver", [qw(sroot-serverAuth)], [qw(ca-cert)]),
- "fail server mistrust with server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(croot-serverAuth)], [qw(ca-cert)]),
- "fail server mistrust with client purpose");
- # Wildcard mistrust
- ok(!verify("ee-cert", "sslserver", [qw(root-anyEKU)], [qw(ca-cert)]),
- "fail wildcard mistrust");
- ok(!verify("ee-cert", "sslserver", [qw(sroot-anyEKU)], [qw(ca-cert)]),
- "fail wildcard mistrust with server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(croot-anyEKU)], [qw(ca-cert)]),
- "fail wildcard mistrust with client purpose");
- # Check that trusted-first is on by setting up paths to different roots
- # depending on whether the intermediate is the trusted or untrusted one.
- #
- ok(verify("ee-cert", "sslserver", [qw(root-serverAuth root-cert2 ca-root2)],
- [qw(ca-cert)]),
- "accept trusted-first path");
- ok(verify("ee-cert", "sslserver", [qw(root-cert root2+serverAuth ca-root2)],
- [qw(ca-cert)]),
- "accept trusted-first path with server trust");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert root2-serverAuth ca-root2)],
- [qw(ca-cert)]),
- "fail trusted-first path with server mistrust");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert root2+clientAuth ca-root2)],
- [qw(ca-cert)]),
- "fail trusted-first path with client trust");
- # CA variants
- ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-nonca)]),
- "fail non-CA untrusted intermediate");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-nonbc)]),
- "fail non-CA untrusted intermediate");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert ca-nonca)], []),
- "fail non-CA trust-store intermediate");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert ca-nonbc)], []),
- "fail non-CA trust-store intermediate");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert nca+serverAuth)], []),
- "fail non-CA server trust intermediate");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert nca+anyEKU)], []),
- "fail non-CA wildcard trust intermediate");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-cert2)]),
- "fail wrong intermediate CA key");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-name2)]),
- "fail wrong intermediate CA DN");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert)], [qw(ca-root2)]),
- "fail wrong intermediate CA issuer");
- ok(!verify("ee-cert", "sslserver", [], [qw(ca-cert)], "-partial_chain"),
- "fail untrusted partial chain");
- ok(verify("ee-cert", "sslserver", [qw(ca-cert)], [], "-partial_chain"),
- "accept trusted partial chain");
- ok(!verify("ee-cert", "sslserver", [qw(ca-expired)], [], "-partial_chain"),
- "reject expired trusted partial chain"); # this check is beyond RFC 5280
- ok(!verify("ee-cert", "sslserver", [qw(root-expired)], [qw(ca-cert)]),
- "reject expired trusted root"); # this check is beyond RFC 5280
- ok(verify("ee-cert", "sslserver", [qw(sca-cert)], [], "-partial_chain"),
- "accept partial chain with server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(cca-cert)], [], "-partial_chain"),
- "fail partial chain with client purpose");
- ok(verify("ee-cert", "sslserver", [qw(ca+serverAuth)], [], "-partial_chain"),
- "accept server trust partial chain");
- ok(verify("ee-cert", "sslserver", [qw(cca+serverAuth)], [], "-partial_chain"),
- "accept server trust client purpose partial chain");
- ok(verify("ee-cert", "sslserver", [qw(ca-clientAuth)], [], "-partial_chain"),
- "accept client mistrust partial chain");
- ok(verify("ee-cert", "sslserver", [qw(ca+anyEKU)], [], "-partial_chain"),
- "accept wildcard trust partial chain");
- ok(!verify("ee-cert", "sslserver", [], [qw(ca+serverAuth)], "-partial_chain"),
- "fail untrusted partial issuer with ignored server trust");
- ok(!verify("ee-cert", "sslserver", [qw(ca-serverAuth)], [], "-partial_chain"),
- "fail server mistrust partial chain");
- ok(!verify("ee-cert", "sslserver", [qw(ca+clientAuth)], [], "-partial_chain"),
- "fail client trust partial chain");
- ok(!verify("ee-cert", "sslserver", [qw(ca-anyEKU)], [], "-partial_chain"),
- "fail wildcard mistrust partial chain");
- # We now test auxiliary trust even for intermediate trusted certs without
- # -partial_chain. Note that "-trusted_first" is now always on and cannot
- # be disabled.
- ok(verify("ee-cert", "sslserver", [qw(root-cert ca+serverAuth)], [qw(ca-cert)]),
- "accept server trust");
- ok(verify("ee-cert", "sslserver", [qw(root-cert ca+anyEKU)], [qw(ca-cert)]),
- "accept wildcard trust");
- ok(verify("ee-cert", "sslserver", [qw(root-cert sca-cert)], [qw(ca-cert)]),
- "accept server purpose");
- ok(verify("ee-cert", "sslserver", [qw(root-cert sca+serverAuth)], [qw(ca-cert)]),
- "accept server trust and purpose");
- ok(verify("ee-cert", "sslserver", [qw(root-cert sca+anyEKU)], [qw(ca-cert)]),
- "accept wildcard trust and server purpose");
- ok(verify("ee-cert", "sslserver", [qw(root-cert sca-clientAuth)], [qw(ca-cert)]),
- "accept client mistrust and server purpose");
- ok(verify("ee-cert", "sslserver", [qw(root-cert cca+serverAuth)], [qw(ca-cert)]),
- "accept server trust and client purpose");
- ok(verify("ee-cert", "sslserver", [qw(root-cert cca+anyEKU)], [qw(ca-cert)]),
- "accept wildcard trust and client purpose");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert cca-cert)], [qw(ca-cert)]),
- "fail client purpose");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert ca-anyEKU)], [qw(ca-cert)]),
- "fail wildcard mistrust");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert ca-serverAuth)], [qw(ca-cert)]),
- "fail server mistrust");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert ca+clientAuth)], [qw(ca-cert)]),
- "fail client trust");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert sca+clientAuth)], [qw(ca-cert)]),
- "fail client trust and server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert cca+clientAuth)], [qw(ca-cert)]),
- "fail client trust and client purpose");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert cca-serverAuth)], [qw(ca-cert)]),
- "fail server mistrust and client purpose");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert cca-clientAuth)], [qw(ca-cert)]),
- "fail client mistrust and client purpose");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert sca-serverAuth)], [qw(ca-cert)]),
- "fail server mistrust and server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert sca-anyEKU)], [qw(ca-cert)]),
- "fail wildcard mistrust and server purpose");
- ok(!verify("ee-cert", "sslserver", [qw(root-cert cca-anyEKU)], [qw(ca-cert)]),
- "fail wildcard mistrust and client purpose");
- # EE variants
- ok(verify("ee-client", "sslclient", [qw(root-cert)], [qw(ca-cert)]),
- "accept client chain");
- ok(!verify("ee-client", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
- "fail server leaf purpose");
- ok(!verify("ee-cert", "sslclient", [qw(root-cert)], [qw(ca-cert)]),
- "fail client leaf purpose");
- ok(!verify("ee-cert2", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
- "fail wrong intermediate CA key");
- ok(!verify("ee-name2", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
- "fail wrong intermediate CA DN");
- ok(!verify("ee-expired", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
- "fail expired leaf");
- ok(verify("ee-cert", "sslserver", [qw(ee-cert)], [], "-partial_chain"),
- "accept last-resort direct leaf match");
- ok(verify("ee-client", "sslclient", [qw(ee-client)], [], "-partial_chain"),
- "accept last-resort direct leaf match");
- ok(!verify("ee-cert", "sslserver", [qw(ee-client)], [], "-partial_chain"),
- "fail last-resort direct leaf non-match");
- ok(verify("ee-cert", "sslserver", [qw(ee+serverAuth)], [], "-partial_chain"),
- "accept direct match with server trust");
- ok(!verify("ee-cert", "sslserver", [qw(ee-serverAuth)], [], "-partial_chain"),
- "fail direct match with server mistrust");
- ok(verify("ee-client", "sslclient", [qw(ee+clientAuth)], [], "-partial_chain"),
- "accept direct match with client trust");
- ok(!verify("ee-client", "sslclient", [qw(ee-clientAuth)], [], "-partial_chain"),
- "reject direct match with client mistrust");
- ok(verify("ee-pathlen", "sslserver", [qw(root-cert)], [qw(ca-cert)]),
- "accept non-ca with pathlen:0 by default");
- ok(!verify("ee-pathlen", "sslserver", [qw(root-cert)], [qw(ca-cert)], "-x509_strict"),
- "reject non-ca with pathlen:0 with strict flag");
- # EE veaiants wrt timestamp signing
- ok(verify("ee-timestampsign-CABforum", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "accept timestampsign according to CAB forum");
- ok(!verify("ee-timestampsign-CABforum-noncritxku", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "fail timestampsign according to CAB forum with extendedKeyUsage not critical");
- ok(!verify("ee-timestampsign-CABforum-serverauth", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "fail timestampsign according to CAB forum with serverAuth");
- ok(!verify("ee-timestampsign-CABforum-anyextkeyusage", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "fail timestampsign according to CAB forum with anyExtendedKeyUsage");
- ok(!verify("ee-timestampsign-CABforum-crlsign", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "fail timestampsign according to CAB forum with cRLSign");
- ok(!verify("ee-timestampsign-CABforum-keycertsign", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "fail timestampsign according to CAB forum with keyCertSign");
- ok(verify("ee-timestampsign-rfc3161", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "accept timestampsign according to RFC 3161");
- ok(!verify("ee-timestampsign-rfc3161-noncritxku", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "fail timestampsign according to RFC 3161 with extendedKeyUsage not critical");
- ok(verify("ee-timestampsign-rfc3161-digsig", "timestampsign", [qw(root-cert)], [qw(ca-cert)]),
- "accept timestampsign according to RFC 3161 with digitalSignature");
- # EE variants wrt code signing
- ok(verify("ee-codesign", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "accept codesign");
- ok(!verify("ee-codesign-serverauth", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail codesign with additional serverAuth");
- ok(!verify("ee-codesign-anyextkeyusage", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail codesign with additional anyExtendedKeyUsage");
- ok(!verify("ee-codesign-crlsign", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail codesign with additional cRLSign");
- ok(!verify("ee-codesign-keycertsign", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail codesign with additional keyCertSign");
- ok(!verify("ee-codesign-noncritical", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail codesign without critical KU");
- ok(!verify("ee-cert", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail sslserver as code sign");
- ok(!verify("ee-client", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail sslclient as codesign");
- ok(!verify("ee-timestampsign-CABforum", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail timestampsign according to CAB forum as codesign");
- ok(!verify("ee-timestampsign-rfc3161", "codesign", [qw(root-cert)], [qw(ca-cert)]),
- "fail timestampsign according to RFC 3161 as codesign");
- # Proxy certificates
- ok(!verify("pc1-cert", "sslclient", [qw(root-cert)], [qw(ee-client ca-cert)]),
- "fail to accept proxy cert without -allow_proxy_certs");
- ok(verify("pc1-cert", "sslclient", [qw(root-cert)], [qw(ee-client ca-cert)],
- "-allow_proxy_certs"),
- "accept proxy cert 1");
- ok(verify("pc2-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
- "-allow_proxy_certs"),
- "accept proxy cert 2");
- ok(!verify("bad-pc3-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
- "-allow_proxy_certs"),
- "fail proxy cert with incorrect subject");
- ok(!verify("bad-pc4-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
- "-allow_proxy_certs"),
- "fail proxy cert with incorrect pathlen");
- ok(verify("pc5-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
- "-allow_proxy_certs"),
- "accept proxy cert missing proxy policy");
- ok(!verify("pc6-cert", "sslclient", [qw(root-cert)], [qw(pc1-cert ee-client ca-cert)],
- "-allow_proxy_certs"),
- "failed proxy cert where last CN was added as a multivalue RDN component");
- # Security level tests
- ok(verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "2"),
- "accept RSA 2048 chain at auth level 2");
- ok(!verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "3"),
- "reject RSA 2048 root at auth level 3");
- ok(verify("ee-cert", "", ["root-cert-768"], ["ca-cert-768i"], "-auth_level", "0"),
- "accept RSA 768 root at auth level 0");
- ok(!verify("ee-cert", "", ["root-cert-768"], ["ca-cert-768i"]),
- "reject RSA 768 root at auth level 1");
- ok(verify("ee-cert-768i", "", ["root-cert"], ["ca-cert-768"], "-auth_level", "0"),
- "accept RSA 768 intermediate at auth level 0");
- ok(!verify("ee-cert-768i", "", ["root-cert"], ["ca-cert-768"]),
- "reject RSA 768 intermediate at auth level 1");
- ok(verify("ee-cert-768", "", ["root-cert"], ["ca-cert"], "-auth_level", "0"),
- "accept RSA 768 leaf at auth level 0");
- ok(!verify("ee-cert-768", "", ["root-cert"], ["ca-cert"]),
- "reject RSA 768 leaf at auth level 1");
- #
- ok(verify("ee-cert", "", ["root-cert-md5"], ["ca-cert"], "-auth_level", "2"),
- "accept md5 self-signed TA at auth level 2");
- ok(verify("ee-cert", "", ["ca-cert-md5-any"], [], "-auth_level", "2"),
- "accept md5 intermediate TA at auth level 2");
- ok(verify("ee-cert", "", ["root-cert"], ["ca-cert-md5"], "-auth_level", "0"),
- "accept md5 intermediate at auth level 0");
- ok(!verify("ee-cert", "", ["root-cert"], ["ca-cert-md5"]),
- "reject md5 intermediate at auth level 1");
- ok(verify("ee-cert-md5", "", ["root-cert"], ["ca-cert"], "-auth_level", "0"),
- "accept md5 leaf at auth level 0");
- ok(!verify("ee-cert-md5", "", ["root-cert"], ["ca-cert"]),
- "reject md5 leaf at auth level 1");
- # Explicit vs named curve tests
- SKIP: {
- skip "EC is not supported by this OpenSSL build", 7
- if disabled("ec");
- ok(!verify("ee-cert-ec-explicit", "", ["root-cert"],
- ["ca-cert-ec-named"]),
- "reject explicit curve leaf with named curve intermediate");
- ok(!verify("ee-cert-ec-named-explicit", "", ["root-cert"],
- ["ca-cert-ec-explicit"]),
- "reject named curve leaf with explicit curve intermediate");
- ok(verify("ee-cert-ec-named-named", "", ["root-cert"],
- ["ca-cert-ec-named"]),
- "accept named curve leaf with named curve intermediate");
- ok(verify("ee-cert-ec-sha3-224", "", ["root-cert"], ["ca-cert-ec-named"], ),
- "accept cert generated with EC and SHA3-224");
- ok(verify("ee-cert-ec-sha3-256", "", ["root-cert"], ["ca-cert-ec-named"], ),
- "accept cert generated with EC and SHA3-256");
- ok(verify("ee-cert-ec-sha3-384", "", ["root-cert"], ["ca-cert-ec-named"], ),
- "accept cert generated with EC and SHA3-384");
- ok(verify("ee-cert-ec-sha3-512", "", ["root-cert"], ["ca-cert-ec-named"], ),
- "accept cert generated with EC and SHA3-512");
- }
- # Same as above but with base provider used for decoding
- SKIP: {
- my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
- my $provconf = srctop_file("test", "fips-and-base.cnf");
- my $provpath = bldtop_dir("providers");
- my @prov = ("-provider-path", $provpath);
- skip "EC is not supported or FIPS is disabled", 7
- if disabled("ec") || $no_fips;
- $ENV{OPENSSL_CONF} = $provconf;
- ok(verify("ee-cert-ec-sha3-224", "", ["root-cert"], ["ca-cert-ec-named"], @prov),
- "accept cert generated with EC and SHA3-224 w/fips");
- ok(verify("ee-cert-ec-sha3-256", "", ["root-cert"], ["ca-cert-ec-named"], @prov),
- "accept cert generated with EC and SHA3-256 w/fips");
- ok(verify("ee-cert-ec-sha3-384", "", ["root-cert"], ["ca-cert-ec-named"], @prov),
- "accept cert generated with EC and SHA3-384 w/fips");
- ok(verify("ee-cert-ec-sha3-512", "", ["root-cert"], ["ca-cert-ec-named"], @prov),
- "accept cert generated with EC and SHA3-512 w/fips");
- delete $ENV{OPENSSL_CONF};
- run(test(["fips_version_test", "-config", $provconf, ">3.0.0"]),
- capture => 1, statusvar => \my $exit);
- skip "FIPS provider version is too old", 3
- if !$exit;
- $ENV{OPENSSL_CONF} = $provconf;
- ok(!verify("ee-cert-ec-explicit", "", ["root-cert"],
- ["ca-cert-ec-named"], @prov),
- "reject explicit curve leaf with named curve intermediate w/fips");
- ok(!verify("ee-cert-ec-named-explicit", "", ["root-cert"],
- ["ca-cert-ec-explicit"], @prov),
- "reject named curve leaf with explicit curve intermediate w/fips");
- ok(verify("ee-cert-ec-named-named", "", ["root-cert"],
- ["ca-cert-ec-named"], @prov),
- "accept named curve leaf with named curve intermediate w/fips");
- delete $ENV{OPENSSL_CONF};
- }
- # Depth tests, note the depth limit bounds the number of CA certificates
- # between the trust-anchor and the leaf, so, for example, with a root->ca->leaf
- # chain, depth = 1 is sufficient, but depth == 0 is not.
- #
- ok(verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-verify_depth", "2"),
- "accept chain with verify_depth 2");
- ok(verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-verify_depth", "1"),
- "accept chain with verify_depth 1");
- ok(!verify("ee-cert", "", ["root-cert"], ["ca-cert"], "-verify_depth", "0"),
- "reject chain with verify_depth 0");
- ok(verify("ee-cert", "", ["ca-cert-md5-any"], [], "-verify_depth", "0"),
- "accept md5 intermediate TA with verify_depth 0");
- # Name Constraints tests.
- ok(verify("alt1-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints everything permitted");
- ok(verify("alt2-cert", "", ["root-cert"], ["ncca2-cert"], ),
- "Name Constraints nothing excluded");
- ok(verify("alt3-cert", "", ["root-cert"], ["ncca1-cert", "ncca3-cert"], ),
- "Name Constraints nested test all permitted");
- ok(verify("goodcn1-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints CNs permitted");
- ok(verify("goodcn2-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints CNs permitted - no SAN extension");
- ok(!verify("badcn1-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints CNs not permitted");
- ok(!verify("badalt1-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints hostname not permitted");
- ok(!verify("badalt2-cert", "", ["root-cert"], ["ncca2-cert"], ),
- "Name Constraints hostname excluded");
- ok(!verify("badalt3-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints email address not permitted");
- ok(!verify("badalt4-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints subject email address not permitted");
- ok(!verify("badalt5-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints IP address not permitted");
- ok(!verify("badalt6-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints CN hostname not permitted");
- ok(!verify("badalt7-cert", "", ["root-cert"], ["ncca1-cert"], ),
- "Name Constraints CN BMPSTRING hostname not permitted");
- ok(!verify("badalt8-cert", "", ["root-cert"], ["ncca1-cert", "ncca3-cert"], ),
- "Name constraints nested DNS name not permitted 1");
- ok(!verify("badalt9-cert", "", ["root-cert"], ["ncca1-cert", "ncca3-cert"], ),
- "Name constraints nested DNS name not permitted 2");
- ok(!verify("badalt10-cert", "", ["root-cert"], ["ncca1-cert", "ncca3-cert"], ),
- "Name constraints nested DNS name excluded");
- ok(!verify("bad-othername-cert", "", ["root-cert"], ["nccaothername-cert"], ),
- "CVE-2022-4203 type confusion test");
- #Check that we get the expected failure return code
- with({ exit_checker => sub { return shift == 2; } },
- sub {
- ok(verify("bad-othername-namec", "", ["bad-othername-namec-inter"], [],
- "-partial_chain", "-attime", "1623060000"),
- "Name constraints bad othername name constraint");
- });
- ok(verify("ee-pss-sha1-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "0"),
- "Accept PSS signature using SHA1 at auth level 0");
- ok(verify("ee-pss-sha256-cert", "", ["root-cert"], ["ca-cert"], ),
- "CA with PSS signature using SHA256");
- ok(!verify("ee-pss-sha1-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "1"),
- "Reject PSS signature using SHA1 and auth level 1");
- ok(verify("ee-pss-sha256-cert", "", ["root-cert"], ["ca-cert"], "-auth_level", "2"),
- "PSS signature using SHA256 and auth level 2");
- ok(verify("ee-pss-cert", "", ["root-cert"], ["ca-pss-cert"], ),
- "CA PSS signature");
- ok(!verify("ee-pss-wrong1.5-cert", "", ["root-cert"], ["ca-pss-cert"], ),
- "CA producing regular PKCS#1 v1.5 signature with PSA-PSS key");
- ok(!verify("many-names1", "", ["many-constraints"], ["many-constraints"], ),
- "Too many names and constraints to check (1)");
- ok(!verify("many-names2", "", ["many-constraints"], ["many-constraints"], ),
- "Too many names and constraints to check (2)");
- ok(!verify("many-names3", "", ["many-constraints"], ["many-constraints"], ),
- "Too many names and constraints to check (3)");
- ok(verify("some-names1", "", ["many-constraints"], ["many-constraints"], ),
- "Not too many names and constraints to check (1)");
- ok(verify("some-names2", "", ["many-constraints"], ["many-constraints"], ),
- "Not too many names and constraints to check (2)");
- ok(verify("some-names2", "", ["many-constraints"], ["many-constraints"], ),
- "Not too many names and constraints to check (3)");
- ok(verify("root-cert-rsa2", "", ["root-cert-rsa2"], [], "-check_ss_sig"),
- "Public Key Algorithm rsa instead of rsaEncryption");
- ok(verify("ee-self-signed", "", ["ee-self-signed"], [], "-attime", "1593565200"),
- "accept trusted self-signed EE cert excluding key usage keyCertSign");
- ok(verify("ee-ss-with-keyCertSign", "", ["ee-ss-with-keyCertSign"], []),
- "accept trusted self-signed EE cert with key usage keyCertSign also when strict");
- SKIP: {
- skip "Ed25519 is not supported by this OpenSSL build", 6
- if disabled("ecx");
- # ED25519 certificate from draft-ietf-curdle-pkix-04
- ok(verify("ee-ed25519", "", ["root-ed25519"], []),
- "accept X25519 EE cert issued by trusted Ed25519 self-signed CA cert");
- ok(!verify("ee-ed25519", "", ["root-ed25519"], [], "-x509_strict"),
- "reject X25519 EE cert in strict mode since AKID is missing");
- ok(!verify("root-ed25519", "", ["ee-ed25519"], []),
- "fail Ed25519 CA and EE certs swapped");
- ok(verify("root-ed25519", "", ["root-ed25519"], []),
- "accept trusted Ed25519 self-signed CA cert");
- ok(!verify("ee-ed25519", "", ["ee-ed25519"], []),
- "fail trusted Ed25519-signed self-issued X25519 cert");
- ok(verify("ee-ed25519", "", ["ee-ed25519"], [], "-partial_chain"),
- "accept last-resort direct leaf match Ed25519-signed self-issued cert");
- }
- SKIP: {
- skip "SM2 is not supported by this OpenSSL build", 2 if disabled("sm2");
- ok_nofips(verify("sm2", "", ["sm2-ca-cert"], [], "-vfyopt", "distid:1234567812345678"),
- "SM2 ID test");
- ok_nofips(verify("sm2", "", ["sm2-ca-cert"], [], "-vfyopt", "hexdistid:31323334353637383132333435363738"),
- "SM2 hex ID test");
- }
- # Mixed content tests
- my $cert_file = srctop_file('test', 'certs', 'root-cert.pem');
- my $rsa_file = srctop_file('test', 'certs', 'key-pass-12345.pem');
- SKIP: {
- my $certplusrsa_file = 'certplusrsa.pem';
- my $certplusrsa;
- skip "Couldn't create certplusrsa.pem", 1
- unless ( open $certplusrsa, '>', $certplusrsa_file
- and copy($cert_file, $certplusrsa)
- and copy($rsa_file, $certplusrsa)
- and close $certplusrsa );
- ok(run(app([ qw(openssl verify -trusted), $certplusrsa_file, $cert_file ])),
- 'Mixed cert + key file test');
- }
- SKIP: {
- my $rsapluscert_file = 'rsapluscert.pem';
- my $rsapluscert;
- skip "Couldn't create rsapluscert.pem", 1
- unless ( open $rsapluscert, '>', $rsapluscert_file
- and copy($rsa_file, $rsapluscert)
- and copy($cert_file, $rsapluscert)
- and close $rsapluscert );
- ok(run(app([ qw(openssl verify -trusted), $rsapluscert_file, $cert_file ])),
- 'Mixed key + cert file test');
- }
- # Certificate Policies
- ok(verify("ee-cert-policies", "", ["root-cert"], ["ca-pol-cert"],
- "-policy_check", "-policy", "1.3.6.1.4.1.16604.998855.1",
- "-explicit_policy"),
- "Certificate policy");
- ok(!verify("ee-cert-policies-bad", "", ["root-cert"], ["ca-pol-cert"],
- "-policy_check", "-policy", "1.3.6.1.4.1.16604.998855.1",
- "-explicit_policy"),
- "Bad certificate policy");
|