diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2017-06-29 12:06:35 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2017-06-29 12:06:35 +0200 |
commit | a71cce0e99270492dbfa1567c046cd7db79ffd64 (patch) | |
tree | 9b3d9edc75f21dd250e2a2303cf4b047d9a4c41e /webserver | |
parent | 7c7e01fa8d8623145078cc352c3617ad43ebe326 (diff) |
webserver: open ACME challenge files with O_NOFOLLOW.
Diffstat (limited to 'webserver')
-rwxr-xr-x | webserver | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -38,6 +38,7 @@ use warnings; # not a problem since FD can be bound as root prior to the execve(2). use Errno 'EINTR'; +use Fcntl qw/O_NOFOLLOW O_RDONLY/; use Socket qw/AF_UNIX AF_INET AF_INET6/; # Untaint and fdopen(3) the listening socket @@ -91,12 +92,9 @@ while (1) { while (defined (my $h = $conn->getline())) { last if $h eq "\r\n" }; my ($status_line, $content_type, $content); - if ($req =~ /\A\Q$ROOT\E\/([A-Za-z0-9_\-]+)\z/ and - ! -l $1 and -f _) { # reuse previous stat structure and save a syscall - # XXX calling lstat(2) before open(2) is racy; if O_NOFOLLOW was - # exposed to perl we would instead use it and later fstat(2) the - # file descriptor - if (open my $fh, '<', $1) { # only open files in the cwd + if ($req =~ /\A\Q$ROOT\E\/([A-Za-z0-9_\-]+)\z/ and -f $1) { + # only open files in the cwd, and refuse to follow symlinks + if (sysopen(my $fh, $1, O_NOFOLLOW|O_RDONLY)) { ($status_line, $content_type) = ('200 OK', 'application/jose+json'); $content = do { local $/ = undef; $fh->getline() }; $fh->close() or die "close: $!"; |