William Lallemand | a870a9c | 2021-02-01 14:37:36 +0100 | [diff] [blame] | 1 | #REGTEST_TYPE=devel |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 2 | |
| 3 | # This reg-test uses the "set ssl cert" command to update a backend certificate over the CLI. |
| 4 | # It requires socat to upload the certificate |
| 5 | |
| 6 | varnishtest "Test the 'set ssl cert' feature of the CLI" |
| 7 | #REQUIRE_VERSION=2.4 |
| 8 | #REQUIRE_OPTIONS=OPENSSL |
Tim Duesterhus | 4ee192f | 2021-06-11 19:56:17 +0200 | [diff] [blame] | 9 | feature cmd "command -v socat" |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 10 | feature ignore_unknown_macro |
| 11 | |
| 12 | server s1 -repeat 4 { |
| 13 | rxreq |
| 14 | txresp |
| 15 | } -start |
| 16 | |
| 17 | haproxy h1 -conf { |
| 18 | global |
| 19 | tune.ssl.default-dh-param 2048 |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 20 | tune.ssl.capture-buffer-size 1 |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 21 | stats socket "${tmpdir}/h1/stats" level admin |
William Lallemand | a870a9c | 2021-02-01 14:37:36 +0100 | [diff] [blame] | 22 | nbthread 1 |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 23 | |
| 24 | defaults |
| 25 | mode http |
| 26 | option httplog |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 27 | log stderr local0 debug err |
| 28 | option logasap |
Willy Tarreau | f673923 | 2021-11-18 17:46:22 +0100 | [diff] [blame] | 29 | timeout connect "${HAPROXY_TEST_TIMEOUT-5s}" |
| 30 | timeout client "${HAPROXY_TEST_TIMEOUT-5s}" |
| 31 | timeout server "${HAPROXY_TEST_TIMEOUT-5s}" |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 32 | |
| 33 | listen clear-lst |
| 34 | bind "fd@${clearlst}" |
| 35 | retries 0 # 2nd SSL connection must fail so skip the retry |
William Lallemand | e0de0a6 | 2021-02-03 18:51:01 +0100 | [diff] [blame] | 36 | server s1 "${tmpdir}/ssl.sock" ssl verify none crt ${testdir}/client1.pem |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 37 | |
| 38 | listen ssl-lst |
| 39 | # crt: certificate of the server |
| 40 | # ca-file: CA used for client authentication request |
| 41 | # crl-file: revocation list for client auth: the client1 certificate is revoked |
William Lallemand | ff97eda | 2021-02-01 14:57:31 +0100 | [diff] [blame] | 42 | bind "${tmpdir}/ssl.sock" ssl crt ${testdir}/common.pem ca-file ${testdir}/ca-auth.crt verify optional crt-ignore-err all crl-file ${testdir}/crl-auth.pem |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 43 | |
| 44 | acl cert_expired ssl_c_verify 10 |
| 45 | acl cert_revoked ssl_c_verify 23 |
| 46 | acl cert_ok ssl_c_verify 0 |
| 47 | |
| 48 | http-response add-header X-SSL Ok if cert_ok |
| 49 | http-response add-header X-SSL Expired if cert_expired |
| 50 | http-response add-header X-SSL Revoked if cert_revoked |
William Lallemand | 7b79424 | 2021-01-28 16:00:22 +0100 | [diff] [blame] | 51 | http-response add-header x-ssl-sha1 %[ssl_c_sha1,hex] |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 52 | |
| 53 | server s1 ${s1_addr}:${s1_port} |
| 54 | } -start |
| 55 | |
| 56 | client c1 -connect ${h1_clearlst_sock} { |
| 57 | txreq |
| 58 | rxresp |
| 59 | expect resp.status == 200 |
William Lallemand | 7b79424 | 2021-01-28 16:00:22 +0100 | [diff] [blame] | 60 | expect resp.http.x-ssl-sha1 == "D9C3BAE37EA5A7EDB7B3C9BDD4DCB2FE58A412E4" |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 61 | expect resp.http.x-ssl == "Ok" |
| 62 | } -run |
| 63 | |
William Lallemand | 7e69637 | 2021-01-28 14:59:19 +0100 | [diff] [blame] | 64 | haproxy h1 -cli { |
| 65 | send "show ssl cert ${testdir}/client1.pem" |
| 66 | expect ~ ".*SHA1 FingerPrint: D9C3BAE37EA5A7EDB7B3C9BDD4DCB2FE58A412E4" |
| 67 | } |
| 68 | |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 69 | # Replace certificate with an expired one |
| 70 | shell { |
| 71 | printf "set ssl cert ${testdir}/client1.pem <<\n$(cat ${testdir}/client2_expired.pem)\n\n" | socat "${tmpdir}/h1/stats" - |
| 72 | echo "commit ssl cert ${testdir}/client1.pem" | socat "${tmpdir}/h1/stats" - |
| 73 | } |
| 74 | |
William Lallemand | 7e69637 | 2021-01-28 14:59:19 +0100 | [diff] [blame] | 75 | haproxy h1 -cli { |
| 76 | send "show ssl cert ${testdir}/client1.pem" |
| 77 | expect ~ ".*SHA1 FingerPrint: C625EB01A0A660294B9D7F44C5CEEE5AFC495BE4" |
| 78 | } |
| 79 | |
| 80 | |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 81 | # The updated client certificate is an expired one so this request should fail |
| 82 | client c1 -connect ${h1_clearlst_sock} { |
| 83 | txreq |
| 84 | rxresp |
| 85 | expect resp.status == 200 |
William Lallemand | 7b79424 | 2021-01-28 16:00:22 +0100 | [diff] [blame] | 86 | expect resp.http.x-ssl-sha1 == "C625EB01A0A660294B9D7F44C5CEEE5AFC495BE4" |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 87 | expect resp.http.x-ssl == "Expired" |
| 88 | } -run |
| 89 | |
| 90 | # Replace certificate with a revoked one |
| 91 | shell { |
| 92 | printf "set ssl cert ${testdir}/client1.pem <<\n$(cat ${testdir}/client3_revoked.pem)\n\n" | socat "${tmpdir}/h1/stats" - |
| 93 | echo "commit ssl cert ${testdir}/client1.pem" | socat "${tmpdir}/h1/stats" - |
| 94 | } |
| 95 | |
William Lallemand | 7e69637 | 2021-01-28 14:59:19 +0100 | [diff] [blame] | 96 | haproxy h1 -cli { |
| 97 | send "show ssl cert ${testdir}/client1.pem" |
| 98 | expect ~ ".*SHA1 FingerPrint: 992386628A40C9D49C89BAC0058B5D45D8575151" |
| 99 | } |
| 100 | |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 101 | # The updated client certificate is a revoked one so this request should fail |
| 102 | client c1 -connect ${h1_clearlst_sock} { |
| 103 | txreq |
| 104 | rxresp |
| 105 | expect resp.status == 200 |
William Lallemand | 7b79424 | 2021-01-28 16:00:22 +0100 | [diff] [blame] | 106 | expect resp.http.x-ssl-sha1 == "992386628A40C9D49C89BAC0058B5D45D8575151" |
Remi Tricot-Le Breton | f3eedfe | 2021-01-25 17:19:44 +0100 | [diff] [blame] | 107 | expect resp.http.x-ssl == "Revoked" |
| 108 | } -run |
| 109 | |
William Lallemand | 8695ce0 | 2021-02-01 15:31:00 +0100 | [diff] [blame] | 110 | # Abort a transaction |
| 111 | shell { |
| 112 | printf "set ssl cert ${testdir}/client1.pem <<\n$(cat ${testdir}/client3_revoked.pem)\n\n" | socat "${tmpdir}/h1/stats" - |
| 113 | echo "abort ssl cert ${testdir}/client1.pem" | socat "${tmpdir}/h1/stats" - |
| 114 | } |
| 115 | |
| 116 | haproxy h1 -cli { |
| 117 | send "show ssl cert ${testdir}/client1.pem" |
| 118 | expect ~ ".*SHA1 FingerPrint: 992386628A40C9D49C89BAC0058B5D45D8575151" |
| 119 | } |
| 120 | |
| 121 | # The certificate was not updated so it should still be revoked |
| 122 | client c1 -connect ${h1_clearlst_sock} { |
| 123 | txreq |
| 124 | rxresp |
| 125 | expect resp.status == 200 |
| 126 | expect resp.http.x-ssl == "Revoked" |
| 127 | } -run |
| 128 | |
| 129 | |