HTTP::Daemon
A simple http server class
A simple http server class
version 6.13
use HTTP::Daemon;
use HTTP::Status;
my $d = HTTP::Daemon->new || die;
print "Please contact me at: <URL:", $d->url, ">\n";
while (my $c = $d->accept) {
while (my $r = $c->get_request) {
if ($r->method eq 'GET' and $r->uri->path eq "/xyzzy") {
# remember, this is *not* recommended practice :-)
$c->send_file_response("/etc/passwd");
}
else {
$c->send_error(RC_FORBIDDEN)
}
}
$c->close;
undef($c);
}
Instances of the "HTTP::Daemon" class are HTTP/1.1 servers that listen on a socket for incoming requests. The "HTTP::Daemon" is a subclass of "IO::Socket::IP", so you can perform socket operations directly on it too.
Please note that "HTTP::Daemon" used to be a subclass of "IO::Socket::INET". To support IPv6, it switched the parent class to "IO::Socket::IP" at version 6.05. See "IPv6 SUPPORT" for details.
The accept() method will return when a connection from a client is available. The returned value will be an "HTTP::Daemon::ClientConn" object which is another "IO::Socket::IP" subclass. Calling the get_request() method on this object will read data from the client and return an "HTTP::Request" object. The ClientConn object also provide methods to send back various responses.
This HTTP daemon does not fork(2) for you. Your application, i.e. the user of the "HTTP::Daemon" is responsible for forking if that is desirable. Also note that the user is responsible for generating responses that conform to the HTTP/1.1 protocol.
The following methods of "HTTP::Daemon" are new (or enhanced) relative to the "IO::Socket::IP" base class:
A server that wants to bind to some specific address on the standard HTTP port will be constructed like this:
$d = HTTP::Daemon->new(
LocalAddr => 'www.thisplace.com',
LocalPort => 80,
);
See IO::Socket::IP for a description of other arguments that can be used to configure the daemon during construction.
The accept method will return "undef" if timeouts have been enabled and no connection is made within the given time. The timeout() method is described in IO::Socket::IP.
In list context both the client object and the peer address will be returned; see the description of the accept method of IO::Socket for details.
The default is the string "libwww-perl-daemon/#.##" where "#.##" is replaced with the version number of this module.
The "HTTP::Daemon::ClientConn" is a subclass of "IO::Socket::IP". Instances of this class are returned by the accept() method of "HTTP::Daemon". The following methods are provided:
The get_request() method will normally not return until the whole request has been received from the client. This might not be what you want if the request is an upload of a large file (and with chunked transfer encoding HTTP can even support infinite request messages - uploading live audio for instance). If you pass a TRUE value as the $headers_only argument, then get_request() will return immediately after parsing the request headers and you are responsible for reading the rest of the request content. If you are going to call $c->get_request again on the same connection you better read the correct number of bytes.
If you handle the reading of the request content yourself you need to empty this buffer before you read more and you need to place unconsumed bytes here. You also need this buffer if you implement services like 101 Switching Protocols.
This method always returns the old buffer content and can optionally replace the buffer content if you pass it an argument.
This attribute is turned on automatically if the client announces protocol HTTP/1.0 or worse and does not include a "Connection: Keep-Alive" header. It is also turned on automatically when HTTP/1.1 or better clients send the "Connection: close" request header.
See the description of send_status_line() for the description of the accepted arguments.
The content attribute of the "HTTP::Response" object can be a normal string or a subroutine reference. If it is a subroutine, then whatever this callback routine returns is written back to the client as the response content. The routine will be called until it returns an undefined or empty value. If the client is HTTP/1.1 aware then we will use chunked transfer encoding for the response.
Returns the number of bytes copied on success, or "undef" if the filename form failed to open. An empty file returns the string '0E0' (zero numerically, true in boolean context) so that callers using "send_file or die" can distinguish open failure from a successful zero-byte transfer.
The filename form uses Perl's 3-argument "open" with an explicit "<" mode, so the path is no longer interpreted as a 2-argument "open" shell-magic shape such as "| cmd", "cmd |", or "> path". See CVE-2026-8450 <https://www.cve.org/CVERecord?id=CVE-2026-8450> for the prior 2-argument "open" behaviour this replaces.
Note that this fix only neutralises 2-argument "open" shell-magic. Callers remain responsible for validating attacker-influenced paths: "send_file" will still happily open symlinks, character/block devices (e.g. "/dev/zero", "/dev/stdin"), named pipes (which may block the worker), and files outside an intended document root. If $filename can be derived from request input, validate it (canonicalise, reject ".." segments, require "-f _" and a vetted prefix) before passing it in.
Since version 6.05, "HTTP::Daemon" is a subclass of "IO::Socket::IP" rather than "IO::Socket::INET", so that it supports IPv6.
For some reasons, you may want to force "HTTP::Daemon" to listen on IPv4 addresses only. Then pass "Family" argument to "HTTP::Daemon->new":
use HTTP::Daemon; use Socket 'AF_INET'; my $d = HTTP::Daemon->new(Family => AF_INET);
RFC 2616
IO::Socket::IP, IO::Socket
Bugs may be submitted through <https://github.com/libwww-perl/HTTP-Daemon/issues>.
There is also a mailing list available for users of this distribution, at <mailto:libwww@perl.org>.
There is also an irc channel available for users of this distribution, at "#lwp" on "irc.perl.org" <irc://irc.perl.org/#lwp>.
Gisle Aas <gisle@activestate.com>
This software is copyright (c) 1995 by Gisle Aas.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.