blob: d35779b000cda8657280dad5486ceb8eed6d821a [file] [log] [blame]
William Lallemand4781fad2020-03-31 14:48:34 +02001#REGTEST_TYPE=devel
William Lallemand2be4a2e2020-03-31 12:13:34 +02002
3# This reg-test uses the "add ssl crt-list" command to add a certificate over the CLI.
William Lallemand3ed722f2020-04-30 09:47:08 +02004# It requires socat to upload the certificate
5
6# this check does 2 requests, the first one will use "www.test1.com" as SNI, and
7# the second one will use "localhost". Since vtest can't do SSL, we use haproxy
8# as an SSL client with 2 chained listen section.
William Lallemand2be4a2e2020-03-31 12:13:34 +02009
10# If this test does not work anymore:
William Lallemand3ed722f2020-04-30 09:47:08 +020011# - Check that you have socat
William Lallemand2be4a2e2020-03-31 12:13:34 +020012
13varnishtest "Test the 'add ssl crt-list' feature of the CLI"
14#REQUIRE_VERSION=2.2
15#REQUIRE_OPTIONS=OPENSSL
William Lallemand3ed722f2020-04-30 09:47:08 +020016#REQUIRE_BINARIES=socat
William Lallemand2be4a2e2020-03-31 12:13:34 +020017feature ignore_unknown_macro
18
William Lallemand3ed722f2020-04-30 09:47:08 +020019server s1 -repeat 2 {
20 rxreq
21 txresp
22} -start
William Lallemand2be4a2e2020-03-31 12:13:34 +020023
24haproxy h1 -conf {
William Lallemand3ed722f2020-04-30 09:47:08 +020025 global
26 tune.ssl.default-dh-param 2048
27 tune.ssl.capture-cipherlist-size 1
28 crt-base ${testdir}
29 stats socket "${tmpdir}/h1/stats" level admin
30
31 defaults
32 mode http
33 option httplog
34 ${no-htx} option http-use-htx
35 log stderr local0 debug err
36 option logasap
37 timeout connect 1s
38 timeout client 1s
39 timeout server 1s
William Lallemand2be4a2e2020-03-31 12:13:34 +020040
William Lallemand3ed722f2020-04-30 09:47:08 +020041
42 listen clear-lst
43 bind "fd@${clearlst}"
44 balance roundrobin
45 server s1 "${tmpdir}/ssl.sock" ssl verify none sni str(www.test1.com)
46 server s2 "${tmpdir}/ssl.sock" ssl verify none sni str(localhost)
47
48
49 listen ssl-lst
50 mode http
51 ${no-htx} option http-use-htx
52 bind "${tmpdir}/ssl.sock" ssl strict-sni crt-list ${testdir}/localhost.crt-list
53
54 server s1 ${s1_addr}:${s1_port}
William Lallemand31d463d2022-06-20 16:51:53 +020055 server s2 ${s1_addr}:${s1_port} ssl crt "${testdir}/common.pem" weight 0 verify none
William Lallemand2be4a2e2020-03-31 12:13:34 +020056} -start
57
58
59haproxy h1 -cli {
60 send "show ssl cert ${testdir}/common.pem"
61 expect ~ ".*SHA1 FingerPrint: 2195C9F0FD58470313013FC27C1B9CF9864BD1C6"
62}
63
William Lallemand3ed722f2020-04-30 09:47:08 +020064client c1 -connect ${h1_clearlst_sock} {
65 txreq
66 rxresp
67 expect resp.status == 200
68} -run
William Lallemand2be4a2e2020-03-31 12:13:34 +020069
70shell {
William Lallemand3ed722f2020-04-30 09:47:08 +020071 echo "new ssl cert ${testdir}/ecdsa.pem" | socat "${tmpdir}/h1/stats" -
72 printf "set ssl cert ${testdir}/ecdsa.pem <<\n$(cat ${testdir}/ecdsa.pem)\n\n" | socat "${tmpdir}/h1/stats" -
73 echo "commit ssl cert ${testdir}/ecdsa.pem" | socat "${tmpdir}/h1/stats" -
William Lallemand31d463d2022-06-20 16:51:53 +020074 printf "add ssl crt-list ${testdir}/localhost.crt-list/ <<\n${testdir}/common.pem [ssl-min-ver SSLv3 verify none allow-0rtt] !*\n\n" | socat "${tmpdir}/h1/stats" -
William Lallemand99cc2182020-06-25 15:19:51 +020075 printf "add ssl crt-list ${testdir}/localhost.crt-list/ <<\n${testdir}/ecdsa.pem [ssl-min-ver SSLv3 verify none allow-0rtt] localhost !www.test1.com\n\n" | socat "${tmpdir}/h1/stats" -
William Lallemand3ed722f2020-04-30 09:47:08 +020076 printf "add ssl crt-list ${testdir}/localhost.crt-list <<\n${testdir}/ecdsa.pem [verify none allow-0rtt]\n\n" | socat "${tmpdir}/h1/stats" -
William Lallemand99cc2182020-06-25 15:19:51 +020077 printf "add ssl crt-list ${testdir}/localhost.crt-list/// <<\n${testdir}/ecdsa.pem localhost !www.test1.com\n\n" | socat "${tmpdir}/h1/stats" -
78 printf "add ssl crt-list ${testdir}/localhost.crt-list///// <<\n${testdir}/ecdsa.pem\n\n" | socat "${tmpdir}/h1/stats" -
79 printf "add ssl crt-list ${testdir}/localhost.crt-list// ${testdir}/ecdsa.pem\n" | socat "${tmpdir}/h1/stats" -
William Lallemand2be4a2e2020-03-31 12:13:34 +020080}
81
82haproxy h1 -cli {
83 send "show ssl cert ${testdir}/ecdsa.pem"
84 expect ~ ".*SHA1 FingerPrint: A490D069DBAFBEE66DE434BEC34030ADE8BCCBF1"
85}
86
87haproxy h1 -cli {
William Lallemand99cc2182020-06-25 15:19:51 +020088 send "show ssl crt-list ${testdir}/localhost.crt-list//"
William Lallemandfdb6db42020-04-01 17:13:22 +020089 # check the options and the filters in any order
William Lallemand8177ad92020-05-20 16:49:02 +020090 expect ~ ".*${testdir}/ecdsa.pem \\[(?=.*verify none)(?=.*allow-0rtt)(?=.*ssl-min-ver SSLv3).*\\](?=.*!www.test1.com)(?=.*localhost).*"
William Lallemand2be4a2e2020-03-31 12:13:34 +020091}
92
William Lallemand3ed722f2020-04-30 09:47:08 +020093client c1 -connect ${h1_clearlst_sock} {
94 txreq
95 rxresp
96 expect resp.status == 200
97} -run
Remi Tricot-Le Bretonfb00f312021-03-23 16:41:53 +010098
99
100# Try to add a new line that mentions an "unknown" CA file (not loaded yet).
101# It should fail since no disk access are allowed during runtime.
102shell {
103 printf "add ssl crt-list ${testdir}/localhost.crt-list/ <<\n${testdir}/ecdsa.pem [ca-file ${testdir}/ca-auth.crt] localhost\n\n" | socat "${tmpdir}/h1/stats" - | grep "unable to load ${testdir}/ca-auth.crt"
104}
105shell {
106 printf "add ssl crt-list ${testdir}/localhost.crt-list/ <<\n${testdir}/ecdsa.pem [ca-verify-file ${testdir}/ca-auth.crt] localhost\n\n" | socat "${tmpdir}/h1/stats" - | grep "unable to load ${testdir}/ca-auth.crt"
107}
108shell {
109 printf "add ssl crt-list ${testdir}/localhost.crt-list/ <<\n${testdir}/ecdsa.pem [crl-file ${testdir}/ca-auth.crt] localhost\n\n" | socat "${tmpdir}/h1/stats" - | grep "unable to load ${testdir}/ca-auth.crt"
110}
111
112# Check that the new line was not added to the crt-list.
113haproxy h1 -cli {
114 send "show ssl crt-list ${testdir}/localhost.crt-list//"
115 expect !~ ".*ca-file ${testdir}/ca-auth.crt"
116}