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