Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ crate-type = ["cdylib"]
base64 = "0.22.1"
bytes = "1.10.1"
constcat = "0.6.1"
http = "1.3.1"
http = "1.4.0"
http-body = "1.0.1"
http-body-util = "0.1.3"
http-serde = "2.1.1"
Expand Down
18 changes: 11 additions & 7 deletions src/net/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,18 +107,22 @@ impl HttpClient for NgxHttpClient<'_> {
<B as Body>::Data: Send,
<B as Body>::Error: StdError + Send + Sync,
{
let uri = req.uri().clone();
const DEFAULT_PATH: http::uri::PathAndQuery = http::uri::PathAndQuery::from_static("/");

let path_and_query = req
.uri()
.path_and_query()
// filter empty ("") values that are represented as "/"
.filter(|x| x.as_str() != "/")
.cloned()
.unwrap_or(DEFAULT_PATH);

let uri = core::mem::replace(req.uri_mut(), path_and_query.into());

let authority = uri
.authority()
.ok_or(HttpClientError::Uri("missing authority"))?;

let path_and_query = uri
.path_and_query()
.ok_or(HttpClientError::Uri("missing path"))?;

*req.uri_mut() = path_and_query.clone().into();

{
let headers = req.headers_mut();
headers.insert(
Expand Down
156 changes: 156 additions & 0 deletions t/acme_redirect.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
#!/usr/bin/perl

# Copyright (c) F5, Inc.
#
# This source code is licensed under the Apache License, Version 2.0 license
# found in the LICENSE file in the root directory of this source tree.

# Tests for ACME client: redirect and pathless URI handling.

###############################################################################

use warnings;
use strict;

use Test::More;

BEGIN { use FindBin; chdir($FindBin::Bin); }

use lib 'lib';
use Test::Nginx;
use Test::Nginx::ACME;
use Test::Nginx::DNS;

###############################################################################

select STDERR; $| = 1;
select STDOUT; $| = 1;

my $t = Test::Nginx->new()->has(qw/http http_ssl rewrite socket_ssl/)
->has_daemon('openssl');

$t->write_file_expand('nginx.conf', <<'EOF');

%%TEST_GLOBALS%%

daemon off;

events {
}

http {
%%TEST_GLOBALS_HTTP%%

resolver 127.0.0.1:%%PORT_8980_UDP%%;

acme_issuer default {
uri https://acme.test:%%PORT_8999%%;
ssl_trusted_certificate acme.test.crt;
state_path %%TESTDIR%%;
accept_terms_of_service;
}

server {
listen 127.0.0.1:8080;
server_name example.test;
}

server {
listen 127.0.0.1:8443 ssl;
server_name example.test;

acme_certificate default;

ssl_certificate $acme_certificate;
ssl_certificate_key $acme_certificate_key;
}

server {
listen 127.0.0.1:8999 ssl;
server_name acme.test;

absolute_redirect off;

ssl_certificate acme.test.crt;
ssl_certificate_key acme.test.key;

location / {
return 301 /dir;
}

location /dir {
return 302 https://acme.test:%%PORT_9000%%/dir;
}
}
}

EOF

$t->write_file('openssl.conf', <<EOF);
[ req ]
default_bits = 2048
encrypt_key = no
distinguished_name = req_distinguished_name
[ req_distinguished_name ]
EOF

my $d = $t->testdir();

foreach my $name ('acme.test') {
system('openssl req -x509 -new '
. "-config $d/openssl.conf -subj /CN=$name/ "
. "-out $d/$name.crt -keyout $d/$name.key "
. ">>$d/openssl.out 2>&1") == 0
or die "Can't create certificate for $name: $!\n";
}

my $dp = port(8980, udp=>1);
my @dc = (
{ name => 'acme.test', A => '127.0.0.1' },
{ name => 'example.test', A => '127.0.0.1' }
);

my $acme = Test::Nginx::ACME->new($t, port(9000), port(9001),
$t->testdir . '/acme.test.crt',
$t->testdir . '/acme.test.key',
http_port => port(8080),
dns_port => $dp,
nosleep => 1,
);

$t->run_daemon(\&Test::Nginx::DNS::dns_test_daemon, $t, $dp, \@dc);
$t->waitforfile($t->testdir . '/' . $dp);

$t->run_daemon(\&Test::Nginx::ACME::acme_test_daemon, $t, $acme);
$t->waitforsocket('127.0.0.1:' . $acme->port());
$t->write_file('acme-root.crt', $acme->trusted_ca());

$t->write_file('index.html', 'SUCCESS');
$t->plan(1)->run();

###############################################################################

$acme->wait_certificate('example.test') or die "no certificate";

like(get(8443, 'example.test', 'acme-root'), qr/SUCCESS/, 'tls request');

###############################################################################

sub get {
my ($port, $host, $ca) = @_;

$ca = undef if $IO::Socket::SSL::VERSION < 2.062
|| !eval { Net::SSLeay::X509_V_FLAG_PARTIAL_CHAIN() };

http_get('/',
PeerAddr => '127.0.0.1:' . port($port),
SSL => 1,
$ca ? (
SSL_ca_file => "$d/$ca.crt",
SSL_verifycn_name => $host,
SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_PEER(),
) : ()
);
}

###############################################################################