Support for temporary passwords which must be changed at the next login
[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                                 else {
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 kill('KILL', $logclearer) if ($logclearer);
2492 kill('KILL', $extauth) if ($extauth);
2493 exec($perl_path, $miniserv_path, @miniserv_argv);
2494 die "Failed to restart miniserv with $perl_path $miniserv_path";
2495 }
2496
2497 sub trigger_restart
2498 {
2499 $need_restart = 1;
2500 }
2501
2502 sub trigger_reload
2503 {
2504 $need_reload = 1;
2505 }
2506
2507 sub to_ipaddress
2508 {
2509 local (@rv, $i);
2510 foreach $i (@_) {
2511         if ($i =~ /(\S+)\/(\S+)/ || $i =~ /^\*\S+$/ ||
2512             $i eq 'LOCAL' || $i =~ /^[0-9\.]+$/) { push(@rv, $i); }
2513         else { push(@rv, join('.', unpack("CCCC", inet_aton($i)))); }
2514         }
2515 return wantarray ? @rv : $rv[0];
2516 }
2517
2518 # read_line(no-wait, no-limit)
2519 # Reads one line from SOCK or SSL
2520 sub read_line
2521 {
2522 local ($nowait, $nolimit) = @_;
2523 local($idx, $more, $rv);
2524 while(($idx = index($main::read_buffer, "\n")) < 0) {
2525         if (length($main::read_buffer) > 10000 && !$nolimit) {
2526                 &http_error(414, "Request too long",
2527                     "Received excessive line <pre>$main::read_buffer</pre>");
2528                 }
2529
2530         # need to read more..
2531         &wait_for_data_error() if (!$nowait);
2532         if ($use_ssl) {
2533                 $more = Net::SSLeay::read($ssl_con);
2534                 }
2535         else {
2536                 local $ok = sysread(SOCK, $more, 1024);
2537                 $more = undef if ($ok <= 0);
2538                 }
2539         if ($more eq '') {
2540                 # end of the data
2541                 $rv = $main::read_buffer;
2542                 undef($main::read_buffer);
2543                 return $rv;
2544                 }
2545         $main::read_buffer .= $more;
2546         }
2547 $rv = substr($main::read_buffer, 0, $idx+1);
2548 $main::read_buffer = substr($main::read_buffer, $idx+1);
2549 return $rv;
2550 }
2551
2552 # read_data(length)
2553 # Reads up to some amount of data from SOCK or the SSL connection
2554 sub read_data
2555 {
2556 local ($rv);
2557 if (length($main::read_buffer)) {
2558         if (length($main::read_buffer) > $_[0]) {
2559                 # Return the first part of the buffer
2560                 $rv = substr($main::read_buffer, 0, $_[0]);
2561                 $main::read_buffer = substr($main::read_buffer, $_[0]);
2562                 return $rv;
2563                 }
2564         else {
2565                 # Return the whole buffer
2566                 $rv = $main::read_buffer;
2567                 undef($main::read_buffer);
2568                 return $rv;
2569                 }
2570         }
2571 elsif ($use_ssl) {
2572         # Call SSL read function
2573         return Net::SSLeay::read($ssl_con, $_[0]);
2574         }
2575 else {
2576         # Just do a normal read
2577         local $buf;
2578         sysread(SOCK, $buf, $_[0]) || return undef;
2579         return $buf;
2580         }
2581 }
2582
2583 # sysread_line(fh)
2584 # Read a line from a file handle, using sysread to get a byte at a time
2585 sub sysread_line
2586 {
2587 local ($fh) = @_;
2588 local $line;
2589 while(1) {
2590         local ($buf, $got);
2591         $got = sysread($fh, $buf, 1);
2592         last if ($got <= 0);
2593         $line .= $buf;
2594         last if ($buf eq "\n");
2595         }
2596 return $line;
2597 }
2598
2599 # wait_for_data(secs)
2600 # Waits at most the given amount of time for some data on SOCK, returning
2601 # 0 if not found, 1 if some arrived.
2602 sub wait_for_data
2603 {
2604 local $rmask;
2605 vec($rmask, fileno(SOCK), 1) = 1;
2606 local $got = select($rmask, undef, undef, $_[0]);
2607 return $got == 0 ? 0 : 1;
2608 }
2609
2610 # wait_for_data_error()
2611 # Waits 60 seconds for data on SOCK, and fails if none arrives
2612 sub wait_for_data_error
2613 {
2614 local $got = &wait_for_data(60);
2615 if (!$got) {
2616         &http_error(400, "Timeout",
2617                     "Waited more than 60 seconds for request data");
2618         }
2619 }
2620
2621 # write_data(data, ...)
2622 # Writes a string to SOCK or the SSL connection
2623 sub write_data
2624 {
2625 local $str = join("", @_);
2626 if ($use_ssl) {
2627         Net::SSLeay::write($ssl_con, $str);
2628         }
2629 else {
2630         syswrite(SOCK, $str, length($str));
2631         }
2632 # Intentionally introduce a small delay to avoid problems where IE reports
2633 # the page as empty / DNS failed when it get a large response too quickly!
2634 select(undef, undef, undef, .01) if ($write_data_count%10 == 0);
2635 $write_data_count += length($str);
2636 }
2637
2638 # reset_byte_count()
2639 sub reset_byte_count { $write_data_count = 0; }
2640
2641 # byte_count()
2642 sub byte_count { return $write_data_count; }
2643
2644 # log_request(hostname, user, request, code, bytes)
2645 sub log_request
2646 {
2647 if ($config{'log'}) {
2648         local ($user, $ident, $headers);
2649         if ($config{'logident'}) {
2650                 # add support for rfc1413 identity checking here
2651                 }
2652         else { $ident = "-"; }
2653         $user = $_[1] ? $_[1] : "-";
2654         local $dstr = &make_datestr();
2655         if (fileno(MINISERVLOG)) {
2656                 seek(MINISERVLOG, 0, 2);
2657                 }
2658         else {
2659                 open(MINISERVLOG, ">>$config{'logfile'}");
2660                 chmod(0600, $config{'logfile'});
2661                 }
2662         if (defined($config{'logheaders'})) {
2663                 foreach $h (split(/\s+/, $config{'logheaders'})) {
2664                         $headers .= " $h=\"$header{$h}\"";
2665                         }
2666                 }
2667         elsif ($config{'logclf'}) {
2668                 $headers = " \"$header{'referer'}\" \"$header{'user-agent'}\"";
2669                 }
2670         else {
2671                 $headers = "";
2672                 }
2673         print MINISERVLOG "$_[0] $ident $user [$dstr] \"$_[2]\" ",
2674                           "$_[3] $_[4]$headers\n";
2675         close(MINISERVLOG);
2676         }
2677 }
2678
2679 # make_datestr()
2680 sub make_datestr
2681 {
2682 local @tm = localtime(time());
2683 return sprintf "%2.2d/%s/%4.4d:%2.2d:%2.2d:%2.2d %s",
2684                 $tm[3], $month[$tm[4]], $tm[5]+1900,
2685                 $tm[2], $tm[1], $tm[0], $timezone;
2686 }
2687
2688 # log_error(message)
2689 sub log_error
2690 {
2691 seek(STDERR, 0, 2);
2692 print STDERR "[",&make_datestr(),"] ",
2693         $acpthost ? ( "[",$acpthost,"] " ) : ( ),
2694         $page ? ( $page," : " ) : ( ),
2695         @_,"\n";
2696 }
2697
2698 # read_errors(handle)
2699 # Read and return all input from some filehandle
2700 sub read_errors
2701 {
2702 local($fh, $_, $rv);
2703 $fh = $_[0];
2704 while(<$fh>) { $rv .= $_; }
2705 return $rv;
2706 }
2707
2708 sub write_keep_alive
2709 {
2710 local $mode;
2711 if ($config{'nokeepalive'}) {
2712         # Keep alives have been disabled in config
2713         $mode = 0;
2714         }
2715 elsif (@childpids > $config{'maxconns'}*.8) {
2716         # Disable because nearing process limit
2717         $mode = 0;
2718         }
2719 elsif (@_) {
2720         # Keep alive specified by caller
2721         $mode = $_[0];
2722         }
2723 else {
2724         # Keep alive determined by browser
2725         $mode = $header{'connection'} =~ /keep-alive/i;
2726         }
2727 &write_data("Connection: ".($mode ? "Keep-Alive" : "close")."\r\n");
2728 return $mode;
2729 }
2730
2731 sub term_handler
2732 {
2733 kill('TERM', @childpids) if (@childpids);
2734 kill('KILL', $logclearer) if ($logclearer);
2735 kill('KILL', $extauth) if ($extauth);
2736 exit(1);
2737 }
2738
2739 sub http_date
2740 {
2741 local @tm = gmtime($_[0]);
2742 return sprintf "%s, %d %s %d %2.2d:%2.2d:%2.2d GMT",
2743                 $weekday[$tm[6]], $tm[3], $month[$tm[4]], $tm[5]+1900,
2744                 $tm[2], $tm[1], $tm[0];
2745 }
2746
2747 sub TIEHANDLE
2748 {
2749 my $i; bless \$i, shift;
2750 }
2751  
2752 sub WRITE
2753 {
2754 $r = shift;
2755 my($buf,$len,$offset) = @_;
2756 &write_to_sock(substr($buf, $offset, $len));
2757 }
2758  
2759 sub PRINT
2760 {
2761 $r = shift;
2762 $$r++;
2763 my $buf = join(defined($,) ? $, : "", @_);
2764 $buf .= $\ if defined($\);
2765 &write_to_sock($buf);
2766 }
2767  
2768 sub PRINTF
2769 {
2770 shift;
2771 my $fmt = shift;
2772 &write_to_sock(sprintf $fmt, @_);
2773 }
2774  
2775 # Send back already read data while we have it, then read from SOCK
2776 sub READ
2777 {
2778 my $r = shift;
2779 my $bufref = \$_[0];
2780 my $len = $_[1];
2781 my $offset = $_[2];
2782 if ($postpos < length($postinput)) {
2783         # Reading from already fetched array
2784         my $left = length($postinput) - $postpos;
2785         my $canread = $len > $left ? $left : $len;
2786         substr($$bufref, $offset, $canread) =
2787                 substr($postinput, $postpos, $canread);
2788         $postpos += $canread;
2789         return $canread;
2790         }
2791 else {
2792         # Read from network socket
2793         local $data = &read_data($len);
2794         if ($data eq '' && $len) {
2795                 # End of socket
2796                 print STDERR "finished reading - shutting down socket\n";
2797                 shutdown(SOCK, 0);
2798                 }
2799         substr($$bufref, $offset, length($data)) = $data;
2800         return length($data);
2801         }
2802 }
2803
2804 sub OPEN
2805 {
2806 #print STDERR "open() called - should never happen!\n";
2807 }
2808  
2809 # Read a line of input
2810 sub READLINE
2811 {
2812 my $r = shift;
2813 if ($postpos < length($postinput) &&
2814     ($idx = index($postinput, "\n", $postpos)) >= 0) {
2815         # A line exists in the memory buffer .. use it
2816         my $line = substr($postinput, $postpos, $idx-$postpos+1);
2817         $postpos = $idx+1;
2818         return $line;
2819         }
2820 else {
2821         # Need to read from the socket
2822         my $line;
2823         if ($postpos < length($postinput)) {
2824                 # Start with in-memory data
2825                 $line = substr($postinput, $postpos);
2826                 $postpos = length($postinput);
2827                 }
2828         my $nl = &read_line(0, 1);
2829         if ($nl eq '') {
2830                 # End of socket
2831                 print STDERR "finished reading - shutting down socket\n";
2832                 shutdown(SOCK, 0);
2833                 }
2834         $line .= $nl if (defined($nl));
2835         return $line;
2836         }
2837 }
2838  
2839 # Read one character of input
2840 sub GETC
2841 {
2842 my $r = shift;
2843 my $buf;
2844 my $got = READ($r, \$buf, 1, 0);
2845 return $got > 0 ? $buf : undef;
2846 }
2847
2848 sub FILENO
2849 {
2850 return fileno(SOCK);
2851 }
2852  
2853 sub CLOSE { }
2854  
2855 sub DESTROY { }
2856
2857 # write_to_sock(data, ...)
2858 sub write_to_sock
2859 {
2860 local $d;
2861 foreach $d (@_) {
2862         if ($doneheaders || $miniserv::nph_script) {
2863                 &write_data($d);
2864                 }
2865         else {
2866                 $headers .= $d;
2867                 while(!$doneheaders && $headers =~ s/^([^\r\n]*)(\r)?\n//) {
2868                         if ($1 =~ /^(\S+):\s+(.*)$/) {
2869                                 $cgiheader{lc($1)} = $2;
2870                                 push(@cgiheader, [ $1, $2 ]);
2871                                 }
2872                         elsif ($1 !~ /\S/) {
2873                                 $doneheaders++;
2874                                 }
2875                         else {
2876                                 &http_error(500, "Bad Header");
2877                                 }
2878                         }
2879                 if ($doneheaders) {
2880                         if ($cgiheader{"location"}) {
2881                                 &write_data(
2882                                         "HTTP/1.0 302 Moved Temporarily\r\n");
2883                                 &write_data("Date: $datestr\r\n");
2884                                 &write_data("Server: $config{server}\r\n");
2885                                 &write_keep_alive(0);
2886                                 }
2887                         elsif ($cgiheader{"content-type"} eq "") {
2888                                 &http_error(500, "Missing Content-Type Header");
2889                                 }
2890                         else {
2891                                 &write_data("HTTP/1.0 $ok_code $ok_message\r\n");
2892                                 &write_data("Date: $datestr\r\n");
2893                                 &write_data("Server: $config{server}\r\n");
2894                                 &write_keep_alive(0);
2895                                 }
2896                         foreach $h (@cgiheader) {
2897                                 &write_data("$h->[0]: $h->[1]\r\n");
2898                                 }
2899                         &write_data("\r\n");
2900                         &reset_byte_count();
2901                         &write_data($headers);
2902                         }
2903                 }
2904         }
2905 }
2906
2907 sub verify_client
2908 {
2909 local $cert = Net::SSLeay::X509_STORE_CTX_get_current_cert($_[1]);
2910 if ($cert) {
2911         local $errnum = Net::SSLeay::X509_STORE_CTX_get_error($_[1]);
2912         $verified_client = 1 if (!$errnum);
2913         }
2914 return 1;
2915 }
2916
2917 sub END
2918 {
2919 if ($doing_eval && $$ == $main_process_id) {
2920         # A CGI program called exit! This is a horrible hack to 
2921         # finish up before really exiting
2922         shutdown(SOCK, 1);
2923         close(SOCK);
2924         close($PASSINw); close($PASSOUTw);
2925         &log_request($acpthost, $authuser, $reqline,
2926                      $cgiheader{"location"} ? "302" : $ok_code, &byte_count());
2927         }
2928 }
2929
2930 # urlize
2931 # Convert a string to a form ok for putting in a URL
2932 sub urlize {
2933   local($tmp, $tmp2, $c);
2934   $tmp = $_[0];
2935   $tmp2 = "";
2936   while(($c = chop($tmp)) ne "") {
2937         if ($c !~ /[A-z0-9]/) {
2938                 $c = sprintf("%%%2.2X", ord($c));
2939                 }
2940         $tmp2 = $c . $tmp2;
2941         }
2942   return $tmp2;
2943 }
2944
2945 # validate_user(username, password, host)
2946 # Checks if some username and password are valid. Returns the modified username,
2947 # the expired / temp pass flag, and the non-existence flag
2948 sub validate_user
2949 {
2950 local ($user, $pass, $host) = @_;
2951 return ( ) if (!$user);
2952 print DEBUG "validate_user: user=$user pass=$pass host=$host\n";
2953 local ($canuser, $canmode, $notexist, $webminuser, $sudo) =
2954         &can_user_login($user, undef, $host);
2955 print DEBUG "validate_user: canuser=$canuser canmode=$canmode notexist=$notexist webminuser=$webminuser sudo=$sudo\n";
2956 if ($notexist) {
2957         # User doesn't even exist, so go no further
2958         return ( undef, 0, 1 );
2959         }
2960 elsif ($canmode == 0) {
2961         # User does exist but cannot login
2962         return ( $canuser, 0, 0 );
2963         }
2964 elsif ($canmode == 1) {
2965         # Attempt Webmin authentication
2966         if ($users{$webminuser} eq &unix_crypt($pass, $users{$webminuser})) {
2967                 # Password is valid .. but check for expiry
2968                 local $lc = $lastchanges{$user};
2969                 if ($config{'pass_maxdays'} && $lc && !$nochange{$user}) {
2970                         local $daysold = (time() - $lc)/(24*60*60);
2971                         print DEBUG "maxdays=$config{'pass_maxdays'} daysold=$daysold\n";
2972                         if ($config{'pass_lockdays'} &&
2973                             $daysold > $config{'pass_lockdays'}) {
2974                                 # So old that the account is locked
2975                                 return ( undef, 0, 0 );
2976                                 }
2977                         elsif ($daysold > $config{'pass_maxdays'}) {
2978                                 # Password has expired
2979                                 return ( $user, 1, 0 );
2980                                 }
2981                         elsif ($temppass{$user}) {
2982                                 # Temporary password - force change now
2983                                 return ( $user, 2, 0 );
2984                                 }
2985                         }
2986                 return ( $user, 0, 0 );
2987                 }
2988         else {
2989                 return ( undef, 0, 0 );
2990                 }
2991         }
2992 elsif ($canmode == 2 || $canmode == 3) {
2993         # Attempt PAM or passwd file authentication
2994         local $val = &validate_unix_user($canuser, $pass);
2995         print DEBUG "validate_user: unix val=$val\n";
2996         if ($val && $sudo) {
2997                 # Need to check if this Unix user can sudo
2998                 if (!&check_sudo_permissions($canuser, $pass)) {
2999                         print DEBUG "validate_user: sudo failed\n";
3000                         $val = 0;
3001                         }
3002                 else {
3003                         print DEBUG "validate_user: sudo passed\n";
3004                         }
3005                 }
3006         return $val == 2 ? ( $canuser, 1, 0 ) :
3007                $val == 1 ? ( $canuser, 0, 0 ) : ( undef, 0, 0 );
3008         }
3009 elsif ($canmode == 4) {
3010         # Attempt external authentication
3011         return &validate_external_user($canuser, $pass) ?
3012                 ( $canuser, 0, 0 ) : ( undef, 0, 0 );
3013         }
3014 else {
3015         # Can't happen!
3016         return ( );
3017         }
3018 }
3019
3020 # validate_unix_user(user, password)
3021 # Returns 1 if a username and password are valid under unix, 0 if not,
3022 # or 2 if the account has expired.
3023 # Checks PAM if available, and falls back to reading the system password
3024 # file otherwise.
3025 sub validate_unix_user
3026 {
3027 if ($use_pam) {
3028         # Check with PAM
3029         $pam_username = $_[0];
3030         $pam_password = $_[1];
3031         local $pamh = new Authen::PAM($config{'pam'}, $pam_username,
3032                                       \&pam_conv_func);
3033         if (ref($pamh)) {
3034                 local $pam_ret = $pamh->pam_authenticate();
3035                 if ($pam_ret == PAM_SUCCESS()) {
3036                         # Logged in OK .. make sure password hasn't expired
3037                         local $acct_ret = $pamh->pam_acct_mgmt();
3038                         if ($acct_ret == PAM_SUCCESS()) {
3039                                 $pamh->pam_open_session();
3040                                 return 1;
3041                                 }
3042                         elsif ($acct_ret == PAM_NEW_AUTHTOK_REQD() ||
3043                                $acct_ret == PAM_ACCT_EXPIRED()) {
3044                                 return 2;
3045                                 }
3046                         else {
3047                                 print STDERR "Unknown pam_acct_mgmt return value : $acct_ret\n";
3048                                 return 0;
3049                                 }
3050                         }
3051                 return 0;
3052                 }
3053         }
3054 elsif ($config{'pam_only'}) {
3055         # Pam is not available, but configuration forces it's use!
3056         return 0;
3057         }
3058 elsif ($config{'passwd_file'}) {
3059         # Check in a password file
3060         local $rv = 0;
3061         open(FILE, $config{'passwd_file'});
3062         if ($config{'passwd_file'} eq '/etc/security/passwd') {
3063                 # Assume in AIX format
3064                 while(<FILE>) {
3065                         s/\s*$//;
3066                         if (/^\s*(\S+):/ && $1 eq $_[0]) {
3067                                 $_ = <FILE>;
3068                                 if (/^\s*password\s*=\s*(\S+)\s*$/) {
3069                                         $rv = $1 eq &unix_crypt($_[1], $1) ? 1 : 0;
3070                                         }
3071                                 last;
3072                                 }
3073                         }
3074                 }
3075         else {
3076                 # Read the system password or shadow file
3077                 while(<FILE>) {
3078                         local @l = split(/:/, $_, -1);
3079                         local $u = $l[$config{'passwd_uindex'}];
3080                         local $p = $l[$config{'passwd_pindex'}];
3081                         if ($u eq $_[0]) {
3082                                 $rv = $p eq &unix_crypt($_[1], $p) ? 1 : 0;
3083                                 if ($config{'passwd_cindex'} ne '' && $rv) {
3084                                         # Password may have expired!
3085                                         local $c = $l[$config{'passwd_cindex'}];
3086                                         local $m = $l[$config{'passwd_mindex'}];
3087                                         local $day = time()/(24*60*60);
3088                                         if ($c =~ /^\d+/ && $m =~ /^\d+/ &&
3089                                             $day - $c > $m) {
3090                                                 # Yep, it has ..
3091                                                 $rv = 2;
3092                                                 }
3093                                         }
3094                                 if ($p eq "" && $config{'passwd_blank'}) {
3095                                         # Force password change
3096                                         $rv = 2;
3097                                         }
3098                                 last;
3099                                 }
3100                         }
3101                 }
3102         close(FILE);
3103         return $rv if ($rv);
3104         }
3105
3106 # Fallback option - check password returned by getpw*
3107 local @uinfo = getpwnam($_[0]);
3108 if ($uinfo[1] ne '' && &unix_crypt($_[1], $uinfo[1]) eq $uinfo[1]) {
3109         return 1;
3110         }
3111
3112 return 0;       # Totally failed
3113 }
3114
3115 # validate_external_user(user, pass)
3116 # Validate a user by passing the username and password to an external
3117 # squid-style authentication program
3118 sub validate_external_user
3119 {
3120 return 0 if (!$config{'extauth'});
3121 flock(EXTAUTH, 2);
3122 local $str = "$_[0] $_[1]\n";
3123 syswrite(EXTAUTH, $str, length($str));
3124 local $resp = <EXTAUTH>;
3125 flock(EXTAUTH, 8);
3126 return $resp =~ /^OK/i ? 1 : 0;
3127 }
3128
3129 # can_user_login(username, no-append, host)
3130 # Checks if a user can login or not.
3131 # First return value is the username.
3132 # Second is 0 if cannot login, 1 if using Webmin pass, 2 if PAM, 3 if password
3133 # file, 4 if external.
3134 # Third is 1 if the user does not exist at all, 0 if he does.
3135 # Fourth is the Webmin username whose permissions apply, based on unixauth.
3136 # Fifth is a flag indicating if a sudo check is needed.
3137 sub can_user_login
3138 {
3139 if (!$users{$_[0]}) {
3140         # See if this user exists in Unix and can be validated by the same
3141         # method as the unixauth webmin user
3142         local $realuser = $unixauth{$_[0]};
3143         local @uinfo;
3144         local $sudo = 0;
3145         local $pamany = 0;
3146         eval { @uinfo = getpwnam($_[0]); };     # may fail on windows
3147         if (!$realuser && @uinfo) {
3148                 # No unixauth entry for the username .. try his groups 
3149                 foreach my $ua (keys %unixauth) {
3150                         if ($ua =~ /^\@(.*)$/) {
3151                                 if (&is_group_member(\@uinfo, $1)) {
3152                                         $realuser = $unixauth{$ua};
3153                                         last;
3154                                         }
3155                                 }
3156                         }
3157                 }
3158         if (!$realuser && @uinfo) {
3159                 # Fall back to unix auth for all Unix users
3160                 $realuser = $unixauth{"*"};
3161                 }
3162         if (!$realuser && $use_sudo && @uinfo) {
3163                 # Allow login effectively as root, if sudo permits it
3164                 $sudo = 1;
3165                 $realuser = "root";
3166                 }
3167         if (!$realuser && !@uinfo && $config{'pamany'}) {
3168                 # If the user completely doesn't exist, we can still allow
3169                 # him to authenticate via PAM
3170                 $realuser = $config{'pamany'};
3171                 $pamany = 1;
3172                 }
3173         if (!$realuser) {
3174                 # For Usermin, always fall back to unix auth for any user,
3175                 # so that later checks with domain added / removed are done.
3176                 $realuser = $unixauth{"*"};
3177                 }
3178         return (undef, 0, 1, undef) if (!$realuser);
3179         local $up = $users{$realuser};
3180         return (undef, 0, 1, undef) if (!defined($up));
3181
3182         # Work out possible domain names from the hostname
3183         local @doms = ( $_[2] );
3184         if ($_[2] =~ /^([^\.]+)\.(\S+)$/) {
3185                 push(@doms, $2);
3186                 }
3187
3188         if ($config{'user_mapping'} && !defined(%user_mapping)) {
3189                 # Read the user mapping file
3190                 %user_mapping = ();
3191                 open(MAPPING, $config{'user_mapping'});
3192                 while(<MAPPING>) {
3193                         s/\r|\n//g;
3194                         s/#.*$//;
3195                         if (/^(\S+)\s+(\S+)/) {
3196                                 if ($config{'user_mapping_reverse'}) {
3197                                         $user_mapping{$1} = $2;
3198                                         }
3199                                 else {
3200                                         $user_mapping{$2} = $1;
3201                                         }
3202                                 }
3203                         }
3204                 close(MAPPING);
3205                 }
3206
3207         # Check the user mapping file to see if there is an entry for the
3208         # user login in which specifies a new effective user
3209         local $um;
3210         foreach my $d (@doms) {
3211                 $um ||= $user_mapping{"$_[0]\@$d"};
3212                 }
3213         $um ||= $user_mapping{$_[0]};
3214         if (defined($um) && ($_[1]&4) == 0) {
3215                 # A mapping exists - use it!
3216                 return &can_user_login($um, $_[1]+4, $_[2]);
3217                 }
3218
3219         # Check if a user with the entered login and the domains appended
3220         # or prepended exists, and if so take it to be the effective user
3221         if (!@uinfo && $config{'domainuser'}) {
3222                 # Try again with name.domain and name.firstpart
3223                 local @firsts = map { /^([^\.]+)/; $1 } @doms;
3224                 if (($_[1]&1) == 0) {
3225                         local ($a, $p);
3226                         foreach $a (@firsts, @doms) {
3227                                 foreach $p ("$_[0].${a}", "$_[0]-${a}",
3228                                             "${a}.$_[0]", "${a}-$_[0]",
3229                                             "$_[0]_${a}", "${a}_$_[0]") {
3230                                         local @vu = &can_user_login(
3231                                                         $p, $_[1]+1, $_[2]);
3232                                         return @vu if ($vu[1]);
3233                                         }
3234                                 }
3235                         }
3236                 }
3237
3238         # Check if the user entered a domain at the end of his username when
3239         # he really shouldn't have, and if so try without it
3240         if (!@uinfo && $config{'domainstrip'} &&
3241             $_[0] =~ /^(\S+)\@(\S+)$/ && ($_[1]&2) == 0) {
3242                 local ($stripped, $dom) = ($1, $2);
3243                 local @vu = &can_user_login($stripped, $_[1] + 2, $_[2]);
3244                 return @vu if ($vu[1]);
3245                 local @vu = &can_user_login($stripped, $_[1] + 2, $dom);
3246                 return @vu if ($vu[1]);
3247                 }
3248
3249         return ( undef, 0, 1, undef ) if (!@uinfo && !$pamany);
3250
3251         if (@uinfo) {
3252                 if (defined(@allowusers)) {
3253                         # Only allow people on the allow list
3254                         return ( undef, 0, 0, undef )
3255                                 if (!&users_match(\@uinfo, @allowusers));
3256                         }
3257                 elsif (defined(@denyusers)) {
3258                         # Disallow people on the deny list
3259                         return ( undef, 0, 0, undef )
3260                                 if (&users_match(\@uinfo, @denyusers));
3261                         }
3262                 if ($config{'shells_deny'}) {
3263                         local $found = 0;
3264                         open(SHELLS, $config{'shells_deny'});
3265                         while(<SHELLS>) {
3266                                 s/\r|\n//g;
3267                                 s/#.*$//;
3268                                 $found++ if ($_ eq $uinfo[8]);
3269                                 }
3270                         close(SHELLS);
3271                         return ( undef, 0, 0, undef ) if (!$found);
3272                         }
3273                 }
3274
3275         if ($up eq 'x') {
3276                 # PAM or passwd file authentication
3277                 return ( $_[0], $use_pam ? 2 : 3, 0, $realuser, $sudo );
3278                 }
3279         elsif ($up eq 'e') {
3280                 # External authentication
3281                 return ( $_[0], 4, 0, $realuser, $sudo );
3282                 }
3283         else {
3284                 # Fixed Webmin password
3285                 return ( $_[0], 1, 0, $realuser, $sudo );
3286                 }
3287         }
3288 elsif ($users{$_[0]} eq 'x') {
3289         # Webmin user authenticated via PAM or password file
3290         return ( $_[0], $use_pam ? 2 : 3, 0, $_[0] );
3291         }
3292 elsif ($users{$_[0]} eq 'e') {
3293         # Webmin user authenticated externally
3294         return ( $_[0], 4, 0, $_[0] );
3295         }
3296 else {
3297         # Normal Webmin user
3298         return ( $_[0], 1, 0, $_[0] );
3299         }
3300 }
3301
3302 # the PAM conversation function for interactive logins
3303 sub pam_conv_func
3304 {
3305 $pam_conv_func_called++;
3306 my @res;
3307 while ( @_ ) {
3308         my $code = shift;
3309         my $msg = shift;
3310         my $ans = "";
3311
3312         $ans = $pam_username if ($code == PAM_PROMPT_ECHO_ON() );
3313         $ans = $pam_password if ($code == PAM_PROMPT_ECHO_OFF() );
3314
3315         push @res, PAM_SUCCESS();
3316         push @res, $ans;
3317         }
3318 push @res, PAM_SUCCESS();
3319 return @res;
3320 }
3321
3322 sub urandom_timeout
3323 {
3324 close(RANDOM);
3325 }
3326
3327 # get_socket_name(handle)
3328 # Returns the local hostname or IP address of some connection
3329 sub get_socket_name
3330 {
3331 return $config{'host'} if ($config{'host'});
3332 local $sn = getsockname($_[0]);
3333 return undef if (!$sn);
3334 local $myaddr = (unpack_sockaddr_in($sn))[1];
3335 if (!$get_socket_name_cache{$myaddr}) {
3336         local $myname;
3337         if (!$config{'no_resolv_myname'}) {
3338                 $myname = gethostbyaddr($myaddr, AF_INET);
3339                 }
3340         if ($myname eq "") {
3341                 $myname = inet_ntoa($myaddr);
3342                 }
3343         $get_socket_name_cache{$myaddr} = $myname;
3344         }
3345 return $get_socket_name_cache{$myaddr};
3346 }
3347
3348 # run_login_script(username, sid, remoteip, localip)
3349 sub run_login_script
3350 {
3351 if ($config{'login_script'}) {
3352         system($config{'login_script'}.
3353                " ".join(" ", map { quotemeta($_) } @_).
3354                " >/dev/null 2>&1 </dev/null");
3355         }
3356 }
3357
3358 # run_logout_script(username, sid, remoteip, localip)
3359 sub run_logout_script
3360 {
3361 if ($config{'logout_script'}) {
3362         system($config{'logout_script'}.
3363                " ".join(" ", map { quotemeta($_) } @_).
3364                " >/dev/null 2>&1 </dev/null");
3365         }
3366 }
3367
3368 # close_all_sockets()
3369 # Closes all the main listening sockets
3370 sub close_all_sockets
3371 {
3372 local $s;
3373 foreach $s (@socketfhs) {
3374         close($s);
3375         }
3376 }
3377
3378 # close_all_pipes()
3379 # Close all pipes for talking to sub-processes
3380 sub close_all_pipes
3381 {
3382 local $p;
3383 foreach $p (@passin) { close($p); }
3384 foreach $p (@passout) { close($p); }
3385 foreach $p (values %conversations) {
3386         if ($p->{'PAMOUTr'}) {
3387                 close($p->{'PAMOUTr'});
3388                 close($p->{'PAMINw'});
3389                 }
3390         }
3391 }
3392
3393 # check_user_ip(user)
3394 # Returns 1 if some user is allowed to login from the accepting IP, 0 if not
3395 sub check_user_ip
3396 {
3397 if ($deny{$_[0]} &&
3398     &ip_match($acptip, $localip, @{$deny{$_[0]}}) ||
3399     $allow{$_[0]} &&
3400     !&ip_match($acptip, $localip, @{$allow{$_[0]}})) {
3401         return 0;
3402         }
3403 return 1;
3404 }
3405
3406 # check_user_time(user)
3407 # Returns 1 if some user is allowed to login at the current date and time
3408 sub check_user_time
3409 {
3410 return 1 if (!$allowdays{$_[0]} && !$allowhours{$_[0]});
3411 local @tm = localtime(time());
3412 if ($allowdays{$_[0]}) {
3413         # Make sure day is allowed
3414         return 0 if (&indexof($tm[6], @{$allowdays{$_[0]}}) < 0);
3415         }
3416 if ($allowhours{$_[0]}) {
3417         # Make sure time is allowed
3418         local $m = $tm[2]*60+$tm[1];
3419         return 0 if ($m < $allowhours{$_[0]}->[0] ||
3420                      $m > $allowhours{$_[0]}->[1]);
3421         }
3422 return 1;
3423 }
3424
3425 # generate_random_id(password, [force-urandom])
3426 # Returns a random session ID number
3427 sub generate_random_id
3428 {
3429 local ($pass, $force_urandom) = @_;
3430 local $sid;
3431 if (!$bad_urandom) {
3432         # First try /dev/urandom, unless we have marked it as bad
3433         $SIG{ALRM} = "miniserv::urandom_timeout";
3434         alarm(5);
3435         if (open(RANDOM, "/dev/urandom")) {
3436                 my $tmpsid;
3437                 if (read(RANDOM, $tmpsid, 16) == 16) {
3438                         $sid = lc(unpack('h*',$tmpsid));
3439                         }
3440                 close(RANDOM);
3441                 }
3442         alarm(0);
3443         }
3444 if (!$sid && !$force_urandom) {
3445         $sid = time();
3446         local $mul = 1;
3447         foreach $c (split(//, &unix_crypt($pass, substr($$, -2)))) {
3448                 $sid += ord($c) * $mul;
3449                 $mul *= 3;
3450                 }
3451         }
3452 return $sid;
3453 }
3454
3455 # handle_login(username, ok, expired, not-exists, password, [no-test-cookie])
3456 # Called from handle_session to either mark a user as logged in, or not
3457 sub handle_login
3458 {
3459 local ($vu, $ok, $expired, $nonexist, $pass, $notest) = @_;
3460 $authuser = $vu if ($ok);
3461
3462 # check if the test cookie is set
3463 if ($header{'cookie'} !~ /testing=1/ && $vu &&
3464     !$config{'no_testing_cookie'} && !$notest) {
3465         &http_error(500, "No cookies",
3466            "Your browser does not support cookies, ".
3467            "which are required for this web server to ".
3468            "work in session authentication mode");
3469         }
3470
3471 # check with main process for delay
3472 if ($config{'passdelay'} && $vu) {
3473         print $PASSINw "delay $vu $acptip $ok\n";
3474         <$PASSOUTr> =~ /(\d+) (\d+)/;
3475         $blocked = $2;
3476         sleep($1);
3477         }
3478
3479 if ($ok && (!$expired ||
3480             $config{'passwd_mode'} == 1)) {
3481         # Logged in OK! Tell the main process about
3482         # the new SID
3483         local $sid = &generate_random_id($pass);
3484         print $PASSINw "new $sid $authuser $acptip\n";
3485
3486         # Run the post-login script, if any
3487         &run_login_script($authuser, $sid,
3488                           $acptip, $localip);
3489
3490         # Check for a redirect URL for the user
3491         local $rurl = &login_redirect($authuser, $pass, $host);
3492         if ($rurl) {
3493                 # Got one .. go to it
3494                 &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
3495                 &write_data("Date: $datestr\r\n");
3496                 &write_data("Server: $config{'server'}\r\n");
3497                 &write_data("Location: $rurl\r\n");
3498                 &write_keep_alive(0);
3499                 &write_data("\r\n");
3500                 &log_request($acpthost, $authuser, $reqline, 302, 0);
3501                 }
3502         else {
3503                 # Set cookie and redirect to originally requested page
3504                 &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
3505                 &write_data("Date: $datestr\r\n");
3506                 &write_data("Server: $config{'server'}\r\n");
3507                 local $ssl = $use_ssl || $config{'inetd_ssl'};
3508                 $portstr = $port == 80 && !$ssl ? "" :
3509                            $port == 443 && $ssl ? "" : ":$port";
3510                 $prot = $ssl ? "https" : "http";
3511                 local $sec = $ssl ? "; secure" : "";
3512                 #$sec .= "; httpOnly";
3513                 if ($in{'save'}) {
3514                         &write_data("Set-Cookie: $sidname=$sid; path=/; expires=\"Thu, 31-Dec-2037 00:00:00\"$sec\r\n");
3515                         }
3516                 else {
3517                         &write_data("Set-Cookie: $sidname=$sid; path=/$sec\r\n");
3518                         }
3519                 &write_data("Location: $prot://$host$portstr$in{'page'}\r\n");
3520                 &write_keep_alive(0);
3521                 &write_data("\r\n");
3522                 &log_request($acpthost, $authuser, $reqline, 302, 0);
3523                 syslog("info", "%s", "Successful login as $authuser from $acpthost") if ($use_syslog);
3524                 &write_login_utmp($authuser, $acpthost);
3525                 }
3526         return 0;
3527         }
3528 elsif ($ok && $expired &&
3529        ($config{'passwd_mode'} == 2 || $expired == 2)) {
3530         # Login was ok, but password has expired or was temporary. Need
3531         # to force display of password change form.
3532         $validated = 1;
3533         $authuser = undef;
3534         $querystring = "&user=".&urlize($vu).
3535                        "&pam=".$use_pam.
3536                        "&expired=".$expired;
3537         $method = "GET";
3538         $queryargs = "";
3539         $page = $config{'password_form'};
3540         $logged_code = 401;
3541         $miniserv_internal = 2;
3542         syslog("crit", "%s",
3543                 "Expired login as $vu ".
3544                 "from $acpthost") if ($use_syslog);
3545         }
3546 else {
3547         # Login failed, or password has expired. The login form will be
3548         # displayed again by later code
3549         $failed_user = $vu;
3550         $request_uri = $in{'page'};
3551         $already_session_id = undef;
3552         $method = "GET";
3553         $authuser = $baseauthuser = undef;
3554         syslog("crit", "%s",
3555                 ($nonexist ? "Non-existent" :
3556                  $expired ? "Expired" : "Invalid").
3557                 " login as $vu from $acpthost")
3558                 if ($use_syslog);
3559         }
3560 return undef;
3561 }
3562
3563 # write_login_utmp(user, host)
3564 # Record the login by some user in utmp
3565 sub write_login_utmp
3566 {
3567 if ($write_utmp) {
3568         # Write utmp record for login
3569         %utmp = ( 'ut_host' => $_[1],
3570                   'ut_time' => time(),
3571                   'ut_user' => $_[0],
3572                   'ut_type' => 7,       # user process
3573                   'ut_pid' => $main_process_id,
3574                   'ut_line' => $config{'pam'},
3575                   'ut_id' => '' );
3576         if (defined(&User::Utmp::putut)) {
3577                 User::Utmp::putut(\%utmp);
3578                 }
3579         else {
3580                 User::Utmp::pututline(\%utmp);
3581                 }
3582         }
3583 }
3584
3585 # write_logout_utmp(user, host)
3586 sub write_logout_utmp
3587 {
3588 if ($write_utmp) {
3589         # Write utmp record for logout
3590         %utmp = ( 'ut_host' => $_[1],
3591                   'ut_time' => time(),
3592                   'ut_user' => $_[0],
3593                   'ut_type' => 8,       # dead process
3594                   'ut_pid' => $main_process_id,
3595                   'ut_line' => $config{'pam'},
3596                   'ut_id' => '' );
3597         if (defined(&User::Utmp::putut)) {
3598                 User::Utmp::putut(\%utmp);
3599                 }
3600         else {
3601                 User::Utmp::pututline(\%utmp);
3602                 }
3603         }
3604 }
3605
3606 # pam_conversation_process(username, write-pipe, read-pipe)
3607 # This function is called inside a sub-process to communicate with PAM. It sends
3608 # questions down one pipe, and reads responses from another
3609 sub pam_conversation_process
3610 {
3611 local ($user, $writer, $reader) = @_;
3612 $miniserv::pam_conversation_process_writer = $writer;
3613 $miniserv::pam_conversation_process_reader = $reader;
3614 local $convh = new Authen::PAM(
3615         $config{'pam'}, $user, \&miniserv::pam_conversation_process_func);
3616 local $pam_ret = $convh->pam_authenticate();
3617 if ($pam_ret == PAM_SUCCESS()) {
3618         local $acct_ret = $convh->pam_acct_mgmt();
3619         if ($acct_ret == PAM_SUCCESS()) {
3620                 $convh->pam_open_session();
3621                 print $writer "x2 $user 1 0 0\n";
3622                 }
3623         elsif ($acct_ret == PAM_NEW_AUTHTOK_REQD() ||
3624                $acct_ret == PAM_ACCT_EXPIRED()) {
3625                 print $writer "x2 $user 1 1 0\n";
3626                 }
3627         else {
3628                 print $writer "x0 Unknown PAM account status $acct_ret\n";
3629                 }
3630         }
3631 else {
3632         print $writer "x2 $user 0 0 0\n";
3633         }
3634 exit(0);
3635 }
3636
3637 # pam_conversation_process_func(type, message, [type, message, ...])
3638 # A pipe that talks to both PAM and the master process
3639 sub pam_conversation_process_func
3640 {
3641 local @rv;
3642 select($miniserv::pam_conversation_process_writer); $| = 1; select(STDOUT);
3643 while(@_) {
3644         local ($type, $msg) = (shift, shift);
3645         $msg =~ s/\r|\n//g;
3646         local $ok = (print $miniserv::pam_conversation_process_writer "$type $msg\n");
3647         print $miniserv::pam_conversation_process_writer "\n";
3648         local $answer = <$miniserv::pam_conversation_process_reader>;
3649         $answer =~ s/\r|\n//g;
3650         push(@rv, PAM_SUCCESS(), $answer);
3651         }
3652 push(@rv, PAM_SUCCESS());
3653 return @rv;
3654 }
3655
3656 # allocate_pipes()
3657 # Returns 4 new pipe file handles
3658 sub allocate_pipes
3659 {
3660 local ($PASSINr, $PASSINw, $PASSOUTr, $PASSOUTw);
3661 local $p;
3662 local %taken = ( (map { $_, 1 } @passin),
3663                  (map { $_->{'PASSINr'} } values %conversations) );
3664 for($p=0; $taken{"PASSINr$p"}; $p++) { }
3665 $PASSINr = "PASSINr$p";
3666 $PASSINw = "PASSINw$p";
3667 $PASSOUTr = "PASSOUTr$p";
3668 $PASSOUTw = "PASSOUTw$p";
3669 pipe($PASSINr, $PASSINw);
3670 pipe($PASSOUTr, $PASSOUTw);
3671 select($PASSINw); $| = 1;
3672 select($PASSINr); $| = 1;
3673 select($PASSOUTw); $| = 1;
3674 select($PASSOUTw); $| = 1;
3675 select(STDOUT);
3676 return ($PASSINr, $PASSINw, $PASSOUTr, $PASSOUTw);
3677 }
3678
3679 # recv_pam_question(&conv, fd)
3680 # Reads one PAM question from the sub-process, and sends it to the HTTP handler.
3681 # Returns 0 if the conversation is over, 1 if not.
3682 sub recv_pam_question
3683 {
3684 local ($conf, $fh) = @_;
3685 local $pr = $conf->{'PAMOUTr'};
3686 select($pr); $| = 1; select(STDOUT);
3687 local $line = <$pr>;
3688 $line =~ s/\r|\n//g;
3689 if (!$line) {
3690         $line = <$pr>;
3691         $line =~ s/\r|\n//g;
3692         }
3693 $conf->{'last'} = time();
3694 if (!$line) {
3695         # Failed!
3696         print $fh "0 PAM conversation error\n";
3697         return 0;
3698         }
3699 else {
3700         local ($type, $msg) = split(/\s+/, $line, 2);
3701         if ($type =~ /^x(\d+)/) {
3702                 # Pass this status code through
3703                 print $fh "$1 $msg\n";
3704                 return $1 == 2 || $1 == 0 ? 0 : 1;
3705                 }
3706         elsif ($type == PAM_PROMPT_ECHO_ON()) {
3707                 # A normal question
3708                 print $fh "1 $msg\n";
3709                 return 1;
3710                 }
3711         elsif ($type == PAM_PROMPT_ECHO_OFF()) {
3712                 # A password
3713                 print $fh "3 $msg\n";
3714                 return 1;
3715                 }
3716         elsif ($type == PAM_ERROR_MSG() || $type == PAM_TEXT_INFO()) {
3717                 # A message that does not require a response
3718                 print $fh "4 $msg\n";
3719                 return 1;
3720                 }
3721         else {
3722                 # Unknown type!
3723                 print $fh "0 Unknown PAM message type $type\n";
3724                 return 0;
3725                 }
3726         }
3727 }
3728
3729 # send_pam_answer(&conv, answer)
3730 # Sends a response from the user to the PAM sub-process
3731 sub send_pam_answer
3732 {
3733 local ($conf, $answer) = @_;
3734 local $pw = $conf->{'PAMINw'};
3735 $conf->{'last'} = time();
3736 print $pw "$answer\n";
3737 }
3738
3739 # end_pam_conversation(&conv)
3740 # Clean up PAM conversation pipes and processes
3741 sub end_pam_conversation
3742 {
3743 local ($conv) = @_;
3744 kill('KILL', $conv->{'pid'}) if ($conv->{'pid'});
3745 if ($conv->{'PAMINr'}) {
3746         close($conv->{'PAMINr'});
3747         close($conv->{'PAMOUTr'});
3748         close($conv->{'PAMINw'});
3749         close($conv->{'PAMOUTw'});
3750         }
3751 delete($conversations{$conv->{'cid'}});
3752 }
3753
3754 # get_ipkeys(&miniserv)
3755 # Returns a list of IP address to key file mappings from a miniserv.conf entry
3756 sub get_ipkeys
3757 {
3758 local (@rv, $k);
3759 foreach $k (keys %{$_[0]}) {
3760         if ($k =~ /^ipkey_(\S+)/) {
3761                 local $ipkey = { 'ips' => [ split(/,/, $1) ],
3762                                  'key' => $_[0]->{$k},
3763                                  'index' => scalar(@rv) };
3764                 $ipkey->{'cert'} = $_[0]->{'ipcert_'.$1};
3765                 push(@rv, $ipkey);
3766                 }
3767         }
3768 return @rv;
3769 }
3770
3771 # create_ssl_context(keyfile, [certfile])
3772 sub create_ssl_context
3773 {
3774 local ($keyfile, $certfile) = @_;
3775 local $ssl_ctx;
3776 eval { $ssl_ctx = Net::SSLeay::new_x_ctx() };
3777 $ssl_ctx ||= Net::SSLeay::CTX_new();
3778 $ssl_ctx || die "Failed to create SSL context : $!";
3779 if ($client_certs) {
3780         Net::SSLeay::CTX_load_verify_locations(
3781                 $ssl_ctx, $config{'ca'}, "");
3782         Net::SSLeay::CTX_set_verify(
3783                 $ssl_ctx, &Net::SSLeay::VERIFY_PEER, \&verify_client);
3784         }
3785 if ($config{'extracas'}) {
3786         local $p;
3787         foreach $p (split(/\s+/, $config{'extracas'})) {
3788                 Net::SSLeay::CTX_load_verify_locations(
3789                         $ssl_ctx, $p, "");
3790                 }
3791         }
3792
3793 Net::SSLeay::CTX_use_RSAPrivateKey_file(
3794         $ssl_ctx, $keyfile,
3795         &Net::SSLeay::FILETYPE_PEM) || die "Failed to open SSL key $keyfile";
3796 Net::SSLeay::CTX_use_certificate_file(
3797         $ssl_ctx, $certfile || $keyfile,
3798         &Net::SSLeay::FILETYPE_PEM) || die "Failed to open SSL cert $certfile";
3799
3800 return $ssl_ctx;
3801 }
3802
3803 # ssl_connection_for_ip(socket)
3804 # Returns a new SSL connection object for some socket, or undef if failed
3805 sub ssl_connection_for_ip
3806 {
3807 local ($sock) = @_;
3808 local $sn = getsockname($sock);
3809 if (!$sn) {
3810         print STDERR "Failed to get address for socket $sock\n";
3811         return undef;
3812         }
3813 local $myip = inet_ntoa((unpack_sockaddr_in($sn))[1]);
3814 local $ssl_ctx = $ssl_contexts{$myip} || $ssl_contexts{"*"};
3815 local $ssl_con = Net::SSLeay::new($ssl_ctx);
3816 Net::SSLeay::set_fd($ssl_con, fileno($sock));
3817 if (!Net::SSLeay::accept($ssl_con)) {
3818         print STDERR "Failed to initialize SSL connection\n";
3819         return undef;
3820         }
3821 return $ssl_con;
3822 }
3823
3824 # login_redirect(username, password, host)
3825 # Calls the login redirect script (if configured), which may output a URL to
3826 # re-direct a user to after logging in.
3827 sub login_redirect
3828 {
3829 return undef if (!$config{'login_redirect'});
3830 local $quser = quotemeta($_[0]);
3831 local $qpass = quotemeta($_[1]);
3832 local $qhost = quotemeta($_[2]);
3833 local $url = `$config{'login_redirect'} $quser $qpass $qhost`;
3834 chop($url);
3835 return $url;
3836 }
3837
3838 # reload_config_file()
3839 # Re-read %config, and call post-config actions
3840 sub reload_config_file
3841 {
3842 &log_error("Reloading configuration");
3843 %config = &read_config_file($config_file);
3844 &update_vital_config();
3845 &read_users_file();
3846 &read_mime_types();
3847 &build_config_mappings();
3848 if ($config{'session'}) {
3849         dbmclose(%sessiondb);
3850         dbmopen(%sessiondb, $config{'sessiondb'}, 0700);
3851         }
3852 }
3853
3854 # read_config_file(file)
3855 # Reads the given config file, and returns a hash of values
3856 sub read_config_file
3857 {
3858 local %rv;
3859 open(CONF, $_[0]) || die "Failed to open config file $_[0] : $!";
3860 while(<CONF>) {
3861         s/\r|\n//g;
3862         if (/^#/ || !/\S/) { next; }
3863         /^([^=]+)=(.*)$/;
3864         $name = $1; $val = $2;
3865         $name =~ s/^\s+//g; $name =~ s/\s+$//g;
3866         $val =~ s/^\s+//g; $val =~ s/\s+$//g;
3867         $rv{$name} = $val;
3868         }
3869 close(CONF);
3870 return %rv;
3871 }
3872
3873 # update_vital_config()
3874 # Updates %config with defaults, and dies if something vital is missing
3875 sub update_vital_config
3876 {
3877 my %vital = ("port", 80,
3878           "root", "./",
3879           "server", "MiniServ/0.01",
3880           "index_docs", "index.html index.htm index.cgi index.php",
3881           "addtype_html", "text/html",
3882           "addtype_txt", "text/plain",
3883           "addtype_gif", "image/gif",
3884           "addtype_jpg", "image/jpeg",
3885           "addtype_jpeg", "image/jpeg",
3886           "realm", "MiniServ",
3887           "session_login", "/session_login.cgi",
3888           "pam_login", "/pam_login.cgi",
3889           "password_form", "/password_form.cgi",
3890           "password_change", "/password_change.cgi",
3891           "maxconns", 50,
3892           "pam", "webmin",
3893           "sidname", "sid",
3894           "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\$",
3895           "max_post", 10000,
3896           "expires", 7*24*60*60,
3897          );
3898 foreach my $v (keys %vital) {
3899         if (!$config{$v}) {
3900                 if ($vital{$v} eq "") {
3901                         die "Missing config option $v";
3902                         }
3903                 $config{$v} = $vital{$v};
3904                 }
3905         }
3906 if (!$config{'sessiondb'}) {
3907         $config{'pidfile'} =~ /^(.*)\/[^\/]+$/;
3908         $config{'sessiondb'} = "$1/sessiondb";
3909         }
3910 if (!$config{'errorlog'}) {
3911         $config{'logfile'} =~ /^(.*)\/[^\/]+$/;
3912         $config{'errorlog'} = "$1/miniserv.error";
3913         }
3914 if (!$config{'tempbase'}) {
3915         $config{'pidfile'} =~ /^(.*)\/[^\/]+$/;
3916         $config{'tempbase'} = "$1/cgitemp";
3917         }
3918 if (!$config{'blockedfile'}) {
3919         $config{'pidfile'} =~ /^(.*)\/[^\/]+$/;
3920         $config{'blockedfile'} = "$1/blocked";
3921         }
3922 }
3923
3924 # read_users_file()
3925 # Fills the %users and %certs hashes from the users file in %config
3926 sub read_users_file
3927 {
3928 undef(%users);
3929 undef(%certs);
3930 undef(%allow);
3931 undef(%deny);
3932 undef(%allowdays);
3933 undef(%allowhours);
3934 undef(%lastchanges);
3935 undef(%nochange);
3936 undef(%temppass);
3937 if ($config{'userfile'}) {
3938         open(USERS, $config{'userfile'});
3939         while(<USERS>) {
3940                 s/\r|\n//g;
3941                 local @user = split(/:/, $_, -1);
3942                 $users{$user[0]} = $user[1];
3943                 $certs{$user[0]} = $user[3] if ($user[3]);
3944                 if ($user[4] =~ /^allow\s+(.*)/) {
3945                         $allow{$user[0]} = $config{'alwaysresolve'} ?
3946                                 [ split(/\s+/, $1) ] :
3947                                 [ &to_ipaddress(split(/\s+/, $1)) ];
3948                         }
3949                 elsif ($user[4] =~ /^deny\s+(.*)/) {
3950                         $deny{$user[0]} = $config{'alwaysresolve'} ?
3951                                 [ split(/\s+/, $1) ] :
3952                                 [ &to_ipaddress(split(/\s+/, $1)) ];
3953                         }
3954                 if ($user[5] =~ /days\s+(\S+)/) {
3955                         $allowdays{$user[0]} = [ split(/,/, $1) ];
3956                         }
3957                 if ($user[5] =~ /hours\s+(\d+)\.(\d+)-(\d+).(\d+)/) {
3958                         $allowhours{$user[0]} = [ $1*60+$2, $3*60+$4 ];
3959                         }
3960                 $lastchanges{$user[0]} = $user[6];
3961                 $nochange{$user[0]} = $user[9];
3962                 $temppass{$user[0]} = $user[10];
3963                 }
3964         close(USERS);
3965         }
3966 }
3967
3968 # read_mime_types()
3969 # Fills %mime with entries from file in %config and extra settings in %config
3970 sub read_mime_types
3971 {
3972 undef(%mime);
3973 if ($config{"mimetypes"} ne "") {
3974         open(MIME, $config{"mimetypes"});
3975         while(<MIME>) {
3976                 chop; s/#.*$//;
3977                 if (/^(\S+)\s+(.*)$/) {
3978                         my $type = $1;
3979                         my @exts = split(/\s+/, $2);
3980                         foreach my $ext (@exts) {
3981                                 $mime{$ext} = $type;
3982                                 }
3983                         }
3984                 }
3985         close(MIME);
3986         }
3987 foreach my $k (keys %config) {
3988         if ($k !~ /^addtype_(.*)$/) { next; }
3989         $mime{$1} = $config{$k};
3990         }
3991 }
3992
3993 # build_config_mappings()
3994 # Build the anonymous access list, IP access list, unauthenticated URLs list,
3995 # redirect mapping and allow and deny lists from %config
3996 sub build_config_mappings
3997 {
3998 # build anonymous access list
3999 undef(%anonymous);
4000 foreach my $a (split(/\s+/, $config{'anonymous'})) {
4001         if ($a =~ /^([^=]+)=(\S+)$/) {
4002                 $anonymous{$1} = $2;
4003                 }
4004         }
4005
4006 # build IP access list
4007 undef(%ipaccess);
4008 foreach my $a (split(/\s+/, $config{'ipaccess'})) {
4009         if ($a =~ /^([^=]+)=(\S+)$/) {
4010                 $ipaccess{$1} = $2;
4011                 }
4012         }
4013
4014 # build unauthenticated URLs list
4015 @unauth = split(/\s+/, $config{'unauth'});
4016
4017 # build redirect mapping
4018 undef(%redirect);
4019 foreach my $r (split(/\s+/, $config{'redirect'})) {
4020         if ($r =~ /^([^=]+)=(\S+)$/) {
4021                 $redirect{$1} = $2;
4022                 }
4023         }
4024
4025 # build prefixes to be stripped
4026 undef(@strip_prefix);
4027 foreach my $r (split(/\s+/, $config{'strip_prefix'})) {
4028         push(@strip_prefix, $r);
4029         }
4030
4031 # Init allow and deny lists
4032 @deny = split(/\s+/, $config{"deny"});
4033 @deny = &to_ipaddress(@deny) if (!$config{'alwaysresolve'});
4034 @allow = split(/\s+/, $config{"allow"});
4035 @allow = &to_ipaddress(@allow) if (!$config{'alwaysresolve'});
4036 undef(@allowusers);
4037 undef(@denyusers);
4038 if ($config{'allowusers'}) {
4039         @allowusers = split(/\s+/, $config{'allowusers'});
4040         }
4041 elsif ($config{'denyusers'}) {
4042         @denyusers = split(/\s+/, $config{'denyusers'});
4043         }
4044
4045 # Build list of unixauth mappings
4046 undef(%unixauth);
4047 foreach my $ua (split(/\s+/, $config{'unixauth'})) {
4048         if ($ua =~ /^(\S+)=(\S+)$/) {
4049                 $unixauth{$1} = $2;
4050                 }
4051         else {
4052                 $unixauth{"*"} = $ua;
4053                 }
4054         }
4055
4056 # Build list of non-session-auth pages
4057 undef(%sessiononly);
4058 foreach my $sp (split(/\s+/, $config{'sessiononly'})) {
4059         $sessiononly{$sp} = 1;
4060         }
4061
4062 # Build list of logout times
4063 undef(@logouttimes);
4064 foreach my $a (split(/\s+/, $config{'logouttimes'})) {
4065         if ($a =~ /^([^=]+)=(\S+)$/) {
4066                 push(@logouttimes, [ $1, $2 ]);
4067                 }
4068         }
4069 push(@logouttimes, [ undef, $config{'logouttime'} ]);
4070
4071 # Build list of DAV pathss
4072 undef(@davpaths);
4073 foreach my $d (split(/\s+/, $config{'davpaths'})) {
4074         push(@davpaths, $d);
4075         }
4076 @davusers = split(/\s+/, $config{'dav_users'});
4077
4078 # Mobile agent substrings and hostname prefixes
4079 @mobile_agents = split(/\t+/, $config{'mobile_agents'});
4080 @mobile_prefixes = split(/\s+/, $config{'mobile_prefixes'});
4081
4082 # Open debug log
4083 close(DEBUG);
4084 if ($config{'debug'}) {
4085         open(DEBUG, ">>$config{'debug'}");
4086         }
4087 else {
4088         open(DEBUG, ">/dev/null");
4089         }
4090
4091 # Reset cache of sudo checks
4092 undef(%sudocache);
4093 }
4094
4095 # is_group_member(&uinfo, groupname)
4096 # Returns 1 if some user is a primary or secondary member of a group
4097 sub is_group_member
4098 {
4099 local ($uinfo, $group) = @_;
4100 local @ginfo = getgrnam($group);
4101 return 0 if (!@ginfo);
4102 return 1 if ($ginfo[2] == $uinfo->[3]); # primary member
4103 foreach my $m (split(/\s+/, $ginfo[3])) {
4104         return 1 if ($m eq $uinfo->[0]);
4105         }
4106 return 0;
4107 }
4108
4109 # prefix_to_mask(prefix)
4110 # Converts a number like 24 to a mask like 255.255.255.0
4111 sub prefix_to_mask
4112 {
4113 return $_[0] >= 24 ? "255.255.255.".(256-(2 ** (32-$_[0]))) :
4114        $_[0] >= 16 ? "255.255.".(256-(2 ** (24-$_[0]))).".0" :
4115        $_[0] >= 8 ? "255.".(256-(2 ** (16-$_[0]))).".0.0" :
4116                      (256-(2 ** (8-$_[0]))).".0.0.0";
4117 }
4118
4119 # get_logout_time(user, session-id)
4120 # Given a username, returns the idle time before he will be logged out
4121 sub get_logout_time
4122 {
4123 local ($user, $sid) = @_;
4124 if (!defined($logout_time_cache{$user,$sid})) {
4125         local $time;
4126         foreach my $l (@logouttimes) {
4127                 if ($l->[0] =~ /^\@(.*)$/) {
4128                         # Check group membership
4129                         local @uinfo = getpwnam($user);
4130                         if (@uinfo && &is_group_member(\@uinfo, $1)) {
4131                                 $time = $l->[1];
4132                                 }
4133                         }
4134                 elsif ($l->[0] =~ /^\//) {
4135                         # Check file contents
4136                         open(FILE, $l->[0]);
4137                         while(<FILE>) {
4138                                 s/\r|\n//g;
4139                                 s/^\s*#.*$//;
4140                                 if ($user eq $_) {
4141                                         $time = $l->[1];
4142                                         last;
4143                                         }
4144                                 }
4145                         close(FILE);
4146                         }
4147                 elsif (!$l->[0]) {
4148                         # Always match
4149                         $time = $l->[1];
4150                         }
4151                 else {
4152                         # Check username
4153                         if ($l->[0] eq $user) {
4154                                 $time = $l->[1];
4155                                 }
4156                         }
4157                 last if (defined($time));
4158                 }
4159         $logout_time_cache{$user,$sid} = $time;
4160         }
4161 return $logout_time_cache{$user,$sid};
4162 }
4163
4164 sub unix_crypt
4165 {
4166 local ($pass, $salt) = @_;
4167 if ($use_perl_crypt) {
4168         return Crypt::UnixCrypt::crypt($pass, $salt);
4169         }
4170 else {
4171         return crypt($pass, $salt);
4172         }
4173 }
4174
4175 # handle_dav_request(davpath)
4176 # Pass a request on to the Net::DAV::Server module
4177 sub handle_dav_request
4178 {
4179 local ($path) = @_;
4180 eval "use Filesys::Virtual::Plain";
4181 eval "use Net::DAV::Server";
4182 eval "use HTTP::Request";
4183 eval "use HTTP::Headers";
4184
4185 if ($Net::DAV::Server::VERSION eq '1.28' && $config{'dav_nolock'}) {
4186         delete $Net::DAV::Server::implemented{lock};
4187         delete $Net::DAV::Server::implemented{unlock};
4188         }
4189
4190 # Read in request data
4191 if (!$posted_data) {
4192         local $clen = $header{"content-length"};
4193         while(length($posted_data) < $clen) {
4194                 $buf = &read_data($clen - length($posted_data));
4195                 if (!length($buf)) {
4196                         &http_error(500, "Failed to read POST request");
4197                         }
4198                 chomp($posted_data);
4199                 #$posted_data =~ s/\015$//mg;
4200                 $posted_data .= $buf;
4201                 }
4202         }
4203
4204 # For subsequent logging
4205 open(MINISERVLOG, ">>$config{'logfile'}");
4206
4207 # Switch to user
4208 local $root;
4209 local @u = getpwnam($authuser);
4210 if ($config{'dav_remoteuser'} && !$< && $validated) {
4211         if (@u) {
4212                 if ($u[2] != 0) {
4213                         $( = $u[3]; $) = "$u[3] $u[3]";
4214                         ($>, $<) = ($u[2], $u[2]);
4215                         }
4216                 if ($config{'dav_root'} eq '*') {
4217                         $root = $u[7];
4218                         }
4219                 }
4220         else {
4221                 &http_error(500, "Unix user $authuser does not exist");
4222                 return 0;
4223                 }
4224         }
4225 $root ||= $config{'dav_root'};
4226 $root ||= "/";
4227
4228 # Check if this user can use DAV
4229 if (@davusers) {
4230         &users_match(\@u, @davusers) ||
4231                 &http_error(500, "You are not allowed to access DAV");
4232         }
4233
4234 # Create DAV server
4235 my $filesys = Filesys::Virtual::Plain->new({root_path => $root});
4236 my $webdav = Net::DAV::Server->new();
4237 $webdav->filesys($filesys);
4238
4239 # Make up a request object, and feed to DAV
4240 local $ho = HTTP::Headers->new;
4241 foreach my $h (keys %header) {
4242         next if (lc($h) eq "connection");
4243         $ho->header($h => $header{$h});
4244         }
4245 if ($path ne "/") {
4246         $request_uri =~ s/^\Q$path\E//;
4247         $request_uri = "/" if ($request_uri eq "");
4248         }
4249 my $request = HTTP::Request->new($method, $request_uri, $ho,
4250                                  $posted_data);
4251 if ($config{'dav_debug'}) {
4252         print STDERR "DAV request :\n";
4253         print STDERR "---------------------------------------------\n";
4254         print STDERR $request->as_string();
4255         print STDERR "---------------------------------------------\n";
4256         }
4257 my $response = $webdav->run($request);
4258
4259 # Send back the reply
4260 &write_data("HTTP/1.1 ",$response->code()," ",$response->message(),"\r\n");
4261 local $content = $response->content();
4262 if ($path ne "/") {
4263         $content =~ s|href>/(.+)<|href>$path/$1<|g;
4264         $content =~ s|href>/<|href>$path<|g;
4265         }
4266 foreach my $h ($response->header_field_names) {
4267         next if (lc($h) eq "connection" || lc($h) eq "content-length");
4268         &write_data("$h: ",$response->header($h),"\r\n");
4269         }
4270 &write_data("Content-length: ",length($content),"\r\n");
4271 local $rv = &write_keep_alive(0);
4272 &write_data("\r\n");
4273 &write_data($content);
4274
4275 if ($config{'dav_debug'}) {
4276         print STDERR "DAV reply :\n";
4277         print STDERR "---------------------------------------------\n";
4278         print STDERR "HTTP/1.1 ",$response->code()," ",$response->message(),"\r\n";
4279         foreach my $h ($response->header_field_names) {
4280                 next if (lc($h) eq "connection" || lc($h) eq "content-length");
4281                 print STDERR "$h: ",$response->header($h),"\r\n";
4282                 }
4283         print STDERR "Content-length: ",length($content),"\r\n";
4284         print STDERR "\r\n";
4285         print STDERR $content;
4286         print STDERR "---------------------------------------------\n";
4287         }
4288
4289 # Log it
4290 &log_request($acpthost, $authuser, $reqline, $response->code(), 
4291              length($response->content()));
4292 }
4293
4294 # get_system_hostname()
4295 # Returns the hostname of this system, for reporting to listeners
4296 sub get_system_hostname
4297 {
4298 # On Windows, try computername environment variable
4299 return $ENV{'computername'} if ($ENV{'computername'});
4300 return $ENV{'COMPUTERNAME'} if ($ENV{'COMPUTERNAME'});
4301
4302 # If a specific command is set, use it first
4303 if ($config{'hostname_command'}) {
4304         local $out = `($config{'hostname_command'}) 2>&1`;
4305         if (!$?) {
4306                 $out =~ s/\r|\n//g;
4307                 return $out;
4308                 }
4309         }
4310
4311 # First try the hostname command
4312 local $out = `hostname 2>&1`;
4313 if (!$? && $out =~ /\S/) {
4314         $out =~ s/\r|\n//g;
4315         return $out;
4316         }
4317
4318 # Try the Sys::Hostname module
4319 eval "use Sys::Hostname";
4320 if (!$@) {
4321         local $rv = eval "hostname()";
4322         if (!$@ && $rv) {
4323                 return $rv;
4324                 }
4325         }
4326
4327 # Must use net name on Windows
4328 local $out = `net name 2>&1`;
4329 if ($out =~ /\-+\r?\n(\S+)/) {
4330         return $1;
4331         }
4332
4333 return undef;
4334 }
4335
4336 # indexof(string, array)
4337 # Returns the index of some value in an array, or -1
4338 sub indexof {
4339   local($i);
4340   for($i=1; $i <= $#_; $i++) {
4341     if ($_[$i] eq $_[0]) { return $i - 1; }
4342   }
4343   return -1;
4344 }
4345
4346
4347 # has_command(command)
4348 # Returns the full path if some command is in the path, undef if not
4349 sub has_command
4350 {
4351 local($d);
4352 if (!$_[0]) { return undef; }
4353 if (exists($has_command_cache{$_[0]})) {
4354         return $has_command_cache{$_[0]};
4355         }
4356 local $rv = undef;
4357 if ($_[0] =~ /^\//) {
4358         $rv = -x $_[0] ? $_[0] : undef;
4359         }
4360 else {
4361         local $sp = $on_windows ? ';' : ':';
4362         foreach $d (split($sp, $ENV{PATH})) {
4363                 if (-x "$d/$_[0]") {
4364                         $rv = "$d/$_[0]";
4365                         last;
4366                         }
4367                 if ($on_windows) {
4368                         foreach my $sfx (".exe", ".com", ".bat") {
4369                                 if (-r "$d/$_[0]".$sfx) {
4370                                         $rv = "$d/$_[0]".$sfx;
4371                                         last;
4372                                         }
4373                                 }
4374                         }
4375                 }
4376         }
4377 $has_command_cache{$_[0]} = $rv;
4378 return $rv;
4379 }
4380
4381 # check_sudo_permissions(user, pass)
4382 # Returns 1 if some user can run any command via sudo
4383 sub check_sudo_permissions
4384 {
4385 local ($user, $pass) = @_;
4386
4387 # First try the pipes
4388 if ($PASSINw) {
4389         print DEBUG "check_sudo_permissions: querying cache for $user\n";
4390         print $PASSINw "readsudo $user\n";
4391         local $can = <$PASSOUTr>;
4392         chop($can);
4393         print DEBUG "check_sudo_permissions: cache said $can\n";
4394         if ($can =~ /^\d+$/ && $can != 2) {
4395                 return int($can);
4396                 }
4397         }
4398
4399 local $ptyfh = new IO::Pty;
4400 print DEBUG "check_sudo_permissions: ptyfh=$ptyfh\n";
4401 if (!$ptyfh) {
4402         print STDERR "Failed to create new PTY with IO::Pty\n";
4403         return 0;
4404         }
4405 local @uinfo = getpwnam($user);
4406 if (!@uinfo) {
4407         print STDERR "Unix user $user does not exist for sudo\n";
4408         return 0;
4409         }
4410
4411 # Execute sudo in a sub-process, via a pty
4412 local $ttyfh = $ptyfh->slave();
4413 print DEBUG "check_sudo_permissions: ttyfh=$ttyfh\n";
4414 local $tty = $ptyfh->ttyname();
4415 print DEBUG "check_sudo_permissions: tty=$tty\n";
4416 chown($uinfo[2], $uinfo[3], $tty);
4417 pipe(SUDOr, SUDOw);
4418 print DEBUG "check_sudo_permissions: about to fork..\n";
4419 local $pid = fork();
4420 print DEBUG "check_sudo_permissions: fork=$pid pid=$$\n";
4421 if ($pid < 0) {
4422         print STDERR "fork for sudo failed : $!\n";
4423         return 0;
4424         }
4425 if (!$pid) {
4426         setsid();
4427         $ptyfh->make_slave_controlling_terminal();
4428         close(STDIN); close(STDOUT); close(STDERR);
4429         untie(*STDIN); untie(*STDOUT); untie(*STDERR);
4430         close($PASSINw); close($PASSOUTr);
4431         $( = $uinfo[3]; $) = "$uinfo[3] $uinfo[3]";
4432         ($>, $<) = ($uinfo[2], $uinfo[2]);
4433
4434         close(SUDOw);
4435         close(SOCK);
4436         close(MAIN);
4437         open(STDIN, "<&SUDOr");
4438         open(STDOUT, ">$tty");
4439         open(STDERR, ">&STDOUT");
4440         close($ptyfh);
4441         exec("sudo -l -S");
4442         print "Exec failed : $!\n";
4443         exit 1;
4444         }
4445 print DEBUG "check_sudo_permissions: pid=$pid\n";
4446 close(SUDOr);
4447 $ptyfh->close_slave();
4448
4449 # Send password, and get back response
4450 local $oldfh = select(SUDOw);
4451 $| = 1;
4452 select($oldfh);
4453 print DEBUG "check_sudo_permissions: about to send pass\n";
4454 local $SIG{'PIPE'} = 'ignore';  # Sometimes sudo doesn't ask for a password
4455 print SUDOw $pass,"\n";
4456 print DEBUG "check_sudo_permissions: sent pass=$pass\n";
4457 close(SUDOw);
4458 local $out;
4459 while(<$ptyfh>) {
4460         print DEBUG "check_sudo_permissions: got $_";
4461         $out .= $_;
4462         }
4463 close($ptyfh);
4464 kill('KILL', $pid);
4465 waitpid($pid, 0);
4466 local ($ok) = ($out =~ /\(ALL\)\s+ALL/ ? 1 : 0);
4467
4468 # Update cache
4469 if ($PASSINw) {
4470         print $PASSINw "writesudo $user $ok\n";
4471         }
4472
4473 return $ok;
4474 }
4475
4476 # is_mobile_useragent(agent)
4477 # Returns 1 if some user agent looks like a cellphone or other mobile device,
4478 # such as a treo.
4479 sub is_mobile_useragent
4480 {
4481 local ($agent) = @_;
4482 local @prefixes = ( 
4483     "UP.Link",    # Openwave
4484     "Nokia",      # All Nokias start with Nokia
4485     "MOT-",       # All Motorola phones start with MOT-
4486     "SAMSUNG",    # Samsung browsers
4487     "Samsung",    # Samsung browsers
4488     "SEC-",       # Samsung browsers
4489     "AU-MIC",     # Samsung browsers
4490     "AUDIOVOX",   # Audiovox
4491     "BlackBerry", # BlackBerry
4492     "hiptop",     # Danger hiptop Sidekick
4493     "SonyEricsson", # Sony Ericsson
4494     "Ericsson",     # Old Ericsson browsers , mostly WAP
4495     "Mitsu/1.1.A",  # Mitsubishi phones
4496     "Panasonic WAP", # Panasonic old WAP phones
4497     "DoCoMo",     # DoCoMo phones
4498     "Lynx",       # Lynx text-mode linux browser
4499     "Links",      # Another text-mode linux browser
4500     );
4501 local @substrings = (
4502     "UP.Browser",         # Openwave
4503     "MobilePhone",        # NetFront
4504     "AU-MIC-A700",        # Samsung A700 Obigo browsers
4505     "Danger hiptop",      # Danger Sidekick hiptop
4506     "Windows CE",         # Windows CE Pocket PC
4507     "Blazer",             # Palm Treo Blazer
4508     "BlackBerry",         # BlackBerries can emulate other browsers, but
4509                           # they still keep this string in the UserAgent
4510     "SymbianOS",          # New Series60 browser has safari in it and
4511                           # SymbianOS is the only distinguishing string
4512     "iPhone",             # Apple iPhone KHTML browser
4513     "iPod",               # iPod touch browser
4514     );
4515 foreach my $p (@prefixes) {
4516         return 1 if ($agent =~ /^\Q$p\E/);
4517         }
4518 foreach my $s (@substrings, @mobile_agents) {
4519         return 1 if ($agent =~ /\Q$s\E/);
4520         }
4521 return 0;
4522 }
4523
4524 # write_blocked_file()
4525 # Writes out a text file of blocked hosts and users
4526 sub write_blocked_file
4527 {
4528 open(BLOCKED, ">$config{'blockedfile'}");
4529 foreach my $d (grep { $hostfail{$_} } @deny) {
4530         print BLOCKED "host $d $hostfail{$d} $blockhosttime{$d}\n";
4531         }
4532 foreach my $d (grep { $userfail{$_} } @denyusers) {
4533         print BLOCKED "user $d $userfail{$d} $blockusertime{$d}\n";
4534         }
4535 close(BLOCKED);
4536 chmod(0700, $config{'blockedfile'});
4537 }
4538
4539 sub write_pid_file
4540 {
4541 open(PIDFILE, ">$config{'pidfile'}");
4542 printf PIDFILE "%d\n", getpid();
4543 close(PIDFILE);
4544 }
4545
4546 # lock_user_password(user)
4547 # Updates a user's password file entry to lock it, both in memory and on disk.
4548 # Returns 1 if done, -1 if no such user, 0 if already locked
4549 sub lock_user_password
4550 {
4551 local ($user) = @_;
4552 if ($users{$user}) {
4553         if ($users{$user} !~ /^\!/) {
4554                 # Lock the password
4555                 $users{$user} = "!".$users{$user};
4556                 open(USERS, $config{'userfile'});
4557                 local @ufile = <USERS>;
4558                 close(USERS);
4559                 foreach my $u (@ufile) {
4560                         local @uinfo = split(/:/, $u);
4561                         if ($uinfo[0] eq $user) {
4562                                 $uinfo[1] = $users{$user};
4563                                 }
4564                         $u = join(":", @uinfo);
4565                         }
4566                 open(USERS, ">$config{'userfile'}");
4567                 print USERS @ufile;
4568                 close(USERS);
4569                 return 1;
4570                 }
4571         return 0;
4572         }
4573 return -1;
4574 }
4575
4576 # hash_session_id(sid)
4577 # Returns an MD5 or Unix-crypted session ID
4578 sub hash_session_id
4579 {
4580 local ($sid) = @_;
4581 if (!$hash_session_id_cache{$sid}) {
4582         if ($use_md5) {
4583                 # Take MD5 hash
4584                 $hash_session_id_cache{$sid} = &encrypt_md5($sid);
4585                 }
4586         else {
4587                 # Unix crypt
4588                 $hash_session_id_cache{$sid} = &unix_crypt($sid, "XX");
4589                 }
4590         }
4591 return $hash_session_id_cache{$sid};
4592 }
4593
4594 # encrypt_md5(string)
4595 # Returns a string encrypted in MD5 format
4596 sub encrypt_md5
4597 {
4598 local $passwd = $_[0];
4599
4600 # Add the password
4601 local $ctx = eval "new $use_md5";
4602 $ctx->add($passwd);
4603
4604 # Add some more stuff from the hash of the password and salt
4605 local $ctx1 = eval "new $use_md5";
4606 $ctx1->add($passwd);
4607 $ctx1->add($passwd);
4608 local $final = $ctx1->digest();
4609 for($pl=length($passwd); $pl>0; $pl-=16) {
4610         $ctx->add($pl > 16 ? $final : substr($final, 0, $pl));
4611         }
4612
4613 # This piece of code seems rather pointless, but it's in the C code that
4614 # does MD5 in PAM so it has to go in!
4615 local $j = 0;
4616 local ($i, $l);
4617 for($i=length($passwd); $i; $i >>= 1) {
4618         if ($i & 1) {
4619                 $ctx->add("\0");
4620                 }
4621         else {
4622                 $ctx->add(substr($passwd, $j, 1));
4623                 }
4624         }
4625 $final = $ctx->digest();
4626
4627 # Convert the 16-byte final string into a readable form
4628 local $rv;
4629 local @final = map { ord($_) } split(//, $final);
4630 $l = ($final[ 0]<<16) + ($final[ 6]<<8) + $final[12];
4631 $rv .= &to64($l, 4);
4632 $l = ($final[ 1]<<16) + ($final[ 7]<<8) + $final[13];
4633 $rv .= &to64($l, 4);
4634 $l = ($final[ 2]<<16) + ($final[ 8]<<8) + $final[14];
4635 $rv .= &to64($l, 4);
4636 $l = ($final[ 3]<<16) + ($final[ 9]<<8) + $final[15];
4637 $rv .= &to64($l, 4);
4638 $l = ($final[ 4]<<16) + ($final[10]<<8) + $final[ 5];
4639 $rv .= &to64($l, 4);
4640 $l = $final[11];
4641 $rv .= &to64($l, 2);
4642
4643 return $rv;
4644 }
4645
4646 sub to64
4647 {
4648 local ($v, $n) = @_;
4649 local $r;
4650 while(--$n >= 0) {
4651         $r .= $itoa64[$v & 0x3f];
4652         $v >>= 6;
4653         }
4654 return $r;
4655 }
4656