1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
#!/usr/bin/perl -w
# Simple WEB server.
#
# Inspired by some examples from the perlipc and other perl manual pages.
#
# Copyright (C) 2009 Michael Adam <obnox@samba.org>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, see <http://www.gnu.org/licenses/>.
use strict;
use IO::Socket;
use IO::Select;
use Carp;
use POSIX qw(setsid :sys_wait_h);
use Errno;
use Getopt::Long;
use Pod::Usage;
use Fcntl ':flock'; # import LOCK_* constants
my $VERSION = "0.1";
my $NAME = "Tinyproxy-Test-Web-Server";
my $server_header = "Server: $NAME/$VERSION";
my $EOL = "\015\012";
my $port = 2345;
my $proto = getprotobyname('tcp');
my $pid_file = "/tmp/webserver.pid";
my $log_dir = "/tmp";
my $access_log_file;
my $error_log_file;
my $document_root = "/tmp";
my $help = 0;
sub create_child($$$);
sub logmsg {
print STDERR "[", scalar localtime, ", $$] $0: @_\n";
}
sub start_server($$) {
my $proto = shift;
my $port = shift;
my $server;
$server = IO::Socket::INET->new(Proto => $proto,
LocalPort => $port,
Listen => SOMAXCONN,
Reuse => 1);
logmsg "server started listening on port $port";
return $server;
}
sub REAPER {
local $!; # don't let waitpid() overwrite current error
while ((my $pid = waitpid(-1,WNOHANG)) > 0 && WIFEXITED($?)) {
logmsg "reaped $pid" . ($? ? " with exit code $?" : '');
}
$SIG{CHLD} = \&REAPER;
}
sub parse_request($) {
my $client = shift;
my $request = {};
# parse the request line
my $request_line = <$client>;
if (!$request_line) {
$request->{error} = "emtpy request";
return $request;
}
chomp ($request_line);
my ($method, $object, $version) = split(" ", $request_line);
unless (defined($version) and $version) {
$request->{version} = "0.9";
} else {
if ($version !~ /HTTP\/(\d\.\d)/gi) {
$request->{error} = "illegal version ($version)";
return $request;
}
$request->{version} = $1;
}
$request->{method} = uc($method);
$request->{object} = $object;
# parse the request headers
my $current_header_line;
$request->{headers} = [];
while ($request_line = <$client>) {
if ($request_line =~ /^[ \t]/) {
# continued header line
chomp $request_line;
$current_header_line .= $request_line;
next;
}
if ($current_header_line) {
# finish current header line
my ($name, $value) = split(": ", $current_header_line);
push(@{$request->{headers}},
{ name => lc($name), value => $value });
}
last if ($request_line eq $EOL);
chomp $request_line;
$current_header_line = $request_line;
}
# parse entity (body)
$request->{entity} = "";
# skip for now, don't block...
# if ($request_line) {
# while ($request_line = <$client>) {
# logmsg "got line '$request_line'";
# $request->{entity} .= $request_line;
# }
# }
my @print_headers = ();
foreach my $header (@{$request->{headers}}) {
push @print_headers, $header->{name} . ": " . $header->{value};
}
logmsg "request:\n" .
"------------------------------\n" .
"Method: " . $request->{method} . "\n" .
"Object: " . $request->{object} . "\n" .
"Version: " . $request->{version} . "\n" .
"\n" .
"Headers:\n" .
join("\n", @print_headers) . "\n" .
#"\n" .
#"Body:\n" .
#"'" . $request->{entity} . "'\n" .
"------------------------------";
return $request;
}
sub child_action($) {
my $client = shift;
my $client_ip = shift;
logmsg "client_action: client $client_ip";
$client->autoflush();
my $fortune_bin = "/usr/games/fortune";
my $fortune = "";
if ( -x $fortune_bin) {
$fortune = qx(/usr/games/fortune);
$fortune =~ s/\n/$EOL/g;
}
my $request = parse_request($client);
if ($request->{error}) {
print $client "HTTP/1.0 400 Bad Request$EOL";
print $client "$server_header$EOL";
print $client "Content-Type: text/html$EOL";
print $client "$EOL";
print $client "<html>$EOL";
print $client "<h1>400 Bad Request</h1>$EOL";
print $client "<p>Error: " . $request->{error} . "</p>$EOL";
print $client "</html>$EOL";
close $client;
return;
}
print $client "HTTP/1.0 200 OK$EOL";
print $client "$server_header$EOL";
print $client "Content-Type: text/html$EOL";
print $client "$EOL";
print $client "<html>$EOL";
print $client "<h1>Tinyproxy test WEB server</h1>$EOL";
print $client "<h2>Fortune</h2>$EOL";
if ($fortune) {
print $client "<pre>$fortune</pre>$EOL";
} else {
print $client "Sorry, no $fortune_bin not found.$EOL";
}
my @print_headers = ();
foreach my $header (@{$request->{headers}}) {
push @print_headers, $header->{name} . ": " . $header->{value};
}
print $client "<h2>Your request:</h2>$EOL";
print $client "<pre>$EOL";
print $client "Method: " . $request->{method} . "\n" .
"Object: " . $request->{object} . "\n" .
"Version: " . $request->{version} . "\n" .
"\n" .
join("\n", @print_headers) .
"\n" .
"entity (body):\n" .
$request->{entity} . "\n";
print $client "</pre>$EOL";
print $client "</html>$EOL";
close $client;
return 0;
}
sub create_child($$$) {
my $client = shift;
my $action = shift;
my $client_ip = shift;
unless (@_ == 0 && $action && ref($action) eq 'CODE') {
confess "internal error. create_child needs code reference as argument";
}
my $pid = fork();
if (not defined($pid)) {
# error
logmsg "cannot fork: $!";
return;
} elsif ($pid) {
# parent
logmsg "child process created with pid $pid";
return;
} else {
# child
exit &$action($client, $client_ip);
}
}
sub process_options() {
my $result = GetOptions("help|?" => \$help,
"port=s" => \$port,
"pid-file=s" => \$pid_file,
"log-dir=s" => \$log_dir,
"root|document-root=s" => \$document_root);
die "Error reading cmdline options! $!" unless $result;
pod2usage(1) if $help;
# some post-processing:
($port) = $port =~ /^(\d+)$/ or die "invalid port";
$access_log_file = "$log_dir/webserver.access_log";
$error_log_file = "$log_dir/webserver.error_log";
}
sub daemonize() {
umask 0;
chdir "/" or die "daemonize: can't chdir to /: $!";
open STDIN, "/dev/null" or
die "daemonize: Can't read from /dev/null: $!";
my $pid = fork();
die "daemonize: can't fork: $!" if not defined($pid);
exit(0) if $pid != 0; # parent
# child (daemon)
setsid or die "damonize: Can't create a new session: $!";
}
sub reopen_logs() {
open STDOUT, ">> $access_log_file" or
die "daemonize: Can't write to '$access_log_file': $!";
open STDERR, ">> $error_log_file" or
die "daemonize: Can't write to '$error_log_file': $!";
}
sub get_pid_lock() {
# first make sure the file exists
open(LOCKFILE_W, ">> $pid_file") or
die "Error opening pid file '$pid_file' for writing: $!";
# open for reading and try to lock:
open(LOCKFILE, "< $pid_file") or
die "Error opening pid file '$pid_file' for reading: $!";
unless (flock(LOCKFILE, LOCK_EX|LOCK_NB)) {
print "pid file '$pid_file' is already locked.\n";
my $other_pid = <LOCKFILE>;
if (!defined($other_pid)) {
print "Error reading from pid file.\n";
} else {
chomp($other_pid);
if (!$other_pid) {
print "pid file is empty.\n";
} else {
print "Webserver is already running with pid '$other_pid'.\n";
}
}
close LOCKFILE;
exit(0);
}
# now re-open for recreating the file and write our pid
close(LOCKFILE_W);
open(LOCKFILE_W, "> $pid_file") or
die "Error opening pid file '$pid_file' for writing: $!";
LOCKFILE_W->autoflush(1);
print LOCKFILE_W "$$";
close(LOCKFILE_W);
}
sub release_pid_lock() {
flock(LOCKFILE, LOCK_UN);
close LOCKFILE;
}
# "main" ...
$|=1; # autoflush
process_options();
daemonize();
get_pid_lock();
reopen_logs();
$SIG{CHLD} = \&REAPER;
my $server = start_server($proto, $port);
my $slct = IO::Select->new($server);
while (1) {
my @ready_for_reading = $slct->can_read();
foreach my $fh (@ready_for_reading) {
if ($fh != $server) {
logmsg "select: fh ready for reading but not server",
"don't know what to do...";
}
# new connection:
my $client = $server->accept() or do {
# try again if accept() returned because
# a signal was received
if ($!{EINTR}) {
logmsg "accept: got signal EINTR ...";
next;
}
die "accept: $!";
};
my $client_ip = inet_ntoa($client->peeraddr);
logmsg "connection from $client_ip at port " . $client->peerport;
create_child($client, \&child_action, $client_ip);
close $client;
}
}
# never reached...
logmsg "Server done - ooops!\n";
release_pid_lock();
exit(0);
__END__
=head1 webserver.pl
A simple WEB server written in perl.
=head1 SYNOPSIS
webserver.pl [options]
=head1 OPTIONS
=over 8
=item B<--help>
Print a brief help message and exit.
=item B<--port>
Specify the port number for the server to listen on.
=item B<--root|--document-root>
Specify the document root directory from which to serve web content.
=item B<--log-dir>
Specify the directory where the log files should be stored.
=item B<--pid-file>
Specify the location of the pid lock file.
=back
=head1 DESCRIPTION
This is a very simple web server. It currently does not deliver the specific web
page requested, but constructs the same kind of answer for each request, citing
a fortune if fortune is available, and printing the originating request.
=head1 COPYRIGHT
Copyright (C) 2009 Michael Adam <obnox@samba.org>
This program is distributed under the terms of the GNU General Public License
version 2 or above. See the COPYING file for additional information.
=cut
|