Supply remote IP and local port to PAM
[webmin.git] / miniserv.pl
1 #!/usr/local/bin/perl
2 # A very simple perl web server used by Webmin
3
4 # Require basic libraries
5 package miniserv;
6 use Socket;
7 use POSIX;
8 use Time::Local;
9 eval "use Time::HiRes;";
10
11 @itoa64 = split(//, "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
12
13 # Find and read config file
14 if (@ARGV != 1) {
15         die "Usage: miniserv.pl <config file>";
16         }
17 if ($ARGV[0] =~ /^([a-z]:)?\//i) {
18         $config_file = $ARGV[0];
19         }
20 else {
21         chop($pwd = `pwd`);
22         $config_file = "$pwd/$ARGV[0]";
23         }
24 %config = &read_config_file($config_file);
25 if ($config{'perllib'}) {
26         push(@INC, split(/:/, $config{'perllib'}));
27         $ENV{'PERLLIB'} .= ':'.$config{'perllib'};
28         }
29 @startup_msg = ( );
30
31 # Check if SSL is enabled and available
32 if ($config{'ssl'}) {
33         eval "use Net::SSLeay";
34         if (!$@) {
35                 $use_ssl = 1;
36                 # These functions only exist for SSLeay 1.0
37                 eval "Net::SSLeay::SSLeay_add_ssl_algorithms()";
38                 eval "Net::SSLeay::load_error_strings()";
39                 if ($config{'no_ssl2'}) {
40                         eval "Net::SSLeay::CTX_set_options($ctx,&Net::SSLeay::OP_NO_SSLv2)";
41                         }
42                 if (defined(&Net::SSLeay::X509_STORE_CTX_get_current_cert) &&
43                     defined(&Net::SSLeay::CTX_load_verify_locations) &&
44                     defined(&Net::SSLeay::CTX_set_verify)) {
45                         $client_certs = 1;
46                         }
47                 }
48         }
49
50 # Check if IPv6 is enabled and available
51 if ($config{'ipv6'}) {
52         eval "use Socket6";
53         if (!$@) {
54                 push(@startup_msg, "IPv6 support enabled");
55                 $use_ipv6 = 1;
56                 }
57         else {
58                 push(@startup_msg, "IPv6 support cannot be enabled without ".
59                                    "the Socket6 perl module");
60                 }
61         }
62
63 # Check if the syslog module is available to log hacking attempts
64 if ($config{'syslog'} && !$config{'inetd'}) {
65         eval "use Sys::Syslog qw(:DEFAULT setlogsock)";
66         if (!$@) {
67                 $use_syslog = 1;
68                 }
69         }
70
71 # check if the TCP-wrappers module is available
72 if ($config{'libwrap'}) {
73         eval "use Authen::Libwrap qw(hosts_ctl STRING_UNKNOWN)";
74         if (!$@) {
75                 $use_libwrap = 1;
76                 }
77         }
78
79 # Check if the MD5 perl module is available
80 eval "use MD5";
81 if (!$@) {
82         $use_md5 = "MD5";
83         }
84 else {
85         eval "use Digest::MD5";
86         if (!$@) {
87                 $use_md5 = "Digest::MD5";
88                 }
89         }
90
91 # Get miniserv's perl path and location
92 $miniserv_path = $0;
93 open(SOURCE, $miniserv_path);
94 <SOURCE> =~ /^#!(\S+)/;
95 $perl_path = $1;
96 close(SOURCE);
97 if (!-x $perl_path) {
98         $perl_path = $^X;
99         }
100 if (-l $perl_path) {
101         $linked_perl_path = readlink($perl_path);
102         }
103 @miniserv_argv = @ARGV;
104
105 # Check vital config options
106 &update_vital_config();
107
108 $sidname = $config{'sidname'};
109 die "Session authentication cannot be used in inetd mode"
110         if ($config{'inetd'} && $config{'session'});
111
112 # check if the PAM module is available to authenticate
113 if ($config{'assume_pam'}) {
114         # Just assume that it will work. This can also be used to work around
115         # a Solaris bug in which using PAM before forking caused it to fail
116         # later!
117         $use_pam = 1;
118         }
119 elsif (!$config{'no_pam'}) {
120         eval "use Authen::PAM;";
121         if (!$@) {
122                 # check if the PAM authentication can be used by opening a
123                 # PAM handle
124                 local $pamh;
125                 if (ref($pamh = new Authen::PAM($config{'pam'},
126                                                 $config{'pam_test_user'},
127                                                 \&pam_conv_func))) {
128                         # Now test a login to see if /etc/pam.d/webmin is set
129                         # up properly.
130                         $pam_conv_func_called = 0;
131                         $pam_username = "test";
132                         $pam_password = "test";
133                         $pamh->pam_authenticate();
134                         if ($pam_conv_func_called) {
135                                 push(@startup_msg,
136                                      "PAM authentication enabled");
137                                 $use_pam = 1;
138                                 }
139                         else {
140                                 push(@startup_msg,
141                                     "PAM test failed - maybe ".
142                                     "/etc/pam.d/$config{'pam'} does not exist");
143                                 }
144                         }
145                 else {
146                         push(@startup_msg,
147                              "PAM initialization of Authen::PAM failed");
148                         }
149                 }
150         else {
151                 push(@startup_msg,
152                      "Perl module Authen::PAM needed for PAM is ".
153                      "not installed : $@");
154                 }
155         }
156 if ($config{'pam_only'} && !$use_pam) {
157         print STDERR $startup_msg[0],"\n";
158         print STDERR "PAM use is mandatory, but could not be enabled!\n";
159         exit(1);
160         }
161 elsif ($pam_msg && !$use_pam) {
162         push(@startup_msg,
163              "Continuing without the Authen::PAM perl module");
164         }
165
166 # Check if the User::Utmp perl module is installed
167 if ($config{'utmp'}) {
168         eval "use User::Utmp;";
169         if (!$@) {
170                 $write_utmp = 1;
171                 push(@startup_msg, "UTMP logging enabled");
172                 }
173         else {
174                 push(@startup_msg, 
175                      "Perl module User::Utmp needed for Utmp logging is ".
176                      "not installed : $@");
177                 }
178         }
179
180 # See if the crypt function fails
181 eval "crypt('foo', 'xx')";
182 if ($@) {
183         eval "use Crypt::UnixCrypt";
184         if (!$@) {
185                 $use_perl_crypt = 1;
186                 push(@startup_msg, 
187                      "Using Crypt::UnixCrypt for password encryption");
188                 }
189         else {
190                 push(@startup_msg, 
191                      "crypt() function un-implemented, and Crypt::UnixCrypt ".
192                      "not installed - password authentication will fail");
193                 }
194         }
195
196 # Check if /dev/urandom really generates random IDs, by calling it twice
197 local $rand1 = &generate_random_id("foo", 1);
198 local $rand2 = &generate_random_id("foo", 2);
199 if ($rand1 eq $rand2) {
200         $bad_urandom = 1;
201         push(@startup_msg,
202              "Random number generator file /dev/urandom is not reliable");
203         }
204
205 # Check if we can call sudo
206 if ($config{'sudo'} && &has_command("sudo")) {
207         eval "use IO::Pty";
208         if (!$@) {
209                 $use_sudo = 1;
210                 }
211         else {
212                 push(@startup_msg,
213                      "Perl module IO::Pty needed for calling sudo is not ".
214                      "installed : $@");
215                 }
216         }
217
218 # init days and months for http_date
219 @weekday = ( "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" );
220 @month = ( "Jan", "Feb", "Mar", "Apr", "May", "Jun",
221            "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" );
222
223 # Change dir to the server root
224 @roots = ( $config{'root'} );
225 for($i=0; defined($config{"extraroot_$i"}); $i++) {
226         push(@roots, $config{"extraroot_$i"});
227         }
228 chdir($roots[0]);
229 eval { $user_homedir = (getpwuid($<))[7]; };
230 if ($@) {
231         # getpwuid doesn't work on windows
232         $user_homedir = $ENV{"HOME"} || $ENV{"USERPROFILE"} || "/";
233         $on_windows = 1;
234         }
235
236 # Read users file
237 &read_users_file();
238
239 # Setup SSL if possible and if requested
240 if (!-r $config{'keyfile'}) {
241         # Key file doesn't exist!
242         if ($config{'keyfile'}) {
243                 print STDERR "SSL key file $config{'keyfile'} does not exist\n";
244                 }
245         $use_ssl = 0;
246         }
247 elsif ($config{'certfile'} && !-r $config{'certfile'}) {
248         # Cert file doesn't exist!
249         print STDERR "SSL cert file $config{'certfile'} does not exist\n";
250         $use_ssl = 0;
251         }
252 @ipkeys = &get_ipkeys(\%config);
253 if ($use_ssl) {
254         if ($config{'ssl_version'}) {
255                 # Force an SSL version
256                 $Net::SSLeay::version = $config{'ssl_version'};
257                 $Net::SSLeay::ssl_version = $config{'ssl_version'};
258                 }
259         $client_certs = 0 if (!-r $config{'ca'} || !%certs);
260         $ssl_contexts{"*"} = &create_ssl_context($config{'keyfile'},
261                                                  $config{'certfile'});
262         foreach $ipkey (@ipkeys) {
263                 $ctx = &create_ssl_context($ipkey->{'key'}, $ipkey->{'cert'});
264                 foreach $ip (@{$ipkey->{'ips'}}) {
265                         $ssl_contexts{$ip} = $ctx;
266                         }
267                 }
268         }
269
270 # Load gzip library if enabled
271 if ($config{'gzip'} eq '1') {
272         eval "use Compress::Zlib";
273         if (!$@) {
274                 $use_gzip = 1;
275                 }
276         }
277
278 # Setup syslog support if possible and if requested
279 if ($use_syslog) {
280         open(ERRDUP, ">&STDERR");
281         open(STDERR, ">/dev/null");
282         $log_socket = $config{"logsock"} || "unix";
283         eval 'openlog($config{"pam"}, "cons,pid,ndelay", "authpriv"); setlogsock($log_socket)';
284         if ($@) {
285                 $use_syslog = 0;
286                 }
287         else {
288                 local $msg = ucfirst($config{'pam'})." starting";
289                 eval { syslog("info", "%s", $msg); };
290                 if ($@) {
291                         eval {
292                                 setlogsock("inet");
293                                 syslog("info", "%s", $msg);
294                                 };
295                         if ($@) {
296                                 # All attempts to use syslog have failed..
297                                 $use_syslog = 0;
298                                 }
299                         }
300                 }
301         open(STDERR, ">&ERRDUP");
302         close(ERRDUP);
303         }
304
305 # Read MIME types file and add extra types
306 &read_mime_types();
307
308 # get the time zone
309 if ($config{'log'}) {
310         local(@gmt, @lct, $days, $hours, $mins);
311         @gmt = gmtime(time());
312         @lct = localtime(time());
313         $days = $lct[3] - $gmt[3];
314         $hours = ($days < -1 ? 24 : 1 < $days ? -24 : $days * 24) +
315                  $lct[2] - $gmt[2];
316         $mins = $hours * 60 + $lct[1] - $gmt[1];
317         $timezone = ($mins < 0 ? "-" : "+"); $mins = abs($mins);
318         $timezone .= sprintf "%2.2d%2.2d", $mins/60, $mins%60;
319         }
320
321 # Build various maps from the config files
322 &build_config_mappings();
323
324 # start up external authentication program, if needed
325 if ($config{'extauth'}) {
326         socketpair(EXTAUTH, EXTAUTH2, AF_UNIX, SOCK_STREAM, PF_UNSPEC);
327         if (!($extauth = fork())) {
328                 close(EXTAUTH);
329                 close(STDIN);
330                 close(STDOUT);
331                 open(STDIN, "<&EXTAUTH2");
332                 open(STDOUT, ">&EXTAUTH2");
333                 exec($config{'extauth'}) or die "exec failed : $!\n";
334                 }
335         close(EXTAUTH2);
336         local $os = select(EXTAUTH);
337         $| = 1; select($os);
338         }
339
340 # Pre-load any libraries
341 if (!$config{'inetd'}) {
342         foreach $pl (split(/\s+/, $config{'preload'})) {
343                 ($pkg, $lib) = split(/=/, $pl);
344                 $pkg =~ s/[^A-Za-z0-9]/_/g;
345                 eval "package $pkg; do '$config{'root'}/$lib'";
346                 if ($@) {
347                         print STDERR "Failed to pre-load $lib in $pkg : $@\n";
348                         }
349                 else {
350                         print STDERR "Pre-loaded $lib in $pkg\n";
351                         }
352                 }
353         foreach $pl (split(/\s+/, $config{'premodules'})) {
354                 if ($pl =~ /\//) {
355                         ($dir, $mod) = split(/\//, $pl);
356                         }
357                 else {
358                         ($dir, $mod) = (undef, $pl);
359                         }
360                 push(@INC, "$config{'root'}/$dir");
361                 eval "package $mod; use $mod ()";
362                 if ($@) {
363                         print STDERR "Failed to pre-load $mod : $@\n";
364                         }
365                 else {
366                         print STDERR "Pre-loaded $mod\n";
367                         }
368                 }
369         }
370
371 # Open debug log if set
372 if ($config{'debuglog'}) {
373         open(DEBUG, ">>$config{'debuglog'}");
374         chmod(0700, $config{'debuglog'});
375         select(DEBUG); $| = 1; select(STDOUT);
376         print DEBUG "miniserv.pl starting ..\n";
377         }
378
379 # Write out (empty) blocked hosts file
380 &write_blocked_file();
381
382 # Initially read webmin cron functions and last execution times
383 &read_webmin_crons();
384 %webmincron_last = ( );
385 &read_file($config{'webmincron_last'}, \%webmincron_last);
386
387 # Pre-cache lang files
388 &precache_files();
389
390 if ($config{'inetd'}) {
391         # We are being run from inetd - go direct to handling the request
392         &redirect_stderr_to_log();
393         $SIG{'HUP'} = 'IGNORE';
394         $SIG{'TERM'} = 'DEFAULT';
395         $SIG{'PIPE'} = 'DEFAULT';
396         open(SOCK, "+>&STDIN");
397
398         # Check if it is time for the logfile to be cleared
399         if ($config{'logclear'}) {
400                 local $write_logtime = 0;
401                 local @st = stat("$config{'logfile'}.time");
402                 if (@st) {
403                         if ($st[9]+$config{'logtime'}*60*60 < time()){
404                                 # need to clear log
405                                 $write_logtime = 1;
406                                 unlink($config{'logfile'});
407                                 }
408                         }
409                 else { $write_logtime = 1; }
410                 if ($write_logtime) {
411                         open(LOGTIME, ">$config{'logfile'}.time");
412                         print LOGTIME time(),"\n";
413                         close(LOGTIME);
414                         }
415                 }
416
417         # Initialize SSL for this connection
418         if ($use_ssl) {
419                 $ssl_con = &ssl_connection_for_ip(SOCK, 0);
420                 $ssl_con || exit;
421                 }
422
423         # Work out the hostname for this web server
424         $host = &get_socket_name(SOCK, 0);
425         $host || exit;
426         $port = $config{'port'};
427         $acptaddr = getpeername(SOCK);
428         $acptaddr || exit;
429
430         # Work out remote and local IPs
431         (undef, $peera, undef) = &get_address_ip($acptaddr, 0);
432         (undef, $locala) = &get_socket_ip(SOCK, 0);
433
434         print DEBUG "main: Starting handle_request loop pid=$$\n";
435         while(&handle_request($peera, $locala, 0)) { }
436         print DEBUG "main: Done handle_request loop pid=$$\n";
437         close(SOCK);
438         exit;
439         }
440
441 # Build list of sockets to listen on
442 $config{'bind'} = '' if ($config{'bind'} eq '*');
443 if ($config{'bind'}) {
444         # Listening on a specific IP
445         if (&check_ip6address($config{'bind'})) {
446                 # IP is v6
447                 $use_ipv6 || die "Cannot bind to $config{'bind'} without IPv6";
448                 push(@sockets, [ inet_pton(Socket6::AF_INET6(),$config{'bind'}),
449                                  $config{'port'},
450                                  Socket6::PF_INET6() ]);
451                 }
452         else {
453                 # IP is v4
454                 push(@sockets, [ inet_aton($config{'bind'}),
455                                  $config{'port'},
456                                  PF_INET() ]);
457                 }
458         }
459 else {
460         # Listening on all IPs
461         push(@sockets, [ INADDR_ANY, $config{'port'}, PF_INET() ]);
462         if ($use_ipv6) {
463                 # Also IPv6
464                 push(@sockets, [ in6addr_any(), $config{'port'},
465                                  Socket6::PF_INET6() ]);
466                 }
467         }
468 foreach $s (split(/\s+/, $config{'sockets'})) {
469         if ($s =~ /^(\d+)$/) {
470                 # Just listen on another port on the main IP
471                 push(@sockets, [ $sockets[0]->[0], $s, $sockets[0]->[2] ]);
472                 if ($use_ipv6 && !$config{'bind'}) {
473                         # Also listen on that port on the main IPv6 address
474                         push(@sockets, [ $sockets[1]->[0], $s,
475                                          $sockets[1]->[2] ]);
476                         }
477                 }
478         elsif ($s =~ /^\*:(\d+)$/) {
479                 # Listening on all IPs on some port
480                 push(@sockets, [ INADDR_ANY, $1,
481                                  PF_INET() ]);
482                 if ($use_ipv6) {
483                         push(@sockets, [ in6addr_any(), $1,
484                                          Socket6::PF_INET6() ]);
485                         }
486                 }
487         elsif ($s =~ /^(\S+):(\d+)$/) {
488                 # Listen on a specific port and IP
489                 my ($ip, $port) = ($1, $2);
490                 if (&check_ip6address($ip)) {
491                         $use_ipv6 || die "Cannot bind to $ip without IPv6";
492                         push(@sockets, [ inet_pton(Socket6::AF_INET6(),
493                                                    $ip),
494                                          $port, Socket6::PF_INET6() ]);
495                         }
496                 else {
497                         push(@sockets, [ inet_aton($ip), $port,
498                                          PF_INET() ]);
499                         }
500                 }
501         elsif ($s =~ /^([0-9\.]+):\*$/ || $s =~ /^([0-9\.]+)$/) {
502                 # Listen on the main port on another IPv4 address
503                 push(@sockets, [ inet_aton($1), $sockets[0]->[1],
504                                  PF_INET() ]);
505                 }
506         elsif (($s =~ /^([0-9a-f\:]+):\*$/ || $s =~ /^([0-9a-f\:]+)$/) &&
507                $use_ipv6) {
508                 # Listen on the main port on another IPv6 address
509                 push(@sockets, [ inet_pton(Socket6::AF_INET6(), $1),
510                                  $sockets[0]->[1],
511                                  Socket6::PF_INET6() ]);
512                 }
513         }
514
515 # Open all the sockets
516 $proto = getprotobyname('tcp');
517 @sockerrs = ( );
518 $tried_inaddr_any = 0;
519 for($i=0; $i<@sockets; $i++) {
520         $fh = "MAIN$i";
521         socket($fh, $sockets[$i]->[2], SOCK_STREAM, $proto) ||
522                 die "Failed to open socket family $sockets[$i]->[2] : $!";
523         setsockopt($fh, SOL_SOCKET, SO_REUSEADDR, pack("l", 1));
524         if ($sockets[$i]->[2] eq PF_INET()) {
525                 $pack = pack_sockaddr_in($sockets[$i]->[1], $sockets[$i]->[0]);
526                 }
527         else {
528                 $pack = pack_sockaddr_in6($sockets[$i]->[1], $sockets[$i]->[0]);
529                 setsockopt($fh, 41, 26, pack("l", 1));  # IPv6 only
530                 }
531         for($j=0; $j<5; $j++) {
532                 last if (bind($fh, $pack));
533                 sleep(1);
534                 }
535         if ($j == 5) {
536                 # All attempts failed .. give up
537                 if ($sockets[$i]->[0] eq INADDR_ANY ||
538                     $use_ipv6 && $sockets[$i]->[0] eq in6addr_any()) {
539                         push(@sockerrs,
540                              "Failed to bind to port $sockets[$i]->[1] : $!");
541                         $tried_inaddr_any = 1;
542                         }
543                 else {
544                         $ip = &network_to_address($sockets[$i]->[0]);
545                         push(@sockerrs,
546                              "Failed to bind to IP $ip port ".
547                              "$sockets[$i]->[1] : $!");
548                         }
549                 }
550         else {
551                 listen($fh, SOMAXCONN);
552                 push(@socketfhs, $fh);
553                 $ipv6fhs{$fh} = $sockets[$i]->[2] eq PF_INET() ? 0 : 1;
554                 }
555         }
556 foreach $se (@sockerrs) {
557         print STDERR $se,"\n";
558         }
559
560 # If all binds failed, try binding to any address
561 if (!@socketfhs && !$tried_inaddr_any) {
562         print STDERR "Falling back to listening on any address\n";
563         $fh = "MAIN";
564         socket($fh, PF_INET(), SOCK_STREAM, $proto) ||
565                 die "Failed to open socket : $!";
566         setsockopt($fh, SOL_SOCKET, SO_REUSEADDR, pack("l", 1));
567         if (!bind($fh, pack_sockaddr_in($sockets[0]->[1], INADDR_ANY))) {
568                 print STDERR "Failed to bind to port $sockets[0]->[1] : $!\n";
569                 exit(1);
570                 }
571         listen($fh, SOMAXCONN);
572         push(@socketfhs, $fh);
573         }
574 elsif (!@socketfhs && $tried_inaddr_any) {
575         print STDERR "Could not listen on any ports";
576         exit(1);
577         }
578
579 if ($config{'listen'}) {
580         # Open the socket that allows other webmin servers to find this one
581         $proto = getprotobyname('udp');
582         if (socket(LISTEN, PF_INET(), SOCK_DGRAM, $proto)) {
583                 setsockopt(LISTEN, SOL_SOCKET, SO_REUSEADDR, pack("l", 1));
584                 bind(LISTEN, pack_sockaddr_in($config{'listen'}, INADDR_ANY));
585                 listen(LISTEN, SOMAXCONN);
586                 }
587         else {
588                 $config{'listen'} = 0;
589                 }
590         }
591
592 # Split from the controlling terminal, unless configured not to
593 if (!$config{'nofork'}) {
594         if (fork()) { exit; }
595         }
596 eval { setsid(); };     # may not work on Windows
597
598 # Close standard file handles
599 open(STDIN, "</dev/null");
600 open(STDOUT, ">/dev/null");
601 &redirect_stderr_to_log();
602 &log_error("miniserv.pl started");
603 foreach $msg (@startup_msg) {
604         &log_error($msg);
605         }
606
607 # write out the PID file
608 &write_pid_file();
609
610 # Start the log-clearing process, if needed. This checks every minute
611 # to see if the log has passed its reset time, and if so clears it
612 if ($config{'logclear'}) {
613         if (!($logclearer = fork())) {
614                 &close_all_sockets();
615                 close(LISTEN);
616                 while(1) {
617                         local $write_logtime = 0;
618                         local @st = stat("$config{'logfile'}.time");
619                         if (@st) {
620                                 if ($st[9]+$config{'logtime'}*60*60 < time()){
621                                         # need to clear log
622                                         $write_logtime = 1;
623                                         unlink($config{'logfile'});
624                                         }
625                                 }
626                         else { $write_logtime = 1; }
627                         if ($write_logtime) {
628                                 open(LOGTIME, ">$config{'logfile'}.time");
629                                 print LOGTIME time(),"\n";
630                                 close(LOGTIME);
631                                 }
632                         sleep(5*60);
633                         }
634                 exit;
635                 }
636         push(@childpids, $logclearer);
637         }
638
639 # Setup the logout time dbm if needed
640 if ($config{'session'}) {
641         eval "use SDBM_File";
642         dbmopen(%sessiondb, $config{'sessiondb'}, 0700);
643         eval "\$sessiondb{'1111111111'} = 'foo bar';";
644         if ($@) {
645                 dbmclose(%sessiondb);
646                 eval "use NDBM_File";
647                 dbmopen(%sessiondb, $config{'sessiondb'}, 0700);
648                 }
649         else {
650                 delete($sessiondb{'1111111111'});
651                 }
652         }
653
654 # Run the main loop
655 $SIG{'HUP'} = 'miniserv::trigger_restart';
656 $SIG{'TERM'} = 'miniserv::term_handler';
657 $SIG{'USR1'} = 'miniserv::trigger_reload';
658 $SIG{'PIPE'} = 'IGNORE';
659 local $remove_session_count = 0;
660 $need_pipes = $config{'passdelay'} || $config{'session'};
661 while(1) {
662         # wait for a new connection, or a message from a child process
663         local ($i, $rmask);
664         if (@childpids <= $config{'maxconns'}) {
665                 # Only accept new main socket connects when ready
666                 local $s;
667                 foreach $s (@socketfhs) {
668                         vec($rmask, fileno($s), 1) = 1;
669                         }
670                 }
671         else {
672                 printf STDERR "too many children (%d > %d)\n",
673                         scalar(@childpids), $config{'maxconns'};
674                 }
675         if ($need_pipes) {
676                 for($i=0; $i<@passin; $i++) {
677                         vec($rmask, fileno($passin[$i]), 1) = 1;
678                         }
679                 }
680         vec($rmask, fileno(LISTEN), 1) = 1 if ($config{'listen'});
681
682         # Wait for a connection
683         local $sel = select($rmask, undef, undef, 10);
684
685         # Check the flag files
686         if ($config{'restartflag'} && -r $config{'restartflag'}) {
687                 print STDERR "restart flag file detected\n";
688                 unlink($config{'restartflag'});
689                 $need_restart = 1;
690                 }
691         if ($config{'reloadflag'} && -r $config{'reloadflag'}) {
692                 unlink($config{'reloadflag'});
693                 $need_reload = 1;
694                 }
695
696         if ($need_restart) {
697                 # Got a HUP signal while in select() .. restart now
698                 &restart_miniserv();
699                 }
700         if ($need_reload) {
701                 # Got a USR1 signal while in select() .. re-read config
702                 $need_reload = 0;
703                 &reload_config_file();
704                 }
705         local $time_now = time();
706
707         # Clean up finished processes
708         local $pid;
709         do {    $pid = waitpid(-1, WNOHANG);
710                 @childpids = grep { $_ != $pid } @childpids;
711                 } while($pid != 0 && $pid != -1);
712
713         # run the unblocking procedure to check if enough time has passed to
714         # unblock hosts that heve been blocked because of password failures
715         $unblocked = 0;
716         if ($config{'blockhost_failures'}) {
717                 $i = 0;
718                 while ($i <= $#deny) {
719                         if ($blockhosttime{$deny[$i]} &&
720                             $config{'blockhost_time'} != 0 &&
721                             ($time_now - $blockhosttime{$deny[$i]}) >=
722                              $config{'blockhost_time'}) {
723                                 # the host can be unblocked now
724                                 $hostfail{$deny[$i]} = 0;
725                                 splice(@deny, $i, 1);
726                                 $unblocked = 1;
727                                 }
728                         $i++;
729                         }
730                 }
731
732         # Do the same for blocked users
733         if ($config{'blockuser_failures'}) {
734                 $i = 0;
735                 while ($i <= $#deny) {
736                         if ($blockusertime{$deny[$i]} &&
737                             $config{'blockuser_time'} != 0 &&
738                             ($time_now - $blockusertime{$deny[$i]}) >=
739                              $config{'blockuser_time'}) {
740                                 # the user can be unblocked now
741                                 $userfail{$deny[$i]} = 0;
742                                 splice(@denyusers, $i, 1);
743                                 $unblocked = 1;
744                                 }
745                         $i++;
746                         }
747                 }
748         if ($unblocked) {
749                 &write_blocked_file();
750                 }
751
752         # Check if any webmin cron jobs are ready to run
753         &execute_ready_webmin_crons();
754
755         if ($config{'session'} && (++$remove_session_count%50) == 0) {
756                 # Remove sessions with more than 7 days of inactivity,
757                 local $s;
758                 foreach $s (keys %sessiondb) {
759                         local ($user, $ltime, $lip) =
760                                 split(/\s+/, $sessiondb{$s});
761                         if ($time_now - $ltime > 7*24*60*60) {
762                                 &run_logout_script($s, $user);
763                                 &write_logout_utmp($user, $lip);
764                                 delete($sessiondb{$s});
765                                 if ($use_syslog) {
766                                         syslog("info", "%s",
767                                               "Timeout of session for $user");
768                                         }
769                                 }
770                         }
771                 }
772
773         if ($use_pam && $config{'pam_conv'}) {
774                 # Remove PAM sessions with more than 5 minutes of inactivity
775                 local $c;
776                 foreach $c (values %conversations) {
777                         if ($time_now - $c->{'time'} > 5*60) {
778                                 &end_pam_conversation($c);
779                                 if ($use_syslog) {
780                                         syslog("info", "%s", "Timeout of PAM ".
781                                                 "session for $c->{'user'}");
782                                         }
783                                 }
784                         }
785                 }
786
787         # Don't check any sockets if there is no activity
788         next if ($sel <= 0);
789
790         # Check if any of the main sockets have received a new connection
791         local $sn = 0;
792         foreach $s (@socketfhs) {
793                 if (vec($rmask, fileno($s), 1)) {
794                         # got new connection
795                         $acptaddr = accept(SOCK, $s);
796                         if (!$acptaddr) { next; }
797                         binmode(SOCK);  # turn off any Perl IO stuff
798
799                         # create pipes
800                         local ($PASSINr, $PASSINw, $PASSOUTr, $PASSOUTw);
801                         if ($need_pipes) {
802                                 ($PASSINr, $PASSINw, $PASSOUTr, $PASSOUTw) =
803                                         &allocate_pipes();
804                                 }
805
806                         # Work out IP and port of client
807                         local ($peerb, $peera, $peerp) =
808                                 &get_address_ip($acptaddr, $ipv6fhs{$s});
809
810                         # Work out the local IP
811                         (undef, $locala) = &get_socket_ip(SOCK, $ipv6fhs{$s});
812
813                         # Check username of connecting user
814                         $localauth_user = undef;
815                         if ($config{'localauth'} && $peera eq "127.0.0.1") {
816                                 if (open(TCP, "/proc/net/tcp")) {
817                                         # Get the info direct from the kernel
818                                         $peerh = sprintf("%4.4X", $peerp);
819                                         while(<TCP>) {
820                                                 s/^\s+//;
821                                                 local @t = split(/[\s:]+/, $_);
822                                                 if ($t[1] eq '0100007F' &&
823                                                     $t[2] eq $peerh) {
824                                                         $localauth_user =
825                                                             getpwuid($t[11]);
826                                                         last;
827                                                         }
828                                                 }
829                                         close(TCP);
830                                         }
831                                 if (!$localauth_user) {
832                                         # Call lsof for the info
833                                         local $lsofpid = open(LSOF,
834                                                 "$config{'localauth'} -i ".
835                                                 "TCP\@127.0.0.1:$peerp |");
836                                         while(<LSOF>) {
837                                                 if (/^(\S+)\s+(\d+)\s+(\S+)/ &&
838                                                     $2 != $$ && $2 != $lsofpid){
839                                                         $localauth_user = $3;
840                                                         }
841                                                 }
842                                         close(LSOF);
843                                         }
844                                 }
845
846                         # Work out the hostname for this web server
847                         $host = &get_socket_name(SOCK, $ipv6fhs{$s});
848                         if (!$host) {
849                                 print STDERR
850                                     "Failed to get local socket name : $!\n";
851                                 close(SOCK);
852                                 next;
853                                 }
854                         $port = $sockets[$sn]->[1];
855
856                         # fork the subprocess
857                         local $handpid;
858                         if (!($handpid = fork())) {
859                                 # setup signal handlers
860                                 $SIG{'TERM'} = 'DEFAULT';
861                                 $SIG{'PIPE'} = 'DEFAULT';
862                                 #$SIG{'CHLD'} = 'IGNORE';
863                                 $SIG{'HUP'} = 'IGNORE';
864                                 $SIG{'USR1'} = 'IGNORE';
865
866                                 # Initialize SSL for this connection
867                                 if ($use_ssl) {
868                                         $ssl_con = &ssl_connection_for_ip(
869                                                         SOCK, $ipv6fhs{$s});
870                                         $ssl_con || exit;
871                                         }
872
873                                 # Close the file handle for the session DBM
874                                 dbmclose(%sessiondb);
875
876                                 # close useless pipes
877                                 if ($need_pipes) {
878                                         &close_all_pipes();
879                                         close($PASSINr); close($PASSOUTw);
880                                         }
881                                 &close_all_sockets();
882                                 close(LISTEN);
883
884                                 print DEBUG
885                                   "main: Starting handle_request loop pid=$$\n";
886                                 while(&handle_request($peera, $locala,
887                                                       $ipv6fhs{$s})) {
888                                         # Loop until keepalive stops
889                                         }
890                                 print DEBUG
891                                   "main: Done handle_request loop pid=$$\n";
892                                 shutdown(SOCK, 1);
893                                 close(SOCK);
894                                 close($PASSINw); close($PASSOUTw);
895                                 exit;
896                                 }
897                         push(@childpids, $handpid);
898                         if ($need_pipes) {
899                                 close($PASSINw); close($PASSOUTr);
900                                 push(@passin, $PASSINr);
901                                 push(@passout, $PASSOUTw);
902                                 }
903                         close(SOCK);
904                         }
905                 $sn++;
906                 }
907
908         if ($config{'listen'} && vec($rmask, fileno(LISTEN), 1)) {
909                 # Got UDP packet from another webmin server
910                 local $rcvbuf;
911                 local $from = recv(LISTEN, $rcvbuf, 1024, 0);
912                 next if (!$from);
913                 local $fromip = inet_ntoa((unpack_sockaddr_in($from))[1]);
914                 local $toip = inet_ntoa((unpack_sockaddr_in(
915                                          getsockname(LISTEN)))[1]);
916                 if ((!@deny || !&ip_match($fromip, $toip, @deny)) &&
917                     (!@allow || &ip_match($fromip, $toip, @allow))) {
918                         local $listenhost = &get_socket_name(LISTEN, 0);
919                         send(LISTEN, "$listenhost:$config{'port'}:".
920                                  ($use_ssl || $config{'inetd_ssl'} ? 1 : 0).":".
921                                  ($config{'listenhost'} ?
922                                         &get_system_hostname() : ""),
923                                  0, $from)
924                                 if ($listenhost);
925                         }
926                 }
927
928         # check for session, password-timeout and PAM messages from subprocesses
929         for($i=0; $i<@passin; $i++) {
930                 if (vec($rmask, fileno($passin[$i]), 1)) {
931                         # this sub-process is asking about a password
932                         local $infd = $passin[$i];
933                         local $outfd = $passout[$i];
934                         #local $inline = <$infd>;
935                         local $inline = &sysread_line($infd);
936                         if ($inline) {
937                                 print DEBUG "main: inline $inline";
938                                 }
939                         else {
940                                 print DEBUG "main: inline EOF\n";
941                                 }
942                         if ($inline =~ /^delay\s+(\S+)\s+(\S+)\s+(\d+)/) {
943                                 # Got a delay request from a subprocess.. for
944                                 # valid logins, there is no delay (to prevent
945                                 # denial of service attacks), but for invalid
946                                 # logins the delay increases with each failed
947                                 # attempt.
948                                 if ($3) {
949                                         # login OK.. no delay
950                                         print $outfd "0 0\n";
951                                         $wasblocked = $hostfail{$2} ||
952                                                       $userfail{$1};
953                                         $hostfail{$2} = 0;
954                                         $userfail{$1} = 0;
955                                         if ($wasblocked) {
956                                                 &write_blocked_file();
957                                                 }
958                                         }
959                                 else {
960                                         # login failed..
961                                         $hostfail{$2}++;
962                                         $userfail{$1}++;
963                                         $blocked = 0;
964
965                                         # add the host to the block list,
966                                         # if configured
967                                         if ($config{'blockhost_failures'} &&
968                                             $hostfail{$2} >=
969                                               $config{'blockhost_failures'}) {
970                                                 push(@deny, $2);
971                                                 $blockhosttime{$2} = $time_now;
972                                                 $blocked = 1;
973                                                 if ($use_syslog) {
974                                                         local $logtext = "Security alert: Host $2 blocked after $config{'blockhost_failures'} failed logins for user $1";
975                                                         syslog("crit", "%s",
976                                                                 $logtext);
977                                                         }
978                                                 }
979
980                                         # add the user to the user block list,
981                                         # if configured
982                                         if ($config{'blockuser_failures'} &&
983                                             $userfail{$1} >=
984                                               $config{'blockuser_failures'}) {
985                                                 push(@denyusers, $1);
986                                                 $blockusertime{$1} = $time_now;
987                                                 $blocked = 2;
988                                                 if ($use_syslog) {
989                                                         local $logtext = "Security alert: User $1 blocked after $config{'blockuser_failures'} failed logins";
990                                                         syslog("crit", "%s",
991                                                                 $logtext);
992                                                         }
993                                                 }
994
995                                         # Lock out the user's password, if enabled
996                                         if ($config{'blocklock'} &&
997                                             $userfail{$1} >=
998                                               $config{'blockuser_failures'}) {
999                                                 my $lk = &lock_user_password($1);
1000                                                 $blocked = 2;
1001                                                 if ($use_syslog) {
1002                                                         local $logtext = $lk == 1 ? "Security alert: User $1 locked after $config{'blockuser_failures'} failed logins" : $lk < 0 ? "Security alert: User could not be locked" : "Security alert: User is already locked";
1003                                                         syslog("crit", "%s",
1004                                                                 $logtext);
1005                                                         }
1006                                                 }
1007
1008                                         # Send back a delay
1009                                         $dl = $userdlay{$1} -
1010                                            int(($time_now - $userlast{$1})/50);
1011                                         $dl = $dl < 0 ? 0 : $dl+1;
1012                                         print $outfd "$dl $blocked\n";
1013                                         $userdlay{$1} = $dl;
1014
1015                                         # Write out blocked status file
1016                                         if ($blocked) {
1017                                                 &write_blocked_file();
1018                                                 }
1019                                         }
1020                                 $userlast{$1} = $time_now;
1021                                 }
1022                         elsif ($inline =~ /^verify\s+(\S+)\s+(\S+)/) {
1023                                 # Verifying a session ID
1024                                 local $session_id = $1;
1025                                 local $notimeout = $2;
1026                                 local $skey = $sessiondb{$session_id} ?
1027                                                 $session_id : 
1028                                                 &hash_session_id($session_id);
1029                                 if (!defined($sessiondb{$skey})) {
1030                                         # Session doesn't exist
1031                                         print $outfd "0 0\n";
1032                                         }
1033                                 else {
1034                                         local ($user, $ltime) =
1035                                           split(/\s+/, $sessiondb{$skey});
1036                                         local $lot = &get_logout_time($user, $session_id);
1037                                         if ($lot &&
1038                                             $time_now - $ltime > $lot*60 &&
1039                                             !$notimeout) {
1040                                                 # Session has timed out
1041                                                 print $outfd "1 ",$time_now - $ltime,"\n";
1042                                                 #delete($sessiondb{$skey});
1043                                                 }
1044                                         else {
1045                                                 # Session is OK
1046                                                 print $outfd "2 $user\n";
1047                                                 if ($lot &&
1048                                                     $time_now - $ltime >
1049                                                     ($lot*60)/2) {
1050                                                         $sessiondb{$skey} = "$user $time_now";
1051                                                         }
1052                                                 }
1053                                         }
1054                                 }
1055                         elsif ($inline =~ /^new\s+(\S+)\s+(\S+)\s+(\S+)/) {
1056                                 # Creating a new session
1057                                 local $session_id = $1;
1058                                 local $user = $2;
1059                                 local $ip = $3;
1060                                 $sessiondb{&hash_session_id($session_id)} =
1061                                         "$user $time_now $ip";
1062                                 }
1063                         elsif ($inline =~ /^delete\s+(\S+)/) {
1064                                 # Logging out a session
1065                                 local $session_id = $1;
1066                                 local $skey = $sessiondb{$session_id} ?
1067                                                 $session_id : 
1068                                                 &hash_session_id($session_id);
1069                                 local @sdb = split(/\s+/, $sessiondb{$skey});
1070                                 print $outfd $sdb[0],"\n";
1071                                 delete($sessiondb{$skey});
1072                                 }
1073                         elsif ($inline =~ /^pamstart\s+(\S+)\s+(\S+)\s+(.*)/) {
1074                                 # Starting a new PAM conversation
1075                                 local ($cid, $host, $user) = ($1, $2, $3);
1076
1077                                 # Does this user even need PAM?
1078                                 local ($realuser, $canlogin) =
1079                                         &can_user_login($user, undef, $host);
1080                                 local $conv;
1081                                 if ($canlogin == 0) {
1082                                         # Cannot even login!
1083                                         print $outfd "0 Invalid username\n";
1084                                         }
1085                                 elsif ($canlogin != 2) {
1086                                         # Not using PAM .. so just ask for
1087                                         # the password.
1088                                         $conv = { 'user' => $realuser,
1089                                                   'host' => $host,
1090                                                   'step' => 0,
1091                                                   'cid' => $cid,
1092                                                   'time' => time() };
1093                                         print $outfd "3 Password\n";
1094                                         }
1095                                 else {
1096                                         # Start the PAM conversation
1097                                         # sub-process, and get a question
1098                                         $conv = { 'user' => $realuser,
1099                                                   'host' => $host,
1100                                                   'cid' => $cid,
1101                                                   'time' => time() };
1102                                         local ($PAMINr, $PAMINw, $PAMOUTr,
1103                                                 $PAMOUTw) = &allocate_pipes();
1104                                         local $pampid = fork();
1105                                         if (!$pampid) {
1106                                                 close($PAMOUTr); close($PAMINw);
1107                                                 &pam_conversation_process(
1108                                                         $realuser,
1109                                                         $PAMOUTw, $PAMINr);
1110                                                 }
1111                                         close($PAMOUTw); close($PAMINr);
1112                                         $conv->{'pid'} = $pampid;
1113                                         $conv->{'PAMOUTr'} = $PAMOUTr;
1114                                         $conv->{'PAMINw'} = $PAMINw;
1115                                         push(@childpids, $pampid);
1116
1117                                         # Get the first PAM question
1118                                         local $pok = &recv_pam_question(
1119                                                 $conv, $outfd);
1120                                         if (!$pok) {
1121                                                 &end_pam_conversation($conv);
1122                                                 }
1123                                         }
1124
1125                                 $conversations{$cid} = $conv if ($conv);
1126                                 }
1127                         elsif ($inline =~ /^pamanswer\s+(\S+)\s+(.*)/) {
1128                                 # A response to a PAM question
1129                                 local ($cid, $answer) = ($1, $2);
1130                                 local $conv = $conversations{$cid};
1131                                 if (!$conv) {
1132                                         # No such conversation?
1133                                         print $outfd "0 Bad login session\n";
1134                                         }
1135                                 elsif ($conv->{'pid'}) {
1136                                         # Send the PAM response and get
1137                                         # the next question
1138                                         &send_pam_answer($conv, $answer);
1139                                         local $pok = &recv_pam_question($conv, $outfd);
1140                                         if (!$pok) {
1141                                                 &end_pam_conversation($conv);
1142                                                 }
1143                                         }
1144                                 else {
1145                                         # This must be the password .. try it
1146                                         # and send back the results
1147                                         local ($vu, $expired, $nonexist) =
1148                                                 &validate_user($conv->{'user'},
1149                                                                $answer,
1150                                                                $conf->{'host'});
1151                                         local $ok = $vu ? 1 : 0;
1152                                         print $outfd "2 $conv->{'user'} $ok $expired $notexist\n";
1153                                         &end_pam_conversation($conv);
1154                                         }
1155                                 }
1156                         elsif ($inline =~ /^writesudo\s+(\S+)\s+(\d+)/) {
1157                                 # Store the fact that some user can sudo to root
1158                                 local ($user, $ok) = ($1, $2);
1159                                 $sudocache{$user} = $ok." ".time();
1160                                 }
1161                         elsif ($inline =~ /^readsudo\s+(\S+)/) {
1162                                 # Query the user sudo cache (valid for 1 minute)
1163                                 local $user = $1;
1164                                 local ($ok, $last) =
1165                                         split(/\s+/, $sudocache{$user});
1166                                 if ($last < time()-60) {
1167                                         # Cache too old
1168                                         print $outfd "2\n";
1169                                         }
1170                                 else {
1171                                         # Tell client OK or not
1172                                         print $outfd "$ok\n";
1173                                         }
1174                                 }
1175                         elsif ($inline =~ /\S/) {
1176                                 # Unknown line from pipe?
1177                                 print DEBUG "main: Unknown line from pipe $inline\n";
1178                                 print STDERR "Unknown line from pipe $inline\n";
1179                                 }
1180                         else {
1181                                 # close pipe
1182                                 close($infd); close($outfd);
1183                                 $passin[$i] = $passout[$i] = undef;
1184                                 }
1185                         }
1186                 }
1187         @passin = grep { defined($_) } @passin;
1188         @passout = grep { defined($_) } @passout;
1189         }
1190
1191 # handle_request(remoteaddress, localaddress, ipv6-flag)
1192 # Where the real work is done
1193 sub handle_request
1194 {
1195 local ($acptip, $localip, $ipv6) = @_;
1196 print DEBUG "handle_request: from $acptip to $localip ipv6=$ipv6\n";
1197 if ($config{'loghost'}) {
1198         $acpthost = &to_hostname($acptip);
1199         $acpthost = $acptip if (!$acpthost);
1200         }
1201 else {
1202         $acpthost = $acptip;
1203         }
1204 $datestr = &http_date(time());
1205 $ok_code = 200;
1206 $ok_message = "Document follows";
1207 $logged_code = undef;
1208 $reqline = $request_uri = $page = undef;
1209 $authuser = undef;
1210 $validated = undef;
1211
1212 # check address against access list
1213 if (@deny && &ip_match($acptip, $localip, @deny) ||
1214     @allow && !&ip_match($acptip, $localip, @allow)) {
1215         &http_error(403, "Access denied for $acptip");
1216         return 0;
1217         }
1218
1219 if ($use_libwrap) {
1220         # Check address with TCP-wrappers
1221         if (!hosts_ctl($config{'pam'}, STRING_UNKNOWN,
1222                        $acptip, STRING_UNKNOWN)) {
1223                 &http_error(403, "Access denied for $acptip by TCP wrappers");
1224                 return 0;
1225                 }
1226         }
1227 print DEBUG "handle_request: passed IP checks\n";
1228
1229 # Compute a timeout for the start of headers, based on the number of
1230 # child processes. As this increases, we use a shorter timeout to avoid
1231 # an attacker overloading the system.
1232 local $header_timeout = 60 + ($config{'maxconns'} - @childpids) * 10;
1233
1234 # Wait at most 60 secs for start of headers for initial requests, or
1235 # 10 minutes for kept-alive connections
1236 local $rmask;
1237 vec($rmask, fileno(SOCK), 1) = 1;
1238 local $to = $checked_timeout ? 10*60 : $header_timeout;
1239 local $sel = select($rmask, undef, undef, $to);
1240 if (!$sel) {
1241         if ($checked_timeout) {
1242                 print DEBUG "handle_request: exiting due to timeout of $to\n";
1243                 exit;
1244                 }
1245         else {
1246                 &http_error(400, "Timeout",
1247                             "Waited for that $to seconds for start of headers");
1248                 }
1249         }
1250 $checked_timeout++;
1251 print DEBUG "handle_request: passed timeout check\n";
1252
1253 # Read the HTTP request and headers
1254 local $origreqline = &read_line();
1255 ($reqline = $origreqline) =~ s/\r|\n//g;
1256 $method = $page = $request_uri = undef;
1257 print DEBUG "handle_request reqline=$reqline\n";
1258 if (!$reqline && (!$use_ssl || $checked_timeout > 1)) {
1259         # An empty request .. just close the connection
1260         print DEBUG "handle_request: rejecting empty request\n";
1261         return 0;
1262         }
1263 elsif ($reqline !~ /^(\S+)\s+(.*)\s+HTTP\/1\..$/) {
1264         print DEBUG "handle_request: invalid reqline=$reqline\n";
1265         if ($use_ssl) {
1266                 # This could be an http request when it should be https
1267                 $use_ssl = 0;
1268                 local $url = $config{'musthost'} ?
1269                                 "https://$config{'musthost'}:$port/" :
1270                                 "https://$host:$port/";
1271                 if ($config{'ssl_redirect'}) {
1272                         # Just re-direct to the correct URL
1273                         sleep(1);       # Give browser a change to finish
1274                                         # sending its request
1275                         &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
1276                         &write_data("Date: $datestr\r\n");
1277                         &write_data("Server: $config{'server'}\r\n");
1278                         &write_data("Location: $url\r\n");
1279                         &write_keep_alive(0);
1280                         &write_data("\r\n");
1281                         return 0;
1282                         }
1283                 else {
1284                         # Tell user the correct URL
1285                         &http_error(200, "Bad Request", "This web server is running in SSL mode. Try the URL <a href='$url'>$url</a> instead.<br>");
1286                         }
1287                 }
1288         elsif (ord(substr($reqline, 0, 1)) == 128 && !$use_ssl) {
1289                 # This could be an https request when it should be http ..
1290                 # need to fake a HTTP response
1291                 eval <<'EOF';
1292                         use Net::SSLeay;
1293                         eval "Net::SSLeay::SSLeay_add_ssl_algorithms()";
1294                         eval "Net::SSLeay::load_error_strings()";
1295                         $ssl_ctx = Net::SSLeay::CTX_new();
1296                         Net::SSLeay::CTX_use_RSAPrivateKey_file(
1297                                 $ssl_ctx, $config{'keyfile'},
1298                                 &Net::SSLeay::FILETYPE_PEM);
1299                         Net::SSLeay::CTX_use_certificate_file(
1300                                 $ssl_ctx,
1301                                 $config{'certfile'} || $config{'keyfile'},
1302                                 &Net::SSLeay::FILETYPE_PEM);
1303                         $ssl_con = Net::SSLeay::new($ssl_ctx);
1304                         pipe(SSLr, SSLw);
1305                         if (!fork()) {
1306                                 close(SSLr);
1307                                 select(SSLw); $| = 1; select(STDOUT);
1308                                 print SSLw $origreqline;
1309                                 local $buf;
1310                                 while(sysread(SOCK, $buf, 1) > 0) {
1311                                         print SSLw $buf;
1312                                         }
1313                                 close(SOCK);
1314                                 exit;
1315                                 }
1316                         close(SSLw);
1317                         Net::SSLeay::set_wfd($ssl_con, fileno(SOCK));
1318                         Net::SSLeay::set_rfd($ssl_con, fileno(SSLr));
1319                         Net::SSLeay::accept($ssl_con) || die "accept() failed";
1320                         $use_ssl = 1;
1321                         local $url = $config{'musthost'} ?
1322                                         "https://$config{'musthost'}:$port/" :
1323                                         "https://$host:$port/";
1324                         if ($config{'ssl_redirect'}) {
1325                                 # Just re-direct to the correct URL
1326                                 sleep(1);       # Give browser a change to
1327                                                 # finish sending its request
1328                                 &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
1329                                 &write_data("Date: $datestr\r\n");
1330                                 &write_data("Server: $config{'server'}\r\n");
1331                                 &write_data("Location: $url\r\n");
1332                                 &write_keep_alive(0);
1333                                 &write_data("\r\n");
1334                                 return 0;
1335                                 }
1336                         else {
1337                                 # Tell user the correct URL
1338                                 &http_error(200, "Bad Request", "This web server is not running in SSL mode. Try the URL <a href='$url'>$url</a> instead.<br>");
1339                                 }
1340 EOF
1341                 if ($@) {
1342                         &http_error(400, "Bad Request");
1343                         }
1344                 }
1345         else {
1346                 &http_error(400, "Bad Request");
1347                 }
1348         }
1349 $method = $1;
1350 $request_uri = $page = $2;
1351 %header = ();
1352 local $lastheader;
1353 while(1) {
1354         ($headline = &read_line()) =~ s/\r|\n//g;
1355         last if ($headline eq "");
1356         print DEBUG "handle_request: got headline $headline\n";
1357         if ($headline =~ /^(\S+):\s*(.*)$/) {
1358                 $header{$lastheader = lc($1)} = $2;
1359                 }
1360         elsif ($headline =~ /^\s+(.*)$/) {
1361                 $header{$lastheader} .= $headline;
1362                 }
1363         else {
1364                 &http_error(400, "Bad Header $headline");
1365                 }
1366         }
1367 if (defined($header{'host'})) {
1368         if ($header{'host'} =~ /^([^:]+):([0-9]+)$/) {
1369                 ($host, $port) = ($1, $2);
1370                 }
1371         else {
1372                 $host = $header{'host'};
1373                 }
1374         if ($config{'musthost'} && $host ne $config{'musthost'}) {
1375                 # Disallowed hostname used
1376                 &http_error(400, "Invalid HTTP hostname");
1377                 }
1378         }
1379 undef(%in);
1380 if ($page =~ /^([^\?]+)\?(.*)$/) {
1381         # There is some query string information
1382         $page = $1;
1383         $querystring = $2;
1384         print DEBUG "handle_request: querystring=$querystring\n";
1385         if ($querystring !~ /=/) {
1386                 $queryargs = $querystring;
1387                 $queryargs =~ s/\+/ /g;
1388                 $queryargs =~ s/%(..)/pack("c",hex($1))/ge;
1389                 $querystring = "";
1390                 }
1391         else {
1392                 # Parse query-string parameters
1393                 local @in = split(/\&/, $querystring);
1394                 foreach $i (@in) {
1395                         local ($k, $v) = split(/=/, $i, 2);
1396                         $k =~ s/\+/ /g; $k =~ s/%(..)/pack("c",hex($1))/ge;
1397                         $v =~ s/\+/ /g; $v =~ s/%(..)/pack("c",hex($1))/ge;
1398                         $in{$k} = $v;
1399                         }
1400                 }
1401         }
1402 $posted_data = undef;
1403 if ($method eq 'POST' &&
1404     $header{'content-type'} eq 'application/x-www-form-urlencoded') {
1405         # Read in posted query string information, up the configured maximum
1406         # post request length
1407         $clen = $header{"content-length"};
1408         $clen_read = $clen > $config{'max_post'} ? $config{'max_post'} : $clen;
1409         while(length($posted_data) < $clen_read) {
1410                 $buf = &read_data($clen_read - length($posted_data));
1411                 if (!length($buf)) {
1412                         &http_error(500, "Failed to read POST request");
1413                         }
1414                 chomp($posted_data);
1415                 $posted_data =~ s/\015$//mg;
1416                 $posted_data .= $buf;
1417                 }
1418         print DEBUG "clen_read=$clen_read clen=$clen posted_data=",length($posted_data),"\n";
1419         if ($clen_read != $clen && length($posted_data) > $clen) {
1420                 # If the client sent more data than we asked for, chop the
1421                 # rest off
1422                 $posted_data = substr($posted_data, 0, $clen);
1423                 }
1424         if (length($posted_data) > $clen) {
1425                 # When the client sent too much, delay so that it gets headers
1426                 sleep(3);
1427                 }
1428         if ($header{'user-agent'} =~ /MSIE/ &&
1429             $header{'user-agent'} !~ /Opera/i) {
1430                 # MSIE includes an extra newline in the data
1431                 $posted_data =~ s/\r|\n//g;
1432                 }
1433         local @in = split(/\&/, $posted_data);
1434         foreach $i (@in) {
1435                 local ($k, $v) = split(/=/, $i, 2);
1436                 #$v =~ s/\r|\n//g;
1437                 $k =~ s/\+/ /g; $k =~ s/%(..)/pack("c",hex($1))/ge;
1438                 $v =~ s/\+/ /g; $v =~ s/%(..)/pack("c",hex($1))/ge;
1439                 $in{$k} = $v;
1440                 }
1441         print DEBUG "handle_request: posted_data=$posted_data\n";
1442         }
1443
1444 # work out accepted encodings
1445 %acceptenc = map { $_, 1 } split(/,/, $header{'accept-encoding'});
1446
1447 # replace %XX sequences in page
1448 $page =~ s/%(..)/pack("c",hex($1))/ge;
1449
1450 # Check if the browser's user agent indicates a mobile device
1451 $mobile_device = &is_mobile_useragent($header{'user-agent'});
1452
1453 # Check if Host: header is for a mobile URL
1454 foreach my $m (@mobile_prefixes) {
1455         if ($header{'host'} =~ /^\Q$m\E/i) {
1456                 $mobile_device = 1;
1457                 }
1458         }
1459
1460 # check for the logout flag file, and if existant deny authentication
1461 if ($config{'logout'} && -r $config{'logout'}.$in{'miniserv_logout_id'}) {
1462         print DEBUG "handle_request: logout flag set\n";
1463         $deny_authentication++;
1464         open(LOGOUT, $config{'logout'}.$in{'miniserv_logout_id'});
1465         chop($count = <LOGOUT>);
1466         close(LOGOUT);
1467         $count--;
1468         if ($count > 0) {
1469                 open(LOGOUT, ">$config{'logout'}$in{'miniserv_logout_id'}");
1470                 print LOGOUT "$count\n";
1471                 close(LOGOUT);
1472                 }
1473         else {
1474                 unlink($config{'logout'}.$in{'miniserv_logout_id'});
1475                 }
1476         }
1477
1478 # check for any redirect for the requested URL
1479 foreach my $pfx (@strip_prefix) {
1480         my $l = length($pfx);
1481         if(length($page) >= $l &&
1482            substr($page,0,$l) eq $pfx) {
1483                 $page=substr($page,$l);
1484                 last;
1485                 }
1486         }
1487 $simple = &simplify_path($page, $bogus);
1488 $rpath = $simple;
1489 $rpath .= "&".$querystring if (defined($querystring));
1490 $redir = $redirect{$rpath};
1491 if (defined($redir)) {
1492         print DEBUG "handle_request: redir=$redir\n";
1493         &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
1494         &write_data("Date: $datestr\r\n");
1495         &write_data("Server: $config{'server'}\r\n");
1496         local $ssl = $use_ssl || $config{'inetd_ssl'};
1497         $portstr = $port == 80 && !$ssl ? "" :
1498                    $port == 443 && $ssl ? "" : ":$port";
1499         $prot = $ssl ? "https" : "http";
1500         &write_data("Location: $prot://$host$portstr$redir\r\n");
1501         &write_keep_alive(0);
1502         &write_data("\r\n");
1503         return 0;
1504         }
1505
1506 # Check for a DAV request
1507 $davpath = undef;
1508 foreach my $d (@davpaths) {
1509         if ($simple eq $d || $simple =~ /^\Q$d\E\//) {
1510                 $davpath = $d;
1511                 last;
1512                 }
1513         }
1514 if (!$davpath && ($method eq "SEARCH" || $method eq "PUT")) {
1515         &http_error(400, "Bad Request method $method");
1516         }
1517
1518 # Check for password if needed
1519 if ($config{'userfile'}) {
1520         print DEBUG "handle_request: Need authentication\n";
1521         $validated = 0;
1522         $blocked = 0;
1523
1524         # Session authentication is never used for connections by
1525         # another webmin server, or for specified pages, or for DAV, or XMLRPC,
1526         # or mobile browsers if requested.
1527         if ($header{'user-agent'} =~ /webmin/i ||
1528             $header{'user-agent'} =~ /$config{'agents_nosession'}/i ||
1529             $sessiononly{$simple} || $davpath ||
1530             $simple eq "/xmlrpc.cgi" ||
1531             $acptip eq $config{'host_nosession'} ||
1532             $mobile_device && $config{'mobile_nosession'}) {
1533                 print DEBUG "handle_request: Forcing HTTP authentication\n";
1534                 $config{'session'} = 0;
1535                 }
1536
1537         # Check for SSL authentication
1538         if ($use_ssl && $verified_client) {
1539                 $peername = Net::SSLeay::X509_NAME_oneline(
1540                                 Net::SSLeay::X509_get_subject_name(
1541                                         Net::SSLeay::get_peer_certificate(
1542                                                 $ssl_con)));
1543                 $u = &find_user_by_cert($peername);
1544                 if ($u) {
1545                         $authuser = $u;
1546                         $validated = 2;
1547                         }
1548                 if ($use_syslog && !$validated) {
1549                         syslog("crit", "%s",
1550                                "Unknown SSL certificate $peername");
1551                         }
1552                 }
1553
1554         if (!$validated && !$deny_authentication) {
1555                 # check for IP-based authentication
1556                 local $a;
1557                 foreach $a (keys %ipaccess) {
1558                         if ($acptip eq $a) {
1559                                 # It does! Auth as the user
1560                                 $validated = 3;
1561                                 $baseauthuser = $authuser =
1562                                         $ipaccess{$a};
1563                                 }
1564                         }
1565                 }
1566
1567         # Check for normal HTTP authentication
1568         if (!$validated && !$deny_authentication && !$config{'session'} &&
1569             $header{authorization} =~ /^basic\s+(\S+)$/i) {
1570                 # authorization given..
1571                 ($authuser, $authpass) = split(/:/, &b64decode($1), 2);
1572                 print DEBUG "handle_request: doing basic auth check authuser=$authuser authpass=$authpass\n";
1573                 local ($vu, $expired, $nonexist) =
1574                         &validate_user($authuser, $authpass, $host,
1575                                        $acptip, $port);
1576                 print DEBUG "handle_request: vu=$vu expired=$expired nonexist=$nonexist\n";
1577                 if ($vu && (!$expired || $config{'passwd_mode'} == 1)) {
1578                         $authuser = $vu;
1579                         $validated = 1;
1580                         }
1581                 else {
1582                         $validated = 0;
1583                         }
1584                 if ($use_syslog && !$validated) {
1585                         syslog("crit", "%s",
1586                                ($nonexist ? "Non-existent" :
1587                                 $expired ? "Expired" : "Invalid").
1588                                " login as $authuser from $acpthost");
1589                         }
1590                 if ($authuser =~ /\r|\n|\s/) {
1591                         &http_error(500, "Invalid username",
1592                                     "Username contains invalid characters");
1593                         }
1594                 if ($authpass =~ /\r|\n/) {
1595                         &http_error(500, "Invalid password",
1596                                     "Password contains invalid characters");
1597                         }
1598
1599                 if ($config{'passdelay'} && !$config{'inetd'} && $authuser) {
1600                         # check with main process for delay
1601                         print DEBUG "handle_request: about to ask for password delay\n";
1602                         print $PASSINw "delay $authuser $acptip $validated\n";
1603                         <$PASSOUTr> =~ /(\d+) (\d+)/;
1604                         $blocked = $2;
1605                         print DEBUG "handle_request: password delay $1 $2\n";
1606                         sleep($1);
1607                         }
1608                 }
1609
1610         # Check for a visit to the special session login page
1611         if ($config{'session'} && !$deny_authentication &&
1612             $page eq $config{'session_login'}) {
1613                 if ($in{'logout'} && $header{'cookie'} =~ /(^|\s)$sidname=([a-f0-9]+)/) {
1614                         # Logout clicked .. remove the session
1615                         local $sid = $2;
1616                         print $PASSINw "delete $sid\n";
1617                         local $louser = <$PASSOUTr>;
1618                         chop($louser);
1619                         $logout = 1;
1620                         $already_session_id = undef;
1621                         $authuser = $baseauthuser = undef;
1622                         if ($louser) {
1623                                 if ($use_syslog) {
1624                                         syslog("info", "%s", "Logout by $louser from $acpthost");
1625                                         }
1626                                 &run_logout_script($louser, $sid,
1627                                                    $acptip, $localip);
1628                                 &write_logout_utmp($louser, $actphost);
1629                                 }
1630                         }
1631                 else {
1632                         # Validate the user
1633                         if ($in{'user'} =~ /\r|\n|\s/) {
1634                                 &http_error(500, "Invalid username",
1635                                     "Username contains invalid characters");
1636                                 }
1637                         if ($in{'pass'} =~ /\r|\n/) {
1638                                 &http_error(500, "Invalid password",
1639                                     "Password contains invalid characters");
1640                                 }
1641
1642                         local ($vu, $expired, $nonexist) =
1643                                 &validate_user($in{'user'}, $in{'pass'}, $host,
1644                                                $acptip, $port);
1645                         local $hrv = &handle_login(
1646                                         $vu || $in{'user'}, $vu ? 1 : 0,
1647                                         $expired, $nonexist, $in{'pass'},
1648                                         $in{'notestingcookie'});
1649                         return $hrv if (defined($hrv));
1650                         }
1651                 }
1652
1653         # Check for a visit to the special PAM login page
1654         if ($config{'session'} && !$deny_authentication &&
1655             $use_pam && $config{'pam_conv'} && $page eq $config{'pam_login'} &&
1656             !$in{'restart'}) {
1657                 # A question has been entered .. submit it to the main process
1658                 print DEBUG "handle_request: Got call to $page ($in{'cid'})\n";
1659                 print DEBUG "handle_request: For PAM, authuser=$authuser\n";
1660                 if ($in{'answer'} =~ /\r|\n/ || $in{'cid'} =~ /\r|\n|\s/) {
1661                         &http_error(500, "Invalid response",
1662                             "Response contains invalid characters");
1663                         }
1664
1665                 if (!$in{'cid'}) {
1666                         # Start of a new conversation - answer must be username
1667                         $cid = &generate_random_id($in{'answer'});
1668                         print $PASSINw "pamstart $cid $host $in{'answer'}\n";
1669                         }
1670                 else {
1671                         # A response to a previous question
1672                         $cid = $in{'cid'};
1673                         print $PASSINw "pamanswer $cid $in{'answer'}\n";
1674                         }
1675
1676                 # Read back the response, and the next question (if any)
1677                 local $line = <$PASSOUTr>;
1678                 $line =~ s/\r|\n//g;
1679                 local ($rv, $question) = split(/\s+/, $line, 2);
1680                 if ($rv == 0) {
1681                         # Cannot login!
1682                         local $hrv = &handle_login(
1683                                 !$in{'cid'} && $in{'answer'} ? $in{'answer'}
1684                                                              : "unknown",
1685                                 0, 0, 1, undef);
1686                         return $hrv if (defined($hrv));
1687                         }
1688                 elsif ($rv == 1 || $rv == 3) {
1689                         # Another question .. force use of PAM CGI
1690                         $validated = 1;
1691                         $method = "GET";
1692                         $querystring .= "&cid=$cid&question=".
1693                                         &urlize($question);
1694                         $querystring .= "&password=1" if ($rv == 3);
1695                         $queryargs = "";
1696                         $page = $config{'pam_login'};
1697                         $miniserv_internal = 1;
1698                         $logged_code = 401;
1699                         }
1700                 elsif ($rv == 2) {
1701                         # Got back a final ok or failure
1702                         local ($user, $ok, $expired, $nonexist) =
1703                                 split(/\s+/, $question);
1704                         local $hrv = &handle_login(
1705                                 $user, $ok, $expired, $nonexist, undef,
1706                                 $in{'notestingcookie'});
1707                         return $hrv if (defined($hrv));
1708                         }
1709                 elsif ($rv == 4) {
1710                         # A message from PAM .. tell the user
1711                         $validated = 1;
1712                         $method = "GET";
1713                         $querystring .= "&cid=$cid&message=".
1714                                         &urlize($question);
1715                         $queryargs = "";
1716                         $page = $config{'pam_login'};
1717                         $miniserv_internal = 1;
1718                         $logged_code = 401;
1719                         }
1720                 }
1721
1722         # Check for a visit to the special password change page
1723         if ($config{'session'} && !$deny_authentication &&
1724             $page eq $config{'password_change'} && !$validated) {
1725                 # Just let this slide ..
1726                 $validated = 1;
1727                 $miniserv_internal = 3;
1728                 }
1729
1730         # Check for an existing session
1731         if ($config{'session'} && !$validated) {
1732                 if ($already_session_id) {
1733                         $session_id = $already_session_id;
1734                         $authuser = $already_authuser;
1735                         $validated = 1;
1736                         }
1737                 elsif (!$deny_authentication &&
1738                        $header{'cookie'} =~ /(^|\s)$sidname=([a-f0-9]+)/) {
1739                         # Try all session cookies
1740                         local $cookie = $header{'cookie'};
1741                         while($cookie =~ s/(^|\s)$sidname=([a-f0-9]+)//) {
1742                                 $session_id = $2;
1743                                 local $notimeout =
1744                                         $in{'webmin_notimeout'} ? 1 : 0;
1745                                 print $PASSINw "verify $session_id $notimeout\n";
1746                                 <$PASSOUTr> =~ /(\d+)\s+(\S+)/;
1747                                 if ($1 == 2) {
1748                                         # Valid session continuation
1749                                         $validated = 1;
1750                                         $authuser = $2;
1751                                         $already_authuser = $authuser;
1752                                         $timed_out = undef;
1753                                         last;
1754                                         }
1755                                 elsif ($1 == 1) {
1756                                         # Session timed out
1757                                         $timed_out = $2;
1758                                         }
1759                                 else {
1760                                         # Invalid session ID .. don't set
1761                                         # verified flag
1762                                         }
1763                                 }
1764                         }
1765                 }
1766
1767         # Check for local authentication
1768         if ($localauth_user && !$header{'x-forwarded-for'} && !$header{'via'}) {
1769                 my $luser = &get_user_details($localauth_user);
1770                 if ($luser) {
1771                         # Local user exists in webmin users file
1772                         $validated = 1;
1773                         $authuser = $localauth_user;
1774                         }
1775                 else {
1776                         # Check if local user is allowed by unixauth
1777                         local @can = &can_user_login($localauth_user,
1778                                                      undef, $host);
1779                         if ($can[0]) {
1780                                 $validated = 2;
1781                                 $authuser = $localauth_user;
1782                                 }
1783                         else {
1784                                 $localauth_user = undef;
1785                                 }
1786                         }
1787                 }
1788
1789         if (!$validated) {
1790                 # Check if this path allows anonymous access
1791                 local $a;
1792                 foreach $a (keys %anonymous) {
1793                         if (substr($simple, 0, length($a)) eq $a) {
1794                                 # It does! Auth as the user, if IP access
1795                                 # control allows him.
1796                                 if (&check_user_ip($anonymous{$a}) &&
1797                                     &check_user_time($anonymous{$a})) {
1798                                         $validated = 3;
1799                                         $baseauthuser = $authuser =
1800                                                 $anonymous{$a};
1801                                         }
1802                                 }
1803                         }
1804                 }
1805
1806         if (!$validated) {
1807                 # Check if this path allows unauthenticated access
1808                 local ($u, $unauth);
1809                 foreach $u (@unauth) {
1810                         $unauth++ if ($simple =~ /$u/);
1811                         }
1812                 if (!$bogus && $unauth) {
1813                         # Unauthenticated directory or file request - approve it
1814                         $validated = 4;
1815                         $baseauthuser = $authuser = undef;
1816                         }
1817                 }
1818
1819         if (!$validated) {
1820                 if ($blocked == 0) {
1821                         # No password given.. ask
1822                         if ($config{'pam_conv'} && $use_pam) {
1823                                 # Force CGI for PAM question, starting with
1824                                 # the username which is always needed
1825                                 $validated = 1;
1826                                 $method = "GET";
1827                                 $querystring .= "&initial=1&question=".
1828                                                 &urlize("Username");
1829                                 $querystring .= "&failed=$failed_user" if ($failed_user);
1830                                 $querystring .= "&timed_out=$timed_out" if ($timed_out);
1831                                 $queryargs = "";
1832                                 $page = $config{'pam_login'};
1833                                 $miniserv_internal = 1;
1834                                 $logged_code = 401;
1835                                 }
1836                         elsif ($config{'session'}) {
1837                                 # Force CGI for session login
1838                                 $validated = 1;
1839                                 if ($logout) {
1840                                         $querystring .= "&logout=1&page=/";
1841                                         }
1842                                 else {
1843                                         # Re-direct to current module only
1844                                         local $rpage = $request_uri;
1845                                         if (!$config{'loginkeeppage'}) {
1846                                                 $rpage =~ s/\?.*$//;
1847                                                 $rpage =~ s/[^\/]+$//
1848                                                 }
1849                                         $querystring = "page=".&urlize($rpage);
1850                                         }
1851                                 $method = "GET";
1852                                 $querystring .= "&failed=$failed_user" if ($failed_user);
1853                                 $querystring .= "&timed_out=$timed_out" if ($timed_out);
1854                                 $queryargs = "";
1855                                 $page = $config{'session_login'};
1856                                 $miniserv_internal = 1;
1857                                 $logged_code = 401;
1858                                 }
1859                         else {
1860                                 # Ask for login with HTTP authentication
1861                                 &write_data("HTTP/1.0 401 Unauthorized\r\n");
1862                                 &write_data("Date: $datestr\r\n");
1863                                 &write_data("Server: $config{'server'}\r\n");
1864                                 &write_data("WWW-authenticate: Basic ".
1865                                            "realm=\"$config{'realm'}\"\r\n");
1866                                 &write_keep_alive(0);
1867                                 &write_data("Content-type: text/html\r\n");
1868                                 &write_data("\r\n");
1869                                 &reset_byte_count();
1870                                 &write_data("<html>\n");
1871                                 &write_data("<head><title>Unauthorized</title></head>\n");
1872                                 &write_data("<body><h1>Unauthorized</h1>\n");
1873                                 &write_data("A password is required to access this\n");
1874                                 &write_data("web server. Please try again. <p>\n");
1875                                 &write_data("</body></html>\n");
1876                                 &log_request($acpthost, undef, $reqline, 401, &byte_count());
1877                                 return 0;
1878                                 }
1879                         }
1880                 elsif ($blocked == 1) {
1881                         # when the host has been blocked, give it an error
1882                         &http_error(403, "Access denied for $acptip. The host ".
1883                                          "has been blocked because of too ".
1884                                          "many authentication failures.");
1885                         }
1886                 elsif ($blocked == 2) {
1887                         # when the user has been blocked, give it an error
1888                         &http_error(403, "Access denied. The user ".
1889                                          "has been blocked because of too ".
1890                                          "many authentication failures.");
1891                         }
1892                 }
1893         else {
1894                 # Get the real Webmin username
1895                 local @can = &can_user_login($authuser, undef, $host);
1896                 $baseauthuser = $can[3] || $authuser;
1897
1898                 if ($config{'remoteuser'} && !$< && $validated) {
1899                         # Switch to the UID of the remote user (if he exists)
1900                         local @u = getpwnam($authuser);
1901                         if (@u && $< != $u[2]) {
1902                                 $( = $u[3]; $) = "$u[3] $u[3]";
1903                                 ($>, $<) = ($u[2], $u[2]);
1904                                 }
1905                         else {
1906                                 &http_error(500, "Unix user $authuser does not exist");
1907                                 return 0;
1908                                 }
1909                         }
1910                 }
1911
1912         # Check per-user IP access control
1913         if (!&check_user_ip($baseauthuser)) {
1914                 &http_error(403, "Access denied for $acptip for $baseauthuser");
1915                 return 0;
1916                 }
1917
1918         # Check per-user allowed times
1919         if (!&check_user_time($baseauthuser)) {
1920                 &http_error(403, "Access denied at the current time");
1921                 return 0;
1922                 }
1923         }
1924 $uinfo = &get_user_details($baseauthuser);
1925
1926 # Validate the path, and convert to canonical form
1927 rerun:
1928 $simple = &simplify_path($page, $bogus);
1929 print DEBUG "handle_request: page=$page simple=$simple\n";
1930 if ($bogus) {
1931         &http_error(400, "Invalid path");
1932         }
1933
1934 # Check for a DAV request
1935 if ($davpath) {
1936         return &handle_dav_request($davpath);
1937         }
1938
1939 # Work out the active theme(s)
1940 local $preroots = $mobile_device && defined($config{'mobile_preroot'}) ?
1941                         $config{'mobile_preroot'} :
1942                  $authuser && defined($config{'preroot_'.$authuser}) ?
1943                         $config{'preroot_'.$authuser} :
1944                  $uinfo && defined($uinfo->{'preroot'}) ?
1945                         $uinfo->{'preroot'} :
1946                         $config{'preroot'};
1947 local @preroots = reverse(split(/\s+/, $preroots));
1948
1949 # Canonicalize the directories
1950 foreach my $preroot (@preroots) {
1951         # Always under the current webmin root
1952         $preroot =~ s/^.*\///g;
1953         $preroot = $roots[0].'/'.$preroot;
1954         }
1955
1956 # Look in the theme root directories first
1957 local ($full, @stfull);
1958 $foundroot = undef;
1959 foreach my $preroot (@preroots) {
1960         $is_directory = 1;
1961         $sofar = "";
1962         $full = $preroot.$sofar;
1963         $scriptname = $simple;
1964         foreach $b (split(/\//, $simple)) {
1965                 if ($b ne "") { $sofar .= "/$b"; }
1966                 $full = $preroot.$sofar;
1967                 @stfull = stat($full);
1968                 if (!@stfull) { undef($full); last; }
1969
1970                 # Check if this is a directory
1971                 if (-d _) {
1972                         # It is.. go on parsing
1973                         $is_directory = 1;
1974                         next;
1975                         }
1976                 else {
1977                         $is_directory = 0;
1978                         }
1979
1980                 # Check if this is a CGI program
1981                 if (&get_type($full) eq "internal/cgi") {
1982                         $pathinfo = substr($simple, length($sofar));
1983                         $pathinfo .= "/" if ($page =~ /\/$/);
1984                         $scriptname = $sofar;
1985                         last;
1986                         }
1987                 }
1988
1989         # Don't stop at a directory unless this is the last theme, which
1990         # is the 'real' one that provides the .cgi scripts
1991         if ($is_directory && $preroot ne $preroots[$#preroots]) {
1992                 next;
1993                 }
1994
1995         if ($full) {
1996                 # Found it!
1997                 if ($sofar eq '') {
1998                         $cgi_pwd = $roots[0];
1999                         }
2000                 elsif ($is_directory) {
2001                         $cgi_pwd = "$roots[0]$sofar";
2002                         }
2003                 else {
2004                         "$roots[0]$sofar" =~ /^(.*\/)[^\/]+$/;
2005                         $cgi_pwd = $1;
2006                         }
2007                 $foundroot = $preroot;
2008                 if ($is_directory) {
2009                         # Check for index files in the directory
2010                         local $foundidx;
2011                         foreach $idx (split(/\s+/, $config{"index_docs"})) {
2012                                 $idxfull = "$full/$idx";
2013                                 local @stidxfull = stat($idxfull);
2014                                 if (-r _ && !-d _) {
2015                                         $full = $idxfull;
2016                                         @stfull = @stidxfull;
2017                                         $is_directory = 0;
2018                                         $scriptname .= "/"
2019                                                 if ($scriptname ne "/");
2020                                         $foundidx++;
2021                                         last;
2022                                         }
2023                                 }
2024                         @stfull = stat($full) if (!$foundidx);
2025                         }
2026                 }
2027         last if ($foundroot);
2028         }
2029 print DEBUG "handle_request: initial full=$full\n";
2030
2031 # Look in the real root directories, stopping when we find a file or directory
2032 if (!$full || $is_directory) {
2033         ROOT: foreach $root (@roots) {
2034                 $sofar = "";
2035                 $full = $root.$sofar;
2036                 $scriptname = $simple;
2037                 foreach $b ($simple eq "/" ? ( "" ) : split(/\//, $simple)) {
2038                         if ($b ne "") { $sofar .= "/$b"; }
2039                         $full = $root.$sofar;
2040                         @stfull = stat($full);
2041                         if (!@stfull) {
2042                                 next ROOT;
2043                                 }
2044
2045                         # Check if this is a directory
2046                         if (-d _) {
2047                                 # It is.. go on parsing
2048                                 next;
2049                                 }
2050
2051                         # Check if this is a CGI program
2052                         if (&get_type($full) eq "internal/cgi") {
2053                                 $pathinfo = substr($simple, length($sofar));
2054                                 $pathinfo .= "/" if ($page =~ /\/$/);
2055                                 $scriptname = $sofar;
2056                                 last;
2057                                 }
2058                         }
2059
2060                 # Run CGI in the same directory as whatever file
2061                 # was requested
2062                 $full =~ /^(.*\/)[^\/]+$/; $cgi_pwd = $1;
2063
2064                 if (-e $full) {
2065                         # Found something!
2066                         $realroot = $root;
2067                         $foundroot = $root;
2068                         last;
2069                         }
2070                 }
2071         if (!@stfull) { &http_error(404, "File not found"); }
2072         }
2073 print DEBUG "handle_request: full=$full\n";
2074 @stfull = stat($full) if (!@stfull);
2075
2076 # check filename against denyfile regexp
2077 local $denyfile = $config{'denyfile'};
2078 if ($denyfile && $full =~ /$denyfile/) {
2079         &http_error(403, "Access denied to $page");
2080         return 0;
2081         }
2082
2083 # Reached the end of the path OK.. see what we've got
2084 if (-d _) {
2085         # See if the URL ends with a / as it should
2086         print DEBUG "handle_request: found a directory\n";
2087         if ($page !~ /\/$/) {
2088                 # It doesn't.. redirect
2089                 &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
2090                 $ssl = $use_ssl || $config{'inetd_ssl'};
2091                 $portstr = $port == 80 && !$ssl ? "" :
2092                            $port == 443 && $ssl ? "" : ":$port";
2093                 &write_data("Date: $datestr\r\n");
2094                 &write_data("Server: $config{server}\r\n");
2095                 $prot = $ssl ? "https" : "http";
2096                 &write_data("Location: $prot://$host$portstr$page/\r\n");
2097                 &write_keep_alive(0);
2098                 &write_data("\r\n");
2099                 &log_request($acpthost, $authuser, $reqline, 302, 0);
2100                 return 0;
2101                 }
2102         # A directory.. check for index files
2103         local $foundidx;
2104         foreach $idx (split(/\s+/, $config{"index_docs"})) {
2105                 $idxfull = "$full/$idx";
2106                 @stidxfull = stat($idxfull);
2107                 if (-r _ && !-d _) {
2108                         $cgi_pwd = $full;
2109                         $full = $idxfull;
2110                         @stfull = @stidxfull;
2111                         $scriptname .= "/" if ($scriptname ne "/");
2112                         $foundidx++;
2113                         last;
2114                         }
2115                 }
2116         @stfull = stat($full) if (!$foundidx);
2117         }
2118 if (-d _) {
2119         # This is definately a directory.. list it
2120         print DEBUG "handle_request: listing directory\n";
2121         local $resp = "HTTP/1.0 $ok_code $ok_message\r\n".
2122                       "Date: $datestr\r\n".
2123                       "Server: $config{server}\r\n".
2124                       "Content-type: text/html\r\n";
2125         &write_data($resp);
2126         &write_keep_alive(0);
2127         &write_data("\r\n");
2128         &reset_byte_count();
2129         &write_data("<h1>Index of $simple</h1>\n");
2130         &write_data("<pre>\n");
2131         &write_data(sprintf "%-35.35s %-20.20s %-10.10s\n",
2132                         "Name", "Last Modified", "Size");
2133         &write_data("<hr>\n");
2134         opendir(DIR, $full);
2135         while($df = readdir(DIR)) {
2136                 if ($df =~ /^\./) { next; }
2137                 $fulldf = $full eq "/" ? $full.$df : $full."/".$df;
2138                 (@stbuf = stat($fulldf)) || next;
2139                 if (-d _) { $df .= "/"; }
2140                 @tm = localtime($stbuf[9]);
2141                 $fdate = sprintf "%2.2d/%2.2d/%4.4d %2.2d:%2.2d:%2.2d",
2142                                 $tm[3],$tm[4]+1,$tm[5]+1900,
2143                                 $tm[0],$tm[1],$tm[2];
2144                 $len = length($df); $rest = " "x(35-$len);
2145                 &write_data(sprintf 
2146                  "<a href=\"%s\">%-${len}.${len}s</a>$rest %-20.20s %-10.10s\n",
2147                  $df, $df, $fdate, $stbuf[7]);
2148                 }
2149         closedir(DIR);
2150         &log_request($acpthost, $authuser, $reqline, $ok_code, &byte_count());
2151         return 0;
2152         }
2153
2154 # CGI or normal file
2155 local $rv;
2156 if (&get_type($full) eq "internal/cgi" && $validated != 4) {
2157         # A CGI program to execute
2158         print DEBUG "handle_request: executing CGI\n";
2159         $envtz = $ENV{"TZ"};
2160         $envuser = $ENV{"USER"};
2161         $envpath = $ENV{"PATH"};
2162         $envlang = $ENV{"LANG"};
2163         $envroot = $ENV{"SystemRoot"};
2164         $envperllib = $ENV{'PERLLIB'};
2165         foreach my $k (keys %ENV) {
2166                 delete($ENV{$k});
2167                 }
2168         $ENV{"PATH"} = $envpath if ($envpath);
2169         $ENV{"TZ"} = $envtz if ($envtz);
2170         $ENV{"USER"} = $envuser if ($envuser);
2171         $ENV{"OLD_LANG"} = $envlang if ($envlang);
2172         $ENV{"SystemRoot"} = $envroot if ($envroot);
2173         $ENV{'PERLLIB'} = $envperllib if ($envperllib);
2174         $ENV{"HOME"} = $user_homedir;
2175         $ENV{"SERVER_SOFTWARE"} = $config{"server"};
2176         $ENV{"SERVER_NAME"} = $host;
2177         $ENV{"SERVER_ADMIN"} = $config{"email"};
2178         $ENV{"SERVER_ROOT"} = $roots[0];
2179         $ENV{"SERVER_REALROOT"} = $realroot;
2180         $ENV{"SERVER_PORT"} = $port;
2181         $ENV{"REMOTE_HOST"} = $acpthost;
2182         $ENV{"REMOTE_ADDR"} = $acptip;
2183         $ENV{"REMOTE_ADDR_PROTOCOL"} = $ipv6 ? 6 : 4;
2184         $ENV{"REMOTE_USER"} = $authuser;
2185         $ENV{"BASE_REMOTE_USER"} = $authuser ne $baseauthuser ?
2186                                         $baseauthuser : undef;
2187         $ENV{"REMOTE_PASS"} = $authpass if (defined($authpass) &&
2188                                             $config{'pass_password'});
2189         if ($uinfo && $uinfo->{'proto'}) {
2190                 $ENV{"REMOTE_USER_PROTO"} = $uinfo->{'proto'};
2191                 $ENV{"REMOTE_USER_ID"} = $uinfo->{'id'};
2192                 }
2193         print DEBUG "REMOTE_USER = ",$ENV{"REMOTE_USER"},"\n";
2194         print DEBUG "BASE_REMOTE_USER = ",$ENV{"BASE_REMOTE_USER"},"\n";
2195         print DEBUG "proto=$uinfo->{'proto'} id=$uinfo->{'id'}\n" if ($uinfo);
2196         $ENV{"SSL_USER"} = $peername if ($validated == 2);
2197         $ENV{"ANONYMOUS_USER"} = "1" if ($validated == 3 || $validated == 4);
2198         $ENV{"DOCUMENT_ROOT"} = $roots[0];
2199         $ENV{"DOCUMENT_REALROOT"} = $realroot;
2200         $ENV{"GATEWAY_INTERFACE"} = "CGI/1.1";
2201         $ENV{"SERVER_PROTOCOL"} = "HTTP/1.0";
2202         $ENV{"REQUEST_METHOD"} = $method;
2203         $ENV{"SCRIPT_NAME"} = $scriptname;
2204         $ENV{"SCRIPT_FILENAME"} = $full;
2205         $ENV{"REQUEST_URI"} = $request_uri;
2206         $ENV{"PATH_INFO"} = $pathinfo;
2207         if ($pathinfo) {
2208                 $ENV{"PATH_TRANSLATED"} = "$roots[0]$pathinfo";
2209                 $ENV{"PATH_REALTRANSLATED"} = "$realroot$pathinfo";
2210                 }
2211         $ENV{"QUERY_STRING"} = $querystring;
2212         $ENV{"MINISERV_CONFIG"} = $config_file;
2213         $ENV{"HTTPS"} = "ON" if ($use_ssl || $config{'inetd_ssl'});
2214         $ENV{"MINISERV_PID"} = $miniserv_main_pid;
2215         $ENV{"SESSION_ID"} = $session_id if ($session_id);
2216         $ENV{"LOCAL_USER"} = $localauth_user if ($localauth_user);
2217         $ENV{"MINISERV_INTERNAL"} = $miniserv_internal if ($miniserv_internal);
2218         if (defined($header{"content-length"})) {
2219                 $ENV{"CONTENT_LENGTH"} = $header{"content-length"};
2220                 }
2221         if (defined($header{"content-type"})) {
2222                 $ENV{"CONTENT_TYPE"} = $header{"content-type"};
2223                 }
2224         foreach $h (keys %header) {
2225                 ($hname = $h) =~ tr/a-z/A-Z/;
2226                 $hname =~ s/\-/_/g;
2227                 $ENV{"HTTP_$hname"} = $header{$h};
2228                 }
2229         $ENV{"PWD"} = $cgi_pwd;
2230         foreach $k (keys %config) {
2231                 if ($k =~ /^env_(\S+)$/) {
2232                         $ENV{$1} = $config{$k};
2233                         }
2234                 }
2235         delete($ENV{'HTTP_AUTHORIZATION'});
2236         $ENV{'HTTP_COOKIE'} =~ s/;?\s*$sidname=([a-f0-9]+)//;
2237         $ENV{'MOBILE_DEVICE'} = 1 if ($mobile_device);
2238
2239         # Check if the CGI can be handled internally
2240         open(CGI, $full);
2241         local $first = <CGI>;
2242         close(CGI);
2243         $first =~ s/[#!\r\n]//g;
2244         $nph_script = ($full =~ /\/nph-([^\/]+)$/);
2245         seek(STDERR, 0, 2);
2246         if (!$config{'forkcgis'} &&
2247             ($first eq $perl_path || $first eq $linked_perl_path) &&
2248               $] >= 5.004 ||
2249             $config{'internalcgis'}) {
2250                 # setup environment for eval
2251                 chdir($ENV{"PWD"});
2252                 @ARGV = split(/\s+/, $queryargs);
2253                 $0 = $full;
2254                 if ($posted_data) {
2255                         # Already read the post input
2256                         $postinput = $posted_data;
2257                         }
2258                 $clen = $header{"content-length"};
2259                 $SIG{'CHLD'} = 'DEFAULT';
2260                 eval {
2261                         # Have SOCK closed if the perl exec's something
2262                         use Fcntl;
2263                         fcntl(SOCK, F_SETFD, FD_CLOEXEC);
2264                         };
2265                 #shutdown(SOCK, 0);
2266
2267                 if ($config{'log'}) {
2268                         open(MINISERVLOG, ">>$config{'logfile'}");
2269                         if ($config{'logperms'}) {
2270                                 chmod(oct($config{'logperms'}),
2271                                       $config{'logfile'});
2272                                 }
2273                         else {
2274                                 chmod(0600, $config{'logfile'});
2275                                 }
2276                         }
2277                 $doing_cgi_eval = 1;
2278                 $main_process_id = $$;
2279                 $pkg = "main";
2280                 if ($full =~ /^\Q$foundroot\E\/([^\/]+)\//) {
2281                         # Eval in package from Webmin module name
2282                         $pkg = $1;
2283                         $pkg =~ s/[^A-Za-z0-9]/_/g;
2284                         }
2285                 eval "
2286                         \%pkg::ENV = \%ENV;
2287                         package $pkg;
2288                         tie(*STDOUT, 'miniserv');
2289                         tie(*STDIN, 'miniserv');
2290                         do \$miniserv::full;
2291                         die \$@ if (\$@);
2292                         ";
2293                 $doing_cgi_eval = 0;
2294                 if ($@) {
2295                         # Error in perl!
2296                         &http_error(500, "Perl execution failed",
2297                                     $config{'noshowstderr'} ? undef : $@);
2298                         }
2299                 elsif (!$doneheaders && !$nph_script) {
2300                         &http_error(500, "Missing Headers");
2301                         }
2302                 $rv = 0;
2303                 }
2304         else {
2305                 $infile = undef;
2306                 if (!$on_windows) {
2307                         # fork the process that actually executes the CGI
2308                         pipe(CGIINr, CGIINw);
2309                         pipe(CGIOUTr, CGIOUTw);
2310                         pipe(CGIERRr, CGIERRw);
2311                         if (!($cgipid = fork())) {
2312                                 @execargs = ( $full, split(/\s+/, $queryargs) );
2313                                 chdir($ENV{"PWD"});
2314                                 close(SOCK);
2315                                 open(STDIN, "<&CGIINr");
2316                                 open(STDOUT, ">&CGIOUTw");
2317                                 open(STDERR, ">&CGIERRw");
2318                                 close(CGIINw); close(CGIOUTr); close(CGIERRr);
2319                                 exec(@execargs) ||
2320                                         die "Failed to exec $full : $!\n";
2321                                 exit(0);
2322                                 }
2323                         close(CGIINr); close(CGIOUTw); close(CGIERRw);
2324                         }
2325                 else {
2326                         # write CGI input to a temp file
2327                         $infile = "$config{'tempbase'}.$$";
2328                         open(CGIINw, ">$infile");
2329                         # NOT binary mode, as CGIs don't read in it!
2330                         }
2331
2332                 # send post data
2333                 if ($posted_data) {
2334                         # already read the posted data
2335                         print CGIINw $posted_data;
2336                         }
2337                 $clen = $header{"content-length"};
2338                 if ($method eq "POST" && $clen_read < $clen) {
2339                         $SIG{'PIPE'} = 'IGNORE';
2340                         $got = $clen_read;
2341                         while($got < $clen) {
2342                                 $buf = &read_data($clen-$got);
2343                                 if (!length($buf)) {
2344                                         kill('TERM', $cgipid);
2345                                         unlink($infile) if ($infile);
2346                                         &http_error(500, "Failed to read ".
2347                                                          "POST request");
2348                                         }
2349                                 $got += length($buf);
2350                                 local ($wrote) = (print CGIINw $buf);
2351                                 last if (!$wrote);
2352                                 }
2353                         # If the CGI terminated early, we still need to read
2354                         # from the browser and throw away
2355                         while($got < $clen) {
2356                                 $buf = &read_data($clen-$got);
2357                                 if (!length($buf)) {
2358                                         kill('TERM', $cgipid);
2359                                         unlink($infile) if ($infile);
2360                                         &http_error(500, "Failed to read ".
2361                                                          "POST request");
2362                                         }
2363                                 $got += length($buf);
2364                                 }
2365                         $SIG{'PIPE'} = 'DEFAULT';
2366                         }
2367                 close(CGIINw);
2368                 shutdown(SOCK, 0);
2369
2370                 if ($on_windows) {
2371                         # Run the CGI program, and feed it input
2372                         chdir($ENV{"PWD"});
2373                         local $qqueryargs = join(" ", map { "\"$_\"" }
2374                                                  split(/\s+/, $queryargs));
2375                         if ($first =~ /(perl|perl.exe)$/i) {
2376                                 # On Windows, run with Perl
2377                                 open(CGIOUTr, "$perl_path \"$full\" $qqueryargs <$infile |");
2378                                 }
2379                         else {
2380                                 open(CGIOUTr, "\"$full\" $qqueryargs <$infile |");
2381                                 }
2382                         binmode(CGIOUTr);
2383                         }
2384
2385                 if (!$nph_script) {
2386                         # read back cgi headers
2387                         select(CGIOUTr); $|=1; select(STDOUT);
2388                         $got_blank = 0;
2389                         while(1) {
2390                                 $line = <CGIOUTr>;
2391                                 $line =~ s/\r|\n//g;
2392                                 if ($line eq "") {
2393                                         if ($got_blank || %cgiheader) { last; }
2394                                         $got_blank++;
2395                                         next;
2396                                         }
2397                                 if ($line !~ /^(\S+):\s+(.*)$/) {
2398                                         $errs = &read_errors(CGIERRr);
2399                                         close(CGIOUTr); close(CGIERRr);
2400                                         unlink($infile) if ($infile);
2401                                         &http_error(500, "Bad Header", $errs);
2402                                         }
2403                                 $cgiheader{lc($1)} = $2;
2404                                 push(@cgiheader, [ $1, $2 ]);
2405                                 }
2406                         if ($cgiheader{"location"}) {
2407                                 &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
2408                                 &write_data("Date: $datestr\r\n");
2409                                 &write_data("Server: $config{'server'}\r\n");
2410                                 &write_keep_alive(0);
2411                                 # ignore the rest of the output. This is a hack,
2412                                 # but is necessary for IE in some cases :(
2413                                 close(CGIOUTr); close(CGIERRr);
2414                                 }
2415                         elsif ($cgiheader{"content-type"} eq "") {
2416                                 close(CGIOUTr); close(CGIERRr);
2417                                 unlink($infile) if ($infile);
2418                                 $errs = &read_errors(CGIERRr);
2419                                 &http_error(500, "Missing Content-Type Header",
2420                                     $config{'noshowstderr'} ? undef : $errs);
2421                                 }
2422                         else {
2423                                 &write_data("HTTP/1.0 $ok_code $ok_message\r\n");
2424                                 &write_data("Date: $datestr\r\n");
2425                                 &write_data("Server: $config{'server'}\r\n");
2426                                 &write_keep_alive(0);
2427                                 }
2428                         foreach $h (@cgiheader) {
2429                                 &write_data("$h->[0]: $h->[1]\r\n");
2430                                 }
2431                         &write_data("\r\n");
2432                         }
2433                 &reset_byte_count();
2434                 while($line = <CGIOUTr>) {
2435                         &write_data($line);
2436                         }
2437                 close(CGIOUTr);
2438                 close(CGIERRr);
2439                 unlink($infile) if ($infile);
2440                 $rv = 0;
2441                 }
2442         }
2443 else {
2444         # A file to output
2445         print DEBUG "handle_request: outputting file $full\n";
2446         $gzfile = $full.".gz";
2447         $gzipped = 0;
2448         if ($config{'gzip'} ne '0' && -r $gzfile && $acceptenc{'gzip'}) {
2449                 # Using gzipped version
2450                 @stopen = stat($gzfile);
2451                 if ($stopen[9] >= $stfull[9] && open(FILE, $gzfile)) {
2452                         print DEBUG "handle_request: using gzipped $gzfile\n";
2453                         $gzipped = 1;
2454                         }
2455                 }
2456         if (!$gzipped) {
2457                 # Using original file
2458                 @stopen = @stfull;
2459                 open(FILE, $full) || &http_error(404, "Failed to open file");
2460                 }
2461         binmode(FILE);
2462
2463         # Build common headers
2464         local $resp = "HTTP/1.0 $ok_code $ok_message\r\n".
2465                       "Date: $datestr\r\n".
2466                       "Server: $config{server}\r\n".
2467                       "Content-type: ".&get_type($full)."\r\n".
2468                       "Last-Modified: ".&http_date($stopen[9])."\r\n".
2469                       "Expires: ".&http_date(time()+$config{'expires'})."\r\n";
2470
2471         if (!$gzipped && $use_gzip && $acceptenc{'gzip'} &&
2472             &should_gzip_file($full)) {
2473                 # Load and compress file, then output
2474                 print DEBUG "handle_request: outputting gzipped file $full\n";
2475                 open(FILE, $full) || &http_error(404, "Failed to open file");
2476                 {
2477                         local $/ = undef;
2478                         $data = <FILE>;
2479                 }
2480                 close(FILE);
2481                 @stopen = stat($file);
2482                 $data = Compress::Zlib::memGzip($data);
2483                 $resp .= "Content-length: ".length($data)."\r\n".
2484                          "Content-Encoding: gzip\r\n";
2485                 &write_data($resp);
2486                 $rv = &write_keep_alive();
2487                 &write_data("\r\n");
2488                 &reset_byte_count();
2489                 &write_data($data);
2490                 }
2491         else {
2492                 # Stream file output
2493                 $resp .= "Content-length: $stopen[7]\r\n";
2494                 $resp .= "Content-Encoding: gzip\r\n" if ($gzipped);
2495                 &write_data($resp);
2496                 $rv = &write_keep_alive();
2497                 &write_data("\r\n");
2498                 &reset_byte_count();
2499                 while(read(FILE, $buf, 1024) > 0) {
2500                         &write_data($buf);
2501                         }
2502                 close(FILE);
2503                 }
2504         }
2505
2506 # log the request
2507 &log_request($acpthost, $authuser, $reqline,
2508              $logged_code ? $logged_code :
2509              $cgiheader{"location"} ? "302" : $ok_code, &byte_count());
2510 return $rv;
2511 }
2512
2513 # http_error(code, message, body, [dontexit])
2514 sub http_error
2515 {
2516 local $eh = $error_handler_recurse ? undef :
2517             $config{"error_handler_$_[0]"} ? $config{"error_handler_$_[0]"} :
2518             $config{'error_handler'} ? $config{'error_handler'} : undef;
2519 print DEBUG "http_error code=$_[0] message=$_[1] body=$_[2]\n";
2520 if ($eh) {
2521         # Call a CGI program for the error
2522         $page = "/$eh";
2523         $querystring = "code=$_[0]&message=".&urlize($_[1]).
2524                        "&body=".&urlize($_[2]);
2525         $error_handler_recurse++;
2526         $ok_code = $_[0];
2527         $ok_message = $_[1];
2528         goto rerun;
2529         }
2530 else {
2531         # Use the standard error message display
2532         &write_data("HTTP/1.0 $_[0] $_[1]\r\n");
2533         &write_data("Server: $config{server}\r\n");
2534         &write_data("Date: $datestr\r\n");
2535         &write_data("Content-type: text/html\r\n");
2536         &write_keep_alive(0);
2537         &write_data("\r\n");
2538         &reset_byte_count();
2539         &write_data("<h1>Error - $_[1]</h1>\n");
2540         if ($_[2]) {
2541                 &write_data("<pre>$_[2]</pre>\n");
2542                 }
2543         }
2544 &log_request($acpthost, $authuser, $reqline, $_[0], &byte_count())
2545         if ($reqline);
2546 &log_error($_[1], $_[2] ? " : $_[2]" : "");
2547 shutdown(SOCK, 1);
2548 exit if (!$_[3]);
2549 }
2550
2551 sub get_type
2552 {
2553 if ($_[0] =~ /\.([A-z0-9]+)$/) {
2554         $t = $mime{$1};
2555         if ($t ne "") {
2556                 return $t;
2557                 }
2558         }
2559 return "text/plain";
2560 }
2561
2562 # simplify_path(path, bogus)
2563 # Given a path, maybe containing stuff like ".." and "." convert it to a
2564 # clean, absolute form.
2565 sub simplify_path
2566 {
2567 local($dir, @bits, @fixedbits, $b);
2568 $dir = $_[0];
2569 $dir =~ s/\\/\//g;      # fix windows \ in path
2570 $dir =~ s/^\/+//g;
2571 $dir =~ s/\/+$//g;
2572 $dir =~ s/\0//g;        # remove null bytes
2573 @bits = split(/\/+/, $dir);
2574 @fixedbits = ();
2575 $_[1] = 0;
2576 foreach $b (@bits) {
2577         if ($b eq ".") {
2578                 # Do nothing..
2579                 }
2580         elsif ($b eq ".." || $b eq "...") {
2581                 # Remove last dir
2582                 if (scalar(@fixedbits) == 0) {
2583                         $_[1] = 1;
2584                         return "/";
2585                         }
2586                 pop(@fixedbits);
2587                 }
2588         else {
2589                 # Add dir to list
2590                 push(@fixedbits, $b);
2591                 }
2592         }
2593 return "/" . join('/', @fixedbits);
2594 }
2595
2596 # b64decode(string)
2597 # Converts a string from base64 format to normal
2598 sub b64decode
2599 {
2600     local($str) = $_[0];
2601     local($res);
2602     $str =~ tr|A-Za-z0-9+=/||cd;
2603     $str =~ s/=+$//;
2604     $str =~ tr|A-Za-z0-9+/| -_|;
2605     while ($str =~ /(.{1,60})/gs) {
2606         my $len = chr(32 + length($1)*3/4);
2607         $res .= unpack("u", $len . $1 );
2608     }
2609     return $res;
2610 }
2611
2612 # ip_match(remoteip, localip, [match]+)
2613 # Checks an IP address against a list of IPs, networks and networks/masks
2614 sub ip_match
2615 {
2616 local(@io, @mo, @ms, $i, $j, $hn, $needhn);
2617 @io = &check_ip6address($_[0]) ? split(/:/, $_[0])
2618                                : split(/\./, $_[0]);
2619 for($i=2; $i<@_; $i++) {
2620         $needhn++ if ($_[$i] =~ /^\*(\S+)$/);
2621         }
2622 if ($needhn && !defined($hn = $ip_match_cache{$_[0]})) {
2623         # Reverse-lookup hostname if any rules match based on it
2624         $hn = &to_hostname($_[0]);
2625         if (&check_ip6address($_[0])) {
2626                 $hn = "" if (&to_ip6address($hn) ne $_[0]);
2627                 }
2628         else {
2629                 $hn = "" if (&to_ipaddress($hn) ne $_[0]);
2630                 }
2631         $ip_match_cache{$_[0]} = $hn;
2632         }
2633 for($i=2; $i<@_; $i++) {
2634         local $mismatch = 0;
2635         if ($_[$i] =~ /^(\S+)\/(\d+)$/) {
2636                 # Convert CIDR to netmask format
2637                 $_[$i] = $1."/".&prefix_to_mask($2);
2638                 }
2639         if ($_[$i] =~ /^(\S+)\/(\S+)$/) {
2640                 # Compare with IPv4 network/mask
2641                 @mo = split(/\./, $1); @ms = split(/\./, $2);
2642                 for($j=0; $j<4; $j++) {
2643                         if ((int($io[$j]) & int($ms[$j])) != int($mo[$j])) {
2644                                 $mismatch = 1;
2645                                 }
2646                         }
2647                 }
2648         elsif ($_[$i] =~ /^\*(\S+)$/) {
2649                 # Compare with hostname regexp
2650                 $mismatch = 1 if ($hn !~ /$1$/);
2651                 }
2652         elsif ($_[$i] eq 'LOCAL' && &check_ipaddress($_[1])) {
2653                 # Compare with local IPv4 network
2654                 local @lo = split(/\./, $_[1]);
2655                 if ($lo[0] < 128) {
2656                         $mismatch = 1 if ($lo[0] != $io[0]);
2657                         }
2658                 elsif ($lo[0] < 192) {
2659                         $mismatch = 1 if ($lo[0] != $io[0] ||
2660                                           $lo[1] != $io[1]);
2661                         }
2662                 else {
2663                         $mismatch = 1 if ($lo[0] != $io[0] ||
2664                                           $lo[1] != $io[1] ||
2665                                           $lo[2] != $io[2]);
2666                         }
2667                 }
2668         elsif ($_[$i] eq 'LOCAL' && &check_ip6address($_[1])) {
2669                 # Compare with local IPv6 network, which is always first 4 words
2670                 local @lo = split(/:/, $_[1]);
2671                 for(my $i=0; $i<4; $i++) {
2672                         $mismatch = 1 if ($lo[$i] ne $io[$i]);
2673                         }
2674                 }
2675         elsif ($_[$i] =~ /^[0-9\.]+$/) {
2676                 # Compare with IPv4 address or network
2677                 @mo = split(/\./, $_[$i]);
2678                 while(@mo && !$mo[$#mo]) { pop(@mo); }
2679                 for($j=0; $j<@mo; $j++) {
2680                         if ($mo[$j] != $io[$j]) {
2681                                 $mismatch = 1;
2682                                 }
2683                         }
2684                 }
2685         elsif ($_[$i] =~ /^[a-f0-9:]+$/) {
2686                 # Compare with IPv6 address or network
2687                 @mo = split(/:/, $_[$i]);
2688                 while(@mo && !$mo[$#mo]) { pop(@mo); }
2689                 for($j=0; $j<@mo; $j++) {
2690                         if ($mo[$j] ne $io[$j]) {
2691                                 $mismatch = 1;
2692                                 }
2693                         }
2694                 }
2695         elsif ($_[$i] !~ /^[0-9\.]+$/) {
2696                 # Compare with hostname
2697                 $mismatch = 1 if ($_[0] ne &to_ipaddress($_[$i]));
2698                 }
2699         return 1 if (!$mismatch);
2700         }
2701 return 0;
2702 }
2703
2704 # users_match(&uinfo, user, ...)
2705 # Returns 1 if a user is in a list of users and groups
2706 sub users_match
2707 {
2708 local $uinfo = shift(@_);
2709 local $u;
2710 local @ginfo = getgrgid($uinfo->[3]);
2711 foreach $u (@_) {
2712         if ($u =~ /^\@(\S+)$/) {
2713                 return 1 if (&is_group_member($uinfo, $1));
2714                 }
2715         elsif ($u =~ /^(\d*)-(\d*)$/ && ($1 || $2)) {
2716                 return (!$1 || $uinfo[2] >= $1) &&
2717                        (!$2 || $uinfo[2] <= $2);
2718                 }
2719         else {
2720                 return 1 if ($u eq $uinfo->[0]);
2721                 }
2722         }
2723 return 0;
2724 }
2725
2726 # restart_miniserv()
2727 # Called when a SIGHUP is received to restart the web server. This is done
2728 # by exec()ing perl with the same command line as was originally used
2729 sub restart_miniserv
2730 {
2731 print STDERR "restarting miniserv\n";
2732 &log_error("Restarting");
2733 close(SOCK);
2734 &close_all_sockets();
2735 &close_all_pipes();
2736 dbmclose(%sessiondb);
2737 kill('KILL', $logclearer) if ($logclearer);
2738 kill('KILL', $extauth) if ($extauth);
2739 exec($perl_path, $miniserv_path, @miniserv_argv);
2740 die "Failed to restart miniserv with $perl_path $miniserv_path";
2741 }
2742
2743 sub trigger_restart
2744 {
2745 $need_restart = 1;
2746 }
2747
2748 sub trigger_reload
2749 {
2750 $need_reload = 1;
2751 }
2752
2753 # to_ipaddress(address, ...)
2754 sub to_ipaddress
2755 {
2756 local (@rv, $i);
2757 foreach $i (@_) {
2758         if ($i =~ /(\S+)\/(\S+)/ || $i =~ /^\*\S+$/ ||
2759             $i eq 'LOCAL' || $i =~ /^[0-9\.]+$/ || $i =~ /^[a-f0-9:]+$/) {
2760                 # A pattern or IP, not a hostname, so don't change
2761                 push(@rv, $i);
2762                 }
2763         else {
2764                 # Lookup IP address
2765                 push(@rv, join('.', unpack("CCCC", inet_aton($i))));
2766                 }
2767         }
2768 return wantarray ? @rv : $rv[0];
2769 }
2770
2771 # to_ip6address(address, ...)
2772 sub to_ip6address
2773 {
2774 local (@rv, $i);
2775 foreach $i (@_) {
2776         if ($i =~ /(\S+)\/(\S+)/ || $i =~ /^\*\S+$/ ||
2777             $i eq 'LOCAL' || $i =~ /^[0-9\.]+$/ || $i =~ /^[a-f0-9:]+$/) {
2778                 # A pattern, not a hostname, so don't change
2779                 push(@rv, $i);
2780                 }
2781         else {
2782                 # Lookup IPv6 address
2783                 local ($inaddr, $addr);
2784                 (undef, undef, undef, $inaddr) =
2785                     getaddrinfo($i, undef, Socket6::AF_INET6(), SOCK_STREAM);
2786                 if ($inaddr) {
2787                         push(@rv, undef);
2788                         }
2789                 else {
2790                         (undef, $addr) = unpack_sockaddr_in6($inaddr);
2791                         push(@rv, inet_ntop(Socket6::AF_INET6(), $addr));
2792                         }
2793                 }
2794         }
2795 return wantarray ? @rv : $rv[0];
2796 }
2797
2798 # to_hostname(ipv4|ipv6-address)
2799 # Reverse-resolves an IPv4 or 6 address to a hostname
2800 sub to_hostname
2801 {
2802 local ($addr) = @_;
2803 if (&check_ip6address($_[0])) {
2804         return gethostbyaddr(inet_pton(Socket6::AF_INET6(), $addr),
2805                              Socket6::AF_INET6());
2806         }
2807 else {
2808         return gethostbyaddr(inet_aton($addr), AF_INET);
2809         }
2810 }
2811
2812 # read_line(no-wait, no-limit)
2813 # Reads one line from SOCK or SSL
2814 sub read_line
2815 {
2816 local ($nowait, $nolimit) = @_;
2817 local($idx, $more, $rv);
2818 while(($idx = index($main::read_buffer, "\n")) < 0) {
2819         if (length($main::read_buffer) > 10000 && !$nolimit) {
2820                 &http_error(414, "Request too long",
2821                     "Received excessive line <pre>$main::read_buffer</pre>");
2822                 }
2823
2824         # need to read more..
2825         &wait_for_data_error() if (!$nowait);
2826         if ($use_ssl) {
2827                 $more = Net::SSLeay::read($ssl_con);
2828                 }
2829         else {
2830                 local $ok = sysread(SOCK, $more, 1024);
2831                 $more = undef if ($ok <= 0);
2832                 }
2833         if ($more eq '') {
2834                 # end of the data
2835                 $rv = $main::read_buffer;
2836                 undef($main::read_buffer);
2837                 return $rv;
2838                 }
2839         $main::read_buffer .= $more;
2840         }
2841 $rv = substr($main::read_buffer, 0, $idx+1);
2842 $main::read_buffer = substr($main::read_buffer, $idx+1);
2843 return $rv;
2844 }
2845
2846 # read_data(length)
2847 # Reads up to some amount of data from SOCK or the SSL connection
2848 sub read_data
2849 {
2850 local ($rv);
2851 if (length($main::read_buffer)) {
2852         if (length($main::read_buffer) > $_[0]) {
2853                 # Return the first part of the buffer
2854                 $rv = substr($main::read_buffer, 0, $_[0]);
2855                 $main::read_buffer = substr($main::read_buffer, $_[0]);
2856                 return $rv;
2857                 }
2858         else {
2859                 # Return the whole buffer
2860                 $rv = $main::read_buffer;
2861                 undef($main::read_buffer);
2862                 return $rv;
2863                 }
2864         }
2865 elsif ($use_ssl) {
2866         # Call SSL read function
2867         return Net::SSLeay::read($ssl_con, $_[0]);
2868         }
2869 else {
2870         # Just do a normal read
2871         local $buf;
2872         sysread(SOCK, $buf, $_[0]) || return undef;
2873         return $buf;
2874         }
2875 }
2876
2877 # sysread_line(fh)
2878 # Read a line from a file handle, using sysread to get a byte at a time
2879 sub sysread_line
2880 {
2881 local ($fh) = @_;
2882 local $line;
2883 while(1) {
2884         local ($buf, $got);
2885         $got = sysread($fh, $buf, 1);
2886         last if ($got <= 0);
2887         $line .= $buf;
2888         last if ($buf eq "\n");
2889         }
2890 return $line;
2891 }
2892
2893 # wait_for_data(secs)
2894 # Waits at most the given amount of time for some data on SOCK, returning
2895 # 0 if not found, 1 if some arrived.
2896 sub wait_for_data
2897 {
2898 local $rmask;
2899 vec($rmask, fileno(SOCK), 1) = 1;
2900 local $got = select($rmask, undef, undef, $_[0]);
2901 return $got == 0 ? 0 : 1;
2902 }
2903
2904 # wait_for_data_error()
2905 # Waits 60 seconds for data on SOCK, and fails if none arrives
2906 sub wait_for_data_error
2907 {
2908 local $got = &wait_for_data(60);
2909 if (!$got) {
2910         &http_error(400, "Timeout",
2911                     "Waited more than 60 seconds for request data");
2912         }
2913 }
2914
2915 # write_data(data, ...)
2916 # Writes a string to SOCK or the SSL connection
2917 sub write_data
2918 {
2919 local $str = join("", @_);
2920 if ($use_ssl) {
2921         Net::SSLeay::write($ssl_con, $str);
2922         }
2923 else {
2924         syswrite(SOCK, $str, length($str));
2925         }
2926 # Intentionally introduce a small delay to avoid problems where IE reports
2927 # the page as empty / DNS failed when it get a large response too quickly!
2928 select(undef, undef, undef, .01) if ($write_data_count%10 == 0);
2929 $write_data_count += length($str);
2930 }
2931
2932 # reset_byte_count()
2933 sub reset_byte_count { $write_data_count = 0; }
2934
2935 # byte_count()
2936 sub byte_count { return $write_data_count; }
2937
2938 # log_request(hostname, user, request, code, bytes)
2939 sub log_request
2940 {
2941 if ($config{'log'}) {
2942         local ($user, $ident, $headers);
2943         if ($config{'logident'}) {
2944                 # add support for rfc1413 identity checking here
2945                 }
2946         else { $ident = "-"; }
2947         $user = $_[1] ? $_[1] : "-";
2948         local $dstr = &make_datestr();
2949         if (fileno(MINISERVLOG)) {
2950                 seek(MINISERVLOG, 0, 2);
2951                 }
2952         else {
2953                 open(MINISERVLOG, ">>$config{'logfile'}");
2954                 chmod(0600, $config{'logfile'});
2955                 }
2956         if (defined($config{'logheaders'})) {
2957                 foreach $h (split(/\s+/, $config{'logheaders'})) {
2958                         $headers .= " $h=\"$header{$h}\"";
2959                         }
2960                 }
2961         elsif ($config{'logclf'}) {
2962                 $headers = " \"$header{'referer'}\" \"$header{'user-agent'}\"";
2963                 }
2964         else {
2965                 $headers = "";
2966                 }
2967         print MINISERVLOG "$_[0] $ident $user [$dstr] \"$_[2]\" ",
2968                           "$_[3] $_[4]$headers\n";
2969         close(MINISERVLOG);
2970         }
2971 }
2972
2973 # make_datestr()
2974 sub make_datestr
2975 {
2976 local @tm = localtime(time());
2977 return sprintf "%2.2d/%s/%4.4d:%2.2d:%2.2d:%2.2d %s",
2978                 $tm[3], $month[$tm[4]], $tm[5]+1900,
2979                 $tm[2], $tm[1], $tm[0], $timezone;
2980 }
2981
2982 # log_error(message)
2983 sub log_error
2984 {
2985 seek(STDERR, 0, 2);
2986 print STDERR "[",&make_datestr(),"] ",
2987         $acpthost ? ( "[",$acpthost,"] " ) : ( ),
2988         $page ? ( $page," : " ) : ( ),
2989         @_,"\n";
2990 }
2991
2992 # read_errors(handle)
2993 # Read and return all input from some filehandle
2994 sub read_errors
2995 {
2996 local($fh, $_, $rv);
2997 $fh = $_[0];
2998 while(<$fh>) { $rv .= $_; }
2999 return $rv;
3000 }
3001
3002 sub write_keep_alive
3003 {
3004 local $mode;
3005 if ($config{'nokeepalive'}) {
3006         # Keep alives have been disabled in config
3007         $mode = 0;
3008         }
3009 elsif (@childpids > $config{'maxconns'}*.8) {
3010         # Disable because nearing process limit
3011         $mode = 0;
3012         }
3013 elsif (@_) {
3014         # Keep alive specified by caller
3015         $mode = $_[0];
3016         }
3017 else {
3018         # Keep alive determined by browser
3019         $mode = $header{'connection'} =~ /keep-alive/i;
3020         }
3021 &write_data("Connection: ".($mode ? "Keep-Alive" : "close")."\r\n");
3022 return $mode;
3023 }
3024
3025 sub term_handler
3026 {
3027 kill('TERM', @childpids) if (@childpids);
3028 kill('KILL', $logclearer) if ($logclearer);
3029 kill('KILL', $extauth) if ($extauth);
3030 exit(1);
3031 }
3032
3033 sub http_date
3034 {
3035 local @tm = gmtime($_[0]);
3036 return sprintf "%s, %d %s %d %2.2d:%2.2d:%2.2d GMT",
3037                 $weekday[$tm[6]], $tm[3], $month[$tm[4]], $tm[5]+1900,
3038                 $tm[2], $tm[1], $tm[0];
3039 }
3040
3041 sub TIEHANDLE
3042 {
3043 my $i; bless \$i, shift;
3044 }
3045  
3046 sub WRITE
3047 {
3048 $r = shift;
3049 my($buf,$len,$offset) = @_;
3050 &write_to_sock(substr($buf, $offset, $len));
3051 $miniserv::page_capture_out .= substr($buf, $offset, $len)
3052         if ($miniserv::page_capture);
3053 }
3054  
3055 sub PRINT
3056 {
3057 $r = shift;
3058 $$r++;
3059 my $buf = join(defined($,) ? $, : "", @_);
3060 $buf .= $\ if defined($\);
3061 &write_to_sock($buf);
3062 $miniserv::page_capture_out .= $buf
3063         if ($miniserv::page_capture);
3064 }
3065  
3066 sub PRINTF
3067 {
3068 shift;
3069 my $fmt = shift;
3070 my $buf = sprintf $fmt, @_;
3071 &write_to_sock($buf);
3072 $miniserv::page_capture_out .= $buf
3073         if ($miniserv::page_capture);
3074 }
3075  
3076 # Send back already read data while we have it, then read from SOCK
3077 sub READ
3078 {
3079 my $r = shift;
3080 my $bufref = \$_[0];
3081 my $len = $_[1];
3082 my $offset = $_[2];
3083 if ($postpos < length($postinput)) {
3084         # Reading from already fetched array
3085         my $left = length($postinput) - $postpos;
3086         my $canread = $len > $left ? $left : $len;
3087         substr($$bufref, $offset, $canread) =
3088                 substr($postinput, $postpos, $canread);
3089         $postpos += $canread;
3090         return $canread;
3091         }
3092 else {
3093         # Read from network socket
3094         local $data = &read_data($len);
3095         if ($data eq '' && $len) {
3096                 # End of socket
3097                 print STDERR "finished reading - shutting down socket\n";
3098                 shutdown(SOCK, 0);
3099                 }
3100         substr($$bufref, $offset, length($data)) = $data;
3101         return length($data);
3102         }
3103 }
3104
3105 sub OPEN
3106 {
3107 #print STDERR "open() called - should never happen!\n";
3108 }
3109  
3110 # Read a line of input
3111 sub READLINE
3112 {
3113 my $r = shift;
3114 if ($postpos < length($postinput) &&
3115     ($idx = index($postinput, "\n", $postpos)) >= 0) {
3116         # A line exists in the memory buffer .. use it
3117         my $line = substr($postinput, $postpos, $idx-$postpos+1);
3118         $postpos = $idx+1;
3119         return $line;
3120         }
3121 else {
3122         # Need to read from the socket
3123         my $line;
3124         if ($postpos < length($postinput)) {
3125                 # Start with in-memory data
3126                 $line = substr($postinput, $postpos);
3127                 $postpos = length($postinput);
3128                 }
3129         my $nl = &read_line(0, 1);
3130         if ($nl eq '') {
3131                 # End of socket
3132                 print STDERR "finished reading - shutting down socket\n";
3133                 shutdown(SOCK, 0);
3134                 }
3135         $line .= $nl if (defined($nl));
3136         return $line;
3137         }
3138 }
3139  
3140 # Read one character of input
3141 sub GETC
3142 {
3143 my $r = shift;
3144 my $buf;
3145 my $got = READ($r, \$buf, 1, 0);
3146 return $got > 0 ? $buf : undef;
3147 }
3148
3149 sub FILENO
3150 {
3151 return fileno(SOCK);
3152 }
3153  
3154 sub CLOSE { }
3155  
3156 sub DESTROY { }
3157
3158 # write_to_sock(data, ...)
3159 sub write_to_sock
3160 {
3161 local $d;
3162 foreach $d (@_) {
3163         if ($doneheaders || $miniserv::nph_script) {
3164                 &write_data($d);
3165                 }
3166         else {
3167                 $headers .= $d;
3168                 while(!$doneheaders && $headers =~ s/^([^\r\n]*)(\r)?\n//) {
3169                         if ($1 =~ /^(\S+):\s+(.*)$/) {
3170                                 $cgiheader{lc($1)} = $2;
3171                                 push(@cgiheader, [ $1, $2 ]);
3172                                 }
3173                         elsif ($1 !~ /\S/) {
3174                                 $doneheaders++;
3175                                 }
3176                         else {
3177                                 &http_error(500, "Bad Header");
3178                                 }
3179                         }
3180                 if ($doneheaders) {
3181                         if ($cgiheader{"location"}) {
3182                                 &write_data(
3183                                         "HTTP/1.0 302 Moved Temporarily\r\n");
3184                                 &write_data("Date: $datestr\r\n");
3185                                 &write_data("Server: $config{server}\r\n");
3186                                 &write_keep_alive(0);
3187                                 }
3188                         elsif ($cgiheader{"content-type"} eq "") {
3189                                 &http_error(500, "Missing Content-Type Header");
3190                                 }
3191                         else {
3192                                 &write_data("HTTP/1.0 $ok_code $ok_message\r\n");
3193                                 &write_data("Date: $datestr\r\n");
3194                                 &write_data("Server: $config{server}\r\n");
3195                                 &write_keep_alive(0);
3196                                 }
3197                         foreach $h (@cgiheader) {
3198                                 &write_data("$h->[0]: $h->[1]\r\n");
3199                                 }
3200                         &write_data("\r\n");
3201                         &reset_byte_count();
3202                         &write_data($headers);
3203                         }
3204                 }
3205         }
3206 }
3207
3208 sub verify_client
3209 {
3210 local $cert = Net::SSLeay::X509_STORE_CTX_get_current_cert($_[1]);
3211 if ($cert) {
3212         local $errnum = Net::SSLeay::X509_STORE_CTX_get_error($_[1]);
3213         $verified_client = 1 if (!$errnum);
3214         }
3215 return 1;
3216 }
3217
3218 sub END
3219 {
3220 if ($doing_cgi_eval && $$ == $main_process_id) {
3221         # A CGI program called exit! This is a horrible hack to 
3222         # finish up before really exiting
3223         shutdown(SOCK, 1);
3224         close(SOCK);
3225         close($PASSINw); close($PASSOUTw);
3226         &log_request($acpthost, $authuser, $reqline,
3227                      $cgiheader{"location"} ? "302" : $ok_code, &byte_count());
3228         }
3229 }
3230
3231 # urlize
3232 # Convert a string to a form ok for putting in a URL
3233 sub urlize {
3234   local($tmp, $tmp2, $c);
3235   $tmp = $_[0];
3236   $tmp2 = "";
3237   while(($c = chop($tmp)) ne "") {
3238         if ($c !~ /[A-z0-9]/) {
3239                 $c = sprintf("%%%2.2X", ord($c));
3240                 }
3241         $tmp2 = $c . $tmp2;
3242         }
3243   return $tmp2;
3244 }
3245
3246 # validate_user(username, password, host, remote-ip, webmin-port)
3247 # Checks if some username and password are valid. Returns the modified username,
3248 # the expired / temp pass flag, and the non-existence flag
3249 sub validate_user
3250 {
3251 local ($user, $pass, $host, $actpip, $port) = @_;
3252 return ( ) if (!$user);
3253 print DEBUG "validate_user: user=$user pass=$pass host=$host\n";
3254 local ($canuser, $canmode, $notexist, $webminuser, $sudo) =
3255         &can_user_login($user, undef, $host);
3256 print DEBUG "validate_user: canuser=$canuser canmode=$canmode notexist=$notexist webminuser=$webminuser sudo=$sudo\n";
3257 if ($notexist) {
3258         # User doesn't even exist, so go no further
3259         return ( undef, 0, 1 );
3260         }
3261 elsif ($canmode == 0) {
3262         # User does exist but cannot login
3263         return ( $canuser, 0, 0 );
3264         }
3265 elsif ($canmode == 1) {
3266         # Attempt Webmin authentication
3267         my $uinfo = &get_user_details($webminuser);
3268         if ($uinfo &&
3269             &password_crypt($pass, $uinfo->{'pass'}) eq $uinfo->{'pass'}) {
3270                 # Password is valid .. but check for expiry
3271                 local $lc = $uinfo->{'lastchanges'};
3272                 print DEBUG "validate_user: Password is valid lc=$lc pass_maxdays=$config{'pass_maxdays'}\n";
3273                 if ($config{'pass_maxdays'} && $lc && !$uinfo->{'nochange'}) {
3274                         local $daysold = (time() - $lc)/(24*60*60);
3275                         print DEBUG "maxdays=$config{'pass_maxdays'} daysold=$daysold temppass=$uinfo->{'temppass'}\n";
3276                         if ($config{'pass_lockdays'} &&
3277                             $daysold > $config{'pass_lockdays'}) {
3278                                 # So old that the account is locked
3279                                 return ( undef, 0, 0 );
3280                                 }
3281                         elsif ($daysold > $config{'pass_maxdays'}) {
3282                                 # Password has expired
3283                                 return ( $user, 1, 0 );
3284                                 }
3285                         }
3286                 if ($uinfo->{'temppass'}) {
3287                         # Temporary password - force change now
3288                         return ( $user, 2, 0 );
3289                         }
3290                 return ( $user, 0, 0 );
3291                 }
3292         elsif (!$uinfo) {
3293                 print DEBUG "validate_user: User $webminuser not found\n";
3294                 return ( undef, 0, 0 );
3295                 }
3296         else {
3297                 print DEBUG "validate_user: User $webminuser password mismatch $pass != $uinfo->{'pass'}\n";
3298                 return ( undef, 0, 0 );
3299                 }
3300         }
3301 elsif ($canmode == 2 || $canmode == 3) {
3302         # Attempt PAM or passwd file authentication
3303         local $val = &validate_unix_user($canuser, $pass, $acptip, $port);
3304         print DEBUG "validate_user: unix val=$val\n";
3305         if ($val && $sudo) {
3306                 # Need to check if this Unix user can sudo
3307                 if (!&check_sudo_permissions($canuser, $pass)) {
3308                         print DEBUG "validate_user: sudo failed\n";
3309                         $val = 0;
3310                         }
3311                 else {
3312                         print DEBUG "validate_user: sudo passed\n";
3313                         }
3314                 }
3315         return $val == 2 ? ( $canuser, 1, 0 ) :
3316                $val == 1 ? ( $canuser, 0, 0 ) : ( undef, 0, 0 );
3317         }
3318 elsif ($canmode == 4) {
3319         # Attempt external authentication
3320         return &validate_external_user($canuser, $pass) ?
3321                 ( $canuser, 0, 0 ) : ( undef, 0, 0 );
3322         }
3323 else {
3324         # Can't happen!
3325         return ( );
3326         }
3327 }
3328
3329 # validate_unix_user(user, password, remote-ip, local-port)
3330 # Returns 1 if a username and password are valid under unix, 0 if not,
3331 # or 2 if the account has expired.
3332 # Checks PAM if available, and falls back to reading the system password
3333 # file otherwise.
3334 sub validate_unix_user
3335 {
3336 if ($use_pam) {
3337         # Check with PAM
3338         $pam_username = $_[0];
3339         $pam_password = $_[1];
3340         eval "use Authen::PAM;";
3341         local $pamh = new Authen::PAM($config{'pam'}, $pam_username,
3342                                       \&pam_conv_func);
3343         if (ref($pamh)) {
3344                 $pamh->pam_set_item("PAM_RHOST", $_[2]) if ($_[2]);
3345                 $pamh->pam_set_item("PAM_TTY", $_[3]) if ($_[3]);
3346                 local $pam_ret = $pamh->pam_authenticate();
3347                 if ($pam_ret == PAM_SUCCESS()) {
3348                         # Logged in OK .. make sure password hasn't expired
3349                         local $acct_ret = $pamh->pam_acct_mgmt();
3350                         if ($acct_ret == PAM_SUCCESS()) {
3351                                 $pamh->pam_open_session();
3352                                 return 1;
3353                                 }
3354                         elsif ($acct_ret == PAM_NEW_AUTHTOK_REQD() ||
3355                                $acct_ret == PAM_ACCT_EXPIRED()) {
3356                                 return 2;
3357                                 }
3358                         else {
3359                                 print STDERR "Unknown pam_acct_mgmt return value : $acct_ret\n";
3360                                 return 0;
3361                                 }
3362                         }
3363                 return 0;
3364                 }
3365         }
3366 elsif ($config{'pam_only'}) {
3367         # Pam is not available, but configuration forces it's use!
3368         return 0;
3369         }
3370 elsif ($config{'passwd_file'}) {
3371         # Check in a password file
3372         local $rv = 0;
3373         open(FILE, $config{'passwd_file'});
3374         if ($config{'passwd_file'} eq '/etc/security/passwd') {
3375                 # Assume in AIX format
3376                 while(<FILE>) {
3377                         s/\s*$//;
3378                         if (/^\s*(\S+):/ && $1 eq $_[0]) {
3379                                 $_ = <FILE>;
3380                                 if (/^\s*password\s*=\s*(\S+)\s*$/) {
3381                                         $rv = $1 eq &password_crypt($_[1], $1) ?
3382                                                 1 : 0;
3383                                         }
3384                                 last;
3385                                 }
3386                         }
3387                 }
3388         else {
3389                 # Read the system password or shadow file
3390                 while(<FILE>) {
3391                         local @l = split(/:/, $_, -1);
3392                         local $u = $l[$config{'passwd_uindex'}];
3393                         local $p = $l[$config{'passwd_pindex'}];
3394                         if ($u eq $_[0]) {
3395                                 $rv = $p eq &password_crypt($_[1], $p) ? 1 : 0;
3396                                 if ($config{'passwd_cindex'} ne '' && $rv) {
3397                                         # Password may have expired!
3398                                         local $c = $l[$config{'passwd_cindex'}];
3399                                         local $m = $l[$config{'passwd_mindex'}];
3400                                         local $day = time()/(24*60*60);
3401                                         if ($c =~ /^\d+/ && $m =~ /^\d+/ &&
3402                                             $day - $c > $m) {
3403                                                 # Yep, it has ..
3404                                                 $rv = 2;
3405                                                 }
3406                                         }
3407                                 if ($p eq "" && $config{'passwd_blank'}) {
3408                                         # Force password change
3409                                         $rv = 2;
3410                                         }
3411                                 last;
3412                                 }
3413                         }
3414                 }
3415         close(FILE);
3416         return $rv if ($rv);
3417         }
3418
3419 # Fallback option - check password returned by getpw*
3420 local @uinfo = getpwnam($_[0]);
3421 if ($uinfo[1] ne '' && &password_crypt($_[1], $uinfo[1]) eq $uinfo[1]) {
3422         return 1;
3423         }
3424
3425 return 0;       # Totally failed
3426 }
3427
3428 # validate_external_user(user, pass)
3429 # Validate a user by passing the username and password to an external
3430 # squid-style authentication program
3431 sub validate_external_user
3432 {
3433 return 0 if (!$config{'extauth'});
3434 flock(EXTAUTH, 2);
3435 local $str = "$_[0] $_[1]\n";
3436 syswrite(EXTAUTH, $str, length($str));
3437 local $resp = <EXTAUTH>;
3438 flock(EXTAUTH, 8);
3439 return $resp =~ /^OK/i ? 1 : 0;
3440 }
3441
3442 # can_user_login(username, no-append, host)
3443 # Checks if a user can login or not.
3444 # First return value is the username.
3445 # Second is 0 if cannot login, 1 if using Webmin pass, 2 if PAM, 3 if password
3446 # file, 4 if external.
3447 # Third is 1 if the user does not exist at all, 0 if he does.
3448 # Fourth is the Webmin username whose permissions apply, based on unixauth.
3449 # Fifth is a flag indicating if a sudo check is needed.
3450 sub can_user_login
3451 {
3452 local $uinfo = &get_user_details($_[0]);
3453 if (!$uinfo) {
3454         # See if this user exists in Unix and can be validated by the same
3455         # method as the unixauth webmin user
3456         local $realuser = $unixauth{$_[0]};
3457         local @uinfo;
3458         local $sudo = 0;
3459         local $pamany = 0;
3460         eval { @uinfo = getpwnam($_[0]); };     # may fail on windows
3461         if (!$realuser && @uinfo) {
3462                 # No unixauth entry for the username .. try his groups 
3463                 foreach my $ua (keys %unixauth) {
3464                         if ($ua =~ /^\@(.*)$/) {
3465                                 if (&is_group_member(\@uinfo, $1)) {
3466                                         $realuser = $unixauth{$ua};
3467                                         last;
3468                                         }
3469                                 }
3470                         }
3471                 }
3472         if (!$realuser && @uinfo) {
3473                 # Fall back to unix auth for all Unix users
3474                 $realuser = $unixauth{"*"};
3475                 }
3476         if (!$realuser && $use_sudo && @uinfo) {
3477                 # Allow login effectively as root, if sudo permits it
3478                 $sudo = 1;
3479                 $realuser = "root";
3480                 }
3481         if (!$realuser && !@uinfo && $config{'pamany'}) {
3482                 # If the user completely doesn't exist, we can still allow
3483                 # him to authenticate via PAM
3484                 $realuser = $config{'pamany'};
3485                 $pamany = 1;
3486                 }
3487         if (!$realuser) {
3488                 # For Usermin, always fall back to unix auth for any user,
3489                 # so that later checks with domain added / removed are done.
3490                 $realuser = $unixauth{"*"};
3491                 }
3492         return (undef, 0, 1, undef) if (!$realuser);
3493         local $uinfo = &get_user_details($realuser);
3494         return (undef, 0, 1, undef) if (!$uinfo);
3495         local $up = $uinfo->{'pass'};
3496
3497         # Work out possible domain names from the hostname
3498         local @doms = ( $_[2] );
3499         if ($_[2] =~ /^([^\.]+)\.(\S+)$/) {
3500                 push(@doms, $2);
3501                 }
3502
3503         if ($config{'user_mapping'} && !%user_mapping) {
3504                 # Read the user mapping file
3505                 %user_mapping = ();
3506                 open(MAPPING, $config{'user_mapping'});
3507                 while(<MAPPING>) {
3508                         s/\r|\n//g;
3509                         s/#.*$//;
3510                         if (/^(\S+)\s+(\S+)/) {
3511                                 if ($config{'user_mapping_reverse'}) {
3512                                         $user_mapping{$1} = $2;
3513                                         }
3514                                 else {
3515                                         $user_mapping{$2} = $1;
3516                                         }
3517                                 }
3518                         }
3519                 close(MAPPING);
3520                 }
3521
3522         # Check the user mapping file to see if there is an entry for the
3523         # user login in which specifies a new effective user
3524         local $um;
3525         foreach my $d (@doms) {
3526                 $um ||= $user_mapping{"$_[0]\@$d"};
3527                 }
3528         $um ||= $user_mapping{$_[0]};
3529         if (defined($um) && ($_[1]&4) == 0) {
3530                 # A mapping exists - use it!
3531                 return &can_user_login($um, $_[1]+4, $_[2]);
3532                 }
3533
3534         # Check if a user with the entered login and the domains appended
3535         # or prepended exists, and if so take it to be the effective user
3536         if (!@uinfo && $config{'domainuser'}) {
3537                 # Try again with name.domain and name.firstpart
3538                 local @firsts = map { /^([^\.]+)/; $1 } @doms;
3539                 if (($_[1]&1) == 0) {
3540                         local ($a, $p);
3541                         foreach $a (@firsts, @doms) {
3542                                 foreach $p ("$_[0].${a}", "$_[0]-${a}",
3543                                             "${a}.$_[0]", "${a}-$_[0]",
3544                                             "$_[0]_${a}", "${a}_$_[0]") {
3545                                         local @vu = &can_user_login(
3546                                                         $p, $_[1]+1, $_[2]);
3547                                         return @vu if ($vu[1]);
3548                                         }
3549                                 }
3550                         }
3551                 }
3552
3553         # Check if the user entered a domain at the end of his username when
3554         # he really shouldn't have, and if so try without it
3555         if (!@uinfo && $config{'domainstrip'} &&
3556             $_[0] =~ /^(\S+)\@(\S+)$/ && ($_[1]&2) == 0) {
3557                 local ($stripped, $dom) = ($1, $2);
3558                 local @vu = &can_user_login($stripped, $_[1] + 2, $_[2]);
3559                 return @vu if ($vu[1]);
3560                 local @vu = &can_user_login($stripped, $_[1] + 2, $dom);
3561                 return @vu if ($vu[1]);
3562                 }
3563
3564         return ( undef, 0, 1, undef ) if (!@uinfo && !$pamany);
3565
3566         if (@uinfo) {
3567                 if (scalar(@allowusers)) {
3568                         # Only allow people on the allow list
3569                         return ( undef, 0, 0, undef )
3570                                 if (!&users_match(\@uinfo, @allowusers));
3571                         }
3572                 elsif (scalar(@denyusers)) {
3573                         # Disallow people on the deny list
3574                         return ( undef, 0, 0, undef )
3575                                 if (&users_match(\@uinfo, @denyusers));
3576                         }
3577                 if ($config{'shells_deny'}) {
3578                         local $found = 0;
3579                         open(SHELLS, $config{'shells_deny'});
3580                         while(<SHELLS>) {
3581                                 s/\r|\n//g;
3582                                 s/#.*$//;
3583                                 $found++ if ($_ eq $uinfo[8]);
3584                                 }
3585                         close(SHELLS);
3586                         return ( undef, 0, 0, undef ) if (!$found);
3587                         }
3588                 }
3589
3590         if ($up eq 'x') {
3591                 # PAM or passwd file authentication
3592                 print DEBUG "can_user_login: Validate with PAM\n";
3593                 return ( $_[0], $use_pam ? 2 : 3, 0, $realuser, $sudo );
3594                 }
3595         elsif ($up eq 'e') {
3596                 # External authentication
3597                 print DEBUG "can_user_login: Validate externally\n";
3598                 return ( $_[0], 4, 0, $realuser, $sudo );
3599                 }
3600         else {
3601                 # Fixed Webmin password
3602                 print DEBUG "can_user_login: Validate by Webmin\n";
3603                 return ( $_[0], 1, 0, $realuser, $sudo );
3604                 }
3605         }
3606 elsif ($uinfo->{'pass'} eq 'x') {
3607         # Webmin user authenticated via PAM or password file
3608         return ( $_[0], $use_pam ? 2 : 3, 0, $_[0] );
3609         }
3610 elsif ($uinfo->{'pass'} eq 'e') {
3611         # Webmin user authenticated externally
3612         return ( $_[0], 4, 0, $_[0] );
3613         }
3614 else {
3615         # Normal Webmin user
3616         return ( $_[0], 1, 0, $_[0] );
3617         }
3618 }
3619
3620 # the PAM conversation function for interactive logins
3621 sub pam_conv_func
3622 {
3623 $pam_conv_func_called++;
3624 my @res;
3625 while ( @_ ) {
3626         my $code = shift;
3627         my $msg = shift;
3628         my $ans = "";
3629
3630         $ans = $pam_username if ($code == PAM_PROMPT_ECHO_ON() );
3631         $ans = $pam_password if ($code == PAM_PROMPT_ECHO_OFF() );
3632
3633         push @res, PAM_SUCCESS();
3634         push @res, $ans;
3635         }
3636 push @res, PAM_SUCCESS();
3637 return @res;
3638 }
3639
3640 sub urandom_timeout
3641 {
3642 close(RANDOM);
3643 }
3644
3645 # get_socket_ip(handle, ipv6-flag)
3646 # Returns the local IP address of some connection, as both a string and in
3647 # binary format
3648 sub get_socket_ip
3649 {
3650 local ($fh, $ipv6) = @_;
3651 local $sn = getsockname($fh);
3652 return undef if (!$sn);
3653 return &get_address_ip($sn, $ipv6);
3654 }
3655
3656 # get_address_ip(address, ipv6-flag)
3657 # Given a sockaddr object in binary format, return the binary address, text
3658 # address and port number
3659 sub get_address_ip
3660 {
3661 local ($sn, $ipv6) = @_;
3662 if ($ipv6) {
3663         local ($p, $b) = unpack_sockaddr_in6($sn);
3664         return ($b, inet_ntop(Socket6::AF_INET6(), $b), $p);
3665         }
3666 else {
3667         local ($p, $b) = unpack_sockaddr_in($sn);
3668         return ($b, inet_ntoa($b), $p);
3669         }
3670 }
3671
3672 # get_socket_name(handle, ipv6-flag)
3673 # Returns the local hostname or IP address of some connection
3674 sub get_socket_name
3675 {
3676 local ($fh, $ipv6) = @_;
3677 return $config{'host'} if ($config{'host'});
3678 local ($mybin, $myaddr) = &get_socket_ip($fh, $ipv6);
3679 if (!$get_socket_name_cache{$myaddr}) {
3680         local $myname;
3681         if (!$config{'no_resolv_myname'}) {
3682                 $myname = gethostbyaddr($mybin,
3683                                         $ipv6 ? Socket6::AF_INET6() : AF_INET);
3684                 }
3685         $myname ||= $myaddr;
3686         $get_socket_name_cache{$myaddr} = $myname;
3687         }
3688 return $get_socket_name_cache{$myaddr};
3689 }
3690
3691 # run_login_script(username, sid, remoteip, localip)
3692 sub run_login_script
3693 {
3694 if ($config{'login_script'}) {
3695         system($config{'login_script'}.
3696                " ".join(" ", map { quotemeta($_) || '""' } @_).
3697                " >/dev/null 2>&1 </dev/null");
3698         }
3699 }
3700
3701 # run_logout_script(username, sid, remoteip, localip)
3702 sub run_logout_script
3703 {
3704 if ($config{'logout_script'}) {
3705         system($config{'logout_script'}.
3706                " ".join(" ", map { quotemeta($_) || '""' } @_).
3707                " >/dev/null 2>&1 </dev/null");
3708         }
3709 }
3710
3711 # close_all_sockets()
3712 # Closes all the main listening sockets
3713 sub close_all_sockets
3714 {
3715 local $s;
3716 foreach $s (@socketfhs) {
3717         close($s);
3718         }
3719 }
3720
3721 # close_all_pipes()
3722 # Close all pipes for talking to sub-processes
3723 sub close_all_pipes
3724 {
3725 local $p;
3726 foreach $p (@passin) { close($p); }
3727 foreach $p (@passout) { close($p); }
3728 foreach $p (values %conversations) {
3729         if ($p->{'PAMOUTr'}) {
3730                 close($p->{'PAMOUTr'});
3731                 close($p->{'PAMINw'});
3732                 }
3733         }
3734 }
3735
3736 # check_user_ip(user)
3737 # Returns 1 if some user is allowed to login from the accepting IP, 0 if not
3738 sub check_user_ip
3739 {
3740 local ($username) = @_;
3741 local $uinfo = &get_user_details($username);
3742 return 1 if (!$uinfo);
3743 if ($uinfo->{'deny'} &&
3744     &ip_match($acptip, $localip, @{$uinfo->{'deny'}}) ||
3745     $uinfo->{'allow'} &&
3746     !&ip_match($acptip, $localip, @{$uinfo->{'allow'}})) {
3747         return 0;
3748         }
3749 return 1;
3750 }
3751
3752 # check_user_time(user)
3753 # Returns 1 if some user is allowed to login at the current date and time
3754 sub check_user_time
3755 {
3756 local ($username) = @_;
3757 local $uinfo = &get_user_details($username);
3758 return 1 if (!$uinfo || !$uinfo->{'allowdays'} && !$uinfo->{'allowhours'});
3759 local @tm = localtime(time());
3760 if ($uinfo->{'allowdays'}) {
3761         # Make sure day is allowed
3762         return 0 if (&indexof($tm[6], @{$uinfo->{'allowdays'}}) < 0);
3763         }
3764 if ($uinfo->{'allowhours'}) {
3765         # Make sure time is allowed
3766         local $m = $tm[2]*60+$tm[1];
3767         return 0 if ($m < $uinfo->{'allowhours'}->[0] ||
3768                      $m > $uinfo->{'allowhours'}->[1]);
3769         }
3770 return 1;
3771 }
3772
3773 # generate_random_id(password, [force-urandom])
3774 # Returns a random session ID number
3775 sub generate_random_id
3776 {
3777 local ($pass, $force_urandom) = @_;
3778 local $sid;
3779 if (!$bad_urandom) {
3780         # First try /dev/urandom, unless we have marked it as bad
3781         $SIG{ALRM} = "miniserv::urandom_timeout";
3782         alarm(5);
3783         if (open(RANDOM, "/dev/urandom")) {
3784                 my $tmpsid;
3785                 if (read(RANDOM, $tmpsid, 16) == 16) {
3786                         $sid = lc(unpack('h*',$tmpsid));
3787                         }
3788                 close(RANDOM);
3789                 }
3790         alarm(0);
3791         }
3792 if (!$sid && !$force_urandom) {
3793         $sid = time();
3794         local $mul = 1;
3795         foreach $c (split(//, &unix_crypt($pass, substr($$, -2)))) {
3796                 $sid += ord($c) * $mul;
3797                 $mul *= 3;
3798                 }
3799         }
3800 return $sid;
3801 }
3802
3803 # handle_login(username, ok, expired, not-exists, password, [no-test-cookie])
3804 # Called from handle_session to either mark a user as logged in, or not
3805 sub handle_login
3806 {
3807 local ($vu, $ok, $expired, $nonexist, $pass, $notest) = @_;
3808 $authuser = $vu if ($ok);
3809
3810 # check if the test cookie is set
3811 if ($header{'cookie'} !~ /testing=1/ && $vu &&
3812     !$config{'no_testing_cookie'} && !$notest) {
3813         &http_error(500, "No cookies",
3814            "Your browser does not support cookies, ".
3815            "which are required for this web server to ".
3816            "work in session authentication mode");
3817         }
3818
3819 # check with main process for delay
3820 if ($config{'passdelay'} && $vu) {
3821         print DEBUG "handle_login: requesting delay vu=$vu acptip=$acptip ok=$ok\n";
3822         print $PASSINw "delay $vu $acptip $ok\n";
3823         <$PASSOUTr> =~ /(\d+) (\d+)/;
3824         $blocked = $2;
3825         sleep($1);
3826         print DEBUG "handle_login: delay=$1 blocked=$2\n";
3827         }
3828
3829 if ($ok && (!$expired ||
3830             $config{'passwd_mode'} == 1)) {
3831         # Logged in OK! Tell the main process about
3832         # the new SID
3833         local $sid = &generate_random_id($pass);
3834         print DEBUG "handle_login: sid=$sid\n";
3835         print $PASSINw "new $sid $authuser $acptip\n";
3836
3837         # Run the post-login script, if any
3838         &run_login_script($authuser, $sid,
3839                           $acptip, $localip);
3840
3841         # Check for a redirect URL for the user
3842         local $rurl = &login_redirect($authuser, $pass, $host);
3843         print DEBUG "handle_login: redirect URL rurl=$rurl\n";
3844         if ($rurl) {
3845                 # Got one .. go to it
3846                 &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
3847                 &write_data("Date: $datestr\r\n");
3848                 &write_data("Server: $config{'server'}\r\n");
3849                 &write_data("Location: $rurl\r\n");
3850                 &write_keep_alive(0);
3851                 &write_data("\r\n");
3852                 &log_request($acpthost, $authuser, $reqline, 302, 0);
3853                 }
3854         else {
3855                 # Set cookie and redirect to originally requested page
3856                 &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
3857                 &write_data("Date: $datestr\r\n");
3858                 &write_data("Server: $config{'server'}\r\n");
3859                 local $ssl = $use_ssl || $config{'inetd_ssl'};
3860                 $portstr = $port == 80 && !$ssl ? "" :
3861                            $port == 443 && $ssl ? "" : ":$port";
3862                 $prot = $ssl ? "https" : "http";
3863                 local $sec = $ssl ? "; secure" : "";
3864                 #$sec .= "; httpOnly";
3865                 if ($in{'page'} !~ /^\/[A-Za-z0-9\/\.\-\_]+$/) {
3866                         # Make redirect URL safe
3867                         $in{'page'} = "/";
3868                         }
3869                 if ($in{'save'}) {
3870                         &write_data("Set-Cookie: $sidname=$sid; path=/; expires=\"Thu, 31-Dec-2037 00:00:00\"$sec\r\n");
3871                         }
3872                 else {
3873                         &write_data("Set-Cookie: $sidname=$sid; path=/$sec\r\n");
3874                         }
3875                 &write_data("Location: $prot://$host$portstr$in{'page'}\r\n");
3876                 &write_keep_alive(0);
3877                 &write_data("\r\n");
3878                 &log_request($acpthost, $authuser, $reqline, 302, 0);
3879                 syslog("info", "%s", "Successful login as $authuser from $acpthost") if ($use_syslog);
3880                 &write_login_utmp($authuser, $acpthost);
3881                 }
3882         return 0;
3883         }
3884 elsif ($ok && $expired &&
3885        ($config{'passwd_mode'} == 2 || $expired == 2)) {
3886         # Login was ok, but password has expired or was temporary. Need
3887         # to force display of password change form.
3888         $validated = 1;
3889         $authuser = undef;
3890         $querystring = "&user=".&urlize($vu).
3891                        "&pam=".$use_pam.
3892                        "&expired=".$expired;
3893         $method = "GET";
3894         $queryargs = "";
3895         $page = $config{'password_form'};
3896         $logged_code = 401;
3897         $miniserv_internal = 2;
3898         syslog("crit", "%s",
3899                 "Expired login as $vu ".
3900                 "from $acpthost") if ($use_syslog);
3901         }
3902 else {
3903         # Login failed, or password has expired. The login form will be
3904         # displayed again by later code
3905         $failed_user = $vu;
3906         $request_uri = $in{'page'};
3907         $already_session_id = undef;
3908         $method = "GET";
3909         $authuser = $baseauthuser = undef;
3910         syslog("crit", "%s",
3911                 ($nonexist ? "Non-existent" :
3912                  $expired ? "Expired" : "Invalid").
3913                 " login as $vu from $acpthost")
3914                 if ($use_syslog);
3915         }
3916 return undef;
3917 }
3918
3919 # write_login_utmp(user, host)
3920 # Record the login by some user in utmp
3921 sub write_login_utmp
3922 {
3923 if ($write_utmp) {
3924         # Write utmp record for login
3925         %utmp = ( 'ut_host' => $_[1],
3926                   'ut_time' => time(),
3927                   'ut_user' => $_[0],
3928                   'ut_type' => 7,       # user process
3929                   'ut_pid' => $main_process_id,
3930                   'ut_line' => $config{'pam'},
3931                   'ut_id' => '' );
3932         if (defined(&User::Utmp::putut)) {
3933                 User::Utmp::putut(\%utmp);
3934                 }
3935         else {
3936                 User::Utmp::pututline(\%utmp);
3937                 }
3938         }
3939 }
3940
3941 # write_logout_utmp(user, host)
3942 # Record the logout by some user in utmp
3943 sub write_logout_utmp
3944 {
3945 if ($write_utmp) {
3946         # Write utmp record for logout
3947         %utmp = ( 'ut_host' => $_[1],
3948                   'ut_time' => time(),
3949                   'ut_user' => $_[0],
3950                   'ut_type' => 8,       # dead process
3951                   'ut_pid' => $main_process_id,
3952                   'ut_line' => $config{'pam'},
3953                   'ut_id' => '' );
3954         if (defined(&User::Utmp::putut)) {
3955                 User::Utmp::putut(\%utmp);
3956                 }
3957         else {
3958                 User::Utmp::pututline(\%utmp);
3959                 }
3960         }
3961 }
3962
3963 # pam_conversation_process(username, write-pipe, read-pipe)
3964 # This function is called inside a sub-process to communicate with PAM. It sends
3965 # questions down one pipe, and reads responses from another
3966 sub pam_conversation_process
3967 {
3968 local ($user, $writer, $reader) = @_;
3969 $miniserv::pam_conversation_process_writer = $writer;
3970 $miniserv::pam_conversation_process_reader = $reader;
3971 eval "use Authen::PAM;";
3972 local $convh = new Authen::PAM(
3973         $config{'pam'}, $user, \&miniserv::pam_conversation_process_func);
3974 local $pam_ret = $convh->pam_authenticate();
3975 if ($pam_ret == PAM_SUCCESS()) {
3976         local $acct_ret = $convh->pam_acct_mgmt();
3977         if ($acct_ret == PAM_SUCCESS()) {
3978                 $convh->pam_open_session();
3979                 print $writer "x2 $user 1 0 0\n";
3980                 }
3981         elsif ($acct_ret == PAM_NEW_AUTHTOK_REQD() ||
3982                $acct_ret == PAM_ACCT_EXPIRED()) {
3983                 print $writer "x2 $user 1 1 0\n";
3984                 }
3985         else {
3986                 print $writer "x0 Unknown PAM account status $acct_ret\n";
3987                 }
3988         }
3989 else {
3990         print $writer "x2 $user 0 0 0\n";
3991         }
3992 exit(0);
3993 }
3994
3995 # pam_conversation_process_func(type, message, [type, message, ...])
3996 # A pipe that talks to both PAM and the master process
3997 sub pam_conversation_process_func
3998 {
3999 local @rv;
4000 select($miniserv::pam_conversation_process_writer); $| = 1; select(STDOUT);
4001 while(@_) {
4002         local ($type, $msg) = (shift, shift);
4003         $msg =~ s/\r|\n//g;
4004         local $ok = (print $miniserv::pam_conversation_process_writer "$type $msg\n");
4005         print $miniserv::pam_conversation_process_writer "\n";
4006         local $answer = <$miniserv::pam_conversation_process_reader>;
4007         $answer =~ s/\r|\n//g;
4008         push(@rv, PAM_SUCCESS(), $answer);
4009         }
4010 push(@rv, PAM_SUCCESS());
4011 return @rv;
4012 }
4013
4014 # allocate_pipes()
4015 # Returns 4 new pipe file handles
4016 sub allocate_pipes
4017 {
4018 local ($PASSINr, $PASSINw, $PASSOUTr, $PASSOUTw);
4019 local $p;
4020 local %taken = ( (map { $_, 1 } @passin),
4021                  (map { $_->{'PASSINr'} } values %conversations) );
4022 for($p=0; $taken{"PASSINr$p"}; $p++) { }
4023 $PASSINr = "PASSINr$p";
4024 $PASSINw = "PASSINw$p";
4025 $PASSOUTr = "PASSOUTr$p";
4026 $PASSOUTw = "PASSOUTw$p";
4027 pipe($PASSINr, $PASSINw);
4028 pipe($PASSOUTr, $PASSOUTw);
4029 select($PASSINw); $| = 1;
4030 select($PASSINr); $| = 1;
4031 select($PASSOUTw); $| = 1;
4032 select($PASSOUTw); $| = 1;
4033 select(STDOUT);
4034 return ($PASSINr, $PASSINw, $PASSOUTr, $PASSOUTw);
4035 }
4036
4037 # recv_pam_question(&conv, fd)
4038 # Reads one PAM question from the sub-process, and sends it to the HTTP handler.
4039 # Returns 0 if the conversation is over, 1 if not.
4040 sub recv_pam_question
4041 {
4042 local ($conf, $fh) = @_;
4043 local $pr = $conf->{'PAMOUTr'};
4044 select($pr); $| = 1; select(STDOUT);
4045 local $line = <$pr>;
4046 $line =~ s/\r|\n//g;
4047 if (!$line) {
4048         $line = <$pr>;
4049         $line =~ s/\r|\n//g;
4050         }
4051 $conf->{'last'} = time();
4052 if (!$line) {
4053         # Failed!
4054         print $fh "0 PAM conversation error\n";
4055         return 0;
4056         }
4057 else {
4058         local ($type, $msg) = split(/\s+/, $line, 2);
4059         if ($type =~ /^x(\d+)/) {
4060                 # Pass this status code through
4061                 print $fh "$1 $msg\n";
4062                 return $1 == 2 || $1 == 0 ? 0 : 1;
4063                 }
4064         elsif ($type == PAM_PROMPT_ECHO_ON()) {
4065                 # A normal question
4066                 print $fh "1 $msg\n";
4067                 return 1;
4068                 }
4069         elsif ($type == PAM_PROMPT_ECHO_OFF()) {
4070                 # A password
4071                 print $fh "3 $msg\n";
4072                 return 1;
4073                 }
4074         elsif ($type == PAM_ERROR_MSG() || $type == PAM_TEXT_INFO()) {
4075                 # A message that does not require a response
4076                 print $fh "4 $msg\n";
4077                 return 1;
4078                 }
4079         else {
4080                 # Unknown type!
4081                 print $fh "0 Unknown PAM message type $type\n";
4082                 return 0;
4083                 }
4084         }
4085 }
4086
4087 # send_pam_answer(&conv, answer)
4088 # Sends a response from the user to the PAM sub-process
4089 sub send_pam_answer
4090 {
4091 local ($conf, $answer) = @_;
4092 local $pw = $conf->{'PAMINw'};
4093 $conf->{'last'} = time();
4094 print $pw "$answer\n";
4095 }
4096
4097 # end_pam_conversation(&conv)
4098 # Clean up PAM conversation pipes and processes
4099 sub end_pam_conversation
4100 {
4101 local ($conv) = @_;
4102 kill('KILL', $conv->{'pid'}) if ($conv->{'pid'});
4103 if ($conv->{'PAMINr'}) {
4104         close($conv->{'PAMINr'});
4105         close($conv->{'PAMOUTr'});
4106         close($conv->{'PAMINw'});
4107         close($conv->{'PAMOUTw'});
4108         }
4109 delete($conversations{$conv->{'cid'}});
4110 }
4111
4112 # get_ipkeys(&miniserv)
4113 # Returns a list of IP address to key file mappings from a miniserv.conf entry
4114 sub get_ipkeys
4115 {
4116 local (@rv, $k);
4117 foreach $k (keys %{$_[0]}) {
4118         if ($k =~ /^ipkey_(\S+)/) {
4119                 local $ipkey = { 'ips' => [ split(/,/, $1) ],
4120                                  'key' => $_[0]->{$k},
4121                                  'index' => scalar(@rv) };
4122                 $ipkey->{'cert'} = $_[0]->{'ipcert_'.$1};
4123                 push(@rv, $ipkey);
4124                 }
4125         }
4126 return @rv;
4127 }
4128
4129 # create_ssl_context(keyfile, [certfile])
4130 sub create_ssl_context
4131 {
4132 local ($keyfile, $certfile) = @_;
4133 local $ssl_ctx;
4134 eval { $ssl_ctx = Net::SSLeay::new_x_ctx() };
4135 $ssl_ctx ||= Net::SSLeay::CTX_new();
4136 $ssl_ctx || die "Failed to create SSL context : $!";
4137 if ($client_certs) {
4138         Net::SSLeay::CTX_load_verify_locations(
4139                 $ssl_ctx, $config{'ca'}, "");
4140         Net::SSLeay::CTX_set_verify(
4141                 $ssl_ctx, &Net::SSLeay::VERIFY_PEER, \&verify_client);
4142         }
4143 if ($config{'extracas'}) {
4144         local $p;
4145         foreach $p (split(/\s+/, $config{'extracas'})) {
4146                 Net::SSLeay::CTX_load_verify_locations(
4147                         $ssl_ctx, $p, "");
4148                 }
4149         }
4150
4151 Net::SSLeay::CTX_use_RSAPrivateKey_file(
4152         $ssl_ctx, $keyfile,
4153         &Net::SSLeay::FILETYPE_PEM) || die "Failed to open SSL key $keyfile";
4154 Net::SSLeay::CTX_use_certificate_file(
4155         $ssl_ctx, $certfile || $keyfile,
4156         &Net::SSLeay::FILETYPE_PEM) || die "Failed to open SSL cert $certfile";
4157
4158 return $ssl_ctx;
4159 }
4160
4161 # ssl_connection_for_ip(socket, ipv6-flag)
4162 # Returns a new SSL connection object for some socket, or undef if failed
4163 sub ssl_connection_for_ip
4164 {
4165 local ($sock, $ipv6) = @_;
4166 local $sn = getsockname($sock);
4167 if (!$sn) {
4168         print STDERR "Failed to get address for socket $sock\n";
4169         return undef;
4170         }
4171 local (undef, $myip, undef) = &get_address_ip($sn, $ipv6);
4172 local $ssl_ctx = $ssl_contexts{$myip} || $ssl_contexts{"*"};
4173 local $ssl_con = Net::SSLeay::new($ssl_ctx);
4174 if ($config{'ssl_cipher_list'}) {
4175         # Force use of ciphers
4176         eval "Net::SSLeay::set_cipher_list(
4177                         \$ssl_con, \$config{'ssl_cipher_list'})";
4178         if ($@) {
4179                 print STDERR "SSL cipher $config{'ssl_cipher_list'} failed : ",
4180                              "$@\n";
4181                 }
4182         else {
4183                 }
4184         }
4185 Net::SSLeay::set_fd($ssl_con, fileno($sock));
4186 if (!Net::SSLeay::accept($ssl_con)) {
4187         print STDERR "Failed to initialize SSL connection\n";
4188         return undef;
4189         }
4190 return $ssl_con;
4191 }
4192
4193 # login_redirect(username, password, host)
4194 # Calls the login redirect script (if configured), which may output a URL to
4195 # re-direct a user to after logging in.
4196 sub login_redirect
4197 {
4198 return undef if (!$config{'login_redirect'});
4199 local $quser = quotemeta($_[0]);
4200 local $qpass = quotemeta($_[1]);
4201 local $qhost = quotemeta($_[2]);
4202 local $url = `$config{'login_redirect'} $quser $qpass $qhost`;
4203 chop($url);
4204 return $url;
4205 }
4206
4207 # reload_config_file()
4208 # Re-read %config, and call post-config actions
4209 sub reload_config_file
4210 {
4211 &log_error("Reloading configuration");
4212 %config = &read_config_file($config_file);
4213 &update_vital_config();
4214 &read_users_file();
4215 &read_mime_types();
4216 &build_config_mappings();
4217 &read_webmin_crons();
4218 &precache_files();
4219 if ($config{'session'}) {
4220         dbmclose(%sessiondb);
4221         dbmopen(%sessiondb, $config{'sessiondb'}, 0700);
4222         }
4223 }
4224
4225 # read_config_file(file)
4226 # Reads the given config file, and returns a hash of values
4227 sub read_config_file
4228 {
4229 local %rv;
4230 open(CONF, $_[0]) || die "Failed to open config file $_[0] : $!";
4231 while(<CONF>) {
4232         s/\r|\n//g;
4233         if (/^#/ || !/\S/) { next; }
4234         /^([^=]+)=(.*)$/;
4235         $name = $1; $val = $2;
4236         $name =~ s/^\s+//g; $name =~ s/\s+$//g;
4237         $val =~ s/^\s+//g; $val =~ s/\s+$//g;
4238         $rv{$name} = $val;
4239         }
4240 close(CONF);
4241 return %rv;
4242 }
4243
4244 # update_vital_config()
4245 # Updates %config with defaults, and dies if something vital is missing
4246 sub update_vital_config
4247 {
4248 my %vital = ("port", 80,
4249           "root", "./",
4250           "server", "MiniServ/0.01",
4251           "index_docs", "index.html index.htm index.cgi index.php",
4252           "addtype_html", "text/html",
4253           "addtype_txt", "text/plain",
4254           "addtype_gif", "image/gif",
4255           "addtype_jpg", "image/jpeg",
4256           "addtype_jpeg", "image/jpeg",
4257           "realm", "MiniServ",
4258           "session_login", "/session_login.cgi",
4259           "pam_login", "/pam_login.cgi",
4260           "password_form", "/password_form.cgi",
4261           "password_change", "/password_change.cgi",
4262           "maxconns", 50,
4263           "pam", "webmin",
4264           "sidname", "sid",
4265           "unauth", "^/unauthenticated/ ^/robots.txt\$ ^[A-Za-z0-9\\-/_]+\\.jar\$ ^[A-Za-z0-9\\-/_]+\\.class\$ ^[A-Za-z0-9\\-/_]+\\.gif\$ ^[A-Za-z0-9\\-/_]+\\.conf\$ ^[A-Za-z0-9\\-/_]+\\.ico\$ ^/robots.txt\$",
4266           "max_post", 10000,
4267           "expires", 7*24*60*60,
4268           "pam_test_user", "root",
4269           "precache", "lang/en */lang/en",
4270          );
4271 foreach my $v (keys %vital) {
4272         if (!$config{$v}) {
4273                 if ($vital{$v} eq "") {
4274                         die "Missing config option $v";
4275                         }
4276                 $config{$v} = $vital{$v};
4277                 }
4278         }
4279 if (!$config{'sessiondb'}) {
4280         $config{'pidfile'} =~ /^(.*)\/[^\/]+$/;
4281         $config{'sessiondb'} = "$1/sessiondb";
4282         }
4283 if (!$config{'errorlog'}) {
4284         $config{'logfile'} =~ /^(.*)\/[^\/]+$/;
4285         $config{'errorlog'} = "$1/miniserv.error";
4286         }
4287 if (!$config{'tempbase'}) {
4288         $config{'pidfile'} =~ /^(.*)\/[^\/]+$/;
4289         $config{'tempbase'} = "$1/cgitemp";
4290         }
4291 if (!$config{'blockedfile'}) {
4292         $config{'pidfile'} =~ /^(.*)\/[^\/]+$/;
4293         $config{'blockedfile'} = "$1/blocked";
4294         }
4295 if (!$config{'webmincron_dir'}) {
4296         $config_file =~ /^(.*)\/[^\/]+$/;
4297         $config{'webmincron_dir'} = "$1/webmincron/crons";
4298         }
4299 if (!$config{'webmincron_last'}) {
4300         $config{'logfile'} =~ /^(.*)\/[^\/]+$/;
4301         $config{'webmincron_last'} = "$1/miniserv.lastcrons";
4302         }
4303 if (!$config{'webmincron_wrapper'}) {
4304         $config{'webmincron_wrapper'} = $config{'root'}.
4305                                         "/webmincron/webmincron.pl";
4306         }
4307 }
4308
4309 # read_users_file()
4310 # Fills the %users and %certs hashes from the users file in %config
4311 sub read_users_file
4312 {
4313 undef(%users);
4314 undef(%certs);
4315 undef(%allow);
4316 undef(%deny);
4317 undef(%allowdays);
4318 undef(%allowhours);
4319 undef(%lastchanges);
4320 undef(%nochange);
4321 undef(%temppass);
4322 if ($config{'userfile'}) {
4323         open(USERS, $config{'userfile'});
4324         while(<USERS>) {
4325                 s/\r|\n//g;
4326                 local @user = split(/:/, $_, -1);
4327                 $users{$user[0]} = $user[1];
4328                 $certs{$user[0]} = $user[3] if ($user[3]);
4329                 if ($user[4] =~ /^allow\s+(.*)/) {
4330                         $allow{$user[0]} = $config{'alwaysresolve'} ?
4331                                 [ split(/\s+/, $1) ] :
4332                                 [ &to_ipaddress(split(/\s+/, $1)) ];
4333                         }
4334                 elsif ($user[4] =~ /^deny\s+(.*)/) {
4335                         $deny{$user[0]} = $config{'alwaysresolve'} ?
4336                                 [ split(/\s+/, $1) ] :
4337                                 [ &to_ipaddress(split(/\s+/, $1)) ];
4338                         }
4339                 if ($user[5] =~ /days\s+(\S+)/) {
4340                         $allowdays{$user[0]} = [ split(/,/, $1) ];
4341                         }
4342                 if ($user[5] =~ /hours\s+(\d+)\.(\d+)-(\d+).(\d+)/) {
4343                         $allowhours{$user[0]} = [ $1*60+$2, $3*60+$4 ];
4344                         }
4345                 $lastchanges{$user[0]} = $user[6];
4346                 $nochange{$user[0]} = $user[9];
4347                 $temppass{$user[0]} = $user[10];
4348                 }
4349         close(USERS);
4350         }
4351
4352 # Test user DB, if configured
4353 if ($config{'userdb'}) {
4354         my $dbh = &connect_userdb($config{'userdb'});
4355         if (!ref($dbh)) {
4356                 print STDERR "Failed to open users database : $dbh\n"
4357                 }
4358         else {
4359                 &disconnect_userdb($config{'userdb'}, $dbh);
4360                 }
4361         }
4362 }
4363
4364 # get_user_details(username)
4365 # Returns a hash ref of user details, either from config files or the user DB
4366 sub get_user_details
4367 {
4368 my ($username) = @_;
4369 if (exists($users{$username})) {
4370         # In local files
4371         return { 'name' => $username,
4372                  'pass' => $users{$username},
4373                  'certs' => $certs{$username},
4374                  'allow' => $allow{$username},
4375                  'deny' => $deny{$username},
4376                  'allowdays' => $allowdays{$username},
4377                  'allowhours' => $allowhours{$username},
4378                  'lastchanges' => $lastchanges{$username},
4379                  'nochange' => $nochange{$username},
4380                  'temppass' => $temppass{$username},
4381                  'preroot' => $config{'preroot_'.$username},
4382                };
4383         }
4384 if ($config{'userdb'}) {
4385         # Try querying user database
4386         if (exists($get_user_details_cache{$username})) {
4387                 # Cached already
4388                 return $get_user_details_cache{$username};
4389                 }
4390         print DEBUG "get_user_details: Connecting to user database\n";
4391         my ($dbh, $proto, $prefix, $args) = &connect_userdb($config{'userdb'});
4392         my $user;
4393         my %attrs;
4394         if (!ref($dbh)) {
4395                 print DEBUG "get_user_details: Failed : $dbh\n";
4396                 print STDERR "Failed to connect to user database : $dbh\n";
4397                 }
4398         elsif ($proto eq "mysql" || $proto eq "postgresql") {
4399                 # Fetch user ID and password with SQL
4400                 print DEBUG "get_user_details: Looking for $username in SQL\n";
4401                 my $cmd = $dbh->prepare(
4402                         "select id,pass from webmin_user where name = ?");
4403                 if (!$cmd || !$cmd->execute($username)) {
4404                         print STDERR "Failed to lookup user : ",
4405                                      $dbh->errstr,"\n";
4406                         return undef;
4407                         }
4408                 my ($id, $pass) = $cmd->fetchrow();
4409                 $cmd->finish();
4410                 if (!$id) {
4411                         &disconnect_userdb($config{'userdb'}, $dbh);
4412                         $get_user_details_cache{$username} = undef;
4413                         print DEBUG "get_user_details: User not found\n";
4414                         return undef;
4415                         }
4416                 print DEBUG "get_user_details: id=$id pass=$pass\n";
4417
4418                 # Fetch attributes and add to user object
4419                 print DEBUG "get_user_details: finding user attributes\n";
4420                 my $cmd = $dbh->prepare(
4421                         "select attr,value from webmin_user_attr where id = ?");
4422                 if (!$cmd || !$cmd->execute($id)) {
4423                         print STDERR "Failed to lookup user attrs : ",
4424                                      $dbh->errstr,"\n";
4425                         return undef;
4426                         }
4427                 $user = { 'name' => $username,
4428                           'id' => $id,
4429                           'pass' => $pass,
4430                           'proto' => $proto };
4431                 while(my ($attr, $value) = $cmd->fetchrow()) {
4432                         $attrs{$attr} = $value;
4433                         }
4434                 $cmd->finish();
4435                 }
4436         elsif ($proto eq "ldap") {
4437                 # Fetch user DN with LDAP
4438                 print DEBUG "get_user_details: Looking for $username in LDAP\n";
4439                 my $rv = $dbh->search(
4440                         base => $prefix,
4441                         filter => '(&(cn='.$username.')(objectClass='.
4442                                   $args->{'userclass'}.'))',
4443                         scope => 'sub');
4444                 if (!$rv || $rv->code) {
4445                         print STDERR "Failed to lookup user : ",
4446                                      ($rv ? $rv->error : "Unknown error"),"\n";
4447                         return undef;
4448                         }
4449                 my ($u) = $rv->all_entries();
4450                 if (!$u) {
4451                         &disconnect_userdb($config{'userdb'}, $dbh);
4452                         $get_user_details_cache{$username} = undef;
4453                         print DEBUG "get_user_details: User not found\n";
4454                         return undef;
4455                         }
4456
4457                 # Extract attributes
4458                 my $pass = $u->get_value('webminPass');
4459                 $user = { 'name' => $username,
4460                           'id' => $u->dn(),
4461                           'pass' => $pass,
4462                           'proto' => $proto };
4463                 foreach my $la ($u->get_value('webminAttr')) {
4464                         my ($attr, $value) = split(/=/, $la, 2);
4465                         $attrs{$attr} = $value;
4466                         }
4467                 }
4468
4469         # Convert DB attributes into user object fields
4470         if ($user) {
4471                 print DEBUG "get_user_details: got ",scalar(keys %attrs),
4472                             " attributes\n";
4473                 $user->{'certs'} = $attrs{'cert'};
4474                 if ($attrs{'allow'}) {
4475                         $user->{'allow'} = $config{'alwaysresolve'} ?
4476                                 [ split(/\s+/, $attrs{'allow'}) ] :
4477                                 [ &to_ipaddress(split(/\s+/,$attrs{'allow'})) ];
4478                         }
4479                 if ($attrs{'deny'}) {
4480                         $user->{'deny'} = $config{'alwaysresolve'} ?
4481                                 [ split(/\s+/, $attrs{'deny'}) ] :
4482                                 [ &to_ipaddress(split(/\s+/,$attrs{'deny'})) ];
4483                         }
4484                 if ($attrs{'days'}) {
4485                         $user->{'allowdays'} = [ split(/,/, $attrs{'days'}) ];
4486                         }
4487                 if ($attrs{'hoursfrom'} && $attrs{'hoursto'}) {
4488                         my ($hf, $mf) = split(/\./, $attrs{'hoursfrom'});
4489                         my ($ht, $mt) = split(/\./, $attrs{'hoursto'});
4490                         $user->{'allowhours'} = [ $hf*60+$ht, $ht*60+$mt ];
4491                         }
4492                 $user->{'lastchanges'} = $attrs{'lastchange'};
4493                 $user->{'nochange'} = $attrs{'nochange'};
4494                 $user->{'temppass'} = $attrs{'temppass'};
4495                 $user->{'preroot'} = $attrs{'theme'};
4496                 }
4497         &disconnect_userdb($config{'userdb'}, $dbh);
4498         $get_user_details_cache{$user->{'name'}} = $user;
4499         return $user;
4500         }
4501 return undef;
4502 }
4503
4504 # find_user_by_cert(cert)
4505 # Returns a username looked up by certificate
4506 sub find_user_by_cert
4507 {
4508 my ($peername) = @_;
4509 my $peername2 = $peername;
4510 $peername2 =~ s/Email=/emailAddress=/ || $peername2 =~ s/emailAddress=/Email=/;
4511
4512 # First check users in local files
4513 foreach my $username (keys %certs) {
4514         if ($certs{$username} eq $peername ||
4515             $certs{$username} eq $peername2) {
4516                 return $username;
4517                 }
4518         }
4519
4520 # Check user DB
4521 if ($config{'userdb'}) {
4522         my ($dbh, $proto) = &connect_userdb($config{'userdb'});
4523         if (!ref($dbh)) {
4524                 return undef;
4525                 }
4526         elsif ($proto eq "mysql" || $proto eq "postgresql") {
4527                 # Query with SQL
4528                 my $cmd = $dbh->prepare("select webmin_user.name from webmin_user,webmin_user_attr where webmin_user.id = webmin_user_attr.id and webmin_user_attr.attr = 'cert' and webmin_user_attr.value = ?");
4529                 return undef if (!$cmd);
4530                 foreach my $p ($peername, $peername2) {
4531                         my $username;
4532                         if ($cmd->execute($p)) {
4533                                 ($username) = $cmd->fetchrow();
4534                                 }
4535                         $cmd->finish();
4536                         return $username if ($username);
4537                         }
4538                 }
4539         elsif ($proto eq "ldap") {
4540                 # Lookup in LDAP
4541                 my $rv = $dbh->search(
4542                         base => $prefix,
4543                         filter => '(objectClass='.
4544                                   $args->{'userclass'}.')',
4545                         scope => 'sub',
4546                         attrs => [ 'cn', 'webminAttr' ]);
4547                 if ($rv && !$rv->code) {
4548                         foreach my $u ($rv->all_entries) {
4549                                 my @attrs = $u->get_value('webminAttr');
4550                                 foreach my $la (@attrs) {
4551                                         my ($attr, $value) = split(/=/, $la, 2);
4552                                         if ($attr eq "cert" &&
4553                                             ($value eq $peername ||
4554                                              $value eq $peername2)) {
4555                                                 return $u->get_value('cn');
4556                                                 }
4557                                         }
4558                                 }
4559                         }
4560                 }
4561         }
4562 return undef;
4563 }
4564
4565 # connect_userdb(string)
4566 # Returns a handle for talking to a user database - may be a DBI or LDAP handle.
4567 # On failure returns an error message string. In an array context, returns the
4568 # protocol type too.
4569 sub connect_userdb
4570 {
4571 my ($str) = @_;
4572 my ($proto, $user, $pass, $host, $prefix, $args) = &split_userdb_string($str);
4573 if ($proto eq "mysql") {
4574         # Connect to MySQL with DBI
4575         my $drh = eval "use DBI; DBI->install_driver('mysql');";
4576         $drh || return $text{'sql_emysqldriver'};
4577         my ($host, $port) = split(/:/, $host);
4578         my $cstr = "database=$prefix;host=$host";
4579         $cstr .= ";port=$port" if ($port);
4580         print DEBUG "connect_userdb: Connecting to MySQL $cstr as $user\n";
4581         my $dbh = $drh->connect($cstr, $user, $pass, { });
4582         $dbh || return &text('sql_emysqlconnect', $drh->errstr);
4583         print DEBUG "connect_userdb: Connected OK\n";
4584         return wantarray ? ($dbh, $proto, $prefix, $args) : $dbh;
4585         }
4586 elsif ($proto eq "postgresql") {
4587         # Connect to PostgreSQL with DBI
4588         my $drh = eval "use DBI; DBI->install_driver('Pg');";
4589         $drh || return $text{'sql_epostgresqldriver'};
4590         my ($host, $port) = split(/:/, $host);
4591         my $cstr = "dbname=$prefix;host=$host";
4592         $cstr .= ";port=$port" if ($port);
4593         print DEBUG "connect_userdb: Connecting to PostgreSQL $cstr as $user\n";
4594         my $dbh = $drh->connect($cstr, $user, $pass);
4595         $dbh || return &text('sql_epostgresqlconnect', $drh->errstr);
4596         print DEBUG "connect_userdb: Connected OK\n";
4597         return wantarray ? ($dbh, $proto, $prefix, $args) : $dbh;
4598         }
4599 elsif ($proto eq "ldap") {
4600         # Connect with perl LDAP module
4601         eval "use Net::LDAP";
4602         $@ && return $text{'sql_eldapdriver'};
4603         my ($host, $port) = split(/:/, $host);
4604         my $scheme = $args->{'scheme'} || 'ldap';
4605         if (!$port) {
4606                 $port = $scheme eq 'ldaps' ? 636 : 389;
4607                 }
4608         my $ldap = Net::LDAP->new($host,
4609                                   port => $port,
4610                                   'scheme' => $scheme);
4611         $ldap || return &text('sql_eldapconnect', $host);
4612         my $mesg;
4613         if ($args->{'tls'}) {
4614                 # Switch to TLS mode
4615                 eval { $mesg = $ldap->start_tls(); };
4616                 if ($@ || !$mesg || $mesg->code) {
4617                         return &text('sql_eldaptls',
4618                             $@ ? $@ : $mesg ? $mesg->error : "Unknown error");
4619                         }
4620                 }
4621         # Login to the server
4622         if ($pass) {
4623                 $mesg = $ldap->bind(dn => $user, password => $pass);
4624                 }
4625         else {
4626                 $mesg = $ldap->bind(dn => $user, anonymous => 1);
4627                 }
4628         if (!$mesg || $mesg->code) {
4629                 return &text('sql_eldaplogin', $user,
4630                              $mesg ? $mesg->error : "Unknown error");
4631                 }
4632         return wantarray ? ($ldap, $proto, $prefix, $args) : $ldap;
4633         }
4634 else {
4635         return "Unknown protocol $proto";
4636         }
4637 }
4638
4639 # split_userdb_string(string)
4640 # Converts a string like mysql://user:pass@host/db into separate parts
4641 sub split_userdb_string
4642 {
4643 my ($str) = @_;
4644 if ($str =~ /^([a-z]+):\/\/([^:]*):([^\@]*)\@([a-z0-9\.\-\_]+)\/([^\?]+)(\?(.*))?$/) {
4645         my ($proto, $user, $pass, $host, $prefix, $argstr) =
4646                 ($1, $2, $3, $4, $5, $7);
4647         my %args = map { split(/=/, $_, 2) } split(/\&/, $argstr);
4648         return ($proto, $user, $pass, $host, $prefix, \%args);
4649         }
4650 return ( );
4651 }
4652
4653 # disconnect_userdb(string, &handle)
4654 # Closes a handle opened by connect_userdb
4655 sub disconnect_userdb
4656 {
4657 my ($str, $h) = @_;
4658 if ($str =~ /^(mysql|postgresql):/) {
4659         # DBI disconnnect
4660         $h->disconnect();
4661         }
4662 elsif ($str =~ /^ldap:/) {
4663         # LDAP disconnect
4664         $h->disconnect();
4665         }
4666 }
4667
4668 # read_mime_types()
4669 # Fills %mime with entries from file in %config and extra settings in %config
4670 sub read_mime_types
4671 {
4672 undef(%mime);
4673 if ($config{"mimetypes"} ne "") {
4674         open(MIME, $config{"mimetypes"});
4675         while(<MIME>) {
4676                 chop; s/#.*$//;
4677                 if (/^(\S+)\s+(.*)$/) {
4678                         my $type = $1;
4679                         my @exts = split(/\s+/, $2);
4680                         foreach my $ext (@exts) {
4681                                 $mime{$ext} = $type;
4682                                 }
4683                         }
4684                 }
4685         close(MIME);
4686         }
4687 foreach my $k (keys %config) {
4688         if ($k !~ /^addtype_(.*)$/) { next; }
4689         $mime{$1} = $config{$k};
4690         }
4691 }
4692
4693 # build_config_mappings()
4694 # Build the anonymous access list, IP access list, unauthenticated URLs list,
4695 # redirect mapping and allow and deny lists from %config
4696 sub build_config_mappings
4697 {
4698 # build anonymous access list
4699 undef(%anonymous);
4700 foreach my $a (split(/\s+/, $config{'anonymous'})) {
4701         if ($a =~ /^([^=]+)=(\S+)$/) {
4702                 $anonymous{$1} = $2;
4703                 }
4704         }
4705
4706 # build IP access list
4707 undef(%ipaccess);
4708 foreach my $a (split(/\s+/, $config{'ipaccess'})) {
4709         if ($a =~ /^([^=]+)=(\S+)$/) {
4710                 $ipaccess{$1} = $2;
4711                 }
4712         }
4713
4714 # build unauthenticated URLs list
4715 @unauth = split(/\s+/, $config{'unauth'});
4716
4717 # build redirect mapping
4718 undef(%redirect);
4719 foreach my $r (split(/\s+/, $config{'redirect'})) {
4720         if ($r =~ /^([^=]+)=(\S+)$/) {
4721                 $redirect{$1} = $2;
4722                 }
4723         }
4724
4725 # build prefixes to be stripped
4726 undef(@strip_prefix);
4727 foreach my $r (split(/\s+/, $config{'strip_prefix'})) {
4728         push(@strip_prefix, $r);
4729         }
4730
4731 # Init allow and deny lists
4732 @deny = split(/\s+/, $config{"deny"});
4733 @deny = &to_ipaddress(@deny) if (!$config{'alwaysresolve'});
4734 @allow = split(/\s+/, $config{"allow"});
4735 @allow = &to_ipaddress(@allow) if (!$config{'alwaysresolve'});
4736 undef(@allowusers);
4737 undef(@denyusers);
4738 if ($config{'allowusers'}) {
4739         @allowusers = split(/\s+/, $config{'allowusers'});
4740         }
4741 elsif ($config{'denyusers'}) {
4742         @denyusers = split(/\s+/, $config{'denyusers'});
4743         }
4744
4745 # Build list of unixauth mappings
4746 undef(%unixauth);
4747 foreach my $ua (split(/\s+/, $config{'unixauth'})) {
4748         if ($ua =~ /^(\S+)=(\S+)$/) {
4749                 $unixauth{$1} = $2;
4750                 }
4751         else {
4752                 $unixauth{"*"} = $ua;
4753                 }
4754         }
4755
4756 # Build list of non-session-auth pages
4757 undef(%sessiononly);
4758 foreach my $sp (split(/\s+/, $config{'sessiononly'})) {
4759         $sessiononly{$sp} = 1;
4760         }
4761
4762 # Build list of logout times
4763 undef(@logouttimes);
4764 foreach my $a (split(/\s+/, $config{'logouttimes'})) {
4765         if ($a =~ /^([^=]+)=(\S+)$/) {
4766                 push(@logouttimes, [ $1, $2 ]);
4767                 }
4768         }
4769 push(@logouttimes, [ undef, $config{'logouttime'} ]);
4770
4771 # Build list of DAV pathss
4772 undef(@davpaths);
4773 foreach my $d (split(/\s+/, $config{'davpaths'})) {
4774         push(@davpaths, $d);
4775         }
4776 @davusers = split(/\s+/, $config{'dav_users'});
4777
4778 # Mobile agent substrings and hostname prefixes
4779 @mobile_agents = split(/\t+/, $config{'mobile_agents'});
4780 @mobile_prefixes = split(/\s+/, $config{'mobile_prefixes'});
4781
4782 # Open debug log
4783 close(DEBUG);
4784 if ($config{'debug'}) {
4785         open(DEBUG, ">>$config{'debug'}");
4786         }
4787 else {
4788         open(DEBUG, ">/dev/null");
4789         }
4790
4791 # Reset cache of sudo checks
4792 undef(%sudocache);
4793 }
4794
4795 # is_group_member(&uinfo, groupname)
4796 # Returns 1 if some user is a primary or secondary member of a group
4797 sub is_group_member
4798 {
4799 local ($uinfo, $group) = @_;
4800 local @ginfo = getgrnam($group);
4801 return 0 if (!@ginfo);
4802 return 1 if ($ginfo[2] == $uinfo->[3]); # primary member
4803 foreach my $m (split(/\s+/, $ginfo[3])) {
4804         return 1 if ($m eq $uinfo->[0]);
4805         }
4806 return 0;
4807 }
4808
4809 # prefix_to_mask(prefix)
4810 # Converts a number like 24 to a mask like 255.255.255.0
4811 sub prefix_to_mask
4812 {
4813 return $_[0] >= 24 ? "255.255.255.".(256-(2 ** (32-$_[0]))) :
4814        $_[0] >= 16 ? "255.255.".(256-(2 ** (24-$_[0]))).".0" :
4815        $_[0] >= 8 ? "255.".(256-(2 ** (16-$_[0]))).".0.0" :
4816                      (256-(2 ** (8-$_[0]))).".0.0.0";
4817 }
4818
4819 # get_logout_time(user, session-id)
4820 # Given a username, returns the idle time before he will be logged out
4821 sub get_logout_time
4822 {
4823 local ($user, $sid) = @_;
4824 if (!defined($logout_time_cache{$user,$sid})) {
4825         local $time;
4826         foreach my $l (@logouttimes) {
4827                 if ($l->[0] =~ /^\@(.*)$/) {
4828                         # Check group membership
4829                         local @uinfo = getpwnam($user);
4830                         if (@uinfo && &is_group_member(\@uinfo, $1)) {
4831                                 $time = $l->[1];
4832                                 }
4833                         }
4834                 elsif ($l->[0] =~ /^\//) {
4835                         # Check file contents
4836                         open(FILE, $l->[0]);
4837                         while(<FILE>) {
4838                                 s/\r|\n//g;
4839                                 s/^\s*#.*$//;
4840                                 if ($user eq $_) {
4841                                         $time = $l->[1];
4842                                         last;
4843                                         }
4844                                 }
4845                         close(FILE);
4846                         }
4847                 elsif (!$l->[0]) {
4848                         # Always match
4849                         $time = $l->[1];
4850                         }
4851                 else {
4852                         # Check username
4853                         if ($l->[0] eq $user) {
4854                                 $time = $l->[1];
4855                                 }
4856                         }
4857                 last if (defined($time));
4858                 }
4859         $logout_time_cache{$user,$sid} = $time;
4860         }
4861 return $logout_time_cache{$user,$sid};
4862 }
4863
4864 # password_crypt(password, salt)
4865 # If the salt looks like MD5 and we have a library for it, perform MD5 hashing
4866 # of a password. Otherwise, do Unix crypt.
4867 sub password_crypt
4868 {
4869 local ($pass, $salt) = @_;
4870 if ($salt =~ /^\$1\$/ && $use_md5) {
4871         return &encrypt_md5($pass, $salt);
4872         }
4873 else {
4874         return &unix_crypt($pass, $salt);
4875         }
4876 }
4877
4878 # unix_crypt(password, salt)
4879 # Performs standard Unix hashing for a password
4880 sub unix_crypt
4881 {
4882 local ($pass, $salt) = @_;
4883 if ($use_perl_crypt) {
4884         return Crypt::UnixCrypt::crypt($pass, $salt);
4885         }
4886 else {
4887         return crypt($pass, $salt);
4888         }
4889 }
4890
4891 # handle_dav_request(davpath)
4892 # Pass a request on to the Net::DAV::Server module
4893 sub handle_dav_request
4894 {
4895 local ($path) = @_;
4896 eval "use Filesys::Virtual::Plain";
4897 eval "use Net::DAV::Server";
4898 eval "use HTTP::Request";
4899 eval "use HTTP::Headers";
4900
4901 if ($Net::DAV::Server::VERSION eq '1.28' && $config{'dav_nolock'}) {
4902         delete $Net::DAV::Server::implemented{lock};
4903         delete $Net::DAV::Server::implemented{unlock};
4904         }
4905
4906 # Read in request data
4907 if (!$posted_data) {
4908         local $clen = $header{"content-length"};
4909         while(length($posted_data) < $clen) {
4910                 $buf = &read_data($clen - length($posted_data));
4911                 if (!length($buf)) {
4912                         &http_error(500, "Failed to read POST request");
4913                         }
4914                 $posted_data .= $buf;
4915                 }
4916         }
4917
4918 # For subsequent logging
4919 open(MINISERVLOG, ">>$config{'logfile'}");
4920
4921 # Switch to user
4922 local $root;
4923 local @u = getpwnam($authuser);
4924 if ($config{'dav_remoteuser'} && !$< && $validated) {
4925         if (@u) {
4926                 if ($u[2] != 0) {
4927                         $( = $u[3]; $) = "$u[3] $u[3]";
4928                         ($>, $<) = ($u[2], $u[2]);
4929                         }
4930                 if ($config{'dav_root'} eq '*') {
4931                         $root = $u[7];
4932                         }
4933                 }
4934         else {
4935                 &http_error(500, "Unix user $authuser does not exist");
4936                 return 0;
4937                 }
4938         }
4939 $root ||= $config{'dav_root'};
4940 $root ||= "/";
4941
4942 # Check if this user can use DAV
4943 if (@davusers) {
4944         &users_match(\@u, @davusers) ||
4945                 &http_error(500, "You are not allowed to access DAV");
4946         }
4947
4948 # Create DAV server
4949 my $filesys = Filesys::Virtual::Plain->new({root_path => $root});
4950 my $webdav = Net::DAV::Server->new();
4951 $webdav->filesys($filesys);
4952
4953 # Make up a request object, and feed to DAV
4954 local $ho = HTTP::Headers->new;
4955 foreach my $h (keys %header) {
4956         next if (lc($h) eq "connection");
4957         $ho->header($h => $header{$h});
4958         }
4959 if ($path ne "/") {
4960         $request_uri =~ s/^\Q$path\E//;
4961         $request_uri = "/" if ($request_uri eq "");
4962         }
4963 my $request = HTTP::Request->new($method, $request_uri, $ho,
4964                                  $posted_data);
4965 if ($config{'dav_debug'}) {
4966         print STDERR "DAV request :\n";
4967         print STDERR "---------------------------------------------\n";
4968         print STDERR $request->as_string();
4969         print STDERR "---------------------------------------------\n";
4970         }
4971 my $response = $webdav->run($request);
4972
4973 # Send back the reply
4974 &write_data("HTTP/1.1 ",$response->code()," ",$response->message(),"\r\n");
4975 local $content = $response->content();
4976 if ($path ne "/") {
4977         $content =~ s|href>/(.+)<|href>$path/$1<|g;
4978         $content =~ s|href>/<|href>$path<|g;
4979         }
4980 foreach my $h ($response->header_field_names) {
4981         next if (lc($h) eq "connection" || lc($h) eq "content-length");
4982         &write_data("$h: ",$response->header($h),"\r\n");
4983         }
4984 &write_data("Content-length: ",length($content),"\r\n");
4985 local $rv = &write_keep_alive(0);
4986 &write_data("\r\n");
4987 &write_data($content);
4988
4989 if ($config{'dav_debug'}) {
4990         print STDERR "DAV reply :\n";
4991         print STDERR "---------------------------------------------\n";
4992         print STDERR "HTTP/1.1 ",$response->code()," ",$response->message(),"\r\n";
4993         foreach my $h ($response->header_field_names) {
4994                 next if (lc($h) eq "connection" || lc($h) eq "content-length");
4995                 print STDERR "$h: ",$response->header($h),"\r\n";
4996                 }
4997         print STDERR "Content-length: ",length($content),"\r\n";
4998         print STDERR "\r\n";
4999         print STDERR $content;
5000         print STDERR "---------------------------------------------\n";
5001         }
5002
5003 # Log it
5004 &log_request($acpthost, $authuser, $reqline, $response->code(), 
5005              length($response->content()));
5006 }
5007
5008 # get_system_hostname()
5009 # Returns the hostname of this system, for reporting to listeners
5010 sub get_system_hostname
5011 {
5012 # On Windows, try computername environment variable
5013 return $ENV{'computername'} if ($ENV{'computername'});
5014 return $ENV{'COMPUTERNAME'} if ($ENV{'COMPUTERNAME'});
5015
5016 # If a specific command is set, use it first
5017 if ($config{'hostname_command'}) {
5018         local $out = `($config{'hostname_command'}) 2>&1`;
5019         if (!$?) {
5020                 $out =~ s/\r|\n//g;
5021                 return $out;
5022                 }
5023         }
5024
5025 # First try the hostname command
5026 local $out = `hostname 2>&1`;
5027 if (!$? && $out =~ /\S/) {
5028         $out =~ s/\r|\n//g;
5029         return $out;
5030         }
5031
5032 # Try the Sys::Hostname module
5033 eval "use Sys::Hostname";
5034 if (!$@) {
5035         local $rv = eval "hostname()";
5036         if (!$@ && $rv) {
5037                 return $rv;
5038                 }
5039         }
5040
5041 # Must use net name on Windows
5042 local $out = `net name 2>&1`;
5043 if ($out =~ /\-+\r?\n(\S+)/) {
5044         return $1;
5045         }
5046
5047 return undef;
5048 }
5049
5050 # indexof(string, array)
5051 # Returns the index of some value in an array, or -1
5052 sub indexof {
5053   local($i);
5054   for($i=1; $i <= $#_; $i++) {
5055     if ($_[$i] eq $_[0]) { return $i - 1; }
5056   }
5057   return -1;
5058 }
5059
5060
5061 # has_command(command)
5062 # Returns the full path if some command is in the path, undef if not
5063 sub has_command
5064 {
5065 local($d);
5066 if (!$_[0]) { return undef; }
5067 if (exists($has_command_cache{$_[0]})) {
5068         return $has_command_cache{$_[0]};
5069         }
5070 local $rv = undef;
5071 if ($_[0] =~ /^\//) {
5072         $rv = -x $_[0] ? $_[0] : undef;
5073         }
5074 else {
5075         local $sp = $on_windows ? ';' : ':';
5076         foreach $d (split($sp, $ENV{PATH})) {
5077                 if (-x "$d/$_[0]") {
5078                         $rv = "$d/$_[0]";
5079                         last;
5080                         }
5081                 if ($on_windows) {
5082                         foreach my $sfx (".exe", ".com", ".bat") {
5083                                 if (-r "$d/$_[0]".$sfx) {
5084                                         $rv = "$d/$_[0]".$sfx;
5085                                         last;
5086                                         }
5087                                 }
5088                         }
5089                 }
5090         }
5091 $has_command_cache{$_[0]} = $rv;
5092 return $rv;
5093 }
5094
5095 # check_sudo_permissions(user, pass)
5096 # Returns 1 if some user can run any command via sudo
5097 sub check_sudo_permissions
5098 {
5099 local ($user, $pass) = @_;
5100
5101 # First try the pipes
5102 if ($PASSINw) {
5103         print DEBUG "check_sudo_permissions: querying cache for $user\n";
5104         print $PASSINw "readsudo $user\n";
5105         local $can = <$PASSOUTr>;
5106         chop($can);
5107         print DEBUG "check_sudo_permissions: cache said $can\n";
5108         if ($can =~ /^\d+$/ && $can != 2) {
5109                 return int($can);
5110                 }
5111         }
5112
5113 local $ptyfh = new IO::Pty;
5114 print DEBUG "check_sudo_permissions: ptyfh=$ptyfh\n";
5115 if (!$ptyfh) {
5116         print STDERR "Failed to create new PTY with IO::Pty\n";
5117         return 0;
5118         }
5119 local @uinfo = getpwnam($user);
5120 if (!@uinfo) {
5121         print STDERR "Unix user $user does not exist for sudo\n";
5122         return 0;
5123         }
5124
5125 # Execute sudo in a sub-process, via a pty
5126 local $ttyfh = $ptyfh->slave();
5127 print DEBUG "check_sudo_permissions: ttyfh=$ttyfh\n";
5128 local $tty = $ptyfh->ttyname();
5129 print DEBUG "check_sudo_permissions: tty=$tty\n";
5130 chown($uinfo[2], $uinfo[3], $tty);
5131 pipe(SUDOr, SUDOw);
5132 print DEBUG "check_sudo_permissions: about to fork..\n";
5133 local $pid = fork();
5134 print DEBUG "check_sudo_permissions: fork=$pid pid=$$\n";
5135 if ($pid < 0) {
5136         print STDERR "fork for sudo failed : $!\n";
5137         return 0;
5138         }
5139 if (!$pid) {
5140         setsid();
5141         $ptyfh->make_slave_controlling_terminal();
5142         close(STDIN); close(STDOUT); close(STDERR);
5143         untie(*STDIN); untie(*STDOUT); untie(*STDERR);
5144         close($PASSINw); close($PASSOUTr);
5145         $( = $uinfo[3]; $) = "$uinfo[3] $uinfo[3]";
5146         ($>, $<) = ($uinfo[2], $uinfo[2]);
5147
5148         close(SUDOw);
5149         close(SOCK);
5150         close(MAIN);
5151         open(STDIN, "<&SUDOr");
5152         open(STDOUT, ">$tty");
5153         open(STDERR, ">&STDOUT");
5154         close($ptyfh);
5155         exec("sudo -l -S");
5156         print "Exec failed : $!\n";
5157         exit 1;
5158         }
5159 print DEBUG "check_sudo_permissions: pid=$pid\n";
5160 close(SUDOr);
5161 $ptyfh->close_slave();
5162
5163 # Send password, and get back response
5164 local $oldfh = select(SUDOw);
5165 $| = 1;
5166 select($oldfh);
5167 print DEBUG "check_sudo_permissions: about to send pass\n";
5168 local $SIG{'PIPE'} = 'ignore';  # Sometimes sudo doesn't ask for a password
5169 print SUDOw $pass,"\n";
5170 print DEBUG "check_sudo_permissions: sent pass=$pass\n";
5171 close(SUDOw);
5172 local $out;
5173 while(<$ptyfh>) {
5174         print DEBUG "check_sudo_permissions: got $_";
5175         $out .= $_;
5176         }
5177 close($ptyfh);
5178 kill('KILL', $pid);
5179 waitpid($pid, 0);
5180 local ($ok) = ($out =~ /\(ALL\)\s+ALL|\(ALL\)\s+NOPASSWD:\s+ALL/ ? 1 : 0);
5181
5182 # Update cache
5183 if ($PASSINw) {
5184         print $PASSINw "writesudo $user $ok\n";
5185         }
5186
5187 return $ok;
5188 }
5189
5190 # is_mobile_useragent(agent)
5191 # Returns 1 if some user agent looks like a cellphone or other mobile device,
5192 # such as a treo.
5193 sub is_mobile_useragent
5194 {
5195 local ($agent) = @_;
5196 local @prefixes = ( 
5197     "UP.Link",    # Openwave
5198     "Nokia",      # All Nokias start with Nokia
5199     "MOT-",       # All Motorola phones start with MOT-
5200     "SAMSUNG",    # Samsung browsers
5201     "Samsung",    # Samsung browsers
5202     "SEC-",       # Samsung browsers
5203     "AU-MIC",     # Samsung browsers
5204     "AUDIOVOX",   # Audiovox
5205     "BlackBerry", # BlackBerry
5206     "hiptop",     # Danger hiptop Sidekick
5207     "SonyEricsson", # Sony Ericsson
5208     "Ericsson",     # Old Ericsson browsers , mostly WAP
5209     "Mitsu/1.1.A",  # Mitsubishi phones
5210     "Panasonic WAP", # Panasonic old WAP phones
5211     "DoCoMo",     # DoCoMo phones
5212     "Lynx",       # Lynx text-mode linux browser
5213     "Links",      # Another text-mode linux browser
5214     );
5215 local @substrings = (
5216     "UP.Browser",         # Openwave
5217     "MobilePhone",        # NetFront
5218     "AU-MIC-A700",        # Samsung A700 Obigo browsers
5219     "Danger hiptop",      # Danger Sidekick hiptop
5220     "Windows CE",         # Windows CE Pocket PC
5221     "IEMobile",           # Windows mobile browser
5222     "Blazer",             # Palm Treo Blazer
5223     "BlackBerry",         # BlackBerries can emulate other browsers, but
5224                           # they still keep this string in the UserAgent
5225     "SymbianOS",          # New Series60 browser has safari in it and
5226                           # SymbianOS is the only distinguishing string
5227     "iPhone",             # Apple iPhone KHTML browser
5228     "iPod",               # iPod touch browser
5229     "MobileSafari",       # HTTP client in iPhone
5230     "Android",            # gPhone
5231     "Opera Mini",         # Opera Mini
5232     "HTC_P3700",          # HTC mobile device
5233     "Pre/",               # Palm Pre
5234     "webOS/",             # Palm WebOS
5235     "Nintendo DS",        # DSi / DSi-XL
5236     );
5237 foreach my $p (@prefixes) {
5238         return 1 if ($agent =~ /^\Q$p\E/);
5239         }
5240 foreach my $s (@substrings, @mobile_agents) {
5241         return 1 if ($agent =~ /\Q$s\E/);
5242         }
5243 return 0;
5244 }
5245
5246 # write_blocked_file()
5247 # Writes out a text file of blocked hosts and users
5248 sub write_blocked_file
5249 {
5250 open(BLOCKED, ">$config{'blockedfile'}");
5251 foreach my $d (grep { $hostfail{$_} } @deny) {
5252         print BLOCKED "host $d $hostfail{$d} $blockhosttime{$d}\n";
5253         }
5254 foreach my $d (grep { $userfail{$_} } @denyusers) {
5255         print BLOCKED "user $d $userfail{$d} $blockusertime{$d}\n";
5256         }
5257 close(BLOCKED);
5258 chmod(0700, $config{'blockedfile'});
5259 }
5260
5261 sub write_pid_file
5262 {
5263 open(PIDFILE, ">$config{'pidfile'}");
5264 printf PIDFILE "%d\n", getpid();
5265 close(PIDFILE);
5266 $miniserv_main_pid = getpid();
5267 }
5268
5269 # lock_user_password(user)
5270 # Updates a user's password file entry to lock it, both in memory and on disk.
5271 # Returns 1 if done, -1 if no such user, 0 if already locked
5272 sub lock_user_password
5273 {
5274 local ($user) = @_;
5275 local $uinfo = &get_user_details($user);
5276 if (!$uinfo) {
5277         # No such user!
5278         return -1;
5279         }
5280 if ($uinfo->{'pass'} =~ /^\!/) {
5281         # Already locked
5282         return 0;
5283         }
5284 if (!$uinfo->{'proto'}) {
5285         # Write to users file
5286         $users{$user} = "!".$users{$user};
5287         open(USERS, $config{'userfile'});
5288         local @ufile = <USERS>;
5289         close(USERS);
5290         foreach my $u (@ufile) {
5291                 local @uinfo = split(/:/, $u);
5292                 if ($uinfo[0] eq $user) {
5293                         $uinfo[1] = $users{$user};
5294                         }
5295                 $u = join(":", @uinfo);
5296                 }
5297         open(USERS, ">$config{'userfile'}");
5298         print USERS @ufile;
5299         close(USERS);
5300         return 0;
5301         }
5302
5303 if ($config{'userdb'}) {
5304         # Update user DB
5305         my ($dbh, $proto, $prefix, $args) = &connect_userdb($config{'userdb'});
5306         if (!$dbh) {
5307                 return -1;
5308                 }
5309         elsif ($proto eq "mysql" || $proto eq "postgresql") {
5310                 # Update user attribute
5311                 my $cmd = $dbh->prepare(
5312                         "update webmin_user set pass = ? where id = ?");
5313                 if (!$cmd || !$cmd->execute("!".$uinfo->{'pass'},
5314                                             $uinfo->{'id'})) {
5315                         # Update failed
5316                         print STDERR "Failed to lock password : ",
5317                                      $dbh->errstr,"\n";
5318                         return -1;
5319                         }
5320                 $cmd->finish() if ($cmd);
5321                 }
5322         elsif ($proto eq "ldap") {
5323                 # Update LDAP object
5324                 my $rv = $dbh->modify($uinfo->{'id'},
5325                       replace => { 'webminPass' => '!'.$uinfo->{'pass'} });
5326                 if (!$rv || $rv->code) {
5327                         print STDERR "Failed to lock password : ",
5328                                      ($rv ? $rv->error : "Unknown error"),"\n";
5329                         return -1;
5330                         }
5331                 }
5332         &disconnect_userdb($config{'userdb'}, $dbh);
5333         return 0;
5334         }
5335
5336 return -1;      # This should never be reached
5337 }
5338
5339 # hash_session_id(sid)
5340 # Returns an MD5 or Unix-crypted session ID
5341 sub hash_session_id
5342 {
5343 local ($sid) = @_;
5344 if (!$hash_session_id_cache{$sid}) {
5345         if ($use_md5) {
5346                 # Take MD5 hash
5347                 $hash_session_id_cache{$sid} = &encrypt_md5($sid);
5348                 }
5349         else {
5350                 # Unix crypt
5351                 $hash_session_id_cache{$sid} = &unix_crypt($sid, "XX");
5352                 }
5353         }
5354 return $hash_session_id_cache{$sid};
5355 }
5356
5357 # encrypt_md5(string, [salt])
5358 # Returns a string encrypted in MD5 format
5359 sub encrypt_md5
5360 {
5361 local ($passwd, $salt) = @_;
5362 local $magic = '$1$';
5363 if ($salt =~ /^\$1\$([^\$]+)/) {
5364         # Extract actual salt from already encrypted password
5365         $salt = $1;
5366         }
5367
5368 # Add the password
5369 local $ctx = eval "new $use_md5";
5370 $ctx->add($passwd);
5371 if ($salt) {
5372         $ctx->add($magic);
5373         $ctx->add($salt);
5374         }
5375
5376 # Add some more stuff from the hash of the password and salt
5377 local $ctx1 = eval "new $use_md5";
5378 $ctx1->add($passwd);
5379 if ($salt) {
5380         $ctx1->add($salt);
5381         }
5382 $ctx1->add($passwd);
5383 local $final = $ctx1->digest();
5384 for($pl=length($passwd); $pl>0; $pl-=16) {
5385         $ctx->add($pl > 16 ? $final : substr($final, 0, $pl));
5386         }
5387
5388 # This piece of code seems rather pointless, but it's in the C code that
5389 # does MD5 in PAM so it has to go in!
5390 local $j = 0;
5391 local ($i, $l);
5392 for($i=length($passwd); $i; $i >>= 1) {
5393         if ($i & 1) {
5394                 $ctx->add("\0");
5395                 }
5396         else {
5397                 $ctx->add(substr($passwd, $j, 1));
5398                 }
5399         }
5400 $final = $ctx->digest();
5401
5402 if ($salt) {
5403         # This loop exists only to waste time
5404         for($i=0; $i<1000; $i++) {
5405                 $ctx1 = eval "new $use_md5";
5406                 $ctx1->add($i & 1 ? $passwd : $final);
5407                 $ctx1->add($salt) if ($i % 3);
5408                 $ctx1->add($passwd) if ($i % 7);
5409                 $ctx1->add($i & 1 ? $final : $passwd);
5410                 $final = $ctx1->digest();
5411                 }
5412         }
5413
5414 # Convert the 16-byte final string into a readable form
5415 local $rv;
5416 local @final = map { ord($_) } split(//, $final);
5417 $l = ($final[ 0]<<16) + ($final[ 6]<<8) + $final[12];
5418 $rv .= &to64($l, 4);
5419 $l = ($final[ 1]<<16) + ($final[ 7]<<8) + $final[13];
5420 $rv .= &to64($l, 4);
5421 $l = ($final[ 2]<<16) + ($final[ 8]<<8) + $final[14];
5422 $rv .= &to64($l, 4);
5423 $l = ($final[ 3]<<16) + ($final[ 9]<<8) + $final[15];
5424 $rv .= &to64($l, 4);
5425 $l = ($final[ 4]<<16) + ($final[10]<<8) + $final[ 5];
5426 $rv .= &to64($l, 4);
5427 $l = $final[11];
5428 $rv .= &to64($l, 2);
5429
5430 # Add salt if needed
5431 if ($salt) {
5432         return $magic.$salt.'$'.$rv;
5433         }
5434 else {
5435         return $rv;
5436         }
5437 }
5438
5439 sub to64
5440 {
5441 local ($v, $n) = @_;
5442 local $r;
5443 while(--$n >= 0) {
5444         $r .= $itoa64[$v & 0x3f];
5445         $v >>= 6;
5446         }
5447 return $r;
5448 }
5449
5450 # read_file(file, &assoc, [&order], [lowercase])
5451 # Fill an associative array with name=value pairs from a file
5452 sub read_file
5453 {
5454 open(ARFILE, $_[0]) || return 0;
5455 while(<ARFILE>) {
5456         s/\r|\n//g;
5457         if (!/^#/ && /^([^=]*)=(.*)$/) {
5458                 $_[1]->{$_[3] ? lc($1) : $1} = $2;
5459                 push(@{$_[2]}, $1) if ($_[2]);
5460                 }
5461         }
5462 close(ARFILE);
5463 return 1;
5464 }
5465  
5466 # write_file(file, array)
5467 # Write out the contents of an associative array as name=value lines
5468 sub write_file
5469 {
5470 local(%old, @order);
5471 &read_file($_[0], \%old, \@order);
5472 open(ARFILE, ">$_[0]");
5473 foreach $k (@order) {
5474         print ARFILE $k,"=",$_[1]->{$k},"\n" if (exists($_[1]->{$k}));
5475         }
5476 foreach $k (keys %{$_[1]}) {
5477         print ARFILE $k,"=",$_[1]->{$k},"\n" if (!exists($old{$k}));
5478         }
5479 close(ARFILE);
5480 }
5481
5482 # execute_ready_webmin_crons()
5483 # Find and run any cron jobs that are due, based on their last run time and
5484 # execution interval
5485 sub execute_ready_webmin_crons
5486 {
5487 my $now = time();
5488 my $changed = 0;
5489 foreach my $cron (@webmincrons) {
5490         my $run = 0;
5491         if (!$webmincron_last{$cron->{'id'}}) {
5492                 # If not ever run before, don't run right away
5493                 $webmincron_last{$cron->{'id'}} = $now;
5494                 $changed = 1;
5495                 }
5496         elsif ($cron->{'interval'} &&
5497                $now - $webmincron_last{$cron->{'id'}} > $cron->{'interval'}) {
5498                 # Older than interval .. time to run
5499                 $run = 1;
5500                 }
5501         elsif ($cron->{'mins'}) {
5502                 # Check if current time matches spec, and we haven't run in the
5503                 # last minute
5504                 my @tm = localtime($now);
5505                 if (&matches_cron($cron->{'mins'}, $tm[1]) &&
5506                     &matches_cron($cron->{'hours'}, $tm[2]) &&
5507                     &matches_cron($cron->{'days'}, $tm[3]) &&
5508                     &matches_cron($cron->{'months'}, $tm[4]+1) &&
5509                     &matches_cron($cron->{'weekdays'}, $tm[6]) &&
5510                     $now - $webmincron_last{$cron->{'id'}} > 60) {
5511                         $run = 1;
5512                         }
5513                 }
5514
5515         if ($run) {
5516                 print DEBUG "Running cron id=$cron->{'id'} ".
5517                             "module=$cron->{'module'} func=$cron->{'func'}\n";
5518                 $webmincron_last{$cron->{'id'}} = $now;
5519                 $changed = 1;
5520                 my $pid = fork();
5521                 if (!$pid) {
5522                         # Run via a wrapper command, which we run like a CGI
5523                         dbmclose(%sessiondb);
5524
5525                         # Setup CGI-like environment
5526                         $envtz = $ENV{"TZ"};
5527                         $envuser = $ENV{"USER"};
5528                         $envpath = $ENV{"PATH"};
5529                         $envlang = $ENV{"LANG"};
5530                         $envroot = $ENV{"SystemRoot"};
5531                         $envperllib = $ENV{'PERLLIB'};
5532                         foreach my $k (keys %ENV) {
5533                                 delete($ENV{$k});
5534                                 }
5535                         $ENV{"PATH"} = $envpath if ($envpath);
5536                         $ENV{"TZ"} = $envtz if ($envtz);
5537                         $ENV{"USER"} = $envuser if ($envuser);
5538                         $ENV{"OLD_LANG"} = $envlang if ($envlang);
5539                         $ENV{"SystemRoot"} = $envroot if ($envroot);
5540                         $ENV{'PERLLIB'} = $envperllib if ($envperllib);
5541                         $ENV{"HOME"} = $user_homedir;
5542                         $ENV{"SERVER_SOFTWARE"} = $config{"server"};
5543                         $ENV{"SERVER_ADMIN"} = $config{"email"};
5544                         $root0 = $roots[0];
5545                         $ENV{"SERVER_ROOT"} = $root0;
5546                         $ENV{"SERVER_REALROOT"} = $root0;
5547                         $ENV{"SERVER_PORT"} = $config{'port'};
5548                         $ENV{"WEBMIN_CRON"} = 1;
5549                         $ENV{"DOCUMENT_ROOT"} = $root0;
5550                         $ENV{"DOCUMENT_REALROOT"} = $root0;
5551                         $ENV{"MINISERV_CONFIG"} = $config_file;
5552                         $ENV{"HTTPS"} = "ON" if ($use_ssl);
5553                         $ENV{"MINISERV_PID"} = $miniserv_main_pid;
5554                         $ENV{"SCRIPT_FILENAME"} = $config{'webmincron_wrapper'};
5555                         if ($ENV{"SCRIPT_FILENAME"} =~ /^\Q$root0\E(\/.*)$/) {
5556                                 $ENV{"SCRIPT_NAME"} = $1;
5557                                 }
5558                         $config{'webmincron_wrapper'} =~ /^(.*)\//;
5559                         $ENV{"PWD"} = $1;
5560                         foreach $k (keys %config) {
5561                                 if ($k =~ /^env_(\S+)$/) {
5562                                         $ENV{$1} = $config{$k};
5563                                         }
5564                                 }
5565                         chdir($ENV{"PWD"});
5566                         $SIG{'CHLD'} = 'DEFAULT';
5567                         eval {
5568                                 # Have SOCK closed if the perl exec's something
5569                                 use Fcntl;
5570                                 fcntl(SOCK, F_SETFD, FD_CLOEXEC);
5571                                 };
5572
5573                         # Run the wrapper script by evaling it
5574                         $pkg = "webmincron";
5575                         $0 = $config{'webmincron_wrapper'};
5576                         @ARGV = ( $cron );
5577                         $main_process_id = $$;
5578                         eval "
5579                                 \%pkg::ENV = \%ENV;
5580                                 package $pkg;
5581                                 do \$miniserv::config{'webmincron_wrapper'};
5582                                 die \$@ if (\$@);
5583                                 ";
5584                         if ($@) {
5585                                 print STDERR "Perl cron failure : $@\n";
5586                                 }
5587
5588                         exit(0);
5589                         }
5590                 push(@childpids, $pid);
5591                 }
5592         }
5593 if ($changed) {
5594         # Write out file containing last run times
5595         &write_file($config{'webmincron_last'}, \%webmincron_last);
5596         }
5597 }
5598
5599 # matches_cron(cron-spec, time)
5600 # Checks if some minute or hour matches some cron spec, which can be * or a list
5601 # of numbers.
5602 sub matches_cron
5603 {
5604 my ($spec, $tm) = @_;
5605 if ($spec eq '*') {
5606         return 1;
5607         }
5608 else {
5609         foreach my $s (split(/,/, $spec)) {
5610                 if ($s == $tm ||
5611                     $s =~ /^(\d+)\-(\d+)$/ && $tm >= $1 && $tm <= $2) {
5612                         return 1;
5613                         }
5614                 }
5615         return 0;
5616         }
5617 }
5618
5619 # read_webmin_crons()
5620 # Read all scheduled webmin cron functions and store them in the @webmincrons
5621 # global list
5622 sub read_webmin_crons
5623 {
5624 @webmincrons = ( );
5625 opendir(CRONS, $config{'webmincron_dir'});
5626 print DEBUG "Reading crons from $config{'webmincron_dir'}\n";
5627 foreach my $f (readdir(CRONS)) {
5628         if ($f =~ /^(\d+)\.cron$/) {
5629                 my %cron;
5630                 &read_file("$config{'webmincron_dir'}/$f", \%cron);
5631                 $cron{'id'} = $1;
5632                 my $broken = 0;
5633                 foreach my $n ('module', 'func') {
5634                         if (!$cron{$n}) {
5635                                 print STDERR "Cron $1 missing $n\n";
5636                                 $broken = 1;
5637                                 }
5638                         }
5639                 if (!$cron{'interval'} && !$cron{'mins'} && !$cron{'special'}) {
5640                         print STDERR "Cron $1 missing any time spec\n";
5641                         $broken = 1;
5642                         }
5643                 if ($cron{'special'} eq 'hourly') {
5644                         # Run every hour on the hour
5645                         $cron{'mins'} = 0;
5646                         $cron{'hours'} = '*';
5647                         $cron{'days'} = '*';
5648                         $cron{'months'} = '*';
5649                         $cron{'weekdays'} = '*';
5650                         }
5651                 elsif ($cron{'special'} eq 'daily') {
5652                         # Run every day at midnight
5653                         $cron{'mins'} = 0;
5654                         $cron{'hours'} = '0';
5655                         $cron{'days'} = '*';
5656                         $cron{'months'} = '*';
5657                         $cron{'weekdays'} = '*';
5658                         }
5659                 elsif ($cron{'special'} eq 'monthly') {
5660                         # Run every month on the 1st
5661                         $cron{'mins'} = 0;
5662                         $cron{'hours'} = '0';
5663                         $cron{'days'} = '1';
5664                         $cron{'months'} = '*';
5665                         $cron{'weekdays'} = '*';
5666                         }
5667                 elsif ($cron{'special'} eq 'weekly') {
5668                         # Run every month on the 1st
5669                         $cron{'mins'} = 0;
5670                         $cron{'hours'} = '0';
5671                         $cron{'days'} = '*';
5672                         $cron{'months'} = '*';
5673                         $cron{'weekdays'} = '0';
5674                         }
5675                 elsif ($cron{'special'} eq 'yearly' ||
5676                        $cron{'special'} eq 'annually') {
5677                         # Run every year on 1st january
5678                         $cron{'mins'} = 0;
5679                         $cron{'hours'} = '0';
5680                         $cron{'days'} = '1';
5681                         $cron{'months'} = '1';
5682                         $cron{'weekdays'} = '*';
5683                         }
5684                 elsif ($cron{'special'}) {
5685                         print STDERR "Cron $1 invalid special time $cron{'special'}\n";
5686                         $broken = 1;
5687                         }
5688                 if ($cron{'special'}) {
5689                         delete($cron{'special'});
5690                         }
5691                 if (!$broken) {
5692                         print DEBUG "adding cron id=$cron{'id'} module=$cron{'module'} func=$cron{'func'}\n";
5693                         push(@webmincrons, \%cron);
5694                         }
5695                 }
5696         }
5697 }
5698
5699 # precache_files()
5700 # Read into the Webmin cache all files marked for pre-caching
5701 sub precache_files
5702 {
5703 undef(%main::read_file_cache);
5704 foreach my $g (split(/\s+/, $config{'precache'})) {
5705         next if ($g eq "none");
5706         foreach my $f (glob("$config{'root'}/$g")) {
5707                 my @st = stat($f);
5708                 next if (!@st);
5709                 $main::read_file_cache{$f} = { };
5710                 &read_file($f, $main::read_file_cache{$f});
5711                 $main::read_file_cache_time{$f} = $st[9];
5712                 }
5713         }
5714 }
5715
5716 # Check if some address is valid IPv4, returns 1 if so.
5717 sub check_ipaddress
5718 {
5719 return $_[0] =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ &&
5720         $1 >= 0 && $1 <= 255 &&
5721         $2 >= 0 && $2 <= 255 &&
5722         $3 >= 0 && $3 <= 255 &&
5723         $4 >= 0 && $4 <= 255;
5724 }
5725
5726 # Check if some IPv6 address is properly formatted, and returns 1 if so.
5727 sub check_ip6address
5728 {
5729   my @blocks = split(/:/, $_[0]);
5730   return 0 if (@blocks == 0 || @blocks > 8);
5731   my $ib = $#blocks;
5732   my $where = index($blocks[$ib],"/");
5733   my $m = 0;
5734   if ($where != -1) {
5735     my $b = substr($blocks[$ib],0,$where);
5736     $m = substr($blocks[$ib],$where+1,length($blocks[$ib])-($where+1));
5737     $blocks[$ib]=$b;
5738   }
5739   return 0 if ($m <0 || $m >128); 
5740   my $b;
5741   my $empty = 0;
5742   foreach $b (@blocks) {
5743           return 0 if ($b ne "" && $b !~ /^[0-9a-f]{1,4}$/i);
5744           $empty++ if ($b eq "");
5745           }
5746   return 0 if ($empty > 1 && !($_[0] =~ /^::/ && $empty == 2));
5747   return 1;
5748 }
5749
5750 # network_to_address(binary)
5751 # Given a network address in binary IPv4 or v4 format, return the string form
5752 sub network_to_address
5753 {
5754 local ($addr) = @_;
5755 if (length($addr) == 4 || !$use_ipv6) {
5756         return inet_ntoa($addr);
5757         }
5758 else {
5759         return Socket6::inet_ntop(Socket6::AF_INET6(), $addr);
5760         }
5761 }
5762
5763 # redirect_stderr_to_log()
5764 # Re-direct STDERR to error log file
5765 sub redirect_stderr_to_log
5766 {
5767 if ($config{'errorlog'} ne '-') {
5768         open(STDERR, ">>$config{'errorlog'}") ||
5769                 die "failed to open $config{'errorlog'} : $!";
5770         if ($config{'logperms'}) {
5771                 chmod(oct($config{'logperms'}), $config{'errorlog'});
5772                 }
5773         }
5774 select(STDERR); $| = 1; select(STDOUT);
5775 }
5776
5777 # should_gzip_file(filename)
5778 # Returns 1 if some path should be gzipped
5779 sub should_gzip_file
5780 {
5781 my ($path) = @_;
5782 return $path !~ /\.(gif|png|jpg|jpeg|tif|tiff)$/i;
5783 }
5784