Remove useless defined statements
[webmin.git] / web-lib-funcs.pl
1 =head1 web-lib-funcs.pl
2
3 Common functions for Webmin CGI scripts. This file gets in-directly included
4 by all scripts that use web-lib.pl.
5 Example code:
6
7   use WebminCore;
8   init_config();
9   ui_print_header(undef, 'My Module', '');
10   print 'This is Webmin version ',get_webmin_version(),'<p>\n';
11   ui_print_footer();
12
13 =cut
14
15 #use warnings;
16 use Socket;
17 use POSIX;
18
19 use vars qw($user_risk_level $loaded_theme_library $wait_for_input
20             $done_webmin_header $trust_unknown_referers $unsafe_index_cgi
21             %done_foreign_require $webmin_feedback_address
22             $user_skill_level $pragma_no_cache $foreign_args);
23 # Globals
24 use vars qw($module_index_name $number_to_month_map $month_to_number_map
25             $umask_already $default_charset $licence_status $os_type
26             $licence_message $script_name $loaded_theme_oo_library
27             $done_web_lib_funcs $os_version $module_index_link
28             $called_from_webmin_core);
29
30 =head2 read_file(file, &hash, [&order], [lowercase], [split-char])
31
32 Fill the given hash reference with name=value pairs from a file. The required
33 parameters are :
34
35 =item file - The file to head, which must be text with each line like name=value
36
37 =item hash - The hash reference to add values read from the file to.
38
39 =item order - If given, an array reference to add names to in the order they were read
40
41 =item lowercase - If set to 1, names are converted to lower case
42
43 =item split-char - If set, names and values are split on this character instead of =
44
45 =cut
46 sub read_file
47 {
48 local $_;
49 my $split = defined($_[4]) ? $_[4] : "=";
50 my $realfile = &translate_filename($_[0]);
51 &open_readfile(ARFILE, $_[0]) || return 0;
52 while(<ARFILE>) {
53         chomp;
54         my $hash = index($_, "#");
55         my $eq = index($_, $split);
56         if ($hash != 0 && $eq >= 0) {
57                 my $n = substr($_, 0, $eq);
58                 my $v = substr($_, $eq+1);
59                 chomp($v);
60                 $_[1]->{$_[3] ? lc($n) : $n} = $v;
61                 push(@{$_[2]}, $n) if ($_[2]);
62                 }
63         }
64 close(ARFILE);
65 $main::read_file_missing{$realfile} = 0;        # It exists now
66 if (defined($main::read_file_cache{$realfile})) {
67         %{$main::read_file_cache{$realfile}} = %{$_[1]};
68         }
69 return 1;
70 }
71
72 =head2 read_file_cached(file, &hash, [&order], [lowercase], [split-char])
73
74 Like read_file, but reads from an in-memory cache if the file has already been
75 read in this Webmin script. Recommended, as it behaves exactly the same as
76 read_file, but can be much faster.
77
78 =cut
79 sub read_file_cached
80 {
81 my $realfile = &translate_filename($_[0]);
82 if (defined($main::read_file_cache{$realfile})) {
83         # Use cached data
84         %{$_[1]} = ( %{$_[1]}, %{$main::read_file_cache{$realfile}} );
85         return 1;
86         }
87 elsif ($main::read_file_missing{$realfile}) {
88         # Doesn't exist, so don't re-try read
89         return 0;
90         }
91 else {
92         # Actually read the file
93         my %d;
94         if (&read_file($_[0], \%d, $_[2], $_[3], $_[4])) {
95                 %{$main::read_file_cache{$realfile}} = %d;
96                 %{$_[1]} = ( %{$_[1]}, %d );
97                 return 1;
98                 }
99         else {
100                 # Flag as non-existant
101                 $main::read_file_missing{$realfile} = 1;
102                 return 0;
103                 }
104         }
105 }
106  
107 =head2 write_file(file, &hash, [join-char])
108
109 Write out the contents of a hash as name=value lines. The parameters are :
110
111 =item file - Full path to write to
112
113 =item hash - A hash reference containing names and values to output
114
115 =item join-char - If given, names and values are separated by this instead of =
116
117 =cut
118 sub write_file
119 {
120 my (%old, @order);
121 my $join = defined($_[2]) ? $_[2] : "=";
122 my $realfile = &translate_filename($_[0]);
123 &read_file($_[0], \%old, \@order);
124 &open_tempfile(ARFILE, ">$_[0]");
125 foreach $k (@order) {
126         if (exists($_[1]->{$k})) {
127                 (print ARFILE $k,$join,$_[1]->{$k},"\n") ||
128                         &error(&text("efilewrite", $realfile, $!));
129                 }
130         }
131 foreach $k (keys %{$_[1]}) {
132         if (!exists($old{$k})) {
133                 (print ARFILE $k,$join,$_[1]->{$k},"\n") ||
134                         &error(&text("efilewrite", $realfile, $!));
135                 }
136         }
137 &close_tempfile(ARFILE);
138 if (defined($main::read_file_cache{$realfile})) {
139         %{$main::read_file_cache{$realfile}} = %{$_[1]};
140         }
141 if (defined($main::read_file_missing{$realfile})) {
142         $main::read_file_missing{$realfile} = 0;
143         }
144 }
145
146 =head2 html_escape(string)
147
148 Converts &, < and > codes in text to HTML entities, and returns the new string.
149 This should be used when including data read from other sources in HTML pages.
150
151 =cut
152 sub html_escape
153 {
154 my ($tmp) = @_;
155 $tmp =~ s/&/&amp;/g;
156 $tmp =~ s/</&lt;/g;
157 $tmp =~ s/>/&gt;/g;
158 $tmp =~ s/\"/&quot;/g;
159 $tmp =~ s/\'/&#39;/g;
160 $tmp =~ s/=/&#61;/g;
161 return $tmp;
162 }
163
164 =head2 quote_escape(string, [only-quote])
165
166 Converts ' and " characters in a string into HTML entities, and returns it.
167 Useful for outputing HTML tag values.
168
169 =cut
170 sub quote_escape
171 {
172 my ($tmp, $only) = @_;
173 if ($tmp !~ /\&[a-zA-Z]+;/ && $tmp !~ /\&#/) {
174         # convert &, unless it is part of &#nnn; or &foo;
175         $tmp =~ s/&([^#])/&amp;$1/g;
176         }
177 $tmp =~ s/&$/&amp;/g;
178 $tmp =~ s/\"/&quot;/g if ($only eq '' || $only eq '"');
179 $tmp =~ s/\'/&#39;/g if ($only eq '' || $only eq "'");
180 return $tmp;
181 }
182
183 =head2 tempname([filename])
184
185 Returns a mostly random temporary file name, typically under the /tmp/.webmin
186 directory. If filename is given, this will be the base name used. Otherwise
187 a unique name is selected randomly.
188
189 =cut
190 sub tempname
191 {
192 my $tmp_base = $gconfig{'tempdir_'.&get_module_name()} ?
193                         $gconfig{'tempdir_'.&get_module_name()} :
194                   $gconfig{'tempdir'} ? $gconfig{'tempdir'} :
195                   $ENV{'TEMP'} ? $ENV{'TEMP'} :
196                   $ENV{'TMP'} ? $ENV{'TMP'} :
197                   -d "c:/temp" ? "c:/temp" : "/tmp/.webmin";
198 my $tmp_dir = -d $remote_user_info[7] && !$gconfig{'nohometemp'} ?
199                         "$remote_user_info[7]/.tmp" :
200                  @remote_user_info ? $tmp_base."-".$remote_user :
201                  $< != 0 ? $tmp_base."-".getpwuid($<) :
202                                      $tmp_base;
203 if ($gconfig{'os_type'} eq 'windows' || $tmp_dir =~ /^[a-z]:/i) {
204         # On Windows system, just create temp dir if missing
205         if (!-d $tmp_dir) {
206                 mkdir($tmp_dir, 0755) ||
207                         &error("Failed to create temp directory $tmp_dir : $!");
208                 }
209         }
210 else {
211         # On Unix systems, need to make sure temp dir is valid
212         my $tries = 0;
213         while($tries++ < 10) {
214                 my @st = lstat($tmp_dir);
215                 last if ($st[4] == $< && (-d _) && ($st[2] & 0777) == 0755);
216                 if (@st) {
217                         unlink($tmp_dir) || rmdir($tmp_dir) ||
218                                 system("/bin/rm -rf ".quotemeta($tmp_dir));
219                         }
220                 mkdir($tmp_dir, 0755) || next;
221                 chown($<, $(, $tmp_dir);
222                 chmod(0755, $tmp_dir);
223                 }
224         if ($tries >= 10) {
225                 my @st = lstat($tmp_dir);
226                 &error("Failed to create temp directory $tmp_dir : uid=$st[4] mode=$st[2]");
227                 }
228         }
229 my $rv;
230 if (defined($_[0]) && $_[0] !~ /\.\./) {
231         $rv = "$tmp_dir/$_[0]";
232         }
233 else {
234         $main::tempfilecount++;
235         &seed_random();
236         $rv = $tmp_dir."/".int(rand(1000000))."_".
237                $main::tempfilecount."_".$scriptname;
238         }
239 return $rv;
240 }
241
242 =head2 transname([filename])
243
244 Behaves exactly like tempname, but records the temp file for deletion when the
245 current Webmin script process exits.
246
247 =cut
248 sub transname
249 {
250 my $rv = &tempname(@_);
251 push(@main::temporary_files, $rv);
252 return $rv;
253 }
254
255 =head2 trunc(string, maxlen)
256
257 Truncates a string to the shortest whole word less than or equal to the
258 given width. Useful for word wrapping.
259
260 =cut
261 sub trunc
262 {
263 if (length($_[0]) <= $_[1]) {
264         return $_[0];
265         }
266 my $str = substr($_[0],0,$_[1]);
267 my $c;
268 do {
269         $c = chop($str);
270         } while($c !~ /\S/);
271 $str =~ s/\s+$//;
272 return $str;
273 }
274
275 =head2 indexof(string, value, ...)
276
277 Returns the index of some value in an array of values, or -1 if it was not
278 found.
279
280 =cut
281 sub indexof
282 {
283 for(my $i=1; $i <= $#_; $i++) {
284         if ($_[$i] eq $_[0]) { return $i - 1; }
285         }
286 return -1;
287 }
288
289 =head2 indexoflc(string, value, ...)
290
291 Like indexof, but does a case-insensitive match
292
293 =cut
294 sub indexoflc
295 {
296 my $str = lc(shift(@_));
297 my @arr = map { lc($_) } @_;
298 return &indexof($str, @arr);
299 }
300
301 =head2 sysprint(handle, [string]+)
302
303 Outputs some strings to a file handle, but bypassing IO buffering. Can be used
304 as a replacement for print when writing to pipes or sockets.
305
306 =cut
307 sub sysprint
308 {
309 my $fh = &callers_package($_[0]);
310 my $str = join('', @_[1..$#_]);
311 syswrite $fh, $str, length($str);
312 }
313
314 =head2 check_ipaddress(ip)
315
316 Check if some IPv4 address is properly formatted, returning 1 if so or 0 if not.
317
318 =cut
319 sub check_ipaddress
320 {
321 return $_[0] =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ &&
322         $1 >= 0 && $1 <= 255 &&
323         $2 >= 0 && $2 <= 255 &&
324         $3 >= 0 && $3 <= 255 &&
325         $4 >= 0 && $4 <= 255;
326 }
327
328 =head2 check_ip6address(ip)
329
330 Check if some IPv6 address is properly formatted, and returns 1 if so.
331
332 =cut
333 sub check_ip6address
334 {
335   my @blocks = split(/:/, $_[0]);
336   return 0 if (@blocks == 0 || @blocks > 8);
337
338   # The address/netmask format is accepted. So we're looking for a "/" to isolate a possible netmask.
339   # After that, we delete the netmask to control the address only format, but we verify whether the netmask 
340   # value is in [0;128].
341   my $ib = $#blocks;
342   my $where = index($blocks[$ib],"/");
343   my $m = 0;
344   if ($where != -1) {
345     my $b = substr($blocks[$ib],0,$where);
346     $m = substr($blocks[$ib],$where+1,length($blocks[$ib])-($where+1));
347     $blocks[$ib]=$b;
348   }
349
350   # The netmask must take its value in [0;128] 
351   return 0 if ($m <0 || $m >128); 
352
353   # Check the different blocks of the address : 16 bits block in hexa notation.
354   # Possibility of 1 empty block or 2 if the address begins with "::".
355   my $b;
356   my $empty = 0;
357   foreach $b (@blocks) {
358           return 0 if ($b ne "" && $b !~ /^[0-9a-f]{1,4}$/i);
359           $empty++ if ($b eq "");
360           }
361   return 0 if ($empty > 1 && !($_[0] =~ /^::/ && $empty == 2));
362   return 1;
363 }
364
365
366
367 =head2 generate_icon(image, title, link, [href], [width], [height], [before-title], [after-title])
368
369 Prints HTML for an icon image. The parameters are :
370
371 =item image - URL for the image, like images/foo.gif
372
373 =item title - Text to appear under the icon
374
375 =item link - Optional destination for the icon's link
376
377 =item href - Other HTML attributes to be added to the <a href> for the link
378
379 =item width - Optional width of the icon
380
381 =item height - Optional height of the icon
382
383 =item before-title - HTML to appear before the title link, but which is not actually in the link
384
385 =item after-title - HTML to appear after the title link, but which is not actually in the link
386
387 =cut
388 sub generate_icon
389 {
390 &load_theme_library();
391 if (defined(&theme_generate_icon)) {
392         &theme_generate_icon(@_);
393         return;
394         }
395 my $w = !defined($_[4]) ? "width=48" : $_[4] ? "width=$_[4]" : "";
396 my $h = !defined($_[5]) ? "height=48" : $_[5] ? "height=$_[5]" : "";
397 if ($tconfig{'noicons'}) {
398         if ($_[2]) {
399                 print "$_[6]<a href=\"$_[2]\" $_[3]>$_[1]</a>$_[7]\n";
400                 }
401         else {
402                 print "$_[6]$_[1]$_[7]\n";
403                 }
404         }
405 elsif ($_[2]) {
406         print "<table border><tr><td width=48 height=48>\n",
407               "<a href=\"$_[2]\" $_[3]><img src=\"$_[0]\" alt=\"\" border=0 ",
408               "$w $h></a></td></tr></table>\n";
409         print "$_[6]<a href=\"$_[2]\" $_[3]>$_[1]</a>$_[7]\n";
410         }
411 else {
412         print "<table border><tr><td width=48 height=48>\n",
413               "<img src=\"$_[0]\" alt=\"\" border=0 $w $h>",
414               "</td></tr></table>\n$_[6]$_[1]$_[7]\n";
415         }
416 }
417
418 =head2 urlize
419
420 Converts a string to a form ok for putting in a URL, using % escaping.
421
422 =cut
423 sub urlize
424 {
425 my ($rv) = @_;
426 $rv =~ s/([^A-Za-z0-9])/sprintf("%%%2.2X", ord($1))/ge;
427 return $rv;
428 }
429
430 =head2 un_urlize(string)
431
432 Converts a URL-encoded string to it's original contents - the reverse of the
433 urlize function.
434
435 =cut
436 sub un_urlize
437 {
438 my ($rv) = @_;
439 $rv =~ s/\+/ /g;
440 $rv =~ s/%(..)/pack("c",hex($1))/ge;
441 return $rv;
442 }
443
444 =head2 include(filename)
445
446 Read and output the contents of the given file.
447
448 =cut
449 sub include
450 {
451 local $_;
452 open(INCLUDE, &translate_filename($_[0])) || return 0;
453 while(<INCLUDE>) {
454         print;
455         }
456 close(INCLUDE);
457 return 1;
458 }
459
460 =head2 copydata(in-handle, out-handle)
461
462 Read from one file handle and write to another, until there is no more to read.
463
464 =cut
465 sub copydata
466 {
467 my ($in, $out) = @_;
468 $in = &callers_package($in);
469 $out = &callers_package($out);
470 my $buf;
471 while(read($in, $buf, 1024) > 0) {
472         (print $out $buf) || return 0;
473         }
474 return 1;
475 }
476
477 =head2 ReadParseMime([maximum], [&cbfunc, &cbargs])
478
479 Read data submitted via a POST request using the multipart/form-data coding,
480 and store it in the global %in hash. The optional parameters are :
481
482 =item maximum - If the number of bytes of input exceeds this number, stop reading and call error.
483
484 =item cbfunc - A function reference to call after reading each block of data.
485
486 =item cbargs - Additional parameters to the callback function.
487
488 =cut
489 sub ReadParseMime
490 {
491 my ($max, $cbfunc, $cbargs) = @_;
492 my ($boundary, $line, $foo, $name, $got, $file);
493 my $err = &text('readparse_max', $max);
494 $ENV{'CONTENT_TYPE'} =~ /boundary=(.*)$/ || &error($text{'readparse_enc'});
495 if ($ENV{'CONTENT_LENGTH'} && $max && $ENV{'CONTENT_LENGTH'} > $max) {
496         &error($err);
497         }
498 &$cbfunc(0, $ENV{'CONTENT_LENGTH'}, $file, @$cbargs) if ($cbfunc);
499 $boundary = $1;
500 <STDIN>;        # skip first boundary
501 while(1) {
502         $name = "";
503         # Read section headers
504         my $lastheader;
505         while(1) {
506                 $line = <STDIN>;
507                 $got += length($line);
508                 &$cbfunc($got, $ENV{'CONTENT_LENGTH'}, @$cbargs) if ($cbfunc);
509                 if ($max && $got > $max) {
510                         &error($err)
511                         }
512                 $line =~ tr/\r\n//d;
513                 last if (!$line);
514                 if ($line =~ /^(\S+):\s*(.*)$/) {
515                         $header{$lastheader = lc($1)} = $2;
516                         }
517                 elsif ($line =~ /^\s+(.*)$/) {
518                         $header{$lastheader} .= $line;
519                         }
520                 }
521
522         # Parse out filename and type
523         if ($header{'content-disposition'} =~ /^form-data(.*)/) {
524                 $rest = $1;
525                 while ($rest =~ /([a-zA-Z]*)=\"([^\"]*)\"(.*)/) {
526                         if ($1 eq 'name') {
527                                 $name = $2;
528                                 }
529                         else {
530                                 $foo = $name . "_$1";
531                                 $in{$foo} = $2;
532                                 }
533                         $rest = $3;
534                         }
535                 }
536         else {
537                 &error($text{'readparse_cdheader'});
538                 }
539         if ($header{'content-type'} =~ /^([^\s;]+)/) {
540                 $foo = $name . "_content_type";
541                 $in{$foo} = $1;
542                 }
543         $file = $in{$name."_filename"};
544
545         # Read data
546         $in{$name} .= "\0" if (defined($in{$name}));
547         while(1) {
548                 $line = <STDIN>;
549                 $got += length($line);
550                 &$cbfunc($got, $ENV{'CONTENT_LENGTH'}, $file, @$cbargs)
551                         if ($cbfunc);
552                 if ($max && $got > $max) {
553                         #print STDERR "over limit of $max\n";
554                         #&error($err);
555                         }
556                 if (!$line) {
557                         # Unexpected EOF?
558                         &$cbfunc(-1, $ENV{'CONTENT_LENGTH'}, $file, @$cbargs)
559                                 if ($cbfunc);
560                         return;
561                         }
562                 my $ptline = $line;
563                 $ptline =~ s/[^a-zA-Z0-9\-]/\./g;
564                 if (index($line, $boundary) != -1) { last; }
565                 $in{$name} .= $line;
566                 }
567         chop($in{$name}); chop($in{$name});
568         if (index($line,"$boundary--") != -1) { last; }
569         }
570 &$cbfunc(-1, $ENV{'CONTENT_LENGTH'}, $file, @$cbargs) if ($cbfunc);
571 }
572
573 =head2 ReadParse([&hash], [method], [noplus])
574
575 Fills the given hash reference with CGI parameters, or uses the global hash
576 %in if none is given. Also sets the global variables $in and @in. The other
577 parameters are :
578
579 =item method - For use of this HTTP method, such as GET
580
581 =item noplus - Don't convert + in parameters to spaces.
582
583 =cut
584 sub ReadParse
585 {
586 my $a = $_[0] || \%in;
587 %$a = ( );
588 my $meth = $_[1] ? $_[1] : $ENV{'REQUEST_METHOD'};
589 undef($in);
590 if ($meth eq 'POST') {
591         my $clen = $ENV{'CONTENT_LENGTH'};
592         &read_fully(STDIN, \$in, $clen) == $clen ||
593                 &error("Failed to read POST input : $!");
594         }
595 if ($ENV{'QUERY_STRING'}) {
596         if ($in) { $in .= "&".$ENV{'QUERY_STRING'}; }
597         else { $in = $ENV{'QUERY_STRING'}; }
598         }
599 @in = split(/\&/, $in);
600 foreach my $i (@in) {
601         my ($k, $v) = split(/=/, $i, 2);
602         if (!$_[2]) {
603                 $k =~ tr/\+/ /;
604                 $v =~ tr/\+/ /;
605                 }
606         $k =~ s/%(..)/pack("c",hex($1))/ge;
607         $v =~ s/%(..)/pack("c",hex($1))/ge;
608         $a->{$k} = defined($a->{$k}) ? $a->{$k}."\0".$v : $v;
609         }
610 }
611
612 =head2 read_fully(fh, &buffer, length)
613
614 Read data from some file handle up to the given length, even in the face
615 of partial reads. Reads the number of bytes read. Stores received data in the
616 string pointed to be the buffer reference.
617
618 =cut
619 sub read_fully
620 {
621 my ($fh, $buf, $len) = @_;
622 $fh = &callers_package($fh);
623 my $got = 0;
624 while($got < $len) {
625         my $r = read(STDIN, $$buf, $len-$got, $got);
626         last if ($r <= 0);
627         $got += $r;
628         }
629 return $got;
630 }
631
632 =head2 read_parse_mime_callback(size, totalsize, upload-id)
633
634 Called by ReadParseMime as new data arrives from a form-data POST. Only updates
635 the file on every 1% change though. For internal use by the upload progress
636 tracker.
637
638 =cut
639 sub read_parse_mime_callback
640 {
641 my ($size, $totalsize, $filename, $id) = @_;
642 return if ($gconfig{'no_upload_tracker'});
643 return if (!$id);
644
645 # Create the upload tracking directory - if running as non-root, this has to
646 # be under the user's home
647 my $vardir;
648 if ($<) {
649         my @uinfo = @remote_user_info ? @remote_user_info : getpwuid($<);
650         $vardir = "$uinfo[7]/.tmp";
651         }
652 else {
653         $vardir = $ENV{'WEBMIN_VAR'};
654         }
655 if (!-d $vardir) {
656         &make_dir($vardir, 0755);
657         }
658
659 # Remove any upload.* files more than 1 hour old
660 if (!$main::read_parse_mime_callback_flushed) {
661         my $now = time();
662         opendir(UPDIR, $vardir);
663         foreach my $f (readdir(UPDIR)) {
664                 next if ($f !~ /^upload\./);
665                 my @st = stat("$vardir/$f");
666                 if ($st[9] < $now-3600) {
667                         unlink("$vardir/$f");
668                         }
669                 }
670         closedir(UPDIR);
671         $main::read_parse_mime_callback_flushed++;
672         }
673
674 # Only update file once per percent
675 my $upfile = "$vardir/upload.$id";
676 if ($totalsize && $size >= 0) {
677         my $pc = int(100 * $size / $totalsize);
678         if ($pc <= $main::read_parse_mime_callback_pc{$upfile}) {
679                 return;
680                 }
681         $main::read_parse_mime_callback_pc{$upfile} = $pc;
682         }
683
684 # Write to the file
685 &open_tempfile(UPFILE, ">$upfile");
686 print UPFILE $size,"\n";
687 print UPFILE $totalsize,"\n";
688 print UPFILE $filename,"\n";
689 &close_tempfile(UPFILE);
690 }
691
692 =head2 read_parse_mime_javascript(upload-id, [&fields])
693
694 Returns an onSubmit= Javascript statement to popup a window for tracking
695 an upload with the given ID. For internal use by the upload progress tracker.
696
697 =cut
698 sub read_parse_mime_javascript
699 {
700 my ($id, $fields) = @_;
701 return "" if ($gconfig{'no_upload_tracker'});
702 my $opener = "window.open(\"$gconfig{'webprefix'}/uptracker.cgi?id=$id&uid=$<\", \"uptracker\", \"toolbar=no,menubar=no,scrollbars=no,width=500,height=100\");";
703 if ($fields) {
704         my $if = join(" || ", map { "typeof($_) != \"undefined\" && $_.value != \"\"" } @$fields);
705         return "onSubmit='if ($if) { $opener }'";
706         }
707 else {
708         return "onSubmit='$opener'";
709         }
710 }
711
712 =head2 PrintHeader(charset)
713
714 Outputs the HTTP headers for an HTML page. The optional charset parameter
715 can be used to set a character set. Normally this function is not called
716 directly, but is rather called by ui_print_header or header.
717
718 =cut
719 sub PrintHeader
720 {
721 if ($pragma_no_cache || $gconfig{'pragma_no_cache'}) {
722         print "pragma: no-cache\n";
723         print "Expires: Thu, 1 Jan 1970 00:00:00 GMT\n";
724         print "Cache-Control: no-store, no-cache, must-revalidate\n";
725         print "Cache-Control: post-check=0, pre-check=0\n";
726         }
727 if (defined($_[0])) {
728         print "Content-type: text/html; Charset=$_[0]\n\n";
729         }
730 else {
731         print "Content-type: text/html\n\n";
732         }
733 }
734
735 =head2 header(title, image, [help], [config], [nomodule], [nowebmin], [rightside], [head-stuff], [body-stuff], [below])
736
737 Outputs a Webmin HTML page header with a title, including HTTP headers. The
738 parameters are :
739
740 =item title - The text to show at the top of the page
741
742 =item image - An image to show instead of the title text. This is typically left blank.
743
744 =item help - If set, this is the name of a help page that will be linked to in the title.
745
746 =item config - If set to 1, the title will contain a link to the module's config page.
747
748 =item nomodule - If set to 1, there will be no link in the title section to the module's index.
749
750 =item nowebmin - If set to 1, there will be no link in the title section to the Webmin index.
751
752 =item rightside - HTML to be shown on the right-hand side of the title. Can contain multiple lines, separated by <br>. Typically this is used for links to stop, start or restart servers.
753
754 =item head-stuff - HTML to be included in the <head> section of the page.
755
756 =item body-stuff - HTML attributes to be include in the <body> tag.
757
758 =item below - HTML to be displayed below the title. Typically this is used for application or server version information.
759
760 =cut
761 sub header
762 {
763 return if ($main::done_webmin_header++);
764 my $ll;
765 my $charset = defined($main::force_charset) ? $main::force_charset
766                                             : &get_charset();
767 &PrintHeader($charset);
768 &load_theme_library();
769 if (defined(&theme_header)) {
770         $module_name = &get_module_name();
771         &theme_header(@_);
772         return;
773         }
774 print "<!doctype html public \"-//W3C//DTD HTML 3.2 Final//EN\">\n";
775 print "<html>\n";
776 print "<head>\n";
777 if (defined(&theme_prehead)) {
778         &theme_prehead(@_);
779         }
780 if ($charset) {
781         print "<meta http-equiv=\"Content-Type\" ",
782               "content=\"text/html; Charset=".&quote_escape($charset)."\">\n";
783         }
784 if (@_ > 0) {
785         my $title = &get_html_title($_[0]);
786         print "<title>$title</title>\n";
787         print $_[7] if ($_[7]);
788         print &get_html_status_line(0);
789         }
790 print "$tconfig{'headhtml'}\n" if ($tconfig{'headhtml'});
791 if ($tconfig{'headinclude'}) {
792         print &read_file_contents(
793                 "$theme_root_directory/$tconfig{'headinclude'}");
794         }
795 print "</head>\n";
796 my $bgcolor = defined($tconfig{'cs_page'}) ? $tconfig{'cs_page'} :
797                  defined($gconfig{'cs_page'}) ? $gconfig{'cs_page'} : "ffffff";
798 my $link = defined($tconfig{'cs_link'}) ? $tconfig{'cs_link'} :
799               defined($gconfig{'cs_link'}) ? $gconfig{'cs_link'} : "0000ee";
800 my $text = defined($tconfig{'cs_text'}) ? $tconfig{'cs_text'} : 
801               defined($gconfig{'cs_text'}) ? $gconfig{'cs_text'} : "000000";
802 my $bgimage = defined($tconfig{'bgimage'}) ? "background=$tconfig{'bgimage'}"
803                                               : "";
804 my $dir = $current_lang_info->{'dir'} ? "dir=\"$current_lang_info->{'dir'}\""
805                                          : "";
806 print "<body bgcolor=#$bgcolor link=#$link vlink=#$link text=#$text ",
807       "$bgimage $tconfig{'inbody'} $dir $_[8]>\n";
808 if (defined(&theme_prebody)) {
809         &theme_prebody(@_);
810         }
811 my $hostname = &get_display_hostname();
812 my $version = &get_webmin_version();
813 my $prebody = $tconfig{'prebody'};
814 if ($prebody) {
815         $prebody =~ s/%HOSTNAME%/$hostname/g;
816         $prebody =~ s/%VERSION%/$version/g;
817         $prebody =~ s/%USER%/$remote_user/g;
818         $prebody =~ s/%OS%/$os_type $os_version/g;
819         print "$prebody\n";
820         }
821 if ($tconfig{'prebodyinclude'}) {
822         local $_;
823         open(INC, "$theme_root_directory/$tconfig{'prebodyinclude'}");
824         while(<INC>) {
825                 print;
826                 }
827         close(INC);
828         }
829 if (@_ > 1) {
830         print $tconfig{'preheader'};
831         my %this_module_info = &get_module_info(&get_module_name());
832         print "<table class='header' width=100%><tr>\n";
833         if ($gconfig{'sysinfo'} == 2 && $remote_user) {
834                 print "<td id='headln1' colspan=3 align=center>\n";
835                 print &get_html_status_line(1);
836                 print "</td></tr> <tr>\n";
837                 }
838         print "<td id='headln2l' width=15% valign=top align=left>";
839         if ($ENV{'HTTP_WEBMIN_SERVERS'} && !$tconfig{'framed'}) {
840                 print "<a href='$ENV{'HTTP_WEBMIN_SERVERS'}'>",
841                       "$text{'header_servers'}</a><br>\n";
842                 }
843         if (!$_[5] && !$tconfig{'noindex'}) {
844                 my @avail = &get_available_module_infos(1);
845                 my $nolo = $ENV{'ANONYMOUS_USER'} ||
846                               $ENV{'SSL_USER'} || $ENV{'LOCAL_USER'} ||
847                               $ENV{'HTTP_USER_AGENT'} =~ /webmin/i;
848                 if ($gconfig{'gotoone'} && $main::session_id && @avail == 1 &&
849                     !$nolo) {
850                         print "<a href='$gconfig{'webprefix'}/session_login.cgi?logout=1'>",
851                               "$text{'main_logout'}</a><br>";
852                         }
853                 elsif ($gconfig{'gotoone'} && @avail == 1 && !$nolo) {
854                         print "<a href=$gconfig{'webprefix'}/switch_user.cgi>",
855                               "$text{'main_switch'}</a><br>";
856                         }
857                 elsif (!$gconfig{'gotoone'} || @avail > 1) {
858                         print "<a href='$gconfig{'webprefix'}/?cat=",
859                               $this_module_info{'category'},
860                               "'>$text{'header_webmin'}</a><br>\n";
861                         }
862                 }
863         if (!$_[4] && !$tconfig{'nomoduleindex'}) {
864                 my $idx = $this_module_info{'index_link'};
865                 my $mi = $module_index_link || "/".&get_module_name()."/$idx";
866                 my $mt = $module_index_name || $text{'header_module'};
867                 print "<a href=\"$gconfig{'webprefix'}$mi\">$mt</a><br>\n";
868                 }
869         if (ref($_[2]) eq "ARRAY" && !$ENV{'ANONYMOUS_USER'} &&
870             !$tconfig{'nohelp'}) {
871                 print &hlink($text{'header_help'}, $_[2]->[0], $_[2]->[1]),
872                       "<br>\n";
873                 }
874         elsif (defined($_[2]) && !$ENV{'ANONYMOUS_USER'} &&
875                !$tconfig{'nohelp'}) {
876                 print &hlink($text{'header_help'}, $_[2]),"<br>\n";
877                 }
878         if ($_[3]) {
879                 my %access = &get_module_acl();
880                 if (!$access{'noconfig'} && !$config{'noprefs'}) {
881                         my $cprog = $user_module_config_directory ?
882                                         "uconfig.cgi" : "config.cgi";
883                         print "<a href=\"$gconfig{'webprefix'}/$cprog?",
884                               &get_module_name()."\">",
885                               $text{'header_config'},"</a><br>\n";
886                         }
887                 }
888         print "</td>\n";
889         if ($_[1]) {
890                 # Title is a single image
891                 print "<td id='headln2c' align=center width=70%>",
892                       "<img alt=\"$_[0]\" src=\"$_[1]\"></td>\n";
893                 }
894         else {
895                 # Title is just text
896                 my $ts = defined($tconfig{'titlesize'}) ?
897                                 $tconfig{'titlesize'} : "+2";
898                 print "<td id='headln2c' align=center width=70%>",
899                       ($ts ? "<font size=$ts>" : ""),$_[0],
900                       ($ts ? "</font>" : "");
901                 print "<br>$_[9]\n" if ($_[9]);
902                 print "</td>\n";
903                 }
904         print "<td id='headln2r' width=15% valign=top align=right>";
905         print $_[6];
906         print "</td></tr></table>\n";
907         print $tconfig{'postheader'};
908         }
909 }
910
911 =head2 get_html_title(title)
912
913 Returns the full string to appear in the HTML <title> block.
914
915 =cut
916 sub get_html_title
917 {
918 my ($msg) = @_;
919 my $title;
920 my $os_type = $gconfig{'real_os_type'} || $gconfig{'os_type'};
921 my $os_version = $gconfig{'real_os_version'} || $gconfig{'os_version'};
922 my $host = &get_display_hostname();
923 if ($gconfig{'sysinfo'} == 1 && $remote_user) {
924         $title = sprintf "%s : %s on %s (%s %s)\n",
925                 $msg, $remote_user, $host,
926                 $os_type, $os_version;
927         }
928 elsif ($gconfig{'sysinfo'} == 4 && $remote_user) {
929         $title = sprintf "%s on %s (%s %s)\n",
930                 $remote_user, $host,
931                 $os_type, $os_version;
932         }
933 else {
934         $title = $msg;
935         }
936 if ($gconfig{'showlogin'} && $remote_user) {
937         $title = $remote_user.($title ? " : ".$title : "");
938         }
939 if ($gconfig{'showhost'}) {
940         $title = $host.($title ? " : ".$title : "");
941         }
942 return $title;
943 }
944
945 =head2 get_html_framed_title
946
947 Returns the title text for a framed theme main page.
948
949 =cut
950 sub get_html_framed_title
951 {
952 my $ostr;
953 my $os_type = $gconfig{'real_os_type'} || $gconfig{'os_type'};
954 my $os_version = $gconfig{'real_os_version'} || $gconfig{'os_version'};
955 my $title;
956 if (($gconfig{'sysinfo'} == 4 || $gconfig{'sysinfo'} == 1) && $remote_user) {
957         # Alternate title mode requested
958         $title = sprintf "%s on %s (%s %s)\n",
959                 $remote_user, &get_display_hostname(),
960                 $os_type, $os_version;
961         }
962 else {
963         # Title like 'Webmin x.yy on hostname (Linux 6)'
964         if ($os_version eq "*") {
965                 $ostr = $os_type;
966                 }
967         else {
968                 $ostr = "$os_type $os_version";
969                 }
970         my $host = &get_display_hostname();
971         my $ver = &get_webmin_version();
972         $title = $gconfig{'nohostname'} ? $text{'main_title2'} :
973                  $gconfig{'showhost'} ? &text('main_title3', $ver, $ostr) :
974                                         &text('main_title', $ver, $host, $ostr);
975         if ($gconfig{'showlogin'}) {
976                 $title = $remote_user.($title ? " : ".$title : "");
977                 }
978         if ($gconfig{'showhost'}) {
979                 $title = $host.($title ? " : ".$title : "");
980                 }
981         }
982 return $title;
983 }
984
985 =head2 get_html_status_line(text-only)
986
987 Returns HTML for a script block that sets the status line, or if text-only
988 is set to 1, just return the status line text.
989
990 =cut
991 sub get_html_status_line
992 {
993 my ($textonly) = @_;
994 if (($gconfig{'sysinfo'} != 0 || !$remote_user) && !$textonly) {
995         # Disabled in this mode
996         return undef;
997         }
998 my $os_type = $gconfig{'real_os_type'} || $gconfig{'os_type'};
999 my $os_version = $gconfig{'real_os_version'} || $gconfig{'os_version'};
1000 my $line = &text('header_statusmsg',
1001                  ($ENV{'ANONYMOUS_USER'} ? "Anonymous user"
1002                                            : $remote_user).
1003                  ($ENV{'SSL_USER'} ? " (SSL certified)" :
1004                   $ENV{'LOCAL_USER'} ? " (Local user)" : ""),
1005                  $text{'programname'},
1006                  &get_webmin_version(),
1007                  &get_display_hostname(),
1008                  $os_type.($os_version eq "*" ? "" :" $os_version"));
1009 if ($textonly) {
1010         return $line;
1011         }
1012 else {
1013         $line =~ s/\r|\n//g;
1014         return "<script language=JavaScript type=text/javascript>\n".
1015                "defaultStatus=\"".&quote_escape($line)."\";\n".
1016                "</script>\n";
1017         }
1018 }
1019
1020 =head2 popup_header([title], [head-stuff], [body-stuff], [no-body])
1021
1022 Outputs a page header, suitable for a popup window. If no title is given,
1023 absolutely no decorations are output. Also useful in framesets. The parameters
1024 are :
1025
1026 =item title - Title text for the popup window.
1027
1028 =item head-stuff - HTML to appear in the <head> section.
1029
1030 =item body-stuff - HTML attributes to be include in the <body> tag.
1031
1032 =item no-body - If set to 1, don't generate a body tag
1033
1034 =cut
1035 sub popup_header
1036 {
1037 return if ($main::done_webmin_header++);
1038 my $ll;
1039 my $charset = defined($main::force_charset) ? $main::force_charset
1040                                             : &get_charset();
1041 &PrintHeader($charset);
1042 &load_theme_library();
1043 if (defined(&theme_popup_header)) {
1044         &theme_popup_header(@_);
1045         return;
1046         }
1047 print "<!doctype html public \"-//W3C//DTD HTML 3.2 Final//EN\">\n";
1048 print "<html>\n";
1049 print "<head>\n";
1050 if (defined(&theme_popup_prehead)) {
1051         &theme_popup_prehead(@_);
1052         }
1053 print "<title>$_[0]</title>\n";
1054 print $_[1];
1055 print "$tconfig{'headhtml'}\n" if ($tconfig{'headhtml'});
1056 if ($tconfig{'headinclude'}) {
1057         print &read_file_contents(
1058                 "$theme_root_directory/$tconfig{'headinclude'}");
1059         }
1060 print "</head>\n";
1061 my $bgcolor = defined($tconfig{'cs_page'}) ? $tconfig{'cs_page'} :
1062                  defined($gconfig{'cs_page'}) ? $gconfig{'cs_page'} : "ffffff";
1063 my $link = defined($tconfig{'cs_link'}) ? $tconfig{'cs_link'} :
1064               defined($gconfig{'cs_link'}) ? $gconfig{'cs_link'} : "0000ee";
1065 my $text = defined($tconfig{'cs_text'}) ? $tconfig{'cs_text'} : 
1066               defined($gconfig{'cs_text'}) ? $gconfig{'cs_text'} : "000000";
1067 my $bgimage = defined($tconfig{'bgimage'}) ? "background=$tconfig{'bgimage'}"
1068                                               : "";
1069 if (!$_[3]) {
1070         print "<body id='popup' bgcolor=#$bgcolor link=#$link vlink=#$link ",
1071               "text=#$text $bgimage $tconfig{'inbody'} $_[2]>\n";
1072         if (defined(&theme_popup_prebody)) {
1073                 &theme_popup_prebody(@_);
1074                 }
1075         }
1076 }
1077
1078 =head2 footer([page, name]+, [noendbody])
1079
1080 Outputs the footer for a Webmin HTML page, possibly with links back to other
1081 pages. The links are specified by pairs of parameters, the first of which is 
1082 a link destination, and the second the link text. For example :
1083
1084  footer('/', 'Webmin index', '', 'Module menu');
1085
1086 =cut
1087 sub footer
1088 {
1089 &load_theme_library();
1090 my %this_module_info = &get_module_info(&get_module_name());
1091 if (defined(&theme_footer)) {
1092         $module_name = &get_module_name();      # Old themes use these
1093         %module_info = %this_module_info;
1094         &theme_footer(@_);
1095         return;
1096         }
1097 for(my $i=0; $i+1<@_; $i+=2) {
1098         my $url = $_[$i];
1099         if ($url ne '/' || !$tconfig{'noindex'}) {
1100                 if ($url eq '/') {
1101                         $url = "/?cat=$this_module_info{'category'}";
1102                         }
1103                 elsif ($url eq '' && &get_module_name()) {
1104                         $url = "/".&get_module_name()."/".
1105                                $this_module_info{'index_link'};
1106                         }
1107                 elsif ($url =~ /^\?/ && &get_module_name()) {
1108                         $url = "/".&get_module_name()."/$url";
1109                         }
1110                 $url = "$gconfig{'webprefix'}$url" if ($url =~ /^\//);
1111                 if ($i == 0) {
1112                         print "<a href=\"$url\"><img alt=\"<-\" align=middle border=0 src=$gconfig{'webprefix'}/images/left.gif></a>\n";
1113                         }
1114                 else {
1115                         print "&nbsp;|\n";
1116                         }
1117                 print "&nbsp;<a href=\"$url\">",&text('main_return', $_[$i+1]),"</a>\n";
1118                 }
1119         }
1120 print "<br>\n";
1121 if (!$_[$i]) {
1122         my $postbody = $tconfig{'postbody'};
1123         if ($postbody) {
1124                 my $hostname = &get_display_hostname();
1125                 my $version = &get_webmin_version();
1126                 my $os_type = $gconfig{'real_os_type'} ||
1127                               $gconfig{'os_type'};
1128                 my $os_version = $gconfig{'real_os_version'} ||
1129                                  $gconfig{'os_version'};
1130                 $postbody =~ s/%HOSTNAME%/$hostname/g;
1131                 $postbody =~ s/%VERSION%/$version/g;
1132                 $postbody =~ s/%USER%/$remote_user/g;
1133                 $postbody =~ s/%OS%/$os_type $os_version/g;
1134                 print "$postbody\n";
1135                 }
1136         if ($tconfig{'postbodyinclude'}) {
1137                 local $_;
1138                 open(INC, "$theme_root_directory/$tconfig{'postbodyinclude'}");
1139                 while(<INC>) {
1140                         print;
1141                         }
1142                 close(INC);
1143                 }
1144         if (defined(&theme_postbody)) {
1145                 &theme_postbody(@_);
1146                 }
1147         print "</body></html>\n";
1148         }
1149 }
1150
1151 =head2 popup_footer([no-body])
1152
1153 Outputs html for a footer for a popup window, started by popup_header.
1154
1155 =cut
1156 sub popup_footer
1157 {
1158 &load_theme_library();
1159 if (defined(&theme_popup_footer)) {
1160         &theme_popup_footer(@_);
1161         return;
1162         }
1163 if (!$_[0]) {
1164         print "</body>\n";
1165         }
1166 print "</html>\n";
1167 }
1168
1169 =head2 load_theme_library
1170
1171 Immediately loads the current theme's theme.pl file. Not generally useful for
1172 most module developers, as this is called automatically by the header function.
1173
1174 =cut
1175 sub load_theme_library
1176 {
1177 return if (!$current_theme || $loaded_theme_library++);
1178 for(my $i=0; $i<@theme_root_directories; $i++) {
1179         if ($theme_configs[$i]->{'functions'}) {
1180                 do $theme_root_directories[$i]."/".
1181                    $theme_configs[$i]->{'functions'};
1182                 }
1183         }
1184 }
1185
1186 =head2 redirect(url)
1187
1188 Output HTTP headers to redirect the browser to some page. The url parameter is
1189 typically a relative URL like index.cgi or list_users.cgi.
1190
1191 =cut
1192 sub redirect
1193 {
1194 my $port = $ENV{'SERVER_PORT'} == 443 && uc($ENV{'HTTPS'}) eq "ON" ? "" :
1195            $ENV{'SERVER_PORT'} == 80 && uc($ENV{'HTTPS'}) ne "ON" ? "" :
1196                 ":$ENV{'SERVER_PORT'}";
1197 my $prot = uc($ENV{'HTTPS'}) eq "ON" ? "https" : "http";
1198 my $wp = $gconfig{'webprefixnoredir'} ? undef : $gconfig{'webprefix'};
1199 my $url;
1200 if ($_[0] =~ /^(http|https|ftp|gopher):/) {
1201         # Absolute URL (like http://...)
1202         $url = $_[0];
1203         }
1204 elsif ($_[0] =~ /^\//) {
1205         # Absolute path (like /foo/bar.cgi)
1206         $url = "$prot://$ENV{'SERVER_NAME'}$port$wp$_[0]";
1207         }
1208 elsif ($ENV{'SCRIPT_NAME'} =~ /^(.*)\/[^\/]*$/) {
1209         # Relative URL (like foo.cgi)
1210         $url = "$prot://$ENV{'SERVER_NAME'}$port$wp$1/$_[0]";
1211         }
1212 else {
1213         $url = "$prot://$ENV{'SERVER_NAME'}$port/$wp$_[0]";
1214         }
1215 &load_theme_library();
1216 if (defined(&theme_redirect)) {
1217         $module_name = &get_module_name();      # Old themes use these
1218         %module_info = &get_module_info($module_name);
1219         &theme_redirect($_[0], $url);
1220         }
1221 else {
1222         print "Location: $url\n\n";
1223         }
1224 }
1225
1226 =head2 kill_byname(name, signal)
1227
1228 Finds a process whose command line contains the given name (such as httpd), and
1229 sends some signal to it. The signal can be numeric (like 9) or named
1230 (like KILL).
1231
1232 =cut
1233 sub kill_byname
1234 {
1235 my @pids = &find_byname($_[0]);
1236 return scalar(@pids) if (&is_readonly_mode());
1237 &webmin_debug_log('KILL', "signal=$_[1] name=$_[0]")
1238         if ($gconfig{'debug_what_procs'});
1239 if (@pids) { kill($_[1], @pids); return scalar(@pids); }
1240 else { return 0; }
1241 }
1242
1243 =head2 kill_byname_logged(name, signal)
1244
1245 Like kill_byname, but also logs the killing.
1246
1247 =cut
1248 sub kill_byname_logged
1249 {
1250 my @pids = &find_byname($_[0]);
1251 return scalar(@pids) if (&is_readonly_mode());
1252 if (@pids) { &kill_logged($_[1], @pids); return scalar(@pids); }
1253 else { return 0; }
1254 }
1255
1256 =head2 find_byname(name)
1257
1258 Finds processes searching for the given name in their command lines, and
1259 returns a list of matching PIDs.
1260
1261 =cut
1262 sub find_byname
1263 {
1264 if ($gconfig{'os_type'} =~ /-linux$/ && -r "/proc/$$/cmdline") {
1265         # Linux with /proc filesystem .. use cmdline files, as this is
1266         # faster than forking
1267         my @pids;
1268         opendir(PROCDIR, "/proc");
1269         foreach my $f (readdir(PROCDIR)) {
1270                 if ($f eq int($f) && $f != $$) {
1271                         my $line = &read_file_contents("/proc/$f/cmdline");
1272                         if ($line =~ /$_[0]/) {
1273                                 push(@pids, $f);
1274                                 }
1275                         }
1276                 }
1277         closedir(PROCDIR);
1278         return @pids;
1279         }
1280
1281 if (&foreign_check("proc")) {
1282         # Call the proc module
1283         &foreign_require("proc", "proc-lib.pl");
1284         if (defined(&proc::list_processes)) {
1285                 my @procs = &proc::list_processes();
1286                 my @pids;
1287                 foreach my $p (@procs) {
1288                         if ($p->{'args'} =~ /$_[0]/) {
1289                                 push(@pids, $p->{'pid'});
1290                                 }
1291                         }
1292                 @pids = grep { $_ != $$ } @pids;
1293                 return @pids;
1294                 }
1295         }
1296
1297 # Fall back to running a command
1298 my ($cmd, @pids);
1299 $cmd = $gconfig{'find_pid_command'};
1300 $cmd =~ s/NAME/"$_[0]"/g;
1301 $cmd = &translate_command($cmd);
1302 @pids = split(/\n/, `($cmd) <$null_file 2>$null_file`);
1303 @pids = grep { $_ != $$ } @pids;
1304 return @pids;
1305 }
1306
1307 =head2 error([message]+)
1308
1309 Display an error message and exit. This should be used by CGI scripts that
1310 encounter a fatal error or invalid user input to notify users of the problem.
1311 If error_setup has been called, the displayed error message will be prefixed
1312 by the message setup using that function.
1313
1314 =cut
1315 sub error
1316 {
1317 my $msg = join("", @_);
1318 $msg =~ s/<[^>]*>//g;
1319 if (!$main::error_must_die) {
1320         print STDERR "Error: ",$msg,"\n";
1321         }
1322 &load_theme_library();
1323 if ($main::error_must_die) {
1324         if ($gconfig{'error_stack'}) {
1325                 print STDERR "Error: ",$msg,"\n";
1326                 for(my $i=0; my @stack = caller($i); $i++) {
1327                         print STDERR "File: $stack[1] Line: $stack[2] ",
1328                                      "Function: $stack[3]\n";
1329                         }
1330                 }
1331         die @_;
1332         }
1333 elsif (!$ENV{'REQUEST_METHOD'}) {
1334         # Show text-only error
1335         print STDERR "$text{'error'}\n";
1336         print STDERR "-----\n";
1337         print STDERR ($main::whatfailed ? "$main::whatfailed : " : ""),
1338                      $msg,"\n";
1339         print STDERR "-----\n";
1340         if ($gconfig{'error_stack'}) {
1341                 # Show call stack
1342                 print STDERR $text{'error_stack'},"\n";
1343                 for(my $i=0; my @stack = caller($i); $i++) {
1344                         print STDERR &text('error_stackline',
1345                                 $stack[1], $stack[2], $stack[3]),"\n";
1346                         }
1347                 }
1348
1349         }
1350 elsif (defined(&theme_error)) {
1351         &theme_error(@_);
1352         }
1353 else {
1354         &header($text{'error'}, "");
1355         print "<hr>\n";
1356         print "<h3>",($main::whatfailed ? "$main::whatfailed : " : ""),
1357                      @_,"</h3>\n";
1358         if ($gconfig{'error_stack'}) {
1359                 # Show call stack
1360                 print "<h3>$text{'error_stack'}</h3>\n";
1361                 print "<table>\n";
1362                 print "<tr> <td><b>$text{'error_file'}</b></td> ",
1363                       "<td><b>$text{'error_line'}</b></td> ",
1364                       "<td><b>$text{'error_sub'}</b></td> </tr>\n";
1365                 for($i=0; my @stack = caller($i); $i++) {
1366                         print "<tr>\n";
1367                         print "<td>$stack[1]</td>\n";
1368                         print "<td>$stack[2]</td>\n";
1369                         print "<td>$stack[3]</td>\n";
1370                         print "</tr>\n";
1371                         }
1372                 print "</table>\n";
1373                 }
1374         print "<hr>\n";
1375         if ($ENV{'HTTP_REFERER'} && $main::completed_referers_check) {
1376                 &footer($ENV{'HTTP_REFERER'}, $text{'error_previous'});
1377                 }
1378         else {
1379                 &footer();
1380                 }
1381         }
1382 &unlock_all_files();
1383 &cleanup_tempnames();
1384 exit(1);
1385 }
1386
1387 =head2 popup_error([message]+)
1388
1389 This function is almost identical to error, but displays the message with HTML
1390 headers suitable for a popup window.
1391
1392 =cut
1393 sub popup_error
1394 {
1395 &load_theme_library();
1396 if ($main::error_must_die) {
1397         die @_;
1398         }
1399 elsif (defined(&theme_popup_error)) {
1400         &theme_popup_error(@_);
1401         }
1402 else {
1403         &popup_header($text{'error'}, "");
1404         print "<h3>",($main::whatfailed ? "$main::whatfailed : " : ""),@_,"</h3>\n";
1405         &popup_footer();
1406         }
1407 &unlock_all_files();
1408 &cleanup_tempnames();
1409 exit;
1410 }
1411
1412 =head2 error_setup(message)
1413
1414 Registers a message to be prepended to all error messages displayed by the 
1415 error function.
1416
1417 =cut
1418 sub error_setup
1419 {
1420 $main::whatfailed = $_[0];
1421 }
1422
1423 =head2 wait_for(handle, regexp, regexp, ...)
1424
1425 Reads from the input stream until one of the regexps matches, and returns the
1426 index of the matching regexp, or -1 if input ended before any matched. This is
1427 very useful for parsing the output of interactive programs, and can be used with
1428 a two-way pipe to feed input to a program in response to output matched by
1429 this function.
1430
1431 If the matching regexp contains bracketed sub-expressions, their values will
1432 be placed in the global array @matches, indexed starting from 1. You cannot
1433 use the Perl variables $1, $2 and so on to capture matches.
1434
1435 Example code:
1436
1437  $rv = wait_for($loginfh, "username:");
1438  if ($rv == -1) {
1439    error("Didn't get username prompt");
1440  }
1441  print $loginfh "joe\n";
1442  $rv = wait_for($loginfh, "password:");
1443  if ($rv == -1) {
1444    error("Didn't get password prompt");
1445  }
1446  print $loginfh "smeg\n";
1447
1448 =cut
1449 sub wait_for
1450 {
1451 my ($c, $i, $sw, $rv, $ha);
1452 undef($wait_for_input);
1453 if ($wait_for_debug) {
1454         print STDERR "wait_for(",join(",", @_),")\n";
1455         }
1456 $ha = &callers_package($_[0]);
1457 if ($wait_for_debug) {
1458         print STDERR "File handle=$ha fd=",fileno($ha),"\n";
1459         }
1460 $codes =
1461 "my \$hit;\n".
1462 "while(1) {\n".
1463 " if ((\$c = getc(\$ha)) eq \"\") { return -1; }\n".
1464 " \$wait_for_input .= \$c;\n";
1465 if ($wait_for_debug) {
1466         $codes .= "print STDERR \$wait_for_input,\"\\n\";";
1467         }
1468 for($i=1; $i<@_; $i++) {
1469         $sw = $i>1 ? "elsif" : "if";
1470         $codes .= " $sw (\$wait_for_input =~ /$_[$i]/i) { \$hit = $i-1; }\n";
1471         }
1472 $codes .=
1473 " if (defined(\$hit)) {\n".
1474 "  \@matches = (-1, \$1, \$2, \$3, \$4, \$5, \$6, \$7, \$8, \$9);\n".
1475 "  return \$hit;\n".
1476 "  }\n".
1477 " }\n";
1478 $rv = eval $codes;
1479 if ($@) {
1480         &error("wait_for error : $@\n");
1481         }
1482 return $rv;
1483 }
1484
1485 =head2 fast_wait_for(handle, string, string, ...)
1486
1487 This function behaves very similar to wait_for (documented above), but instead
1488 of taking regular expressions as parameters, it takes strings. As soon as the
1489 input contains one of them, it will return the index of the matching string.
1490 If the input ends before any match, it returns -1.
1491
1492 =cut
1493 sub fast_wait_for
1494 {
1495 my ($inp, $maxlen, $ha, $i, $c, $inpl);
1496 for($i=1; $i<@_; $i++) {
1497         $maxlen = length($_[$i]) > $maxlen ? length($_[$i]) : $maxlen;
1498         }
1499 $ha = $_[0];
1500 while(1) {
1501         if (($c = getc($ha)) eq "") {
1502                 &error("fast_wait_for read error : $!");
1503                 }
1504         $inp .= $c;
1505         if (length($inp) > $maxlen) {
1506                 $inp = substr($inp, length($inp)-$maxlen);
1507                 }
1508         $inpl = length($inp);
1509         for($i=1; $i<@_; $i++) {
1510                 if ($_[$i] eq substr($inp, $inpl-length($_[$i]))) {
1511                         return $i-1;
1512                         }
1513                 }
1514         }
1515 }
1516
1517 =head2 has_command(command)
1518
1519 Returns the full path to the executable if some command is in the path, or
1520 undef if not found. If the given command is already an absolute path and
1521 exists, then the same path will be returned.
1522
1523 =cut
1524 sub has_command
1525 {
1526 if (!$_[0]) { return undef; }
1527 if (exists($main::has_command_cache{$_[0]})) {
1528         return $main::has_command_cache{$_[0]};
1529         }
1530 my $rv = undef;
1531 my $slash = $gconfig{'os_type'} eq 'windows' ? '\\' : '/';
1532 if ($_[0] =~ /^\// || $_[0] =~ /^[a-z]:[\\\/]/i) {
1533         # Absolute path given - just use it
1534         my $t = &translate_filename($_[0]);
1535         $rv = (-x $t && !-d _) ? $_[0] : undef;
1536         }
1537 else {
1538         # Check each directory in the path
1539         my %donedir;
1540         foreach my $d (split($path_separator, $ENV{'PATH'})) {
1541                 next if ($donedir{$d}++);
1542                 $d =~ s/$slash$// if ($d ne $slash);
1543                 my $t = &translate_filename("$d/$_[0]");
1544                 if (-x $t && !-d _) {
1545                         $rv = $d.$slash.$_[0];
1546                         last;
1547                         }
1548                 if ($gconfig{'os_type'} eq 'windows') {
1549                         foreach my $sfx (".exe", ".com", ".bat") {
1550                                 my $t = &translate_filename("$d/$_[0]").$sfx;
1551                                 if (-r $t && !-d _) {
1552                                         $rv = $d.$slash.$_[0].$sfx;
1553                                         last;
1554                                         }
1555                                 }
1556                         }
1557                 }
1558         }
1559 $main::has_command_cache{$_[0]} = $rv;
1560 return $rv;
1561 }
1562
1563 =head2 make_date(seconds, [date-only], [fmt])
1564
1565 Converts a Unix date/time in seconds to a human-readable form, by default
1566 formatted like dd/mmm/yyyy hh:mm:ss. Parameters are :
1567
1568 =item seconds - Unix time is seconds to convert.
1569
1570 =item date-only - If set to 1, exclude the time from the returned string.
1571
1572 =item fmt - Optional, one of dd/mon/yyyy, dd/mm/yyyy, mm/dd/yyyy or yyyy/mm/dd
1573
1574 =cut
1575 sub make_date
1576 {
1577 my ($secs, $only, $fmt) = @_;
1578 my @tm = localtime($secs);
1579 my $date;
1580 if (!$fmt) {
1581         $fmt = $gconfig{'dateformat'} || 'dd/mon/yyyy';
1582         }
1583 if ($fmt eq 'dd/mon/yyyy') {
1584         $date = sprintf "%2.2d/%s/%4.4d",
1585                         $tm[3], $text{"smonth_".($tm[4]+1)}, $tm[5]+1900;
1586         }
1587 elsif ($fmt eq 'dd/mm/yyyy') {
1588         $date = sprintf "%2.2d/%2.2d/%4.4d", $tm[3], $tm[4]+1, $tm[5]+1900;
1589         }
1590 elsif ($fmt eq 'mm/dd/yyyy') {
1591         $date = sprintf "%2.2d/%2.2d/%4.4d", $tm[4]+1, $tm[3], $tm[5]+1900;
1592         }
1593 elsif ($fmt eq 'yyyy/mm/dd') {
1594         $date = sprintf "%4.4d/%2.2d/%2.2d", $tm[5]+1900, $tm[4]+1, $tm[3];
1595         }
1596 if (!$only) {
1597         $date .= sprintf " %2.2d:%2.2d", $tm[2], $tm[1];
1598         }
1599 return $date;
1600 }
1601
1602 =head2 file_chooser_button(input, type, [form], [chroot], [addmode])
1603
1604 Return HTML for a button that pops up a file chooser when clicked, and places
1605 the selected filename into another HTML field. The parameters are :
1606
1607 =item input - Name of the form field to store the filename in.
1608
1609 =item type - 0 for file or directory chooser, or 1 for directory only.
1610
1611 =item form - Index of the form containing the button.
1612
1613 =item chroot - If set to 1, the chooser will be limited to this directory.
1614
1615 =item addmode - If set to 1, the selected filename will be appended to the text box instead of replacing it's contents.
1616
1617 =cut
1618 sub file_chooser_button
1619 {
1620 return &theme_file_chooser_button(@_)
1621         if (defined(&theme_file_chooser_button));
1622 my $form = defined($_[2]) ? $_[2] : 0;
1623 my $chroot = defined($_[3]) ? $_[3] : "/";
1624 my $add = int($_[4]);
1625 my ($w, $h) = (400, 300);
1626 if ($gconfig{'db_sizefile'}) {
1627         ($w, $h) = split(/x/, $gconfig{'db_sizefile'});
1628         }
1629 return "<input type=button onClick='ifield = form.$_[0]; chooser = window.open(\"$gconfig{'webprefix'}/chooser.cgi?add=$add&type=$_[1]&chroot=$chroot&file=\"+escape(ifield.value), \"chooser\", \"toolbar=no,menubar=no,scrollbars=no,resizable=yes,width=$w,height=$h\"); chooser.ifield = ifield; window.ifield = ifield' value=\"...\">\n";
1630 }
1631
1632 =head2 popup_window_button(url, width, height, scrollbars?, &field-mappings)
1633
1634 Returns HTML for a button that will popup a chooser window of some kind. The
1635 parameters are :
1636
1637 =item url - Base URL of the popup window's contents
1638
1639 =item width - Width of the window in pixels
1640
1641 =item height - Height in pixels
1642
1643 =item scrollbars - Set to 1 if the window should have scrollbars
1644
1645 The field-mappings parameter is an array ref of array refs containing
1646
1647 =item - Attribute to assign field to in the popup window
1648
1649 =item - Form field name
1650
1651 =item - CGI parameter to URL for value, if any
1652
1653 =cut
1654 sub popup_window_button
1655 {
1656 return &theme_popup_window_button(@_) if (defined(&theme_popup_window_button));
1657 my ($url, $w, $h, $scroll, $fields) = @_;
1658 my $scrollyn = $scroll ? "yes" : "no";
1659 my $rv = "<input type=button onClick='";
1660 foreach my $m (@$fields) {
1661         $rv .= "$m->[0] = form.$m->[1]; ";
1662         }
1663 my $sep = $url =~ /\?/ ? "&" : "?";
1664 $rv .= "chooser = window.open(\"$url\"";
1665 foreach my $m (@$fields) {
1666         if ($m->[2]) {
1667                 $rv .= "+\"$sep$m->[2]=\"+escape($m->[0].value)";
1668                 $sep = "&";
1669                 }
1670         }
1671 $rv .= ", \"chooser\", \"toolbar=no,menubar=no,scrollbars=$scrollyn,resizable=yes,width=$w,height=$h\"); ";
1672 foreach my $m (@$fields) {
1673         $rv .= "chooser.$m->[0] = $m->[0]; ";
1674         $rv .= "window.$m->[0] = $m->[0]; ";
1675         }
1676 $rv .= "' value=\"...\">";
1677 return $rv;
1678 }
1679
1680 =head2 read_acl(&user-module-hash, &user-list-hash)
1681
1682 Reads the Webmin acl file into the given hash references. The first is indexed
1683 by a combined key of username,module , with the value being set to 1 when
1684 the user has access to that module. The second is indexed by username, with
1685 the value being an array ref of allowed modules.
1686
1687 This function is deprecated in favour of foreign_available, which performs a
1688 more comprehensive check of module availability.
1689
1690 =cut
1691 sub read_acl
1692 {
1693 if (!%main::acl_hash_cache) {
1694         local $_;
1695         open(ACL, &acl_filename());
1696         while(<ACL>) {
1697                 if (/^([^:]+):\s*(.*)/) {
1698                         my $user = $1;
1699                         my @mods = split(/\s+/, $2);
1700                         foreach my $m (@mods) {
1701                                 $main::acl_hash_cache{$user,$m}++;
1702                                 }
1703                         $main::acl_array_cache{$user} = \@mods;
1704                         }
1705                 }
1706         close(ACL);
1707         }
1708 if ($_[0]) { %{$_[0]} = %main::acl_hash_cache; }
1709 if ($_[1]) { %{$_[1]} = %main::acl_array_cache; }
1710 }
1711
1712 =head2 acl_filename
1713
1714 Returns the file containing the webmin ACL, which is usually
1715 /etc/webmin/webmin.acl.
1716
1717 =cut
1718 sub acl_filename
1719 {
1720 return "$config_directory/webmin.acl";
1721 }
1722
1723 =head2 acl_check
1724
1725 Does nothing, but kept around for compatability.
1726
1727 =cut
1728 sub acl_check
1729 {
1730 }
1731
1732 =head2 get_miniserv_config(&hash)
1733
1734 Reads the Webmin webserver's (miniserv.pl) configuration file, usually located
1735 at /etc/webmin/miniserv.conf, and stores its names and values in the given
1736 hash reference.
1737
1738 =cut
1739 sub get_miniserv_config
1740 {
1741 return &read_file_cached(
1742         $ENV{'MINISERV_CONFIG'} || "$config_directory/miniserv.conf", $_[0]);
1743 }
1744
1745 =head2 put_miniserv_config(&hash)
1746
1747 Writes out the Webmin webserver configuration file from the contents of
1748 the given hash ref. This should be initially populated by get_miniserv_config,
1749 like so :
1750
1751  get_miniserv_config(\%miniserv);
1752  $miniserv{'port'} = 10005;
1753  put_miniserv_config(\%miniserv);
1754  restart_miniserv();
1755
1756 =cut
1757 sub put_miniserv_config
1758 {
1759 &write_file($ENV{'MINISERV_CONFIG'} || "$config_directory/miniserv.conf",
1760             $_[0]);
1761 }
1762
1763 =head2 restart_miniserv([nowait])
1764
1765 Kill the old miniserv process and re-start it, then optionally waits for
1766 it to restart. This will apply all configuration settings.
1767
1768 =cut
1769 sub restart_miniserv
1770 {
1771 my ($nowait) = @_;
1772 return undef if (&is_readonly_mode());
1773 my %miniserv;
1774 &get_miniserv_config(\%miniserv) || return;
1775
1776 my $i;
1777 if ($gconfig{'os_type'} ne 'windows') {
1778         # On Unix systems, we can restart with a signal
1779         my ($pid, $addr, $i);
1780         $miniserv{'inetd'} && return;
1781         my @oldst = stat($miniserv{'pidfile'});
1782         open(PID, $miniserv{'pidfile'}) || &error("Failed to open PID file");
1783         chop($pid = <PID>);
1784         close(PID);
1785         if (!$pid) { &error("Invalid PID file"); }
1786
1787         # Just signal miniserv to restart
1788         &kill_logged('HUP', $pid) || &error("Incorrect Webmin PID $pid");
1789
1790         # Wait till new PID is written, indicating a restart
1791         for($i=0; $i<60; $i++) {
1792                 sleep(1);
1793                 my @newst = stat($miniserv{'pidfile'});
1794                 last if ($newst[9] != $oldst[9]);
1795                 }
1796         $i < 60 || &error("Webmin server did not write new PID file");
1797
1798         ## Totally kill the process and re-run it
1799         #$SIG{'TERM'} = 'IGNORE';
1800         #&kill_logged('TERM', $pid);
1801         #&system_logged("$config_directory/start >/dev/null 2>&1 </dev/null");
1802         }
1803 else {
1804         # On Windows, we need to use the flag file
1805         open(TOUCH, ">$miniserv{'restartflag'}");
1806         close(TOUCH);
1807         }
1808
1809 if (!$nowait) {
1810         # wait for miniserv to come back up
1811         $addr = inet_aton($miniserv{'bind'} ? $miniserv{'bind'} : "127.0.0.1");
1812         my $ok = 0;
1813         for($i=0; $i<20; $i++) {
1814                 sleep(1);
1815                 socket(STEST, PF_INET, SOCK_STREAM, getprotobyname("tcp"));
1816                 my $rv = connect(STEST,
1817                                  pack_sockaddr_in($miniserv{'port'}, $addr));
1818                 close(STEST);
1819                 last if ($rv && ++$ok >= 2);
1820                 }
1821         $i < 20 || &error("Failed to restart Webmin server!");
1822         }
1823 }
1824
1825 =head2 reload_miniserv
1826
1827 Sends a USR1 signal to the miniserv process, telling it to read-read it's
1828 configuration files. Not all changes will be applied though, such as the 
1829 IP addresses and ports to accept connections on.
1830
1831 =cut
1832 sub reload_miniserv
1833 {
1834 return undef if (&is_readonly_mode());
1835 my %miniserv;
1836 &get_miniserv_config(\%miniserv) || return;
1837
1838 if ($gconfig{'os_type'} ne 'windows') {
1839         # Send a USR1 signal to re-read the config
1840         my ($pid, $addr, $i);
1841         $miniserv{'inetd'} && return;
1842         open(PID, $miniserv{'pidfile'}) || &error("Failed to open PID file");
1843         chop($pid = <PID>);
1844         close(PID);
1845         if (!$pid) { &error("Invalid PID file"); }
1846         &kill_logged('USR1', $pid) || &error("Incorrect Webmin PID $pid");
1847
1848         # Make sure this didn't kill Webmin!
1849         sleep(1);
1850         if (!kill(0, $pid)) {
1851                 print STDERR "USR1 signal killed Webmin - restarting\n";
1852                 &system_logged("$config_directory/start >/dev/null 2>&1 </dev/null");
1853                 }
1854         }
1855 else {
1856         # On Windows, we need to use the flag file
1857         open(TOUCH, ">$miniserv{'reloadflag'}");
1858         close(TOUCH);
1859         }
1860 }
1861
1862 =head2 check_os_support(&minfo, [os-type, os-version], [api-only])
1863
1864 Returns 1 if some module is supported on the current operating system, or the
1865 OS supplies as parameters. The parameters are :
1866
1867 =item minfo - A hash ref of module information, as returned by get_module_info
1868
1869 =item os-type - The Webmin OS code to use instead of the system's real OS, such as redhat-linux
1870
1871 =item os-version - The Webmin OS version to use, such as 13.0
1872
1873 =item api-only - If set to 1, considers a module supported if it provides an API to other modules on this OS, even if the majority of its functionality is not supported.
1874
1875 =cut
1876 sub check_os_support
1877 {
1878 my $oss = $_[0]->{'os_support'};
1879 if ($_[3] && $oss && $_[0]->{'api_os_support'}) {
1880         # May provide usable API
1881         $oss .= " ".$_[0]->{'api_os_support'};
1882         }
1883 if ($_[0]->{'nozone'} && &running_in_zone()) {
1884         # Not supported in a Solaris Zone
1885         return 0;
1886         }
1887 if ($_[0]->{'novserver'} && &running_in_vserver()) {
1888         # Not supported in a Linux Vserver
1889         return 0;
1890         }
1891 if ($_[0]->{'noopenvz'} && &running_in_openvz()) {
1892         # Not supported in an OpenVZ container
1893         return 0;
1894         }
1895 return 1 if (!$oss || $oss eq '*');
1896 my $osver = $_[2] || $gconfig{'os_version'};
1897 my $ostype = $_[1] || $gconfig{'os_type'};
1898 my $anyneg = 0;
1899 while(1) {
1900         my ($os, $ver, $codes);
1901         my ($neg) = ($oss =~ s/^!//);   # starts with !
1902         $anyneg++ if ($neg);
1903         if ($oss =~ /^([^\/\s]+)\/([^\{\s]+)\{([^\}]*)\}\s*(.*)$/) {
1904                 # OS/version{code}
1905                 $os = $1; $ver = $2; $codes = $3; $oss = $4;
1906                 }
1907         elsif ($oss =~ /^([^\/\s]+)\/([^\/\s]+)\s*(.*)$/) {
1908                 # OS/version
1909                 $os = $1; $ver = $2; $oss = $3;
1910                 }
1911         elsif ($oss =~ /^([^\{\s]+)\{([^\}]*)\}\s*(.*)$/) {
1912                 # OS/{code}
1913                 $os = $1; $codes = $2; $oss = $3;
1914                 }
1915         elsif ($oss =~ /^\{([^\}]*)\}\s*(.*)$/) {
1916                 # {code}
1917                 $codes = $1; $oss = $2;
1918                 }
1919         elsif ($oss =~ /^(\S+)\s*(.*)$/) {
1920                 # OS
1921                 $os = $1; $oss = $2;
1922                 }
1923         else { last; }
1924         next if ($os && !($os eq $ostype ||
1925                           $ostype =~ /^(\S+)-(\S+)$/ && $os eq "*-$2"));
1926         if ($ver =~ /^([0-9\.]+)\-([0-9\.]+)$/) {
1927                 next if ($osver < $1 || $osver > $2);
1928                 }
1929         elsif ($ver =~ /^([0-9\.]+)\-\*$/) {
1930                 next if ($osver < $1);
1931                 }
1932         elsif ($ver =~ /^\*\-([0-9\.]+)$/) {
1933                 next if ($osver > $1);
1934                 }
1935         elsif ($ver) {
1936                 next if ($ver ne $osver);
1937                 }
1938         next if ($codes && !eval $codes);
1939         return !$neg;
1940         }
1941 return $anyneg;
1942 }
1943
1944 =head2 http_download(host, port, page, destfile, [&error], [&callback], [sslmode], [user, pass], [timeout], [osdn-convert], [no-cache], [&headers])
1945
1946 Downloads data from a HTTP url to a local file or string. The parameters are :
1947
1948 =item host - The hostname part of the URL, such as www.google.com
1949
1950 =item port - The HTTP port number, such as 80
1951
1952 =item page - The filename part of the URL, like /index.html
1953
1954 =item destfile - The local file to save the URL data to, like /tmp/index.html. This can also be a scalar reference, in which case the data will be appended to that scalar.
1955
1956 =item error - If set to a scalar ref, the function will store any error message in this scalar and return 0 on failure, or 1 on success. If not set, it will simply call the error function if the download fails.
1957
1958 =item callback - If set to a function ref, it will be called after each block of data is received. This is typically set to \&progress_callback, for printing download progress.
1959
1960 =item sslmode - If set to 1, an HTTPS connection is used instead of HTTP.
1961
1962 =item user - If set, HTTP authentication is done with this username.
1963
1964 =item pass - The HTTP password to use with the username above.
1965
1966 =item timeout - A timeout in seconds to wait for the TCP connection to be established before failing.
1967
1968 =item osdn-convert - If set to 1, URL for downloads from sourceforge are converted to use an appropriate mirror site.
1969
1970 =item no-cache - If set to 1, Webmin's internal caching for this URL is disabled.
1971
1972 =item headers - If set to a hash ref of additional HTTP headers, they will be added to the request.
1973
1974 =cut
1975 sub http_download
1976 {
1977 my ($host, $port, $page, $dest, $error, $cbfunc, $ssl, $user, $pass,
1978     $timeout, $osdn, $nocache, $headers) = @_;
1979 if ($gconfig{'debug_what_net'}) {
1980         &webmin_debug_log('HTTP', "host=$host port=$port page=$page ssl=$ssl".
1981                                   ($user ? " user=$user pass=$pass" : "").
1982                                   (ref($dest) ? "" : " dest=$dest"));
1983         }
1984 if ($osdn) {
1985         # Convert OSDN URL first
1986         my $prot = $ssl ? "https://" : "http://";
1987         my $portstr = $ssl && $port == 443 ||
1988                          !$ssl && $port == 80 ? "" : ":$port";
1989         ($host, $port, $page, $ssl) = &parse_http_url(
1990                 &convert_osdn_url($prot.$host.$portstr.$page));
1991         }
1992
1993 # Check if we already have cached the URL
1994 my $url = ($ssl ? "https://" : "http://").$host.":".$port.$page;
1995 my $cfile = &check_in_http_cache($url);
1996 if ($cfile && !$nocache) {
1997         # Yes! Copy to dest file or variable
1998         &$cbfunc(6, $url) if ($cbfunc);
1999         if (ref($dest)) {
2000                 &open_readfile(CACHEFILE, $cfile);
2001                 local $/ = undef;
2002                 $$dest = <CACHEFILE>;
2003                 close(CACHEFILE);
2004                 }
2005         else {
2006                 &copy_source_dest($cfile, $dest);
2007                 }
2008         return;
2009         }
2010
2011 # Build headers
2012 my @headers;
2013 push(@headers, [ "Host", $host ]);
2014 push(@headers, [ "User-agent", "Webmin" ]);
2015 push(@headers, [ "Accept-language", "en" ]);
2016 if ($user) {
2017         my $auth = &encode_base64("$user:$pass");
2018         $auth =~ tr/\r\n//d;
2019         push(@headers, [ "Authorization", "Basic $auth" ]);
2020         }
2021 foreach my $hname (keys %$headers) {
2022         push(@headers, [ $hname, $headers->{$hname} ]);
2023         }
2024
2025 # Actually download it
2026 $main::download_timed_out = undef;
2027 local $SIG{ALRM} = \&download_timeout;
2028 alarm($timeout || 60);
2029 my $h = &make_http_connection($host, $port, $ssl, "GET", $page, \@headers);
2030 alarm(0);
2031 $h = $main::download_timed_out if ($main::download_timed_out);
2032 if (!ref($h)) {
2033         if ($error) { $$error = $h; return; }
2034         else { &error($h); }
2035         }
2036 &complete_http_download($h, $dest, $error, $cbfunc, $osdn, $host, $port,
2037                         $headers, $ssl, $nocache);
2038 if ((!$error || !$$error) && !$nocache) {
2039         &write_to_http_cache($url, $dest);
2040         }
2041 }
2042
2043 =head2 complete_http_download(handle, destfile, [&error], [&callback], [osdn], [oldhost], [oldport], [&send-headers], [old-ssl], [no-cache])
2044
2045 Do a HTTP download, after the headers have been sent. For internal use only,
2046 typically called by http_download.
2047
2048 =cut
2049 sub complete_http_download
2050 {
2051 local ($line, %header, @headers, $s);  # Kept local so that callback funcs
2052                                        # can access them.
2053 my $cbfunc = $_[3];
2054
2055 # read headers
2056 alarm(60);
2057 ($line = &read_http_connection($_[0])) =~ tr/\r\n//d;
2058 if ($line !~ /^HTTP\/1\..\s+(200|30[0-9])(\s+|$)/) {
2059         alarm(0);
2060         if ($_[2]) { ${$_[2]} = $line; return; }
2061         else { &error("Download failed : $line"); }
2062         }
2063 my $rcode = $1;
2064 &$cbfunc(1, $rcode >= 300 && $rcode < 400 ? 1 : 0)
2065         if ($cbfunc);
2066 while(1) {
2067         $line = &read_http_connection($_[0]);
2068         $line =~ tr/\r\n//d;
2069         $line =~ /^(\S+):\s+(.*)$/ || last;
2070         $header{lc($1)} = $2;
2071         push(@headers, [ lc($1), $2 ]);
2072         }
2073 alarm(0);
2074 if ($main::download_timed_out) {
2075         if ($_[2]) { ${$_[2]} = $main::download_timed_out; return 0; }
2076         else { &error($main::download_timed_out); }
2077         }
2078 &$cbfunc(2, $header{'content-length'}) if ($cbfunc);
2079 if ($rcode >= 300 && $rcode < 400) {
2080         # follow the redirect
2081         &$cbfunc(5, $header{'location'}) if ($cbfunc);
2082         my ($host, $port, $page, $ssl);
2083         if ($header{'location'} =~ /^(http|https):\/\/([^:]+):(\d+)(\/.*)?$/) {
2084                 $ssl = $1 eq 'https' ? 1 : 0;
2085                 $host = $2; $port = $3; $page = $4 || "/";
2086                 }
2087         elsif ($header{'location'} =~ /^(http|https):\/\/([^:\/]+)(\/.*)?$/) {
2088                 $ssl = $1 eq 'https' ? 1 : 0;
2089                 $host = $2; $port = 80; $page = $3 || "/";
2090                 }
2091         elsif ($header{'location'} =~ /^\// && $_[5]) {
2092                 # Relative to same server
2093                 $host = $_[5];
2094                 $port = $_[6];
2095                 $ssl = $_[8];
2096                 $page = $header{'location'};
2097                 }
2098         elsif ($header{'location'}) {
2099                 # Assume relative to same dir .. not handled
2100                 if ($_[2]) { ${$_[2]} = "Invalid Location header $header{'location'}"; return; }
2101                 else { &error("Invalid Location header $header{'location'}"); }
2102                 }
2103         else {
2104                 if ($_[2]) { ${$_[2]} = "Missing Location header"; return; }
2105                 else { &error("Missing Location header"); }
2106                 }
2107         my $params;
2108         ($page, $params) = split(/\?/, $page);
2109         $page =~ s/ /%20/g;
2110         $page .= "?".$params if (defined($params));
2111         &http_download($host, $port, $page, $_[1], $_[2], $cbfunc, $ssl,
2112                        undef, undef, undef, $_[4], $_[9], $_[7]);
2113         }
2114 else {
2115         # read data
2116         if (ref($_[1])) {
2117                 # Append to a variable
2118                 while(defined($buf = &read_http_connection($_[0], 1024))) {
2119                         ${$_[1]} .= $buf;
2120                         &$cbfunc(3, length(${$_[1]})) if ($cbfunc);
2121                         }
2122                 }
2123         else {
2124                 # Write to a file
2125                 my $got = 0;
2126                 if (!&open_tempfile(PFILE, ">$_[1]", 1)) {
2127                         if ($_[2]) { ${$_[2]} = "Failed to write to $_[1] : $!"; return; }
2128                         else { &error("Failed to write to $_[1] : $!"); }
2129                         }
2130                 binmode(PFILE);         # For windows
2131                 while(defined($buf = &read_http_connection($_[0], 1024))) {
2132                         &print_tempfile(PFILE, $buf);
2133                         $got += length($buf);
2134                         &$cbfunc(3, $got) if ($cbfunc);
2135                         }
2136                 &close_tempfile(PFILE);
2137                 if ($header{'content-length'} &&
2138                     $got != $header{'content-length'}) {
2139                         if ($_[2]) { ${$_[2]} = "Download incomplete"; return; }
2140                         else { &error("Download incomplete"); }
2141                         }
2142                 }
2143         &$cbfunc(4) if ($cbfunc);
2144         }
2145 &close_http_connection($_[0]);
2146 }
2147
2148
2149 =head2 ftp_download(host, file, destfile, [&error], [&callback], [user, pass], [port])
2150
2151 Download data from an FTP site to a local file. The parameters are :
2152
2153 =item host - FTP server hostname
2154
2155 =item file - File on the FTP server to download
2156
2157 =item destfile - File on the Webmin system to download data to
2158
2159 =item error - If set to a string ref, any error message is written into this string and the function returns 0 on failure, 1 on success. Otherwise, error is called on failure.
2160
2161 =item callback - If set to a function ref, it will be called after each block of data is received. This is typically set to \&progress_callback, for printing download progress.
2162
2163 =item user - Username to login to the FTP server as. If missing, Webmin will login as anonymous.
2164
2165 =item pass - Password for the username above.
2166
2167 =item port - FTP server port number, which defaults to 21 if not set.
2168
2169 =cut
2170 sub ftp_download
2171 {
2172 my ($host, $file, $dest, $error, $cbfunc, $user, $pass, $port) = @_;
2173 $port ||= 21;
2174 if ($gconfig{'debug_what_net'}) {
2175         &webmin_debug_log('FTP', "host=$host port=$port file=$file".
2176                                  ($user ? " user=$user pass=$pass" : "").
2177                                  (ref($dest) ? "" : " dest=$dest"));
2178         }
2179 my ($buf, @n);
2180 $cbfunc = $_[4];
2181 if (&is_readonly_mode()) {
2182         if ($_[3]) { ${$_[3]} = "FTP connections not allowed in readonly mode";
2183                      return 0; }
2184         else { &error("FTP connections not allowed in readonly mode"); }
2185         }
2186
2187 # Check if we already have cached the URL
2188 my $url = "ftp://".$host.$file;
2189 my $cfile = &check_in_http_cache($url);
2190 if ($cfile) {
2191         # Yes! Copy to dest file or variable
2192         &$cbfunc(6, $url) if ($cbfunc);
2193         if (ref($dest)) {
2194                 &open_readfile(CACHEFILE, $cfile);
2195                 local $/ = undef;
2196                 $$dest = <CACHEFILE>;
2197                 close(CACHEFILE);
2198                 }
2199         else {
2200                 &copy_source_dest($cfile, $dest);
2201                 }
2202         return;
2203         }
2204
2205 # Actually download it
2206 $main::download_timed_out = undef;
2207 local $SIG{ALRM} = \&download_timeout;
2208 alarm(60);
2209 my $connected;
2210 if ($gconfig{'ftp_proxy'} =~ /^http:\/\/(\S+):(\d+)/ && !&no_proxy($_[0])) {
2211         # download through http-style proxy
2212         my $error;
2213         if (&open_socket($1, $2, "SOCK", \$error)) {
2214                 # Connected OK
2215                 if ($main::download_timed_out) {
2216                         alarm(0);
2217                         if ($_[3]) { ${$_[3]} = $main::download_timed_out; return 0; }
2218                         else { &error($main::download_timed_out); }
2219                         }
2220                 my $esc = $_[1]; $esc =~ s/ /%20/g;
2221                 my $up = "$_[5]:$_[6]\@" if ($_[5]);
2222                 my $portstr = $port == 21 ? "" : ":$port";
2223                 print SOCK "GET ftp://$up$_[0]$portstr$esc HTTP/1.0\r\n";
2224                 print SOCK "User-agent: Webmin\r\n";
2225                 if ($gconfig{'proxy_user'}) {
2226                         my $auth = &encode_base64(
2227                            "$gconfig{'proxy_user'}:$gconfig{'proxy_pass'}");
2228                         $auth =~ tr/\r\n//d;
2229                         print SOCK "Proxy-Authorization: Basic $auth\r\n";
2230                         }
2231                 print SOCK "\r\n";
2232                 &complete_http_download({ 'fh' => "SOCK" }, $_[2], $_[3], $_[4]);
2233                 $connected = 1;
2234                 }
2235         elsif (!$gconfig{'proxy_fallback'}) {
2236                 alarm(0);
2237                 if ($error) { $$error = $main::download_timed_out; return 0; }
2238                 else { &error($main::download_timed_out); }
2239                 }
2240         }
2241
2242 if (!$connected) {
2243         # connect to host and login with real FTP protocol
2244         &open_socket($_[0], $port, "SOCK", $_[3]) || return 0;
2245         alarm(0);
2246         if ($main::download_timed_out) {
2247                 if ($_[3]) { ${$_[3]} = $main::download_timed_out; return 0; }
2248                 else { &error($main::download_timed_out); }
2249                 }
2250         &ftp_command("", 2, $_[3]) || return 0;
2251         if ($_[5]) {
2252                 # Login as supplied user
2253                 my @urv = &ftp_command("USER $_[5]", [ 2, 3 ], $_[3]);
2254                 @urv || return 0;
2255                 if (int($urv[1]/100) == 3) {
2256                         &ftp_command("PASS $_[6]", 2, $_[3]) || return 0;
2257                         }
2258                 }
2259         else {
2260                 # Login as anonymous
2261                 my @urv = &ftp_command("USER anonymous", [ 2, 3 ], $_[3]);
2262                 @urv || return 0;
2263                 if (int($urv[1]/100) == 3) {
2264                         &ftp_command("PASS root\@".&get_system_hostname(), 2,
2265                                      $_[3]) || return 0;
2266                         }
2267                 }
2268         &$cbfunc(1, 0) if ($cbfunc);
2269
2270         if ($_[1]) {
2271                 # get the file size and tell the callback
2272                 &ftp_command("TYPE I", 2, $_[3]) || return 0;
2273                 my $size = &ftp_command("SIZE $_[1]", 2, $_[3]);
2274                 defined($size) || return 0;
2275                 if ($cbfunc) {
2276                         &$cbfunc(2, int($size));
2277                         }
2278
2279                 # request the file
2280                 my $pasv = &ftp_command("PASV", 2, $_[3]);
2281                 defined($pasv) || return 0;
2282                 $pasv =~ /\(([0-9,]+)\)/;
2283                 @n = split(/,/ , $1);
2284                 &open_socket("$n[0].$n[1].$n[2].$n[3]",
2285                         $n[4]*256 + $n[5], "CON", $_[3]) || return 0;
2286                 &ftp_command("RETR $_[1]", 1, $_[3]) || return 0;
2287
2288                 # transfer data
2289                 my $got = 0;
2290                 &open_tempfile(PFILE, ">$_[2]", 1);
2291                 while(read(CON, $buf, 1024) > 0) {
2292                         &print_tempfile(PFILE, $buf);
2293                         $got += length($buf);
2294                         &$cbfunc(3, $got) if ($cbfunc);
2295                         }
2296                 &close_tempfile(PFILE);
2297                 close(CON);
2298                 if ($got != $size) {
2299                         if ($_[3]) { ${$_[3]} = "Download incomplete"; return 0; }
2300                         else { &error("Download incomplete"); }
2301                         }
2302                 &$cbfunc(4) if ($cbfunc);
2303
2304                 &ftp_command("", 2, $_[3]) || return 0;
2305                 }
2306
2307         # finish off..
2308         &ftp_command("QUIT", 2, $_[3]) || return 0;
2309         close(SOCK);
2310         }
2311
2312 &write_to_http_cache($url, $dest);
2313 return 1;
2314 }
2315
2316 =head2 ftp_upload(host, file, srcfile, [&error], [&callback], [user, pass], [port])
2317
2318 Upload data from a local file to an FTP site. The parameters are :
2319
2320 =item host - FTP server hostname
2321
2322 =item file - File on the FTP server to write to
2323
2324 =item srcfile - File on the Webmin system to upload data from
2325
2326 =item error - If set to a string ref, any error message is written into this string and the function returns 0 on failure, 1 on success. Otherwise, error is called on failure.
2327
2328 =item callback - If set to a function ref, it will be called after each block of data is received. This is typically set to \&progress_callback, for printing upload progress.
2329
2330 =item user - Username to login to the FTP server as. If missing, Webmin will login as anonymous.
2331
2332 =item pass - Password for the username above.
2333
2334 =item port - FTP server port number, which defaults to 21 if not set.
2335
2336 =cut
2337 sub ftp_upload
2338 {
2339 my ($buf, @n);
2340 my $cbfunc = $_[4];
2341 if (&is_readonly_mode()) {
2342         if ($_[3]) { ${$_[3]} = "FTP connections not allowed in readonly mode";
2343                      return 0; }
2344         else { &error("FTP connections not allowed in readonly mode"); }
2345         }
2346
2347 $main::download_timed_out = undef;
2348 local $SIG{ALRM} = \&download_timeout;
2349 alarm(60);
2350
2351 # connect to host and login
2352 &open_socket($_[0], $_[7] || 21, "SOCK", $_[3]) || return 0;
2353 alarm(0);
2354 if ($main::download_timed_out) {
2355         if ($_[3]) { ${$_[3]} = $main::download_timed_out; return 0; }
2356         else { &error($main::download_timed_out); }
2357         }
2358 &ftp_command("", 2, $_[3]) || return 0;
2359 if ($_[5]) {
2360         # Login as supplied user
2361         my @urv = &ftp_command("USER $_[5]", [ 2, 3 ], $_[3]);
2362         @urv || return 0;
2363         if (int($urv[1]/100) == 3) {
2364                 &ftp_command("PASS $_[6]", 2, $_[3]) || return 0;
2365                 }
2366         }
2367 else {
2368         # Login as anonymous
2369         my @urv = &ftp_command("USER anonymous", [ 2, 3 ], $_[3]);
2370         @urv || return 0;
2371         if (int($urv[1]/100) == 3) {
2372                 &ftp_command("PASS root\@".&get_system_hostname(), 2,
2373                              $_[3]) || return 0;
2374                 }
2375         }
2376 &$cbfunc(1, 0) if ($cbfunc);
2377
2378 &ftp_command("TYPE I", 2, $_[3]) || return 0;
2379
2380 # get the file size and tell the callback
2381 my @st = stat($_[2]);
2382 if ($cbfunc) {
2383         &$cbfunc(2, $st[7]);
2384         }
2385
2386 # send the file
2387 my $pasv = &ftp_command("PASV", 2, $_[3]);
2388 defined($pasv) || return 0;
2389 $pasv =~ /\(([0-9,]+)\)/;
2390 @n = split(/,/ , $1);
2391 &open_socket("$n[0].$n[1].$n[2].$n[3]", $n[4]*256 + $n[5], "CON", $_[3]) || return 0;
2392 &ftp_command("STOR $_[1]", 1, $_[3]) || return 0;
2393
2394 # transfer data
2395 my $got;
2396 open(PFILE, $_[2]);
2397 while(read(PFILE, $buf, 1024) > 0) {
2398         print CON $buf;
2399         $got += length($buf);
2400         &$cbfunc(3, $got) if ($cbfunc);
2401         }
2402 close(PFILE);
2403 close(CON);
2404 if ($got != $st[7]) {
2405         if ($_[3]) { ${$_[3]} = "Upload incomplete"; return 0; }
2406         else { &error("Upload incomplete"); }
2407         }
2408 &$cbfunc(4) if ($cbfunc);
2409
2410 # finish off..
2411 &ftp_command("", 2, $_[3]) || return 0;
2412 &ftp_command("QUIT", 2, $_[3]) || return 0;
2413 close(SOCK);
2414
2415 return 1;
2416 }
2417
2418 =head2 no_proxy(host)
2419
2420 Checks if some host is on the no proxy list. For internal use by the 
2421 http_download and ftp_download functions.
2422
2423 =cut
2424 sub no_proxy
2425 {
2426 my $ip = &to_ipaddress($_[0]);
2427 foreach my $n (split(/\s+/, $gconfig{'noproxy'})) {
2428         return 1 if ($_[0] =~ /\Q$n\E/ ||
2429                      $ip =~ /\Q$n\E/);
2430         }
2431 return 0;
2432 }
2433
2434 =head2 open_socket(host, port, handle, [&error])
2435
2436 Open a TCP connection to some host and port, using a file handle. The 
2437 parameters are :
2438
2439 =item host - Hostname or IP address to connect to.
2440
2441 =item port - TCP port number.
2442
2443 =item handle - A file handle name to use for the connection.
2444
2445 =item error - A string reference to write any error message into. If not set, the error function is called on failure.
2446
2447 =cut
2448 sub open_socket
2449 {
2450 my ($host, $port, $fh, $err) = @_;
2451 $fh = &callers_package($fh);
2452
2453 if ($gconfig{'debug_what_net'}) {
2454         &webmin_debug_log('TCP', "host=$host port=$port");
2455         }
2456 if (!socket($fh, PF_INET, SOCK_STREAM, getprotobyname("tcp"))) {
2457         if ($err) { $$err = "Failed to create socket : $!"; return 0; }
2458         else { &error("Failed to create socket : $!"); }
2459         }
2460 my $addr;
2461 if (!($addr = inet_aton($host))) {
2462         if ($err) { $$err = "Failed to lookup IP address for $host"; return 0; }
2463         else { &error("Failed to lookup IP address for $host"); }
2464         }
2465 if ($gconfig{'bind_proxy'}) {
2466         if (!bind($fh,pack_sockaddr_in(0, inet_aton($gconfig{'bind_proxy'})))) {
2467                 if ($err) { $$err = "Failed to bind to source address : $!"; return 0; }
2468                 else { &error("Failed to bind to source address : $!"); }
2469                 }
2470         }
2471 if (!connect($fh, pack_sockaddr_in($port, $addr))) {
2472         if ($err) { $$err = "Failed to connect to $host:$port : $!"; return 0; }
2473         else { &error("Failed to connect to $host:$port : $!"); }
2474         }
2475 my $old = select($fh); $| =1; select($old);
2476 return 1;
2477 }
2478
2479 =head2 download_timeout
2480
2481 Called when a download times out. For internal use only.
2482
2483 =cut
2484 sub download_timeout
2485 {
2486 $main::download_timed_out = "Download timed out";
2487 }
2488
2489 =head2 ftp_command(command, expected, [&error], [filehandle])
2490
2491 Send an FTP command, and die if the reply is not what was expected. Mainly
2492 for internal use by the ftp_download and ftp_upload functions.
2493
2494 =cut
2495 sub ftp_command
2496 {
2497 my ($cmd, $expect, $err, $fh) = @_;
2498 $fh ||= "SOCK";
2499 $fh = &callers_package($fh);
2500
2501 my $line;
2502 my $what = $cmd ne "" ? "<i>$cmd</i>" : "initial connection";
2503 if ($cmd ne "") {
2504         print $fh "$cmd\r\n";
2505         }
2506 alarm(60);
2507 if (!($line = <$fh>)) {
2508         alarm(0);
2509         if ($err) { $$err = "Failed to read reply to $what"; return undef; }
2510         else { &error("Failed to read reply to $what"); }
2511         }
2512 $line =~ /^(...)(.)(.*)$/;
2513 my $found = 0;
2514 if (ref($expect)) {
2515         foreach my $c (@$expect) {
2516                 $found++ if (int($1/100) == $c);
2517                 }
2518         }
2519 else {
2520         $found++ if (int($1/100) == $_[1]);
2521         }
2522 if (!$found) {
2523         alarm(0);
2524         if ($err) { $$err = "$what failed : $3"; return undef; }
2525         else { &error("$what failed : $3"); }
2526         }
2527 my $rcode = $1;
2528 my $reply = $3;
2529 if ($2 eq "-") {
2530         # Need to skip extra stuff..
2531         while(1) {
2532                 if (!($line = <$fh>)) {
2533                         alarm(0);
2534                         if ($$err) { $$err = "Failed to read reply to $what";
2535                                      return undef; }
2536                         else { &error("Failed to read reply to $what"); }
2537                         }
2538                 $line =~ /^(....)(.*)$/; $reply .= $2;
2539                 if ($1 eq "$rcode ") { last; }
2540                 }
2541         }
2542 alarm(0);
2543 return wantarray ? ($reply, $rcode) : $reply;
2544 }
2545
2546 =head2 to_ipaddress(hostname)
2547
2548 Converts a hostname to an a.b.c.d format IP address, or returns undef if
2549 it cannot be resolved.
2550
2551 =cut
2552 sub to_ipaddress
2553 {
2554 if (&check_ipaddress($_[0])) {
2555         return $_[0];
2556         }
2557 else {
2558         my $hn = gethostbyname($_[0]);
2559         return undef if (!$hn);
2560         local @ip = unpack("CCCC", $hn);
2561         return join("." , @ip);
2562         }
2563 }
2564
2565 =head2 icons_table(&links, &titles, &icons, [columns], [href], [width], [height], &befores, &afters)
2566
2567 Renders a 4-column table of icons. The useful parameters are :
2568
2569 =item links - An array ref of link destination URLs for the icons.
2570
2571 =item titles - An array ref of titles to appear under the icons.
2572
2573 =item icons - An array ref of URLs for icon images.
2574
2575 =item columns - Number of columns to layout the icons with. Defaults to 4.
2576
2577 =cut
2578 sub icons_table
2579 {
2580 &load_theme_library();
2581 if (defined(&theme_icons_table)) {
2582         &theme_icons_table(@_);
2583         return;
2584         }
2585 my $need_tr;
2586 my $cols = $_[3] ? $_[3] : 4;
2587 my $per = int(100.0 / $cols);
2588 print "<table class='icons_table' width=100% cellpadding=5>\n";
2589 for(my $i=0; $i<@{$_[0]}; $i++) {
2590         if ($i%$cols == 0) { print "<tr>\n"; }
2591         print "<td width=$per% align=center valign=top>\n";
2592         &generate_icon($_[2]->[$i], $_[1]->[$i], $_[0]->[$i],
2593                        ref($_[4]) ? $_[4]->[$i] : $_[4], $_[5], $_[6],
2594                        $_[7]->[$i], $_[8]->[$i]);
2595         print "</td>\n";
2596         if ($i%$cols == $cols-1) { print "</tr>\n"; }
2597         }
2598 while($i++%$cols) { print "<td width=$per%></td>\n"; $need_tr++; }
2599 print "</tr>\n" if ($need_tr);
2600 print "</table>\n";
2601 }
2602
2603 =head2 replace_file_line(file, line, [newline]*)
2604
2605 Replaces one line in some file with 0 or more new lines. The parameters are :
2606
2607 =item file - Full path to some file, like /etc/hosts.
2608
2609 =item line - Line number to replace, starting from 0.
2610
2611 =item newline - Zero or more lines to put into the file at the given line number. These must be newline-terminated strings.
2612
2613 =cut
2614 sub replace_file_line
2615 {
2616 my @lines;
2617 my $realfile = &translate_filename($_[0]);
2618 open(FILE, $realfile);
2619 @lines = <FILE>;
2620 close(FILE);
2621 if (@_ > 2) { splice(@lines, $_[1], 1, @_[2..$#_]); }
2622 else { splice(@lines, $_[1], 1); }
2623 &open_tempfile(FILE, ">$realfile");
2624 &print_tempfile(FILE, @lines);
2625 &close_tempfile(FILE);
2626 }
2627
2628 =head2 read_file_lines(file, [readonly])
2629
2630 Returns a reference to an array containing the lines from some file. This
2631 array can be modified, and will be written out when flush_file_lines()
2632 is called. The parameters are :
2633
2634 =item file - Full path to the file to read.
2635
2636 =item readonly - Should be set 1 if the caller is only going to read the lines, and never write it out.
2637
2638 Example code :
2639
2640  $lref = read_file_lines("/etc/hosts");
2641  push(@$lref, "127.0.0.1 localhost");
2642  flush_file_lines("/etc/hosts");
2643
2644 =cut
2645 sub read_file_lines
2646 {
2647 if (!$_[0]) {
2648         my ($package, $filename, $line) = caller;
2649         print STDERR "Missing file to read at ${package}::${filename} line $line\n";
2650         }
2651 my $realfile = &translate_filename($_[0]);
2652 if (!$main::file_cache{$realfile}) {
2653         my (@lines, $eol);
2654         local $_;
2655         &webmin_debug_log('READ', $_[0]) if ($gconfig{'debug_what_read'});
2656         open(READFILE, $realfile);
2657         while(<READFILE>) {
2658                 if (!$eol) {
2659                         $eol = /\r\n$/ ? "\r\n" : "\n";
2660                         }
2661                 tr/\r\n//d;
2662                 push(@lines, $_);
2663                 }
2664         close(READFILE);
2665         $main::file_cache{$realfile} = \@lines;
2666         $main::file_cache_noflush{$realfile} = $_[1];
2667         $main::file_cache_eol{$realfile} = $eol || "\n";
2668         }
2669 else {
2670         # Make read-write if currently readonly
2671         if (!$_[1]) {
2672                 $main::file_cache_noflush{$realfile} = 0;
2673                 }
2674         }
2675 return $main::file_cache{$realfile};
2676 }
2677
2678 =head2 flush_file_lines([file], [eol])
2679
2680 Write out to a file previously read by read_file_lines to disk (except
2681 for those marked readonly). The parameters are :
2682
2683 =item file - The file to flush out.
2684
2685 =item eof - End-of-line character for each line. Defaults to \n.
2686
2687 =cut
2688 sub flush_file_lines
2689 {
2690 my @files;
2691 if ($_[0]) {
2692         local $trans = &translate_filename($_[0]);
2693         $main::file_cache{$trans} ||
2694                 &error("flush_file_lines called on non-loaded file $trans");
2695         push(@files, $trans);
2696         }
2697 else {
2698         @files = ( keys %main::file_cache );
2699         }
2700 foreach my $f (@files) {
2701         my $eol = $_[1] || $main::file_cache_eol{$f} || "\n";
2702         if (!$main::file_cache_noflush{$f}) {
2703                 no warnings; # XXX Bareword file handles should go away
2704                 &open_tempfile(FLUSHFILE, ">$f");
2705                 foreach my $line (@{$main::file_cache{$f}}) {
2706                         (print FLUSHFILE $line,$eol) ||
2707                                 &error(&text("efilewrite", $f, $!));
2708                         }
2709                 &close_tempfile(FLUSHFILE);
2710                 }
2711         delete($main::file_cache{$f});
2712         delete($main::file_cache_noflush{$f});
2713         }
2714 }
2715
2716 =head2 unflush_file_lines(file)
2717
2718 Clear the internal cache of some given file, previously read by read_file_lines.
2719
2720 =cut
2721 sub unflush_file_lines
2722 {
2723 my $realfile = &translate_filename($_[0]);
2724 delete($main::file_cache{$realfile});
2725 delete($main::file_cache_noflush{$realfile});
2726 }
2727
2728 =head2 unix_user_input(fieldname, user, [form])
2729
2730 Returns HTML for an input to select a Unix user. By default this is a text
2731 box with a user popup button next to it.
2732
2733 =cut
2734 sub unix_user_input
2735 {
2736 if (defined(&theme_unix_user_input)) {
2737         return &theme_unix_user_input(@_);
2738         }
2739 return "<input name=$_[0] size=13 value=\"$_[1]\"> ".
2740        &user_chooser_button($_[0], 0, $_[2] || 0)."\n";
2741 }
2742
2743 =head2 unix_group_input(fieldname, user, [form])
2744
2745 Returns HTML for an input to select a Unix group. By default this is a text
2746 box with a group popup button next to it.
2747
2748 =cut
2749 sub unix_group_input
2750 {
2751 if (defined(&theme_unix_group_input)) {
2752         return &theme_unix_group_input(@_);
2753         }
2754 return "<input name=$_[0] size=13 value=\"$_[1]\"> ".
2755        &group_chooser_button($_[0], 0, $_[2] || 0)."\n";
2756 }
2757
2758 =head2 hlink(text, page, [module], [width], [height])
2759
2760 Returns HTML for a link that when clicked on pops up a window for a Webmin
2761 help page. The parameters are :
2762
2763 =item text - Text for the link.
2764
2765 =item page - Help page code, such as 'intro'.
2766
2767 =item module - Module the help page is in. Defaults to the current module.
2768
2769 =item width - Width of the help popup window. Defaults to 600 pixels.
2770
2771 =item height - Height of the help popup window. Defaults to 400 pixels.
2772
2773 The actual help pages are in each module's help sub-directory, in files with
2774 .html extensions.
2775
2776 =cut
2777 sub hlink
2778 {
2779 if (defined(&theme_hlink)) {
2780         return &theme_hlink(@_);
2781         }
2782 my $mod = $_[2] ? $_[2] : &get_module_name();
2783 my $width = $_[3] || $tconfig{'help_width'} || $gconfig{'help_width'} || 600;
2784 my $height = $_[4] || $tconfig{'help_height'} || $gconfig{'help_height'} || 400;
2785 return "<a onClick='window.open(\"$gconfig{'webprefix'}/help.cgi/$mod/$_[1]\", \"help\", \"toolbar=no,menubar=no,scrollbars=yes,width=$width,height=$height,resizable=yes\"); return false' href=\"$gconfig{'webprefix'}/help.cgi/$mod/$_[1]\">$_[0]</a>";
2786 }
2787
2788 =head2 user_chooser_button(field, multiple, [form])
2789
2790 Returns HTML for a javascript button for choosing a Unix user or users.
2791 The parameters are :
2792
2793 =item field - Name of the HTML field to place the username into.
2794
2795 =item multiple - Set to 1 if multiple users can be selected.
2796
2797 =item form - Index of the form on the page.
2798
2799 =cut
2800 sub user_chooser_button
2801 {
2802 return undef if (!&supports_users());
2803 return &theme_user_chooser_button(@_)
2804         if (defined(&theme_user_chooser_button));
2805 my $form = defined($_[2]) ? $_[2] : 0;
2806 my $w = $_[1] ? 500 : 300;
2807 my $h = 200;
2808 if ($_[1] && $gconfig{'db_sizeusers'}) {
2809         ($w, $h) = split(/x/, $gconfig{'db_sizeusers'});
2810         }
2811 elsif (!$_[1] && $gconfig{'db_sizeuser'}) {
2812         ($w, $h) = split(/x/, $gconfig{'db_sizeuser'});
2813         }
2814 return "<input type=button onClick='ifield = form.$_[0]; chooser = window.open(\"$gconfig{'webprefix'}/user_chooser.cgi?multi=$_[1]&user=\"+escape(ifield.value), \"chooser\", \"toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=$w,height=$h\"); chooser.ifield = ifield; window.ifield = ifield' value=\"...\">\n";
2815 }
2816
2817 =head2 group_chooser_button(field, multiple, [form])
2818
2819 Returns HTML for a javascript button for choosing a Unix group or groups
2820 The parameters are :
2821
2822 =item field - Name of the HTML field to place the group name into.
2823
2824 =item multiple - Set to 1 if multiple groups can be selected.
2825
2826 =item form - Index of the form on the page.
2827
2828 =cut
2829 sub group_chooser_button
2830 {
2831 return undef if (!&supports_users());
2832 return &theme_group_chooser_button(@_)
2833         if (defined(&theme_group_chooser_button));
2834 my $form = defined($_[2]) ? $_[2] : 0;
2835 my $w = $_[1] ? 500 : 300;
2836 my $h = 200;
2837 if ($_[1] && $gconfig{'db_sizeusers'}) {
2838         ($w, $h) = split(/x/, $gconfig{'db_sizeusers'});
2839         }
2840 elsif (!$_[1] && $gconfig{'db_sizeuser'}) {
2841         ($w, $h) = split(/x/, $gconfig{'db_sizeuser'});
2842         }
2843 return "<input type=button onClick='ifield = form.$_[0]; chooser = window.open(\"$gconfig{'webprefix'}/group_chooser.cgi?multi=$_[1]&group=\"+escape(ifield.value), \"chooser\", \"toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=$w,height=$h\"); chooser.ifield = ifield; window.ifield = ifield' value=\"...\">\n";
2844 }
2845
2846 =head2 foreign_check(module, [api-only])
2847
2848 Checks if some other module exists and is supported on this OS. The parameters
2849 are :
2850
2851 =item module - Name of the module to check.
2852
2853 =item api-only - Set to 1 if you just want to check if the module provides an API that others can call, instead of the full web UI.
2854
2855 =cut
2856 sub foreign_check
2857 {
2858 my ($mod, $api) = @_;
2859 my %minfo;
2860 my $mdir = &module_root_directory($mod);
2861 &read_file_cached("$mdir/module.info", \%minfo) || return 0;
2862 return &check_os_support(\%minfo, undef, undef, $api);
2863 }
2864
2865 =head2 foreign_exists(module)
2866
2867 Checks if some other module exists. The module parameter is the short module
2868 name.
2869
2870 =cut
2871 sub foreign_exists
2872 {
2873 my $mdir = &module_root_directory($_[0]);
2874 return -r "$mdir/module.info";
2875 }
2876
2877 =head2 foreign_available(module)
2878
2879 Returns 1 if some module is installed, and acessible to the current user. The
2880 module parameter is the module directory name.
2881
2882 =cut
2883 sub foreign_available
2884 {
2885 return 0 if (!&foreign_check($_[0]) &&
2886              !$gconfig{'available_even_if_no_support'});
2887 my %foreign_module_info = &get_module_info($_[0]);
2888
2889 # Check list of allowed modules
2890 my %acl;
2891 &read_acl(\%acl, undef);
2892 return 0 if (!$acl{$base_remote_user,$_[0]} &&
2893              !$acl{$base_remote_user,'*'});
2894
2895 # Check for usermod restrictions
2896 my @usermods = &list_usermods();
2897 return 0 if (!&available_usermods( [ \%foreign_module_info ], \@usermods));
2898
2899 if (&get_product_name() eq "webmin") {
2900         # Check if the user has any RBAC privileges in this module
2901         if (&supports_rbac($_[0]) &&
2902             &use_rbac_module_acl(undef, $_[0])) {
2903                 # RBAC is enabled for this user and module - check if he
2904                 # has any rights
2905                 my $rbacs = &get_rbac_module_acl($remote_user, $_[0]);
2906                 return 0 if (!$rbacs);
2907                 }
2908         elsif ($gconfig{'rbacdeny_'.$base_remote_user}) {
2909                 # If denying access to modules not specifically allowed by
2910                 # RBAC, then prevent access
2911                 return 0;
2912                 }
2913         }
2914
2915 # Check readonly support
2916 if (&is_readonly_mode()) {
2917         return 0 if (!$foreign_module_info{'readonly'});
2918         }
2919
2920 # Check if theme vetos
2921 if (defined(&theme_foreign_available)) {
2922         return 0 if (!&theme_foreign_available($_[0]));
2923         }
2924
2925 # Check if licence module vetos
2926 if ($main::licence_module) {
2927         return 0 if (!&foreign_call($main::licence_module,
2928                                     "check_module_licence", $_[0]));
2929         }
2930
2931 return 1;
2932 }
2933
2934 =head2 foreign_require(module, [file], [package])
2935
2936 Brings in functions from another module, and places them in the Perl namespace
2937 with the same name as the module. The parameters are :
2938
2939 =item module - The source module's directory name, like sendmail.
2940
2941 =item file - The API file in that module, like sendmail-lib.pl. If missing, all API files are loaded.
2942
2943 =item package - Perl package to place the module's functions and global variables in. 
2944
2945 If the original module name contains dashes, they will be replaced with _ in
2946 the package name.
2947
2948 =cut
2949 sub foreign_require
2950 {
2951 my ($mod, $file, $pkg) = @_;
2952 $pkg ||= $mod || "global";
2953 $pkg =~ s/[^A-Za-z0-9]/_/g;
2954 my @files;
2955 if ($file) {
2956         push(@files, $file);
2957         }
2958 else {
2959         # Auto-detect files
2960         my %minfo = &get_module_info($mod);
2961         if ($minfo{'library'}) {
2962                 @files = split(/\s+/, $minfo{'library'});
2963                 }
2964         else {
2965                 @files = ( $mod."-lib.pl" );
2966                 }
2967         }
2968 @files = grep { !$main::done_foreign_require{$pkg,$_} } @files;
2969 return 1 if (!@files);
2970 foreach my $f (@files) {
2971         $main::done_foreign_require{$pkg,$f}++;
2972         }
2973 my @OLDINC = @INC;
2974 my $mdir = &module_root_directory($mod);
2975 @INC = &unique($mdir, @INC);
2976 -d $mdir || &error("Module $mod does not exist");
2977 if (!&get_module_name() && $mod) {
2978         chdir($mdir);
2979         }
2980 my $old_fmn = $ENV{'FOREIGN_MODULE_NAME'};
2981 my $old_frd = $ENV{'FOREIGN_ROOT_DIRECTORY'};
2982 my $code = "package $pkg; ".
2983            "\$ENV{'FOREIGN_MODULE_NAME'} = '$mod'; ".
2984            "\$ENV{'FOREIGN_ROOT_DIRECTORY'} = '$root_directory'; ";
2985 foreach my $f (@files) {
2986         $code .= "do '$mdir/$f' || die \$@; ";
2987         }
2988 eval $code;
2989 if (defined($old_fmn)) {
2990         $ENV{'FOREIGN_MODULE_NAME'} = $old_fmn;
2991         }
2992 else {
2993         delete($ENV{'FOREIGN_MODULE_NAME'});
2994         }
2995 if (defined($old_frd)) {
2996         $ENV{'FOREIGN_ROOT_DIRECTORY'} = $old_frd;
2997         }
2998 else {
2999         delete($ENV{'FOREIGN_ROOT_DIRECTORY'});
3000         }
3001 @INC = @OLDINC;
3002 if ($@) { &error("Require $mod/$files[0] failed : <pre>$@</pre>"); }
3003 return 1;
3004 }
3005
3006 =head2 foreign_call(module, function, [arg]*)
3007
3008 Call a function in another module. The module parameter is the target module
3009 directory name, function is the perl sub to call, and the remaining parameters
3010 are the arguments. However, unless you need to call a function whose name
3011 is dynamic, it is better to use Perl's cross-module function call syntax
3012 like module::function(args).
3013
3014 =cut
3015 sub foreign_call
3016 {
3017 my $pkg = $_[0] || "global";
3018 $pkg =~ s/[^A-Za-z0-9]/_/g;
3019 my @args = @_[2 .. @_-1];
3020 $main::foreign_args = \@args;
3021 my @rv = eval <<EOF;
3022 package $pkg;
3023 &$_[1](\@{\$main::foreign_args});
3024 EOF
3025 if ($@) { &error("$_[0]::$_[1] failed : $@"); }
3026 return wantarray ? @rv : $rv[0];
3027 }
3028
3029 =head2 foreign_config(module, [user-config])
3030
3031 Get the configuration from another module, and return it as a hash. If the
3032 user-config parameter is set to 1, returns the Usermin user-level preferences
3033 for the current user instead.
3034
3035 =cut
3036 sub foreign_config
3037 {
3038 my ($mod, $uc) = @_;
3039 my %fconfig;
3040 if ($uc) {
3041         &read_file_cached("$root_directory/$mod/defaultuconfig", \%fconfig);
3042         &read_file_cached("$config_directory/$mod/uconfig", \%fconfig);
3043         &read_file_cached("$user_config_directory/$mod/config", \%fconfig);
3044         }
3045 else {
3046         &read_file_cached("$config_directory/$mod/config", \%fconfig);
3047         }
3048 return %fconfig;
3049 }
3050
3051 =head2 foreign_installed(module, mode)
3052
3053 Checks if the server for some module is installed, and possibly also checks
3054 if the module has been configured by Webmin.
3055 For mode 1, returns 2 if the server is installed and configured for use by
3056 Webmin, 1 if installed but not configured, or 0 otherwise.
3057 For mode 0, returns 1 if installed, 0 if not.
3058 If the module does not provide an install_check.pl script, assumes that
3059 the server is installed.
3060
3061 =cut
3062 sub foreign_installed
3063 {
3064 my ($mod, $configured) = @_;
3065 if (defined($main::foreign_installed_cache{$mod,$configured})) {
3066         # Already cached..
3067         return $main::foreign_installed_cache{$mod,$configured};
3068         }
3069 else {
3070         my $rv;
3071         if (!&foreign_check($mod)) {
3072                 # Module is missing
3073                 $rv = 0;
3074                 }
3075         else {
3076                 my $mdir = &module_root_directory($mod);
3077                 if (!-r "$mdir/install_check.pl") {
3078                         # Not known, assume OK
3079                         $rv = $configured ? 2 : 1;
3080                         }
3081                 else {
3082                         # Call function to check
3083                         &foreign_require($mod, "install_check.pl");
3084                         $rv = &foreign_call($mod, "is_installed", $configured);
3085                         }
3086                 }
3087         $main::foreign_installed_cache{$mod,$configured} = $rv;
3088         return $rv;
3089         }
3090 }
3091
3092 =head2 foreign_defined(module, function)
3093
3094 Returns 1 if some function is defined in another module. In general, it is
3095 simpler to use the syntax &defined(module::function) instead.
3096
3097 =cut
3098 sub foreign_defined
3099 {
3100 my ($pkg) = @_;
3101 $pkg =~ s/[^A-Za-z0-9]/_/g;
3102 my $func = "${pkg}::$_[1]";
3103 return defined(&$func);
3104 }
3105
3106 =head2 get_system_hostname([short])
3107
3108 Returns the hostname of this system. If the short parameter is set to 1,
3109 then the domain name is not prepended - otherwise, Webmin will attempt to get
3110 the fully qualified hostname, like foo.example.com.
3111
3112 =cut
3113 sub get_system_hostname
3114 {
3115 my $m = int($_[0]);
3116 if (!$main::get_system_hostname[$m]) {
3117         if ($gconfig{'os_type'} ne 'windows') {
3118                 # Try some common Linux hostname files first
3119                 my $fromfile;
3120                 if ($gconfig{'os_type'} eq 'redhat-linux') {
3121                         my %nc;
3122                         &read_env_file("/etc/sysconfig/network", \%nc);
3123                         if ($nc{'HOSTNAME'}) {
3124                                 $fromfile = $nc{'HOSTNAME'};
3125                                 }
3126                         }
3127                 elsif ($gconfig{'os_type'} eq 'debian-linux') {
3128                         my $hn = &read_file_contents("/etc/hostname");
3129                         if ($hn) {
3130                                 $hn =~ s/\r|\n//g;
3131                                 $fromfile = $hn;
3132                                 }
3133                         }
3134                 elsif ($gconfig{'os_type'} eq 'open-linux') {
3135                         my $hn = &read_file_contents("/etc/HOSTNAME");
3136                         if ($hn) {
3137                                 $hn =~ s/\r|\n//g;
3138                                 $fromfile = $hn;
3139                                 }
3140                         }
3141                 elsif ($gconfig{'os_type'} eq 'solaris') {
3142                         my $hn = &read_file_contents("/etc/nodename");
3143                         if ($hn) {
3144                                 $hn =~ s/\r|\n//g;
3145                                 $fromfile = $hn;
3146                                 }
3147                         }
3148
3149                 # If we found a hostname, use it if value
3150                 if ($fromfile && ($m || $fromfile =~ /\./)) {
3151                         if ($m) {
3152                                 $fromfile =~ s/\..*$//;
3153                                 }
3154                         $main::get_system_hostname[$m] = $fromfile;
3155                         return $fromfile;
3156                         }
3157
3158                 # Can use hostname command on Unix
3159                 &execute_command("hostname", undef,
3160                                  \$main::get_system_hostname[$m], undef, 0, 1);
3161                 chop($main::get_system_hostname[$m]);
3162                 if ($?) {
3163                         eval "use Sys::Hostname";
3164                         if (!$@) {
3165                                 $main::get_system_hostname[$m] = eval "hostname()";
3166                                 }
3167                         if ($@ || !$main::get_system_hostname[$m]) {
3168                                 $main::get_system_hostname[$m] = "UNKNOWN";
3169                                 }
3170                         }
3171                 elsif ($main::get_system_hostname[$m] !~ /\./ &&
3172                        $gconfig{'os_type'} =~ /linux$/ &&
3173                        !$gconfig{'no_hostname_f'} && !$_[0]) {
3174                         # Try with -f flag to get fully qualified name
3175                         my $flag;
3176                         my $ex = &execute_command("hostname -f", undef, \$flag,
3177                                                   undef, 0, 1);
3178                         chop($flag);
3179                         if ($ex || $flag eq "") {
3180                                 # -f not supported! We have probably set the
3181                                 # hostname to just '-f'. Fix the problem
3182                                 # (if we are root)
3183                                 if ($< == 0) {
3184                                         &execute_command("hostname ".
3185                                                 quotemeta($main::get_system_hostname[$m]),
3186                                                 undef, undef, undef, 0, 1);
3187                                         }
3188                                 }
3189                         else {
3190                                 $main::get_system_hostname[$m] = $flag;
3191                                 }
3192                         }
3193                 }
3194         else {
3195                 # On Windows, try computername environment variable
3196                 return $ENV{'computername'} if ($ENV{'computername'});
3197                 return $ENV{'COMPUTERNAME'} if ($ENV{'COMPUTERNAME'});
3198
3199                 # Fall back to net name command
3200                 my $out = `net name 2>&1`;
3201                 if ($out =~ /\-+\r?\n(\S+)/) {
3202                         $main::get_system_hostname[$m] = $1;
3203                         }
3204                 else {
3205                         $main::get_system_hostname[$m] = "windows";
3206                         }
3207                 }
3208         }
3209 return $main::get_system_hostname[$m];
3210 }
3211
3212 =head2 get_webmin_version
3213
3214 Returns the version of Webmin currently being run, such as 1.450.
3215
3216 =cut
3217 sub get_webmin_version
3218 {
3219 if (!$get_webmin_version) {
3220         open(VERSION, "$root_directory/version") || return 0;
3221         ($get_webmin_version = <VERSION>) =~ tr/\r|\n//d;
3222         close(VERSION);
3223         }
3224 return $get_webmin_version;
3225 }
3226
3227 =head2 get_module_acl([user], [module], [no-rbac], [no-default])
3228
3229 Returns a hash containing access control options for the given user and module.
3230 By default the current username and module name are used. If the no-rbac flag
3231 is given, the permissions will not be updated based on the user's RBAC role
3232 (as seen on Solaris). If the no-default flag is given, default permissions for
3233 the module will not be included.
3234
3235 =cut
3236 sub get_module_acl
3237 {
3238 my $u = defined($_[0]) ? $_[0] : $base_remote_user;
3239 my $m = defined($_[1]) ? $_[1] : &get_module_name();
3240 my $mdir = &module_root_directory($m);
3241 my %rv;
3242 if (!$_[3]) {
3243         # Read default ACL first, to be overridden by per-user settings
3244         &read_file_cached("$mdir/defaultacl", \%rv);
3245
3246         # If this isn't a master admin user, apply the negative permissions
3247         # so that he doesn't un-expectedly gain access to new features
3248         my %gacccess;
3249         &read_file_cached("$config_directory/$u.acl", \%gaccess);
3250         if ($gaccess{'negative'}) {
3251                 &read_file_cached("$mdir/negativeacl", \%rv);
3252                 }
3253         }
3254 my %usersacl;
3255 if (!$_[2] && &supports_rbac($m) && &use_rbac_module_acl($u, $m)) {
3256         # RBAC overrides exist for this user in this module
3257         my $rbac = &get_rbac_module_acl(
3258                         defined($_[0]) ? $_[0] : $remote_user, $m);
3259         foreach my $r (keys %$rbac) {
3260                 $rv{$r} = $rbac->{$r};
3261                 }
3262         }
3263 elsif ($gconfig{"risk_$u"} && $m) {
3264         # ACL is defined by user's risk level
3265         my $rf = $gconfig{"risk_$u"}.'.risk';
3266         &read_file_cached("$mdir/$rf", \%rv);
3267
3268         my $sf = $gconfig{"skill_$u"}.'.skill';
3269         &read_file_cached("$mdir/$sf", \%rv);
3270         }
3271 elsif ($u ne '') {
3272         # Use normal Webmin ACL, if a user is set
3273         &read_file_cached("$config_directory/$m/$u.acl", \%rv);
3274         if ($remote_user ne $base_remote_user && !defined($_[0])) {
3275                 &read_file_cached("$config_directory/$m/$remote_user.acl",\%rv);
3276                 }
3277         }
3278 if ($tconfig{'preload_functions'}) {
3279         &load_theme_library();
3280         }
3281 if (defined(&theme_get_module_acl)) {
3282         %rv = &theme_get_module_acl($u, $m, \%rv);
3283         }
3284 return %rv;
3285 }
3286
3287 =head2 get_group_module_acl(group, [module])
3288
3289 Returns the ACL for a Webmin group, in an optional module (which defaults to
3290 the current module).
3291
3292 =cut
3293 sub get_group_module_acl
3294 {
3295 my $g = $_[0];
3296 my $m = defined($_[1]) ? $_[1] : &get_module_name();
3297 my $mdir = &module_root_directory($m);
3298 my %rv;
3299 &read_file_cached("$mdir/defaultacl", \%rv);
3300 &read_file_cached("$config_directory/$m/$g.gacl", \%rv);
3301 if (defined(&theme_get_module_acl)) {
3302         %rv = &theme_get_module_acl($g, $m, \%rv);
3303         }
3304 return %rv;
3305 }
3306
3307 =head2 save_module_acl(&acl, [user], [module])
3308
3309 Updates the acl hash for some user and module. The parameters are :
3310
3311 =item acl - Hash reference for the new access control options.
3312
3313 =item user - User to update, defaulting to the current user.
3314
3315 =item module - Module to update, defaulting to the caller.
3316
3317 =cut
3318 sub save_module_acl
3319 {
3320 my $u = defined($_[1]) ? $_[1] : $base_remote_user;
3321 my $m = defined($_[2]) ? $_[2] : &get_module_name();
3322 if (&foreign_check("acl")) {
3323         # Check if this user is a member of a group, and if he gets the
3324         # module from a group. If so, update its ACL as well
3325         &foreign_require("acl", "acl-lib.pl");
3326         my $group;
3327         foreach my $g (&acl::list_groups()) {
3328                 if (&indexof($u, @{$g->{'members'}}) >= 0 &&
3329                     &indexof($m, @{$g->{'modules'}}) >= 0) {
3330                         $group = $g;
3331                         last;
3332                         }
3333                 }
3334         if ($group) {
3335                 &save_group_module_acl($_[0], $group->{'name'}, $m);
3336                 }
3337         }
3338 if (!-d "$config_directory/$m") {
3339         mkdir("$config_directory/$m", 0755);
3340         }
3341 &write_file("$config_directory/$m/$u.acl", $_[0]);
3342 }
3343
3344 =head2 save_group_module_acl(&acl, group, [module])
3345
3346 Updates the acl hash for some group and module. The parameters are :
3347
3348 =item acl - Hash reference for the new access control options.
3349
3350 =item group - Group name to update.
3351
3352 =item module - Module to update, defaulting to the caller.
3353
3354 =cut
3355 sub save_group_module_acl
3356 {
3357 my $g = $_[1];
3358 my $m = defined($_[2]) ? $_[2] : &get_module_name();
3359 if (&foreign_check("acl")) {
3360         # Check if this group is a member of a group, and if it gets the
3361         # module from a group. If so, update the parent ACL as well
3362         &foreign_require("acl", "acl-lib.pl");
3363         my $group;
3364         foreach my $pg (&acl::list_groups()) {
3365                 if (&indexof('@'.$g, @{$pg->{'members'}}) >= 0 &&
3366                     &indexof($m, @{$pg->{'modules'}}) >= 0) {
3367                         $group = $g;
3368                         last;
3369                         }
3370                 }
3371         if ($group) {
3372                 &save_group_module_acl($_[0], $group->{'name'}, $m);
3373                 }
3374         }
3375 if (!-d "$config_directory/$m") {
3376         mkdir("$config_directory/$m", 0755);
3377         }
3378 &write_file("$config_directory/$m/$g.gacl", $_[0]);
3379 }
3380
3381 =head2 init_config
3382
3383 This function must be called by all Webmin CGI scripts, either directly or
3384 indirectly via a per-module lib.pl file. It performs a number of initialization
3385 and housekeeping tasks, such as working out the module name, checking that the
3386 current user has access to the module, and populating global variables. Some
3387 of the variables set include :
3388
3389 =item $config_directory - Base Webmin config directory, typically /etc/webmin
3390
3391 =item $var_directory - Base logs directory, typically /var/webmin
3392
3393 =item %config - Per-module configuration.
3394
3395 =item %gconfig - Global configuration.
3396
3397 =item $scriptname - Base name of the current perl script.
3398
3399 =item $module_name - The name of the current module.
3400
3401 =item $module_config_directory - The config directory for this module.
3402
3403 =item $module_config_file - The config file for this module.
3404
3405 =item $module_root_directory - This module's code directory.
3406
3407 =item $webmin_logfile - The detailed logfile for webmin.
3408
3409 =item $remote_user - The actual username used to login to webmin.
3410
3411 =item $base_remote_user - The username whose permissions are in effect.
3412
3413 =item $current_theme - The theme currently in use.
3414
3415 =item $root_directory - The first root directory of this webmin install.
3416
3417 =item @root_directories - All root directories for this webmin install.
3418
3419 =cut
3420 sub init_config
3421 {
3422 # Record first process ID that called this, so we know when it exited to clean
3423 # up temp files
3424 $main::initial_process_id ||= $$;
3425
3426 # Configuration and spool directories
3427 if (!defined($ENV{'WEBMIN_CONFIG'})) {
3428         die "WEBMIN_CONFIG not set";
3429         }
3430 $config_directory = $ENV{'WEBMIN_CONFIG'};
3431 if (!defined($ENV{'WEBMIN_VAR'})) {
3432         open(VARPATH, "$config_directory/var-path");
3433         chop($var_directory = <VARPATH>);
3434         close(VARPATH);
3435         }
3436 else {
3437         $var_directory = $ENV{'WEBMIN_VAR'};
3438         }
3439 $main::http_cache_directory = $ENV{'WEBMIN_VAR'}."/cache";
3440 $main::default_debug_log_file = $ENV{'WEBMIN_VAR'}."/webmin.debug";
3441
3442 if ($ENV{'SESSION_ID'}) {
3443         # Hide this variable from called programs, but keep it for internal use
3444         $main::session_id = $ENV{'SESSION_ID'};
3445         delete($ENV{'SESSION_ID'});
3446         }
3447 if ($ENV{'REMOTE_PASS'}) {
3448         # Hide the password too
3449         $main::remote_pass = $ENV{'REMOTE_PASS'};
3450         delete($ENV{'REMOTE_PASS'});
3451         }
3452
3453 if ($> == 0 && $< != 0 && !$ENV{'FOREIGN_MODULE_NAME'}) {
3454         # Looks like we are running setuid, but the real UID hasn't been set.
3455         # Do so now, so that executed programs don't get confused
3456         $( = $);
3457         $< = $>;
3458         }
3459
3460 # Read the webmin global config file. This contains the OS type and version,
3461 # OS specific configuration and global options such as proxy servers
3462 $config_file = "$config_directory/config";
3463 %gconfig = ( );
3464 &read_file_cached($config_file, \%gconfig);
3465 $null_file = $gconfig{'os_type'} eq 'windows' ? "NUL" : "/dev/null";
3466 $path_separator = $gconfig{'os_type'} eq 'windows' ? ';' : ':';
3467
3468 # If debugging is enabled, open the debug log
3469 if ($gconfig{'debug_enabled'} && !$main::opened_debug_log++) {
3470         my $dlog = $gconfig{'debug_file'} || $main::default_debug_log_file;
3471         if ($gconfig{'debug_size'}) {
3472                 my @st = stat($dlog);
3473                 if ($st[7] > $gconfig{'debug_size'}) {
3474                         rename($dlog, $dlog.".0");
3475                         }
3476                 }
3477         open(main::DEBUGLOG, ">>$dlog");
3478         $main::opened_debug_log = 1;
3479
3480         if ($gconfig{'debug_what_start'}) {
3481                 my $script_name = $0 =~ /([^\/]+)$/ ? $1 : '-';
3482                 $main::debug_log_start_time = time();
3483                 &webmin_debug_log("START", "script=$script_name");
3484                 $main::debug_log_start_module = $module_name;
3485                 }
3486         }
3487
3488 # Set PATH and LD_LIBRARY_PATH
3489 if ($gconfig{'path'}) {
3490         if ($gconfig{'syspath'}) {
3491                 # Webmin only
3492                 $ENV{'PATH'} = $gconfig{'path'};
3493                 }
3494         else {
3495                 # Include OS too
3496                 $ENV{'PATH'} = $gconfig{'path'}.$path_separator.$ENV{'PATH'};
3497                 }
3498         }
3499 $ENV{$gconfig{'ld_env'}} = $gconfig{'ld_path'} if ($gconfig{'ld_env'});
3500
3501 # Set http_proxy and ftp_proxy environment variables, based on Webmin settings
3502 if ($gconfig{'http_proxy'}) {
3503         $ENV{'http_proxy'} = $gconfig{'http_proxy'};
3504         }
3505 if ($gconfig{'ftp_proxy'}) {
3506         $ENV{'ftp_proxy'} = $gconfig{'ftp_proxy'};
3507         }
3508 if ($gconfig{'noproxy'}) {
3509         $ENV{'no_proxy'} = $gconfig{'noproxy'};
3510         }
3511
3512 # Find all root directories
3513 my %miniserv;
3514 if (&get_miniserv_config(\%miniserv)) {
3515         @root_directories = ( $miniserv{'root'} );
3516         for($i=0; defined($miniserv{"extraroot_$i"}); $i++) {
3517                 push(@root_directories, $miniserv{"extraroot_$i"});
3518                 }
3519         }
3520
3521 # Work out which module we are in, and read the per-module config file
3522 $0 =~ s/\\/\//g;        # Force consistent path on Windows
3523 if (defined($ENV{'FOREIGN_MODULE_NAME'})) {
3524         # In a foreign call - use the module name given
3525         $root_directory = $ENV{'FOREIGN_ROOT_DIRECTORY'};
3526         $module_name = $ENV{'FOREIGN_MODULE_NAME'};
3527         @root_directories = ( $root_directory ) if (!@root_directories);
3528         }
3529 elsif ($ENV{'SCRIPT_NAME'}) {
3530         my $sn = $ENV{'SCRIPT_NAME'};
3531         $sn =~ s/^$gconfig{'webprefix'}//
3532                 if (!$gconfig{'webprefixnoredir'});
3533         if ($sn =~ /^\/([^\/]+)\//) {
3534                 # Get module name from CGI path
3535                 $module_name = $1;
3536                 }
3537         if ($ENV{'SERVER_ROOT'}) {
3538                 $root_directory = $ENV{'SERVER_ROOT'};
3539                 }
3540         elsif ($ENV{'SCRIPT_FILENAME'}) {
3541                 $root_directory = $ENV{'SCRIPT_FILENAME'};
3542                 $root_directory =~ s/$sn$//;
3543                 }
3544         @root_directories = ( $root_directory ) if (!@root_directories);
3545         }
3546 else {
3547         # Get root directory from miniserv.conf, and deduce module name from $0
3548         $root_directory = $root_directories[0];
3549         my $rok = 0;
3550         foreach my $r (@root_directories) {
3551                 if ($0 =~ /^$r\/([^\/]+)\/[^\/]+$/i) {
3552                         # Under a module directory
3553                         $module_name = $1;
3554                         $rok = 1;
3555                         last;
3556                         }
3557                 elsif ($0 =~ /^$root_directory\/[^\/]+$/i) {
3558                         # At the top level
3559                         $rok = 1;
3560                         last;
3561                         }
3562                 }
3563         &error("Script was not run with full path (failed to find $0 under $root_directory)") if (!$rok);
3564         }
3565
3566 # Work out of this is a web, command line or cron job
3567 if (!$main::webmin_script_type) {
3568         if ($ENV{'SCRIPT_NAME'}) {
3569                 # Run via a CGI
3570                 $main::webmin_script_type = 'web';
3571                 }
3572         else {
3573                 # Cron jobs have no TTY
3574                 if ($gconfig{'os_type'} eq 'windows' ||
3575                     open(DEVTTY, ">/dev/tty")) {
3576                         $main::webmin_script_type = 'cmd';
3577                         close(DEVTTY);
3578                         }
3579                 else {
3580                         $main::webmin_script_type = 'cron';
3581                         }
3582                 }
3583         }
3584
3585 # Set the umask based on config
3586 if ($gconfig{'umask'} && !$main::umask_already++) {
3587         umask(oct($gconfig{'umask'}));
3588         }
3589
3590 # If this is a cron job or other background task, set the nice level
3591 if (!$main::nice_already && $main::webmin_script_type eq 'cron') {
3592         # Set nice level
3593         if ($gconfig{'nice'}) {
3594                 eval 'POSIX::nice($gconfig{\'nice\'});';
3595                 }
3596
3597         # Set IO scheduling class and priority
3598         if ($gconfig{'sclass'} ne '' || $gconfig{'sprio'} ne '') {
3599                 my $cmd = "ionice";
3600                 $cmd .= " -c ".quotemeta($gconfig{'sclass'})
3601                         if ($gconfig{'sclass'} ne '');
3602                 $cmd .= " -n ".quotemeta($gconfig{'sprio'})
3603                         if ($gconfig{'sprio'} ne '');
3604                 $cmd .= " -p $$";
3605                 &execute_command("$cmd >/dev/null 2>&1");
3606                 }
3607         }
3608 $main::nice_already++;
3609
3610 # Get the username
3611 my $u = $ENV{'BASE_REMOTE_USER'} || $ENV{'REMOTE_USER'};
3612 $base_remote_user = $u;
3613 $remote_user = $ENV{'REMOTE_USER'};
3614
3615 if ($module_name) {
3616         # Find and load the configuration file for this module
3617         my (@ruinfo, $rgroup);
3618         $module_config_directory = "$config_directory/$module_name";
3619         if (&get_product_name() eq "usermin" &&
3620             -r "$module_config_directory/config.$remote_user") {
3621                 # Based on username
3622                 $module_config_file = "$module_config_directory/config.$remote_user";
3623                 }
3624         elsif (&get_product_name() eq "usermin" &&
3625             (@ruinfo = getpwnam($remote_user)) &&
3626             ($rgroup = getgrgid($ruinfo[3])) &&
3627             -r "$module_config_directory/config.\@$rgroup") {
3628                 # Based on group name
3629                 $module_config_file = "$module_config_directory/config.\@$rgroup";
3630                 }
3631         else {
3632                 # Global config
3633                 $module_config_file = "$module_config_directory/config";
3634                 }
3635         %config = ( );
3636         &read_file_cached($module_config_file, \%config);
3637
3638         # Fix up windows-specific substitutions in values
3639         foreach my $k (keys %config) {
3640                 if ($config{$k} =~ /\$\{systemroot\}/) {
3641                         my $root = &get_windows_root();
3642                         $config{$k} =~ s/\$\{systemroot\}/$root/g;
3643                         }
3644                 }
3645         }
3646
3647 # Record the initial module
3648 $main::initial_module_name ||= $module_name;
3649
3650 # Set some useful variables
3651 my $current_themes;
3652 $current_themes = $ENV{'MOBILE_DEVICE'} && defined($gconfig{'mobile_theme'}) ?
3653                     $gconfig{'mobile_theme'} :
3654                   defined($gconfig{'theme_'.$remote_user}) ?
3655                     $gconfig{'theme_'.$remote_user} :
3656                   defined($gconfig{'theme_'.$base_remote_user}) ?
3657                     $gconfig{'theme_'.$base_remote_user} :
3658                     $gconfig{'theme'};
3659 @current_themes = split(/\s+/, $current_themes);
3660 $current_theme = $current_themes[0];
3661 @theme_root_directories = map { "$root_directory/$_" } @current_themes;
3662 $theme_root_directory = $theme_root_directories[0];
3663 @theme_configs = ( );
3664 foreach my $troot (@theme_root_directories) {
3665         my %onetconfig;
3666         &read_file_cached("$troot/config", \%onetconfig);
3667         &read_file_cached("$troot/config", \%tconfig);
3668         push(@theme_configs, \%onetconfig);
3669         }
3670 $tb = defined($tconfig{'cs_header'}) ? "bgcolor=#$tconfig{'cs_header'}" :
3671       defined($gconfig{'cs_header'}) ? "bgcolor=#$gconfig{'cs_header'}" :
3672                                        "bgcolor=#9999ff";
3673 $cb = defined($tconfig{'cs_table'}) ? "bgcolor=#$tconfig{'cs_table'}" :
3674       defined($gconfig{'cs_table'}) ? "bgcolor=#$gconfig{'cs_table'}" :
3675                                       "bgcolor=#cccccc";
3676 $tb .= ' '.$tconfig{'tb'} if ($tconfig{'tb'});
3677 $cb .= ' '.$tconfig{'cb'} if ($tconfig{'cb'});
3678 if ($tconfig{'preload_functions'}) {
3679         # Force load of theme functions right now, if requested
3680         &load_theme_library();
3681         }
3682 if ($tconfig{'oofunctions'} && !$main::loaded_theme_oo_library++) {
3683         # Load the theme's Webmin:: package classes
3684         do "$theme_root_directory/$tconfig{'oofunctions'}";
3685         }
3686
3687 $0 =~ /([^\/]+)$/;
3688 $scriptname = $1;
3689 $webmin_logfile = $gconfig{'webmin_log'} ? $gconfig{'webmin_log'}
3690                                          : "$var_directory/webmin.log";
3691
3692 # Load language strings into %text
3693 my @langs = &list_languages();
3694 my $accepted_lang;
3695 if ($gconfig{'acceptlang'}) {
3696         foreach my $a (split(/,/, $ENV{'HTTP_ACCEPT_LANGUAGE'})) {
3697                 my ($al) = grep { $_->{'lang'} eq $a } @langs;
3698                 if ($al) {
3699                         $accepted_lang = $al->{'lang'};
3700                         last;
3701                         }
3702                 }
3703         }
3704 $current_lang = $force_lang ? $force_lang :
3705     $accepted_lang ? $accepted_lang :
3706     $gconfig{"lang_$remote_user"} ? $gconfig{"lang_$remote_user"} :
3707     $gconfig{"lang_$base_remote_user"} ? $gconfig{"lang_$base_remote_user"} :
3708     $gconfig{"lang"} ? $gconfig{"lang"} : $default_lang;
3709 foreach my $l (@langs) {
3710         $current_lang_info = $l if ($l->{'lang'} eq $current_lang);
3711         }
3712 @lang_order_list = &unique($default_lang,
3713                            split(/:/, $current_lang_info->{'fallback'}),
3714                            $current_lang);
3715 %text = &load_language($module_name);
3716 %text || &error("Failed to determine Webmin root from SERVER_ROOT, SCRIPT_FILENAME or the full command line");
3717
3718 # Get the %module_info for this module
3719 if ($module_name) {
3720         my ($mi) = grep { $_->{'dir'} eq $module_name }
3721                          &get_all_module_infos(2);
3722         %module_info = %$mi;
3723         $module_root_directory = &module_root_directory($module_name);
3724         }
3725
3726 if ($module_name && !$main::no_acl_check &&
3727     !defined($ENV{'FOREIGN_MODULE_NAME'})) {
3728         # Check if the HTTP user can access this module
3729         if (!&foreign_available($module_name)) {
3730                 if (!&foreign_check($module_name)) {
3731                         &error(&text('emodulecheck',
3732                                      "<i>$module_info{'desc'}</i>"));
3733                         }
3734                 else {
3735                         &error(&text('emodule', "<i>$u</i>",
3736                                      "<i>$module_info{'desc'}</i>"));
3737                         }
3738                 }
3739         $main::no_acl_check++;
3740         }
3741
3742 # Check the Referer: header for nasty redirects
3743 my @referers = split(/\s+/, $gconfig{'referers'});
3744 my $referer_site;
3745 if ($ENV{'HTTP_REFERER'} =~/^(http|https|ftp):\/\/([^:\/]+:[^@\/]+@)?([^\/:@]+)/) {
3746         $referer_site = $3;
3747         }
3748 my $http_host = $ENV{'HTTP_HOST'};
3749 $http_host =~ s/:\d+$//;
3750 my $unsafe_index = $unsafe_index_cgi ||
3751                    &get_module_variable('$unsafe_index_cgi');
3752 if ($0 &&
3753     ($ENV{'SCRIPT_NAME'} !~ /^\/(index.cgi)?$/ || $unsafe_index) &&
3754     ($ENV{'SCRIPT_NAME'} !~ /^\/([a-z0-9\_\-]+)\/(index.cgi)?$/i ||
3755      $unsafe_index) &&
3756     $0 !~ /(session_login|pam_login)\.cgi$/ && !$gconfig{'referer'} &&
3757     $ENV{'MINISERV_CONFIG'} && !$main::no_referers_check &&
3758     $ENV{'HTTP_USER_AGENT'} !~ /^Webmin/i &&
3759     ($referer_site && $referer_site ne $http_host &&
3760      &indexof($referer_site, @referers) < 0 ||
3761     !$referer_site && $gconfig{'referers_none'}) &&
3762     !$trust_unknown_referers &&
3763     !&get_module_variable('$trust_unknown_referers')) {
3764         # Looks like a link from elsewhere .. show an error
3765         &header($text{'referer_title'}, "", undef, 0, 1, 1);
3766
3767         $prot = lc($ENV{'HTTPS'}) eq 'on' ? "https" : "http";
3768         my $url = "<tt>".&html_escape("$prot://$ENV{'HTTP_HOST'}$ENV{'REQUEST_URI'}")."</tt>";
3769         if ($referer_site) {
3770                 # From a known host
3771                 print &text('referer_warn',
3772                      "<tt>".&html_escape($ENV{'HTTP_REFERER'})."</tt>", $url);
3773                 print "<p>\n";
3774                 print &text('referer_fix1', &html_escape($http_host)),"<p>\n";
3775                 print &text('referer_fix2', &html_escape($http_host)),"<p>\n";
3776                 }
3777         else {
3778                 # No referer info given
3779                 print &text('referer_warn_unknown', $url),"<p>\n";
3780                 print &text('referer_fix1u'),"<p>\n";
3781                 print &text('referer_fix2u'),"<p>\n";
3782                 }
3783         print "<p>\n";
3784
3785         &footer("/", $text{'index'});
3786         exit;
3787         }
3788 $main::no_referers_check++;
3789 $main::completed_referers_check++;
3790
3791 # Call theme post-init
3792 if (defined(&theme_post_init_config)) {
3793         &theme_post_init_config(@_);
3794         }
3795
3796 # Record that we have done the calling library in this package
3797 my ($callpkg, $lib) = caller();
3798 $lib =~ s/^.*\///;
3799 $main::done_foreign_require{$callpkg,$lib} = 1;
3800
3801 # If a licence checking is enabled, do it now
3802 if ($gconfig{'licence_module'} && !$main::done_licence_module_check &&
3803     &foreign_check($gconfig{'licence_module'}) &&
3804     -r "$root_directory/$gconfig{'licence_module'}/licence_check.pl") {
3805         my $oldpwd = &get_current_dir();
3806         $main::done_licence_module_check++;
3807         $main::licence_module = $gconfig{'licence_module'};
3808         &foreign_require($main::licence_module, "licence_check.pl");
3809         ($main::licence_status, $main::licence_message) =
3810                 &foreign_call($main::licence_module, "check_licence");
3811         chdir($oldpwd);
3812         }
3813
3814 # Export global variables to caller
3815 if ($main::export_to_caller) {
3816         foreach my $v ('$config_file', '%gconfig', '$null_file',
3817                        '$path_separator', '@root_directories',
3818                        '$root_directory', '$module_name',
3819                        '$base_remote_user', '$remote_user',
3820                        '$module_config_directory', '$module_config_file',
3821                        '%config', '@current_themes', '$current_theme',
3822                        '@theme_root_directories', '$theme_root_directory',
3823                        '%tconfig','@theme_configs', '$tb', '$cb', '$scriptname',
3824                        '$webmin_logfile', '$current_lang',
3825                        '$current_lang_info', '@lang_order_list', '%text',
3826                        '%module_info', '$module_root_directory') {
3827                 my ($vt, $vn) = split('', $v, 2);
3828                 eval "${vt}${callpkg}::${vn} = ${vt}${vn}";
3829                 }
3830         }
3831
3832 return 1;
3833 }
3834
3835 =head2 load_language([module], [directory])
3836
3837 Returns a hashtable mapping text codes to strings in the appropriate language,
3838 based on the $current_lang global variable, which is in turn set based on
3839 the Webmin user's selection. The optional module parameter tells the function
3840 which module to load strings for, and defaults to the calling module. The
3841 optional directory parameter can be used to load strings from a directory
3842 other than lang.
3843
3844 In regular module development you will never need to call this function
3845 directly, as init_config calls it for you, and places the module's strings
3846 into the %text hash.
3847
3848 =cut
3849 sub load_language
3850 {
3851 my %text;
3852 my $root = $root_directory;
3853 my $ol = $gconfig{'overlang'};
3854 my ($dir) = ($_[1] || "lang");
3855
3856 # Read global lang files
3857 foreach my $o (@lang_order_list) {
3858         my $ok = &read_file_cached("$root/$dir/$o", \%text);
3859         return () if (!$ok && $o eq $default_lang);
3860         }
3861 if ($ol) {
3862         foreach my $o (@lang_order_list) {
3863                 &read_file_cached("$root/$ol/$o", \%text);
3864                 }
3865         }
3866 &read_file_cached("$config_directory/custom-lang", \%text);
3867
3868 if ($_[0]) {
3869         # Read module's lang files
3870         my $mdir = &module_root_directory($_[0]);
3871         foreach my $o (@lang_order_list) {
3872                 &read_file_cached("$mdir/$dir/$o", \%text);
3873                 }
3874         if ($ol) {
3875                 foreach $o (@lang_order_list) {
3876                         &read_file_cached("$mdir/$ol/$o", \%text);
3877                         }
3878                 }
3879         &read_file_cached("$config_directory/$_[0]/custom-lang", \%text);
3880         }
3881 foreach $k (keys %text) {
3882         $text{$k} =~ s/\$(\{([^\}]+)\}|([A-Za-z0-9\.\-\_]+))/text_subs($2 || $3,\%text)/ge;
3883         }
3884
3885 if (defined(&theme_load_language)) {
3886         &theme_load_language(\%text, $_[0]);
3887         }
3888 return %text;
3889 }
3890
3891 =head2 text_subs(string)
3892
3893 Used internally by load_language to expand $code substitutions in language
3894 files.
3895
3896 =cut
3897 sub text_subs
3898 {
3899 if (substr($_[0], 0, 8) eq "include:") {
3900         local $_;
3901         my $rv;
3902         open(INCLUDE, substr($_[0], 8));
3903         while(<INCLUDE>) {
3904                 $rv .= $_;
3905                 }
3906         close(INCLUDE);
3907         return $rv;
3908         }
3909 else {
3910         my $t = $_[1]->{$_[0]};
3911         return defined($t) ? $t : '$'.$_[0];
3912         }
3913 }
3914
3915 =head2 text(message, [substitute]+)
3916
3917 Returns a translated message from %text, but with $1, $2, etc.. replaced with
3918 the substitute parameters. This makes it easy to use strings with placeholders
3919 that get replaced with programmatically generated text. For example :
3920
3921  print &text('index_hello', $remote_user),"<p>\n";
3922
3923 =cut
3924 sub text
3925 {
3926 my $t = &get_module_variable('%text', 1);
3927 my $rv = exists($t->{$_[0]}) ? $t->{$_[0]} : $text{$_[0]};
3928 for(my $i=1; $i<@_; $i++) {
3929         $rv =~ s/\$$i/$_[$i]/g;
3930         }
3931 return $rv;
3932 }
3933
3934 =head2 encode_base64(string)
3935
3936 Encodes a string into base64 format, for use in MIME email or HTTP
3937 authorization headers.
3938
3939 =cut
3940 sub encode_base64
3941 {
3942 my $res;
3943 pos($_[0]) = 0;                          # ensure start at the beginning
3944 while ($_[0] =~ /(.{1,57})/gs) {
3945         $res .= substr(pack('u57', $1), 1)."\n";
3946         chop($res);
3947         }
3948 $res =~ tr|\` -_|AA-Za-z0-9+/|;
3949 my $padding = (3 - length($_[0]) % 3) % 3;
3950 $res =~ s/.{$padding}$/'=' x $padding/e if ($padding);
3951 return $res;
3952 }
3953
3954 =head2 decode_base64(string)
3955
3956 Converts a base64-encoded string into plain text. The opposite of encode_base64.
3957
3958 =cut
3959 sub decode_base64
3960 {
3961 my ($str) = @_;
3962 my $res;
3963 $str =~ tr|A-Za-z0-9+=/||cd;            # remove non-base64 chars
3964 if (length($str) % 4) {
3965         return undef;
3966 }
3967 $str =~ s/=+$//;                        # remove padding
3968 $str =~ tr|A-Za-z0-9+/| -_|;            # convert to uuencoded format
3969 while ($str =~ /(.{1,60})/gs) {
3970         my $len = chr(32 + length($1)*3/4); # compute length byte
3971         $res .= unpack("u", $len . $1 );    # uudecode
3972         }
3973 return $res;
3974 }
3975
3976 =head2 get_module_info(module, [noclone], [forcache])
3977
3978 Returns a hash containg details of the given module. Some useful keys are :
3979
3980 =item dir - The module directory, like sendmail.
3981
3982 =item desc - Human-readable description, in the current users' language.
3983
3984 =item version - Optional module version number.
3985
3986 =item os_support - List of supported operating systems and versions.
3987
3988 =item category - Category on Webmin's left menu, like net.
3989
3990 =cut
3991 sub get_module_info
3992 {
3993 return () if ($_[0] =~ /^\./);
3994 my (%rv, $clone, $o);
3995 my $mdir = &module_root_directory($_[0]);
3996 &read_file_cached("$mdir/module.info", \%rv) || return ();
3997 $clone = -l $mdir;
3998 foreach $o (@lang_order_list) {
3999         $rv{"desc"} = $rv{"desc_$o"} if ($rv{"desc_$o"});
4000         $rv{"longdesc"} = $rv{"longdesc_$o"} if ($rv{"longdesc_$o"});
4001         }
4002 if ($clone && !$_[1] && $config_directory) {
4003         $rv{'clone'} = $rv{'desc'};
4004         &read_file("$config_directory/$_[0]/clone", \%rv);
4005         }
4006 $rv{'dir'} = $_[0];
4007 my %module_categories;
4008 &read_file_cached("$config_directory/webmin.cats", \%module_categories);
4009 my $pn = &get_product_name();
4010 if (defined($rv{'category_'.$pn})) {
4011         # Can override category for webmin/usermin
4012         $rv{'category'} = $rv{'category_'.$pn};
4013         }
4014 $rv{'realcategory'} = $rv{'category'};
4015 $rv{'category'} = $module_categories{$_[0]}
4016         if (defined($module_categories{$_[0]}));
4017
4018 # Apply description overrides
4019 $rv{'realdesc'} = $rv{'desc'};
4020 my %descs;
4021 &read_file_cached("$config_directory/webmin.descs", \%descs);
4022 if ($descs{$_[0]." ".$current_lang}) {
4023         $rv{'desc'} = $descs{$_[0]." ".$current_lang};
4024         }
4025 elsif ($descs{$_[0]}) {
4026         $rv{'desc'} = $descs{$_[0]};
4027         }
4028
4029 if (!$_[2]) {
4030         # Apply per-user description overridde
4031         my %gaccess = &get_module_acl(undef, "");
4032         if ($gaccess{'desc_'.$_[0]}) {
4033                 $rv{'desc'} = $gaccess{'desc_'.$_[0]};
4034                 }
4035         }
4036
4037 if ($rv{'longdesc'}) {
4038         # All standard modules have an index.cgi
4039         $rv{'index_link'} = 'index.cgi';
4040         }
4041
4042 # Call theme-specific override function
4043 if (defined(&theme_get_module_info)) {
4044         %rv = &theme_get_module_info(\%rv, $_[0], $_[1], $_[2]);
4045         }
4046
4047 return %rv;
4048 }
4049
4050 =head2 get_all_module_infos(cachemode)
4051
4052 Returns a list contains the information on all modules in this webmin
4053 install, including clones. Uses caching to reduce the number of module.info
4054 files that need to be read. Each element of the array is a hash reference
4055 in the same format as returned by get_module_info. The cache mode flag can be :
4056 0 = read and write, 1 = don't read or write, 2 = read only
4057
4058 =cut
4059 sub get_all_module_infos
4060 {
4061 my (%cache, @rv);
4062
4063 # Is the cache out of date? (ie. have any of the root's changed?)
4064 my $cache_file = "$config_directory/module.infos.cache";
4065 my $changed = 0;
4066 if (&read_file_cached($cache_file, \%cache)) {
4067         foreach my $r (@root_directories) {
4068                 my @st = stat($r);
4069                 if ($st[9] != $cache{'mtime_'.$r}) {
4070                         $changed = 2;
4071                         last;
4072                         }
4073                 }
4074         }
4075 else {
4076         $changed = 1;
4077         }
4078
4079 if ($_[0] != 1 && !$changed && $cache{'lang'} eq $current_lang) {
4080         # Can use existing module.info cache
4081         my %mods;
4082         foreach my $k (keys %cache) {
4083                 if ($k =~ /^(\S+) (\S+)$/) {
4084                         $mods{$1}->{$2} = $cache{$k};
4085                         }
4086                 }
4087         @rv = map { $mods{$_} } (keys %mods) if (%mods);
4088         }
4089 else {
4090         # Need to rebuild cache
4091         %cache = ( );
4092         foreach my $r (@root_directories) {
4093                 opendir(DIR, $r);
4094                 foreach my $m (readdir(DIR)) {
4095                         next if ($m =~ /^(config-|\.)/ || $m =~ /\.(cgi|pl)$/);
4096                         my %minfo = &get_module_info($m, 0, 1);
4097                         next if (!%minfo || !$minfo{'dir'});
4098                         push(@rv, \%minfo);
4099                         foreach $k (keys %minfo) {
4100                                 $cache{"${m} ${k}"} = $minfo{$k};
4101                                 }
4102                         }
4103                 closedir(DIR);
4104                 my @st = stat($r);
4105                 $cache{'mtime_'.$r} = $st[9];
4106                 }
4107         $cache{'lang'} = $current_lang;
4108         &write_file($cache_file, \%cache) if (!$_[0] && $< == 0 && $> == 0);
4109         }
4110
4111 # Override descriptions for modules for current user
4112 my %gaccess = &get_module_acl(undef, "");
4113 foreach my $m (@rv) {
4114         if ($gaccess{"desc_".$m->{'dir'}}) {
4115                 $m->{'desc'} = $gaccess{"desc_".$m->{'dir'}};
4116                 }
4117         }
4118
4119 # Apply installed flags
4120 my %installed;
4121 &read_file_cached("$config_directory/installed.cache", \%installed);
4122 foreach my $m (@rv) {
4123         $m->{'installed'} = $installed{$m->{'dir'}};
4124         }
4125
4126 return @rv;
4127 }
4128
4129 =head2 get_theme_info(theme)
4130
4131 Returns a hash containing a theme's details, taken from it's theme.info file.
4132 Some useful keys are :
4133
4134 =item dir - The theme directory, like blue-theme.
4135
4136 =item desc - Human-readable description, in the current users' language.
4137
4138 =item version - Optional module version number.
4139
4140 =item os_support - List of supported operating systems and versions.
4141
4142 =cut
4143 sub get_theme_info
4144 {
4145 return () if ($_[0] =~ /^\./);
4146 my %rv;
4147 my $tdir = &module_root_directory($_[0]);
4148 &read_file("$tdir/theme.info", \%rv) || return ();
4149 foreach my $o (@lang_order_list) {
4150         $rv{"desc"} = $rv{"desc_$o"} if ($rv{"desc_$o"});
4151         }
4152 $rv{"dir"} = $_[0];
4153 return %rv;
4154 }
4155
4156 =head2 list_languages
4157
4158 Returns an array of supported languages, taken from Webmin's os_list.txt file.
4159 Each is a hash reference with the following keys :
4160
4161 =item lang - The short language code, like es for Spanish.
4162
4163 =item desc - A human-readable description, in English.
4164
4165 =item charset - An optional character set to use when displaying the language.
4166
4167 =item titles - Set to 1 only if Webmin has title images for the language.
4168
4169 =item fallback - The code for another language to use if a string does not exist in this one. For all languages, English is the ultimate fallback.
4170
4171 =cut
4172 sub list_languages
4173 {
4174 if (!@main::list_languages_cache) {
4175         my $o;
4176         local $_;
4177         open(LANG, "$root_directory/lang_list.txt");
4178         while(<LANG>) {
4179                 if (/^(\S+)\s+(.*)/) {
4180                         my $l = { 'desc' => $2 };
4181                         foreach $o (split(/,/, $1)) {
4182                                 if ($o =~ /^([^=]+)=(.*)$/) {
4183                                         $l->{$1} = $2;
4184                                         }
4185                                 }
4186                         $l->{'index'} = scalar(@rv);
4187                         push(@main::list_languages_cache, $l);
4188                         }
4189                 }
4190         close(LANG);
4191         @main::list_languages_cache = sort { $a->{'desc'} cmp $b->{'desc'} }
4192                                      @main::list_languages_cache;
4193         }
4194 return @main::list_languages_cache;
4195 }
4196
4197 =head2 read_env_file(file, &hash)
4198
4199 Similar to Webmin's read_file function, but handles files containing shell
4200 environment variables formatted like :
4201
4202   export FOO=bar
4203   SMEG="spod"
4204
4205 The file parameter is the full path to the file to read, and hash a Perl hash
4206 ref to read names and values into.
4207
4208 =cut
4209 sub read_env_file
4210 {
4211 local $_;
4212 &open_readfile(FILE, $_[0]) || return 0;
4213 while(<FILE>) {
4214         s/#.*$//g;
4215         if (/^\s*(export\s*)?([A-Za-z0-9_\.]+)\s*=\s*"(.*)"/i ||
4216             /^\s*(export\s*)?([A-Za-z0-9_\.]+)\s*=\s*'(.*)'/i ||
4217             /^\s*(export\s*)?([A-Za-z0-9_\.]+)\s*=\s*(.*)/i) {
4218                 $_[1]->{$2} = $3;
4219                 }
4220         }
4221 close(FILE);
4222 return 1;
4223 }
4224
4225 =head2 write_env_file(file, &hash, [export])
4226
4227 Writes out a hash to a file in name='value' format, suitable for use in a shell
4228 script. The parameters are :
4229
4230 =item file - Full path for a file to write to
4231
4232 =item hash - Hash reference of names and values to write.
4233
4234 =item export - If set to 1, preceed each variable setting with the word 'export'.
4235
4236 =cut
4237 sub write_env_file
4238 {
4239 my $exp = $_[2] ? "export " : "";
4240 &open_tempfile(FILE, ">$_[0]");
4241 foreach my $k (keys %{$_[1]}) {
4242         my $v = $_[1]->{$k};
4243         if ($v =~ /^\S+$/) {
4244                 &print_tempfile(FILE, "$exp$k=$v\n");
4245                 }
4246         else {
4247                 &print_tempfile(FILE, "$exp$k=\"$v\"\n");
4248                 }
4249         }
4250 &close_tempfile(FILE);
4251 }
4252
4253 =head2 lock_file(filename, [readonly], [forcefile])
4254
4255 Lock a file for exclusive access. If the file is already locked, spin
4256 until it is freed. Uses a .lock file, which is not 100% reliable, but seems
4257 to work OK. The parameters are :
4258
4259 =item filename - File or directory to lock.
4260
4261 =item readonly - If set, the lock is for reading the file only. More than one script can have a readonly lock, but only one can hold a write lock.
4262
4263 =item forcefile - Force the file to be considered as a real file and not a symlink for Webmin actions logging purposes.
4264
4265 =cut
4266 sub lock_file
4267 {
4268 my $realfile = &translate_filename($_[0]);
4269 return 0 if (!$_[0] || defined($main::locked_file_list{$realfile}));
4270 my $no_lock = !&can_lock_file($realfile);
4271 my $lock_tries_count = 0;
4272 while(1) {
4273         my $pid;
4274         if (!$no_lock && open(LOCKING, "$realfile.lock")) {
4275                 $pid = <LOCKING>;
4276                 $pid = int($pid);
4277                 close(LOCKING);
4278                 }
4279         if ($no_lock || !$pid || !kill(0, $pid) || $pid == $$) {
4280                 # Got the lock!
4281                 if (!$no_lock) {
4282                         # Create the .lock file
4283                         open(LOCKING, ">$realfile.lock") || return 0;
4284                         my $lck = eval "flock(LOCKING, 2+4)";
4285                         if (!$lck && !$@) {
4286                                 # Lock of lock file failed! Wait till later
4287                                 goto tryagain;
4288                                 }
4289                         print LOCKING $$,"\n";
4290                         eval "flock(LOCKING, 8)";
4291                         close(LOCKING);
4292                         }
4293                 $main::locked_file_list{$realfile} = int($_[1]);
4294                 push(@main::temporary_files, "$realfile.lock");
4295                 if (($gconfig{'logfiles'} || $gconfig{'logfullfiles'}) &&
4296                     !&get_module_variable('$no_log_file_changes') &&
4297                     !$_[1]) {
4298                         # Grab a copy of this file for later diffing
4299                         my $lnk;
4300                         $main::locked_file_data{$realfile} = undef;
4301                         if (-d $realfile) {
4302                                 $main::locked_file_type{$realfile} = 1;
4303                                 $main::locked_file_data{$realfile} = '';
4304                                 }
4305                         elsif (!$_[2] && ($lnk = readlink($realfile))) {
4306                                 $main::locked_file_type{$realfile} = 2;
4307                                 $main::locked_file_data{$realfile} = $lnk;
4308                                 }
4309                         elsif (open(ORIGFILE, $realfile)) {
4310                                 $main::locked_file_type{$realfile} = 0;
4311                                 $main::locked_file_data{$realfile} = '';
4312                                 local $_;
4313                                 while(<ORIGFILE>) {
4314                                         $main::locked_file_data{$realfile} .=$_;
4315                                         }
4316                                 close(ORIGFILE);
4317                                 }
4318                         }
4319                 last;
4320                 }
4321 tryagain:
4322         sleep(1);
4323         if ($lock_tries_count++ > 5*60) {
4324                 # Give up after 5 minutes
4325                 &error(&text('elock_tries', "<tt>$realfile</tt>", 5));
4326                 }
4327         }
4328 return 1;
4329 }
4330
4331 =head2 unlock_file(filename)
4332
4333 Release a lock on a file taken out by lock_file. If Webmin actions logging of
4334 file changes is enabled, then at unlock file a diff will be taken between the
4335 old and new contents, and stored under /var/webmin/diffs when webmin_log is
4336 called. This can then be viewed in the Webmin Actions Log module.
4337
4338 =cut
4339 sub unlock_file
4340 {
4341 my $realfile = &translate_filename($_[0]);
4342 return if (!$_[0] || !defined($main::locked_file_list{$realfile}));
4343 unlink("$realfile.lock") if (&can_lock_file($realfile));
4344 delete($main::locked_file_list{$realfile});
4345 if (exists($main::locked_file_data{$realfile})) {
4346         # Diff the new file with the old
4347         stat($realfile);
4348         my $lnk = readlink($realfile);
4349         my $type = -d _ ? 1 : $lnk ? 2 : 0;
4350         my $oldtype = $main::locked_file_type{$realfile};
4351         my $new = !defined($main::locked_file_data{$realfile});
4352         if ($new && !-e _) {
4353                 # file doesn't exist, and never did! do nothing ..
4354                 }
4355         elsif ($new && $type == 1 || !$new && $oldtype == 1) {
4356                 # is (or was) a directory ..
4357                 if (-d _ && !defined($main::locked_file_data{$realfile})) {
4358                         push(@main::locked_file_diff,
4359                              { 'type' => 'mkdir', 'object' => $realfile });
4360                         }
4361                 elsif (!-d _ && defined($main::locked_file_data{$realfile})) {
4362                         push(@main::locked_file_diff,
4363                              { 'type' => 'rmdir', 'object' => $realfile });
4364                         }
4365                 }
4366         elsif ($new && $type == 2 || !$new && $oldtype == 2) {
4367                 # is (or was) a symlink ..
4368                 if ($lnk && !defined($main::locked_file_data{$realfile})) {
4369                         push(@main::locked_file_diff,
4370                              { 'type' => 'symlink', 'object' => $realfile,
4371                                'data' => $lnk });
4372                         }
4373                 elsif (!$lnk && defined($main::locked_file_data{$realfile})) {
4374                         push(@main::locked_file_diff,
4375                              { 'type' => 'unsymlink', 'object' => $realfile,
4376                                'data' => $main::locked_file_data{$realfile} });
4377                         }
4378                 elsif ($lnk ne $main::locked_file_data{$realfile}) {
4379                         push(@main::locked_file_diff,
4380                              { 'type' => 'resymlink', 'object' => $realfile,
4381                                'data' => $lnk });
4382                         }
4383                 }
4384         else {
4385                 # is a file, or has changed type?!
4386                 my ($diff, $delete_file);
4387                 my $type = "modify";
4388                 if (!-r _) {
4389                         open(NEWFILE, ">$realfile");
4390                         close(NEWFILE);
4391                         $delete_file++;
4392                         $type = "delete";
4393                         }
4394                 if (!defined($main::locked_file_data{$realfile})) {
4395                         $type = "create";
4396                         }
4397                 open(ORIGFILE, ">$realfile.webminorig");
4398                 print ORIGFILE $main::locked_file_data{$realfile};
4399                 close(ORIGFILE);
4400                 $diff = &backquote_command(
4401                         "diff ".quotemeta("$realfile.webminorig")." ".
4402                                 quotemeta($realfile)." 2>/dev/null");
4403                 push(@main::locked_file_diff,
4404                      { 'type' => $type, 'object' => $realfile,
4405                        'data' => $diff } ) if ($diff);
4406                 unlink("$realfile.webminorig");
4407                 unlink($realfile) if ($delete_file);
4408                 }
4409
4410         if ($gconfig{'logfullfiles'}) {
4411                 # Add file details to list of those to fully log
4412                 $main::orig_file_data{$realfile} ||=
4413                         $main::locked_file_data{$realfile};
4414                 $main::orig_file_type{$realfile} ||=
4415                         $main::locked_file_type{$realfile};
4416                 }
4417
4418         delete($main::locked_file_data{$realfile});
4419         delete($main::locked_file_type{$realfile});
4420         }
4421 }
4422
4423 =head2 test_lock(file)
4424
4425 Returns 1 if some file is currently locked, 0 if not.
4426
4427 =cut
4428 sub test_lock
4429 {
4430 my $realfile = &translate_filename($_[0]);
4431 return 0 if (!$_[0]);
4432 return 1 if (defined($main::locked_file_list{$realfile}));
4433 return 0 if (!&can_lock_file($realfile));
4434 my $pid;
4435 if (open(LOCKING, "$realfile.lock")) {
4436         $pid = <LOCKING>;
4437         $pid = int($pid);
4438         close(LOCKING);
4439         }
4440 return $pid && kill(0, $pid);
4441 }
4442
4443 =head2 unlock_all_files
4444
4445 Unlocks all files locked by the current script.
4446
4447 =cut
4448 sub unlock_all_files
4449 {
4450 foreach $f (keys %main::locked_file_list) {
4451         &unlock_file($f);
4452         }
4453 }
4454
4455 =head2 can_lock_file(file)
4456
4457 Returns 1 if some file should be locked, based on the settings in the 
4458 Webmin Configuration module. For internal use by lock_file only.
4459
4460 =cut
4461 sub can_lock_file
4462 {
4463 if (&is_readonly_mode()) {
4464         return 0;       # never lock in read-only mode
4465         }
4466 elsif ($gconfig{'lockmode'} == 0) {
4467         return 1;       # always
4468         }
4469 elsif ($gconfig{'lockmode'} == 1) {
4470         return 0;       # never
4471         }
4472 else {
4473         # Check if under any of the directories
4474         my $match;
4475         foreach my $d (split(/\t+/, $gconfig{'lockdirs'})) {
4476                 if (&same_file($d, $_[0]) ||
4477                     &is_under_directory($d, $_[0])) {
4478                         $match = 1;
4479                         }
4480                 }
4481         return $gconfig{'lockmode'} == 2 ? $match : !$match;
4482         }
4483 }
4484
4485 =head2 webmin_log(action, type, object, &params, [module], [host, script-on-host, client-ip])
4486
4487 Log some action taken by a user. This is typically called at the end of a
4488 script, once all file changes are complete and all commands run. The 
4489 parameters are :
4490
4491 =item action - A short code for the action being performed, like 'create'.
4492
4493 =item type - A code for the type of object the action is performed to, like 'user'.
4494
4495 =item object - A short name for the object, like 'joe' if the Unix user 'joe' was just created.
4496
4497 =item params - A hash ref of additional information about the action.
4498
4499 =item module - Name of the module in which the action was performed, which defaults to the current module.
4500
4501 =item host - Remote host on which the action was performed. You should never need to set this (or the following two parameters), as they are used only for remote Webmin logging.
4502
4503 =item script-on-host - Script name like create_user.cgi on the host the action was performed on.
4504
4505 =item client-ip - IP address of the browser that performed the action.
4506
4507 =cut
4508 sub webmin_log
4509 {
4510 return if (!$gconfig{'log'} || &is_readonly_mode());
4511 my $m = $_[4] ? $_[4] : &get_module_name();
4512
4513 if ($gconfig{'logclear'}) {
4514         # check if it is time to clear the log
4515         my @st = stat("$webmin_logfile.time");
4516         my $write_logtime = 0;
4517         if (@st) {
4518                 if ($st[9]+$gconfig{'logtime'}*60*60 < time()) {
4519                         # clear logfile and all diff files
4520                         &unlink_file("$ENV{'WEBMIN_VAR'}/diffs");
4521                         &unlink_file("$ENV{'WEBMIN_VAR'}/files");
4522                         &unlink_file("$ENV{'WEBMIN_VAR'}/annotations");
4523                         unlink($webmin_logfile);
4524                         $write_logtime = 1;
4525                         }
4526                 }
4527         else {
4528                 $write_logtime = 1;
4529                 }
4530         if ($write_logtime) {
4531                 open(LOGTIME, ">$webmin_logfile.time");
4532                 print LOGTIME time(),"\n";
4533                 close(LOGTIME);
4534                 }
4535         }
4536
4537 # If an action script directory is defined, call the appropriate scripts
4538 if ($gconfig{'action_script_dir'}) {
4539     my ($action, $type, $object) = ($_[0], $_[1], $_[2]);
4540     my ($basedir) = $gconfig{'action_script_dir'};
4541
4542     for my $dir ($basedir/$type/$action, $basedir/$type, $basedir) {
4543         if (-d $dir) {
4544             my ($file);
4545             opendir(DIR, $dir) or die "Can't open $dir: $!";
4546             while (defined($file = readdir(DIR))) {
4547                 next if ($file =~ /^\.\.?$/); # skip '.' and '..'
4548                 if (-x "$dir/$file") {
4549                     # Call a script notifying it of the action
4550                     my %OLDENV = %ENV;
4551                     $ENV{'ACTION_MODULE'} = &get_module_name();
4552                     $ENV{'ACTION_ACTION'} = $_[0];
4553                     $ENV{'ACTION_TYPE'} = $_[1];
4554                     $ENV{'ACTION_OBJECT'} = $_[2];
4555                     $ENV{'ACTION_SCRIPT'} = $script_name;
4556                     foreach my $p (keys %param) {
4557                             $ENV{'ACTION_PARAM_'.uc($p)} = $param{$p};
4558                             }
4559                     system("$dir/$file", @_,
4560                            "<$null_file", ">$null_file", "2>&1");
4561                     %ENV = %OLDENV;
4562                     }
4563                 }
4564             }
4565         }
4566     }
4567
4568 # should logging be done at all?
4569 return if ($gconfig{'logusers'} && &indexof($base_remote_user,
4570            split(/\s+/, $gconfig{'logusers'})) < 0);
4571 return if ($gconfig{'logmodules'} && &indexof($m,
4572            split(/\s+/, $gconfig{'logmodules'})) < 0);
4573
4574 # log the action
4575 my $now = time();
4576 my @tm = localtime($now);
4577 my $script_name = $0 =~ /([^\/]+)$/ ? $1 : '-';
4578 my $id = sprintf "%d.%d.%d", $now, $$, $main::action_id_count;
4579 $main::action_id_count++;
4580 my $line = sprintf "%s [%2.2d/%s/%4.4d %2.2d:%2.2d:%2.2d] %s %s %s %s %s \"%s\" \"%s\" \"%s\"",
4581         $id, $tm[3], $text{"smonth_".($tm[4]+1)}, $tm[5]+1900,
4582         $tm[2], $tm[1], $tm[0],
4583         $remote_user || '-',
4584         $main::session_id || '-',
4585         $_[7] || $ENV{'REMOTE_HOST'} || '-',
4586         $m, $_[5] ? "$_[5]:$_[6]" : $script_name,
4587         $_[0], $_[1] ne '' ? $_[1] : '-', $_[2] ne '' ? $_[2] : '-';
4588 my %param;
4589 foreach my $k (sort { $a cmp $b } keys %{$_[3]}) {
4590         my $v = $_[3]->{$k};
4591         my @pv;
4592         if ($v eq '') {
4593                 $line .= " $k=''";
4594                 @rv = ( "" );
4595                 }
4596         elsif (ref($v) eq 'ARRAY') {
4597                 foreach $vv (@$v) {
4598                         next if (ref($vv));
4599                         push(@pv, $vv);
4600                         $vv =~ s/(['"\\\r\n\t\%])/sprintf("%%%2.2X",ord($1))/ge;
4601                         $line .= " $k='$vv'";
4602                         }
4603                 }
4604         elsif (!ref($v)) {
4605                 foreach $vv (split(/\0/, $v)) {
4606                         push(@pv, $vv);
4607                         $vv =~ s/(['"\\\r\n\t\%])/sprintf("%%%2.2X",ord($1))/ge;
4608                         $line .= " $k='$vv'";
4609                         }
4610                 }
4611         $param{$k} = join(" ", @pv);
4612         }
4613 open(WEBMINLOG, ">>$webmin_logfile");
4614 print WEBMINLOG $line,"\n";
4615 close(WEBMINLOG);
4616 if ($gconfig{'logperms'}) {
4617         chmod(oct($gconfig{'logperms'}), $webmin_logfile);
4618         }
4619 else {
4620         chmod(0600, $webmin_logfile);
4621         }
4622
4623 if ($gconfig{'logfiles'} && !&get_module_variable('$no_log_file_changes')) {
4624         # Find and record the changes made to any locked files, or commands run
4625         my $i = 0;
4626         mkdir("$ENV{'WEBMIN_VAR'}/diffs", 0700);
4627         foreach my $d (@main::locked_file_diff) {
4628                 mkdir("$ENV{'WEBMIN_VAR'}/diffs/$id", 0700);
4629                 open(DIFFLOG, ">$ENV{'WEBMIN_VAR'}/diffs/$id/$i");
4630                 print DIFFLOG "$d->{'type'} $d->{'object'}\n";
4631                 print DIFFLOG $d->{'data'};
4632                 close(DIFFLOG);
4633                 if ($d->{'input'}) {
4634                         open(DIFFLOG, ">$ENV{'WEBMIN_VAR'}/diffs/$id/$i.input");
4635                         print DIFFLOG $d->{'input'};
4636                         close(DIFFLOG);
4637                         }
4638                 if ($gconfig{'logperms'}) {
4639                         chmod(oct($gconfig{'logperms'}),
4640                               "$ENV{'WEBMIN_VAR'}/diffs/$id/$i",
4641                               "$ENV{'WEBMIN_VAR'}/diffs/$id/$i.input");
4642                         }
4643                 $i++;
4644                 }
4645         @main::locked_file_diff = undef;
4646         }
4647 if ($gconfig{'logfullfiles'}) {
4648         # Save the original contents of any modified files
4649         my $i = 0;
4650         mkdir("$ENV{'WEBMIN_VAR'}/files", 0700);
4651         foreach my $f (keys %main::orig_file_data) {
4652                 mkdir("$ENV{'WEBMIN_VAR'}/files/$id", 0700);
4653                 open(ORIGLOG, ">$ENV{'WEBMIN_VAR'}/files/$id/$i");
4654                 if (!defined($main::orig_file_type{$f})) {
4655                         print ORIGLOG -1," ",$f,"\n";
4656                         }
4657                 else {
4658                         print ORIGLOG $main::orig_file_type{$f}," ",$f,"\n";
4659                         }
4660                 print ORIGLOG $main::orig_file_data{$f};
4661                 close(ORIGLOG);
4662                 if ($gconfig{'logperms'}) {
4663                         chmod(oct($gconfig{'logperms'}),
4664                               "$ENV{'WEBMIN_VAR'}/files/$id.$i");
4665                         }
4666                 $i++;
4667                 }
4668         %main::orig_file_data = undef;
4669         %main::orig_file_type = undef;
4670         }
4671
4672 # Log to syslog too
4673 if ($gconfig{'logsyslog'}) {
4674         eval 'use Sys::Syslog qw(:DEFAULT setlogsock);
4675               openlog(&get_product_name(), "cons,pid,ndelay", "daemon");
4676               setlogsock("inet");';
4677         if (!$@) {
4678                 # Syslog module is installed .. try to convert to a
4679                 # human-readable form
4680                 my $msg;
4681                 my $mod = &get_module_name();
4682                 my $mdir = module_root_directory($mod);
4683                 if (-r "$mdir/log_parser.pl") {
4684                         &foreign_require($mod, "log_parser.pl");
4685                         my %params;
4686                         foreach my $k (keys %{$_[3]}) {
4687                                 my $v = $_[3]->{$k};
4688                                 if (ref($v) eq 'ARRAY') {
4689                                         $params{$k} = join("\0", @$v);
4690                                         }
4691                                 else {
4692                                         $params{$k} = $v;
4693                                         }
4694                                 }
4695                         $msg = &foreign_call($mod, "parse_webmin_log",
4696                                 $remote_user, $script_name,
4697                                 $_[0], $_[1], $_[2], \%params);
4698                         $msg =~ s/<[^>]*>//g;   # Remove tags
4699                         }
4700                 elsif ($_[0] eq "_config_") {
4701                         my %wtext = &load_language("webminlog");
4702                         $msg = $wtext{'search_config'};
4703                         }
4704                 $msg ||= "$_[0] $_[1] $_[2]";
4705                 my %info = &get_module_info($m);
4706                 eval { syslog("info", "%s", "[$info{'desc'}] $msg"); };
4707                 }
4708         }
4709 }
4710
4711 =head2 additional_log(type, object, data, [input])
4712
4713 Records additional log data for an upcoming call to webmin_log, such
4714 as a command that was run or SQL that was executed. Typically you will never
4715 need to call this function directory.
4716
4717 =cut
4718 sub additional_log
4719 {
4720 if ($gconfig{'logfiles'} && !&get_module_variable('$no_log_file_changes')) {
4721         push(@main::locked_file_diff,
4722              { 'type' => $_[0], 'object' => $_[1], 'data' => $_[2],
4723                'input' => $_[3] } );
4724         }
4725 }
4726
4727 =head2 webmin_debug_log(type, message)
4728
4729 Write something to the Webmin debug log. For internal use only.
4730
4731 =cut
4732 sub webmin_debug_log
4733 {
4734 my ($type, $msg) = @_;
4735 return 0 if (!$main::opened_debug_log);
4736 return 0 if ($gconfig{'debug_no'.$main::webmin_script_type});
4737 if ($gconfig{'debug_modules'}) {
4738         my @dmods = split(/\s+/, $gconfig{'debug_modules'});
4739         return 0 if (&indexof($main::initial_module_name, @dmods) < 0);
4740         }
4741 my $now = time();
4742 my @tm = localtime($now);
4743 my $line = sprintf
4744         "%s [%2.2d/%s/%4.4d %2.2d:%2.2d:%2.2d] %s %s %s %s \"%s\"",
4745         $$, $tm[3], $text{"smonth_".($tm[4]+1)}, $tm[5]+1900,
4746         $tm[2], $tm[1], $tm[0],
4747         $remote_user || "-",
4748         $ENV{'REMOTE_HOST'} || "-",
4749         &get_module_name() || "-",
4750         $type,
4751         $msg;
4752 seek(main::DEBUGLOG, 0, 2);
4753 print main::DEBUGLOG $line."\n";
4754 return 1;
4755 }
4756
4757 =head2 system_logged(command)
4758
4759 Just calls the Perl system() function, but also logs the command run.
4760
4761 =cut
4762 sub system_logged
4763 {
4764 if (&is_readonly_mode()) {
4765         print STDERR "Vetoing command $_[0]\n";
4766         return 0;
4767         }
4768 my @realcmd = ( &translate_command($_[0]), @_[1..$#_] );
4769 my $cmd = join(" ", @realcmd);
4770 my $and;
4771 if ($cmd =~ s/(\s*&\s*)$//) {
4772         $and = $1;
4773         }
4774 while($cmd =~ s/(\d*)(<|>)((\/(tmp|dev)\S+)|&\d+)\s*$//) { }
4775 $cmd =~ s/^\((.*)\)\s*$/$1/;
4776 $cmd .= $and;
4777 &additional_log('exec', undef, $cmd);
4778 return system(@realcmd);
4779 }
4780
4781 =head2 backquote_logged(command)
4782
4783 Executes a command and returns the output (like `command`), but also logs it.
4784
4785 =cut
4786 sub backquote_logged
4787 {
4788 if (&is_readonly_mode()) {
4789         $? = 0;
4790         print STDERR "Vetoing command $_[0]\n";
4791         return undef;
4792         }
4793 my $realcmd = &translate_command($_[0]);
4794 my $cmd = $realcmd;
4795 my $and;
4796 if ($cmd =~ s/(\s*&\s*)$//) {
4797         $and = $1;
4798         }
4799 while($cmd =~ s/(\d*)(<|>)((\/(tmp\/.webmin|dev)\S+)|&\d+)\s*$//) { }
4800 $cmd =~ s/^\((.*)\)\s*$/$1/;
4801 $cmd .= $and;
4802 &additional_log('exec', undef, $cmd);
4803 &webmin_debug_log('CMD', "cmd=$cmd") if ($gconfig{'debug_what_cmd'});
4804 return `$realcmd`;
4805 }
4806
4807 =head2 backquote_with_timeout(command, timeout, safe?, [maxlines])
4808
4809 Runs some command, waiting at most the given number of seconds for it to
4810 complete, and returns the output. The maxlines parameter sets the number
4811 of lines of output to capture. The safe parameter should be set to 1 if the
4812 command is safe for read-only mode users to run.
4813
4814 =cut
4815 sub backquote_with_timeout
4816 {
4817 my $realcmd = &translate_command($_[0]);
4818 &webmin_debug_log('CMD', "cmd=$realcmd timeout=$_[1]")
4819         if ($gconfig{'debug_what_cmd'});
4820 my $out;
4821 my $pid = &open_execute_command(OUT, "($realcmd) <$null_file", 1, $_[2]);
4822 my $start = time();
4823 my $timed_out = 0;
4824 my $linecount = 0;
4825 while(1) {
4826         my $elapsed = time() - $start;
4827         last if ($elapsed > $_[1]);
4828         my $rmask;
4829         vec($rmask, fileno(OUT), 1) = 1;
4830         my $sel = select($rmask, undef, undef, $_[1] - $elapsed);
4831         last if (!$sel || $sel < 0);
4832         my $line = <OUT>;
4833         last if (!defined($line));
4834         $out .= $line;
4835         $linecount++;
4836         if ($_[3] && $linecount >= $_[3]) {
4837                 # Got enough lines
4838                 last;
4839                 }
4840         }
4841 if (kill('TERM', $pid) && time() - $start >= $_[1]) {
4842         $timed_out = 1;
4843         }
4844 close(OUT);
4845 return wantarray ? ($out, $timed_out) : $out;
4846 }
4847
4848 =head2 backquote_command(command, safe?)
4849
4850 Executes a command and returns the output (like `command`), subject to
4851 command translation. The safe parameter should be set to 1 if the command
4852 is safe for read-only mode users to run.
4853
4854 =cut
4855 sub backquote_command
4856 {
4857 if (&is_readonly_mode() && !$_[1]) {
4858         print STDERR "Vetoing command $_[0]\n";
4859         $? = 0;
4860         return undef;
4861         }
4862 my $realcmd = &translate_command($_[0]);
4863 &webmin_debug_log('CMD', "cmd=$realcmd") if ($gconfig{'debug_what_cmd'});
4864 return `$realcmd`;
4865 }
4866
4867 =head2 kill_logged(signal, pid, ...)
4868
4869 Like Perl's built-in kill function, but also logs the fact that some process
4870 was killed. On Windows, falls back to calling process.exe to terminate a
4871 process.
4872
4873 =cut
4874 sub kill_logged
4875 {
4876 return scalar(@_)-1 if (&is_readonly_mode());
4877 &webmin_debug_log('KILL', "signal=$_[0] pids=".join(" ", @_[1..@_-1]))
4878         if ($gconfig{'debug_what_procs'});
4879 &additional_log('kill', $_[0], join(" ", @_[1..@_-1])) if (@_ > 1);
4880 if ($gconfig{'os_type'} eq 'windows') {
4881         # Emulate some kills with process.exe
4882         my $arg = $_[0] eq "KILL" ? "-k" :
4883                   $_[0] eq "TERM" ? "-q" :
4884                   $_[0] eq "STOP" ? "-s" :
4885                   $_[0] eq "CONT" ? "-r" : undef;
4886         my $ok = 0;
4887         foreach my $p (@_[1..@_-1]) {
4888                 if ($p < 0) {
4889                         $ok ||= kill($_[0], $p);
4890                         }
4891                 elsif ($arg) {
4892                         &execute_command("process $arg $p");
4893                         $ok = 1;
4894                         }
4895                 }
4896         return $ok;
4897         }
4898 else {
4899         # Normal Unix kill
4900         return kill(@_);
4901         }
4902 }
4903
4904 =head2 rename_logged(old, new)
4905
4906 Re-names a file and logs the rename. If the old and new files are on different
4907 filesystems, calls mv or the Windows rename function to do the job.
4908
4909 =cut
4910 sub rename_logged
4911 {
4912 &additional_log('rename', $_[0], $_[1]) if ($_[0] ne $_[1]);
4913 return &rename_file($_[0], $_[1]);
4914 }
4915
4916 =head2 rename_file(old, new)
4917
4918 Renames a file or directory. If the old and new files are on different
4919 filesystems, calls mv or the Windows rename function to do the job.
4920
4921 =cut
4922 sub rename_file
4923 {
4924 if (&is_readonly_mode()) {
4925         print STDERR "Vetoing rename from $_[0] to $_[1]\n";
4926         return 1;
4927         }
4928 my $src = &translate_filename($_[0]);
4929 my $dst = &translate_filename($_[1]);
4930 &webmin_debug_log('RENAME', "src=$src dst=$dst")
4931         if ($gconfig{'debug_what_ops'});
4932 my $ok = rename($src, $dst);
4933 if (!$ok && $! !~ /permission/i) {
4934         # Try the mv command, in case this is a cross-filesystem rename
4935         if ($gconfig{'os_type'} eq 'windows') {
4936                 # Need to use rename
4937                 my $out = &backquote_command("rename ".quotemeta($_[0]).
4938                                              " ".quotemeta($_[1])." 2>&1");
4939                 $ok = !$?;
4940                 $! = $out if (!$ok);
4941                 }
4942         else {
4943                 # Can use mv
4944                 my $out = &backquote_command("mv ".quotemeta($_[0]).
4945                                              " ".quotemeta($_[1])." 2>&1");
4946                 $ok = !$?;
4947                 $! = $out if (!$ok);
4948                 }
4949         }
4950 return $ok;
4951 }
4952
4953 =head2 symlink_logged(src, dest)
4954
4955 Create a symlink, and logs it. Effectively does the same thing as the Perl
4956 symlink function.
4957
4958 =cut
4959 sub symlink_logged
4960 {
4961 &lock_file($_[1]);
4962 my $rv = &symlink_file($_[0], $_[1]);
4963 &unlock_file($_[1]);
4964 return $rv;
4965 }
4966
4967 =head2 symlink_file(src, dest)
4968
4969 Creates a soft link, unless in read-only mode. Effectively does the same thing
4970 as the Perl symlink function.
4971
4972 =cut
4973 sub symlink_file
4974 {
4975 if (&is_readonly_mode()) {
4976         print STDERR "Vetoing symlink from $_[0] to $_[1]\n";
4977         return 1;
4978         }
4979 my $src = &translate_filename($_[0]);
4980 my $dst = &translate_filename($_[1]);
4981 &webmin_debug_log('SYMLINK', "src=$src dst=$dst")
4982         if ($gconfig{'debug_what_ops'});
4983 return symlink($src, $dst);
4984 }
4985
4986 =head2 link_file(src, dest)
4987
4988 Creates a hard link, unless in read-only mode. The existing new link file
4989 will be deleted if necessary. Effectively the same as Perl's link function.
4990
4991 =cut
4992 sub link_file
4993 {
4994 if (&is_readonly_mode()) {
4995         print STDERR "Vetoing link from $_[0] to $_[1]\n";
4996         return 1;
4997         }
4998 my $src = &translate_filename($_[0]);
4999 my $dst = &translate_filename($_[1]);
5000 &webmin_debug_log('LINK', "src=$src dst=$dst")
5001         if ($gconfig{'debug_what_ops'});
5002 unlink($dst);                   # make sure link works
5003 return link($src, $dst);
5004 }
5005
5006 =head2 make_dir(dir, perms, recursive)
5007
5008 Creates a directory and sets permissions on it, unless in read-only mode.
5009 The perms parameter sets the octal permissions to apply, which unlike Perl's
5010 mkdir will really get set. The recursive flag can be set to 1 to have the
5011 function create parent directories too.
5012
5013 =cut
5014 sub make_dir
5015 {
5016 my ($dir, $perms, $recur) = @_;
5017 if (&is_readonly_mode()) {
5018         print STDERR "Vetoing directory $dir\n";
5019         return 1;
5020         }
5021 $dir = &translate_filename($dir);
5022 my $exists = -d $dir ? 1 : 0;
5023 return 1 if ($exists && $recur);        # already exists
5024 &webmin_debug_log('MKDIR', $dir) if ($gconfig{'debug_what_ops'});
5025 my $rv = mkdir($dir, $perms);
5026 if (!$rv && $recur) {
5027         # Failed .. try mkdir -p
5028         my $param = $gconfig{'os_type'} eq 'windows' ? "" : "-p";
5029         my $ex = &execute_command("mkdir $param ".&quote_path($dir));
5030         if ($ex) {
5031                 return 0;
5032                 }
5033         }
5034 if (!$exists) {
5035         chmod($perms, $dir);
5036         }
5037 return 1;
5038 }
5039
5040 =head2 set_ownership_permissions(user, group, perms, file, ...)
5041
5042 Sets the user, group owner and permissions on some files. The parameters are :
5043
5044 =item user - UID or username to change the file owner to. If undef, then the owner is not changed.
5045
5046 =item group - GID or group name to change the file group to. If undef, then the group is set to the user's primary group.
5047
5048 =item perms - Octal permissions set to set on the file. If undef, they are left alone.
5049
5050 =item file - One or more files or directories to modify.
5051
5052 =cut
5053 sub set_ownership_permissions
5054 {
5055 my ($user, $group, $perms, @files) = @_;
5056 if (&is_readonly_mode()) {
5057         print STDERR "Vetoing permission changes on ",join(" ", @files),"\n";
5058         return 1;
5059         }
5060 @files = map { &translate_filename($_) } @files;
5061 if ($gconfig{'debug_what_ops'}) {
5062         foreach my $f (@files) {
5063                 &webmin_debug_log('PERMS',
5064                         "file=$f user=$user group=$group perms=$perms");
5065                 }
5066         }
5067 my $rv = 1;
5068 if (defined($user)) {
5069         my $uid = $user !~ /^\d+$/ ? getpwnam($user) : $user;
5070         my $gid;
5071         if (defined($group)) {
5072                 $gid = $group !~ /^\d+$/ ? getgrnam($group) : $group;
5073                 }
5074         else {
5075                 my @uinfo = getpwuid($uid);
5076                 $gid = $uinfo[3];
5077                 }
5078         $rv = chown($uid, $gid, @files);
5079         }
5080 if ($rv && defined($perms)) {
5081         $rv = chmod($perms, @files);
5082         }
5083 return $rv;
5084 }
5085
5086 =head2 unlink_logged(file, ...)
5087
5088 Like Perl's unlink function, but locks the files beforehand and un-locks them
5089 after so that the deletion is logged by Webmin.
5090
5091 =cut
5092 sub unlink_logged
5093 {
5094 my %locked;
5095 foreach my $f (@_) {
5096         if (!&test_lock($f)) {
5097                 &lock_file($f);
5098                 $locked{$f} = 1;
5099                 }
5100         }
5101 my @rv = &unlink_file(@_);
5102 foreach my $f (@_) {
5103         if ($locked{$f}) {
5104                 &unlock_file($f);
5105                 }
5106         }
5107 return wantarray ? @rv : $rv[0];
5108 }
5109
5110 =head2 unlink_file(file, ...)
5111
5112 Deletes some files or directories. Like Perl's unlink function, but also
5113 recursively deletes directories with the rm command if needed.
5114
5115 =cut
5116 sub unlink_file
5117 {
5118 return 1 if (&is_readonly_mode());
5119 my $rv = 1;
5120 my $err;
5121 foreach my $f (@_) {
5122         &unflush_file_lines($f);
5123         my $realf = &translate_filename($f);
5124         &webmin_debug_log('UNLINK', $realf) if ($gconfig{'debug_what_ops'});
5125         if (-d $realf) {
5126                 if (!rmdir($realf)) {
5127                         my $out;
5128                         if ($gconfig{'os_type'} eq 'windows') {
5129                                 # Call del and rmdir commands
5130                                 my $qm = $realf;
5131                                 $qm =~ s/\//\\/g;
5132                                 my $out = `del /q "$qm" 2>&1`;
5133                                 if (!$?) {
5134                                         $out = `rmdir "$qm" 2>&1`;
5135                                         }
5136                                 }
5137                         else {
5138                                 # Use rm command
5139                                 my $qm = quotemeta($realf);
5140                                 $out = `rm -rf $qm 2>&1`;
5141                                 }
5142                         if ($?) {
5143                                 $rv = 0;
5144                                 $err = $out;
5145                                 }
5146                         }
5147                 }
5148         else {
5149                 if (!unlink($realf)) {
5150                         $rv = 0;
5151                         $err = $!;
5152                         }
5153                 }
5154         }
5155 return wantarray ? ($rv, $err) : $rv;
5156 }
5157
5158 =head2 copy_source_dest(source, dest)
5159
5160 Copy some file or directory to a new location. Returns 1 on success, or 0
5161 on failure - also sets $! on failure. If the source is a directory, uses
5162 piped tar commands to copy a whole directory structure including permissions
5163 and special files.
5164
5165 =cut
5166 sub copy_source_dest
5167 {
5168 return (1, undef) if (&is_readonly_mode());
5169 my ($src, $dst) = @_;
5170 my $ok = 1;
5171 my ($err, $out);
5172 &webmin_debug_log('COPY', "src=$src dst=$dst")
5173         if ($gconfig{'debug_what_ops'});
5174 if ($gconfig{'os_type'} eq 'windows') {
5175         # No tar or cp on windows, so need to use copy command
5176         $src =~ s/\//\\/g;
5177         $dst =~ s/\//\\/g;
5178         if (-d $src) {
5179                 $out = &backquote_logged("xcopy \"$src\" \"$dst\" /Y /E /I 2>&1");
5180                 }
5181         else {
5182                 $out = &backquote_logged("copy /Y \"$src\" \"$dst\" 2>&1");
5183                 }
5184         if ($?) {
5185                 $ok = 0;
5186                 $err = $out;
5187                 }
5188         }
5189 elsif (-d $src) {
5190         # A directory .. need to copy with tar command
5191         my @st = stat($src);
5192         unlink($dst);
5193         mkdir($dst, 0755);
5194         &set_ownership_permissions($st[4], $st[5], $st[2], $dst);
5195         $out = &backquote_logged("(cd ".quotemeta($src)." ; tar cf - . | (cd ".quotemeta($dst)." ; tar xf -)) 2>&1");
5196         if ($?) {
5197                 $ok = 0;
5198                 $err = $out;
5199                 }
5200         }
5201 else {
5202         # Can just copy with cp
5203         my $out = &backquote_logged("cp -p ".quotemeta($src).
5204                                     " ".quotemeta($dst)." 2>&1");
5205         if ($?) {
5206                 $ok = 0;
5207                 $err = $out;
5208                 }
5209         }
5210 return wantarray ? ($ok, $err) : $ok;
5211 }
5212
5213 =head2 remote_session_name(host|&server)
5214
5215 Generates a session ID for some server. For this server, this will always
5216 be an empty string. For a server object it will include the hostname and
5217 port and PID. For a server name, it will include the hostname and PID. For
5218 internal use only.
5219
5220 =cut
5221 sub remote_session_name
5222 {
5223 return ref($_[0]) && $_[0]->{'host'} && $_[0]->{'port'} ?
5224                 "$_[0]->{'host'}:$_[0]->{'port'}.$$" :
5225        $_[0] eq "" || ref($_[0]) && $_[0]->{'id'} == 0 ? "" :
5226        ref($_[0]) ? "" : "$_[0].$$";
5227 }
5228
5229 =head2 remote_foreign_require(server, module, file)
5230
5231 Connects to rpc.cgi on a remote webmin server and have it open a session
5232 to a process that will actually do the require and run functions. This is the
5233 equivalent for foreign_require, but for a remote Webmin system. The server
5234 parameter can either be a hostname of a system registered in the Webmin
5235 Servers Index module, or a hash reference for a system from that module.
5236
5237 =cut
5238 sub remote_foreign_require
5239 {
5240 my $call = { 'action' => 'require',
5241              'module' => $_[1],
5242              'file' => $_[2] };
5243 my $sn = &remote_session_name($_[0]);
5244 if ($remote_session{$sn}) {
5245         $call->{'session'} = $remote_session{$sn};
5246         }
5247 else {
5248         $call->{'newsession'} = 1;
5249         }
5250 my $rv = &remote_rpc_call($_[0], $call);
5251 if ($rv->{'session'}) {
5252         $remote_session{$sn} = $rv->{'session'};
5253         $remote_session_server{$sn} = $_[0];
5254         }
5255 }
5256
5257 =head2 remote_foreign_call(server, module, function, [arg]*)
5258
5259 Call a function on a remote server. Must have been setup first with
5260 remote_foreign_require for the same server and module. Equivalent to
5261 foreign_call, but with the extra server parameter to specify the remote
5262 system's hostname.
5263
5264 =cut
5265 sub remote_foreign_call
5266 {
5267 return undef if (&is_readonly_mode());
5268 my $sn = &remote_session_name($_[0]);
5269 return &remote_rpc_call($_[0], { 'action' => 'call',
5270                                  'module' => $_[1],
5271                                  'func' => $_[2],
5272                                  'session' => $remote_session{$sn},
5273                                  'args' => [ @_[3 .. $#_] ] } );
5274 }
5275
5276 =head2 remote_foreign_check(server, module, [api-only])
5277
5278 Checks if some module is installed and supported on a remote server. Equivilant
5279 to foreign_check, but for the remote Webmin system specified by the server
5280 parameter.
5281
5282 =cut
5283 sub remote_foreign_check
5284 {
5285 return &remote_rpc_call($_[0], { 'action' => 'check',
5286                                  'module' => $_[1],
5287                                  'api' => $_[2] });
5288 }
5289
5290 =head2 remote_foreign_config(server, module)
5291
5292 Gets the configuration for some module from a remote server, as a hash.
5293 Equivalent to foreign_config, but for a remote system.
5294
5295 =cut
5296 sub remote_foreign_config
5297 {
5298 return &remote_rpc_call($_[0], { 'action' => 'config',
5299                                  'module' => $_[1] });
5300 }
5301
5302 =head2 remote_eval(server, module, code)
5303
5304 Evaluates some perl code in the context of a module on a remote webmin server.
5305 The server parameter must be the hostname of a remote system, module must
5306 be a module directory name, and code a string of Perl code to run. This can
5307 only be called after remote_foreign_require for the same server and module.
5308
5309 =cut
5310 sub remote_eval
5311 {
5312 return undef if (&is_readonly_mode());
5313 my $sn = &remote_session_name($_[0]);
5314 return &remote_rpc_call($_[0], { 'action' => 'eval',
5315                                  'module' => $_[1],
5316                                  'code' => $_[2],
5317                                  'session' => $remote_session{$sn} });
5318 }
5319
5320 =head2 remote_write(server, localfile, [remotefile], [remotebasename])
5321
5322 Transfers some local file to another server via Webmin's RPC protocol, and
5323 returns the resulting remote filename. If the remotefile parameter is given,
5324 that is the destination filename which will be used. Otherwise a randomly
5325 selected temporary filename will be used, and returned by the function.
5326
5327 =cut
5328 sub remote_write
5329 {
5330 return undef if (&is_readonly_mode());
5331 my ($data, $got);
5332 my $sn = &remote_session_name($_[0]);
5333 if (!$_[0] || $remote_server_version{$sn} >= 0.966) {
5334         # Copy data over TCP connection
5335         my $rv = &remote_rpc_call($_[0], { 'action' => 'tcpwrite',
5336                                            'file' => $_[2],
5337                                            'name' => $_[3] } );
5338         my $error;
5339         my $serv = ref($_[0]) ? $_[0]->{'host'} : $_[0];
5340         &open_socket($serv || "localhost", $rv->[1], TWRITE, \$error);
5341         return &$main::remote_error_handler("Failed to transfer file : $error")
5342                 if ($error);
5343         open(FILE, $_[1]);
5344         while(read(FILE, $got, 1024) > 0) {
5345                 print TWRITE $got;
5346                 }
5347         close(FILE);
5348         shutdown(TWRITE, 1);
5349         $error = <TWRITE>;
5350         if ($error && $error !~ /^OK/) {
5351                 # Got back an error!
5352                 return &$main::remote_error_handler("Failed to transfer file : $error");
5353                 }
5354         close(TWRITE);
5355         return $rv->[0];
5356         }
5357 else {
5358         # Just pass file contents as parameters
5359         open(FILE, $_[1]);
5360         while(read(FILE, $got, 1024) > 0) {
5361                 $data .= $got;
5362                 }
5363         close(FILE);
5364         return &remote_rpc_call($_[0], { 'action' => 'write',
5365                                          'data' => $data,
5366                                          'file' => $_[2],
5367                                          'session' => $remote_session{$sn} });
5368         }
5369 }
5370
5371 =head2 remote_read(server, localfile, remotefile)
5372
5373 Transfers a file from a remote server to this system, using Webmin's RPC
5374 protocol. The server parameter must be the hostname of a system registered
5375 in the Webmin Servers Index module, localfile is the destination path on this
5376 system, and remotefile is the file to fetch from the remote server.
5377
5378 =cut
5379 sub remote_read
5380 {
5381 my $sn = &remote_session_name($_[0]);
5382 if (!$_[0] || $remote_server_version{$sn} >= 0.966) {
5383         # Copy data over TCP connection
5384         my $rv = &remote_rpc_call($_[0], { 'action' => 'tcpread',
5385                                            'file' => $_[2] } );
5386         if (!$rv->[0]) {
5387                 return &$main::remote_error_handler("Failed to transfer file : $rv->[1]");
5388                 }
5389         my $error;
5390         my $serv = ref($_[0]) ? $_[0]->{'host'} : $_[0];
5391         &open_socket($serv || "localhost", $rv->[1], TREAD, \$error);
5392         return &$main::remote_error_handler("Failed to transfer file : $error")
5393                 if ($error);
5394         my $got;
5395         open(FILE, ">$_[1]");
5396         while(read(TREAD, $got, 1024) > 0) {
5397                 print FILE $got;
5398                 }
5399         close(FILE);
5400         close(TREAD);
5401         }
5402 else {
5403         # Just get data as return value
5404         my $d = &remote_rpc_call($_[0], { 'action' => 'read',
5405                                           'file' => $_[2],
5406                                           'session' => $remote_session{$sn} });
5407         open(FILE, ">$_[1]");
5408         print FILE $d;
5409         close(FILE);
5410         }
5411 }
5412
5413 =head2 remote_finished
5414
5415 Close all remote sessions. This happens automatically after a while
5416 anyway, but this function should be called to clean things up faster.
5417
5418 =cut
5419 sub remote_finished
5420 {
5421 foreach my $sn (keys %remote_session) {
5422         my $server = $remote_session_server{$sn};
5423         &remote_rpc_call($server, { 'action' => 'quit',
5424                                     'session' => $remote_session{$sn} } );
5425         delete($remote_session{$sn});
5426         delete($remote_session_server{$sn});
5427         }
5428 foreach $fh (keys %fast_fh_cache) {
5429         close($fh);
5430         delete($fast_fh_cache{$fh});
5431         }
5432 }
5433
5434 =head2 remote_error_setup(&function)
5435
5436 Sets a function to be called instead of &error when a remote RPC operation
5437 fails. Useful if you want to have more control over your remote operations.
5438
5439 =cut
5440 sub remote_error_setup
5441 {
5442 $main::remote_error_handler = $_[0] || \&error;
5443 }
5444
5445 =head2 remote_rpc_call(server, structure)
5446
5447 Calls rpc.cgi on some server and passes it a perl structure (hash,array,etc)
5448 and then reads back a reply structure. This is mainly for internal use only,
5449 and is called by the other remote_* functions.
5450
5451 =cut
5452 sub remote_rpc_call
5453 {
5454 my $serv;
5455 my $sn = &remote_session_name($_[0]);   # Will be undef for local connection
5456 if (ref($_[0])) {
5457         # Server structure was given
5458         $serv = $_[0];
5459         $serv->{'user'} || $serv->{'id'} == 0 ||
5460                 return &$main::remote_error_handler(
5461                         "No Webmin login set for server");
5462         }
5463 elsif ($_[0]) {
5464         # lookup the server in the webmin servers module if needed
5465         if (!%main::remote_servers_cache) {
5466                 &foreign_require("servers", "servers-lib.pl");
5467                 foreach $s (&foreign_call("servers", "list_servers")) {
5468                         $main::remote_servers_cache{$s->{'host'}} = $s;
5469                         $main::remote_servers_cache{$s->{'host'}.":".$s->{'port'}} = $s;
5470                         }
5471                 }
5472         $serv = $main::remote_servers_cache{$_[0]};
5473         $serv || return &$main::remote_error_handler(
5474                                 "No Webmin Servers entry for $_[0]");
5475         $serv->{'user'} || return &$main::remote_error_handler(
5476                                 "No login set for server $_[0]");
5477         }
5478 my $ip = $serv->{'ip'} || $serv->{'host'};
5479
5480 # Work out the username and password
5481 my ($user, $pass);
5482 if ($serv->{'sameuser'}) {
5483         $user = $remote_user;
5484         defined($main::remote_pass) || return &$main::remote_error_handler(
5485                                    "Password for this server is not available");
5486         $pass = $main::remote_pass;
5487         }
5488 else {
5489         $user = $serv->{'user'};
5490         $pass = $serv->{'pass'};
5491         }
5492
5493 if ($serv->{'fast'} || !$sn) {
5494         # Make TCP connection call to fastrpc.cgi
5495         if (!$fast_fh_cache{$sn} && $sn) {
5496                 # Need to open the connection
5497                 my $con = &make_http_connection(
5498                         $ip, $serv->{'port'}, $serv->{'ssl'},
5499                         "POST", "/fastrpc.cgi");
5500                 return &$main::remote_error_handler(
5501                     "Failed to connect to $serv->{'host'} : $con")
5502                         if (!ref($con));
5503                 &write_http_connection($con, "Host: $serv->{'host'}\r\n");
5504                 &write_http_connection($con, "User-agent: Webmin\r\n");
5505                 my $auth = &encode_base64("$user:$pass");
5506                 $auth =~ tr/\n//d;
5507                 &write_http_connection($con, "Authorization: basic $auth\r\n");
5508                 &write_http_connection($con, "Content-length: ",
5509                                              length($tostr),"\r\n");
5510                 &write_http_connection($con, "\r\n");
5511                 &write_http_connection($con, $tostr);
5512
5513                 # read back the response
5514                 my $line = &read_http_connection($con);
5515                 $line =~ tr/\r\n//d;
5516                 if ($line =~ /^HTTP\/1\..\s+401\s+/) {
5517                         return &$main::remote_error_handler("Login to RPC server as $user rejected");
5518                         }
5519                 $line =~ /^HTTP\/1\..\s+200\s+/ ||
5520                         return &$main::remote_error_handler("HTTP error : $line");
5521                 do {
5522                         $line = &read_http_connection($con);
5523                         $line =~ tr/\r\n//d;
5524                         } while($line);
5525                 $line = &read_http_connection($con);
5526                 if ($line =~ /^0\s+(.*)/) {
5527                         return &$main::remote_error_handler("RPC error : $1");
5528                         }
5529                 elsif ($line =~ /^1\s+(\S+)\s+(\S+)\s+(\S+)/ ||
5530                        $line =~ /^1\s+(\S+)\s+(\S+)/) {
5531                         # Started ok .. connect and save SID
5532                         &close_http_connection($con);
5533                         my ($port, $sid, $version, $error) = ($1, $2, $3);
5534                         &open_socket($ip, $port, $sid, \$error);
5535                         return &$main::remote_error_handler("Failed to connect to fastrpc.cgi : $error")
5536                                 if ($error);
5537                         $fast_fh_cache{$sn} = $sid;
5538                         $remote_server_version{$sn} = $version;
5539                         }
5540                 else {
5541                         while($stuff = &read_http_connection($con)) {
5542                                 $line .= $stuff;
5543                                 }
5544                         return &$main::remote_error_handler("Bad response from fastrpc.cgi : $line");
5545                         }
5546                 }
5547         elsif (!$fast_fh_cache{$sn}) {
5548                 # Open the connection by running fastrpc.cgi locally
5549                 pipe(RPCOUTr, RPCOUTw);
5550                 if (!fork()) {
5551                         untie(*STDIN);
5552                         untie(*STDOUT);
5553                         open(STDOUT, ">&RPCOUTw");
5554                         close(STDIN);
5555                         close(RPCOUTr);
5556                         $| = 1;
5557                         $ENV{'REQUEST_METHOD'} = 'GET';
5558                         $ENV{'SCRIPT_NAME'} = '/fastrpc.cgi';
5559                         $ENV{'SERVER_ROOT'} ||= $root_directory;
5560                         my %acl;
5561                         if ($base_remote_user ne 'root' &&
5562                             $base_remote_user ne 'admin') {
5563                                 # Need to fake up a login for the CGI!
5564                                 &read_acl(undef, \%acl);
5565                                 $ENV{'BASE_REMOTE_USER'} =
5566                                         $ENV{'REMOTE_USER'} =
5567                                                 $acl{'root'} ? 'root' : 'admin';
5568                                 }
5569                         delete($ENV{'FOREIGN_MODULE_NAME'});
5570                         delete($ENV{'FOREIGN_ROOT_DIRECTORY'});
5571                         chdir($root_directory);
5572                         if (!exec("$root_directory/fastrpc.cgi")) {
5573                                 print "exec failed : $!\n";
5574                                 exit 1;
5575                                 }
5576                         }
5577                 close(RPCOUTw);
5578                 my $line;
5579                 do {
5580                         ($line = <RPCOUTr>) =~ tr/\r\n//d;
5581                         } while($line);
5582                 $line = <RPCOUTr>;
5583                 #close(RPCOUTr);
5584                 if ($line =~ /^0\s+(.*)/) {
5585                         return &$main::remote_error_handler("RPC error : $2");
5586                         }
5587                 elsif ($line =~ /^1\s+(\S+)\s+(\S+)/) {
5588                         # Started ok .. connect and save SID
5589                         close(SOCK);
5590                         my ($port, $sid, $error) = ($1, $2, undef);
5591                         &open_socket("localhost", $port, $sid, \$error);
5592                         return &$main::remote_error_handler("Failed to connect to fastrpc.cgi : $error") if ($error);
5593                         $fast_fh_cache{$sn} = $sid;
5594                         }
5595                 else {
5596                         local $_;
5597                         while(<RPCOUTr>) {
5598                                 $line .= $_;
5599                                 }
5600                         &error("Bad response from fastrpc.cgi : $line");
5601                         }
5602                 }
5603         # Got a connection .. send off the request
5604         my $fh = $fast_fh_cache{$sn};
5605         my $tostr = &serialise_variable($_[1]);
5606         print $fh length($tostr)," $fh\n";
5607         print $fh $tostr;
5608         my $rlen = int(<$fh>);
5609         my ($fromstr, $got);
5610         while(length($fromstr) < $rlen) {
5611                 return &$main::remote_error_handler("Failed to read from fastrpc.cgi")
5612                         if (read($fh, $got, $rlen - length($fromstr)) <= 0);
5613                 $fromstr .= $got;
5614                 }
5615         my $from = &unserialise_variable($fromstr);
5616         if (!$from) {
5617                 return &$main::remote_error_handler("Remote Webmin error");
5618                 }
5619         if (defined($from->{'arv'})) {
5620                 return @{$from->{'arv'}};
5621                 }
5622         else {
5623                 return $from->{'rv'};
5624                 }
5625         }
5626 else {
5627         # Call rpc.cgi on remote server
5628         my $tostr = &serialise_variable($_[1]);
5629         my $error = 0;
5630         my $con = &make_http_connection($ip, $serv->{'port'},
5631                                         $serv->{'ssl'}, "POST", "/rpc.cgi");
5632         return &$main::remote_error_handler("Failed to connect to $serv->{'host'} : $con") if (!ref($con));
5633
5634         &write_http_connection($con, "Host: $serv->{'host'}\r\n");
5635         &write_http_connection($con, "User-agent: Webmin\r\n");
5636         my $auth = &encode_base64("$user:$pass");
5637         $auth =~ tr/\n//d;
5638         &write_http_connection($con, "Authorization: basic $auth\r\n");
5639         &write_http_connection($con, "Content-length: ",length($tostr),"\r\n");
5640         &write_http_connection($con, "\r\n");
5641         &write_http_connection($con, $tostr);
5642
5643         # read back the response
5644         my $line = &read_http_connection($con);
5645         $line =~ tr/\r\n//d;
5646         if ($line =~ /^HTTP\/1\..\s+401\s+/) {
5647                 return &$main::remote_error_handler("Login to RPC server as $user rejected");
5648                 }
5649         $line =~ /^HTTP\/1\..\s+200\s+/ || return &$main::remote_error_handler("RPC HTTP error : $line");
5650         do {
5651                 $line = &read_http_connection($con);
5652                 $line =~ tr/\r\n//d;
5653                 } while($line);
5654         my $fromstr;
5655         while($line = &read_http_connection($con)) {
5656                 $fromstr .= $line;
5657                 }
5658         close(SOCK);
5659         my $from = &unserialise_variable($fromstr);
5660         return &$main::remote_error_handler("Invalid RPC login to $serv->{'host'}") if (!$from->{'status'});
5661         if (defined($from->{'arv'})) {
5662                 return @{$from->{'arv'}};
5663                 }
5664         else {
5665                 return $from->{'rv'};
5666                 }
5667         }
5668 }
5669
5670 =head2 remote_multi_callback(&servers, parallel, &function, arg|&args, &returns, &errors, [module, library])
5671
5672 Executes some function in parallel on multiple servers at once. Fills in
5673 the returns and errors arrays respectively. If the module and library
5674 parameters are given, that module is remotely required on the server first,
5675 to check if it is connectable. The parameters are :
5676
5677 =item servers - A list of Webmin system hash references.
5678
5679 =item parallel - Number of parallel operations to perform.
5680
5681 =item function - Reference to function to call for each system.
5682
5683 =item args - Additional parameters to the function.
5684
5685 =item returns - Array ref to place return values into, in same order as servers.
5686
5687 =item errors - Array ref to place error messages into.
5688
5689 =item module - Optional module to require on the remote system first.
5690
5691 =item library - Optional library to require in the module.
5692
5693 =cut
5694 sub remote_multi_callback
5695 {
5696 my ($servs, $parallel, $func, $args, $rets, $errs, $mod, $lib) = @_;
5697 &remote_error_setup(\&remote_multi_callback_error);
5698
5699 # Call the functions
5700 my $p = 0;
5701 foreach my $g (@$servs) {
5702         my $rh = "READ$p";
5703         my $wh = "WRITE$p";
5704         pipe($rh, $wh);
5705         if (!fork()) {
5706                 close($rh);
5707                 $remote_multi_callback_err = undef;
5708                 if ($mod) {
5709                         # Require the remote lib
5710                         &remote_foreign_require($g->{'host'}, $mod, $lib);
5711                         if ($remote_multi_callback_err) {
5712                                 # Failed .. return error
5713                                 print $wh &serialise_variable(
5714                                         [ undef, $remote_multi_callback_err ]);
5715                                 exit(0);
5716                                 }
5717                         }
5718
5719                 # Call the function
5720                 my $a = ref($args) ? $args->[$p] : $args;
5721                 my $rv = &$func($g, $a);
5722
5723                 # Return the result
5724                 print $wh &serialise_variable(
5725                         [ $rv, $remote_multi_callback_err ]);
5726                 close($wh);
5727                 exit(0);
5728                 }
5729         close($wh);
5730         $p++;
5731         }
5732
5733 # Read back the results
5734 $p = 0;
5735 foreach my $g (@$servs) {
5736         my $rh = "READ$p";
5737         my $line = <$rh>;
5738         if (!$line) {
5739                 $errs->[$p] = "Failed to read response from $g->{'host'}";
5740                 }
5741         else {
5742                 my $rv = &unserialise_variable($line);
5743                 close($rh);
5744                 $rets->[$p] = $rv->[0];
5745                 $errs->[$p] = $rv->[1];
5746                 }
5747         $p++;
5748         }
5749
5750 &remote_error_setup(undef);
5751 }
5752
5753 sub remote_multi_callback_error
5754 {
5755 $remote_multi_callback_err = $_[0];
5756 }
5757
5758 =head2 serialise_variable(variable)
5759
5760 Converts some variable (maybe a scalar, hash ref, array ref or scalar ref)
5761 into a url-encoded string. In the cases of arrays and hashes, it is recursively
5762 called on each member to serialize the entire object.
5763
5764 =cut
5765 sub serialise_variable
5766 {
5767 if (!defined($_[0])) {
5768         return 'UNDEF';
5769         }
5770 my $r = ref($_[0]);
5771 my $rv;
5772 if (!$r) {
5773         $rv = &urlize($_[0]);
5774         }
5775 elsif ($r eq 'SCALAR') {
5776         $rv = &urlize(${$_[0]});
5777         }
5778 elsif ($r eq 'ARRAY') {
5779         $rv = join(",", map { &urlize(&serialise_variable($_)) } @{$_[0]});
5780         }
5781 elsif ($r eq 'HASH') {
5782         $rv = join(",", map { &urlize(&serialise_variable($_)).",".
5783                               &urlize(&serialise_variable($_[0]->{$_})) }
5784                             keys %{$_[0]});
5785         }
5786 elsif ($r eq 'REF') {
5787         $rv = &serialise_variable(${$_[0]});
5788         }
5789 elsif ($r eq 'CODE') {
5790         # Code not handled
5791         $rv = undef;
5792         }
5793 elsif ($r) {
5794         # An object - treat as a hash
5795         $r = "OBJECT ".&urlize($r);
5796         $rv = join(",", map { &urlize(&serialise_variable($_)).",".
5797                               &urlize(&serialise_variable($_[0]->{$_})) }
5798                             keys %{$_[0]});
5799         }
5800 return ($r ? $r : 'VAL').",".$rv;
5801 }
5802
5803 =head2 unserialise_variable(string)
5804
5805 Converts a string created by serialise_variable() back into the original
5806 scalar, hash ref, array ref or scalar ref. If the original variable was a Perl
5807 object, the same class is used on this system, if available.
5808
5809 =cut
5810 sub unserialise_variable
5811 {
5812 my @v = split(/,/, $_[0]);
5813 my $rv;
5814 if ($v[0] eq 'VAL') {
5815         @v = split(/,/, $_[0], -1);
5816         $rv = &un_urlize($v[1]);
5817         }
5818 elsif ($v[0] eq 'SCALAR') {
5819         local $r = &un_urlize($v[1]);
5820         $rv = \$r;
5821         }
5822 elsif ($v[0] eq 'ARRAY') {
5823         $rv = [ ];
5824         for(my $i=1; $i<@v; $i++) {
5825                 push(@$rv, &unserialise_variable(&un_urlize($v[$i])));
5826                 }
5827         }
5828 elsif ($v[0] eq 'HASH') {
5829         $rv = { };
5830         for(my $i=1; $i<@v; $i+=2) {
5831                 $rv->{&unserialise_variable(&un_urlize($v[$i]))} =
5832                         &unserialise_variable(&un_urlize($v[$i+1]));
5833                 }
5834         }
5835 elsif ($v[0] eq 'REF') {
5836         local $r = &unserialise_variable($v[1]);
5837         $rv = \$r;
5838         }
5839 elsif ($v[0] eq 'UNDEF') {
5840         $rv = undef;
5841         }
5842 elsif ($v[0] =~ /^OBJECT\s+(.*)$/) {
5843         # An object hash that we have to re-bless
5844         my $cls = $1;
5845         $rv = { };
5846         for(my $i=1; $i<@v; $i+=2) {
5847                 $rv->{&unserialise_variable(&un_urlize($v[$i]))} =
5848                         &unserialise_variable(&un_urlize($v[$i+1]));
5849                 }
5850         eval "use $cls";
5851         bless $rv, $cls;
5852         }
5853 return $rv;
5854 }
5855
5856 =head2 other_groups(user)
5857
5858 Returns a list of secondary groups a user is a member of, as a list of
5859 group names.
5860
5861 =cut
5862 sub other_groups
5863 {
5864 my ($user) = @_;
5865 my @rv;
5866 setgrent();
5867 while(my @g = getgrent()) {
5868         my @m = split(/\s+/, $g[3]);
5869         push(@rv, $g[2]) if (&indexof($user, @m) >= 0);
5870         }
5871 endgrent() if ($gconfig{'os_type'} ne 'hpux');
5872 return @rv;
5873 }
5874
5875 =head2 date_chooser_button(dayfield, monthfield, yearfield)
5876
5877 Returns HTML for a button that pops up a data chooser window. The parameters
5878 are :
5879
5880 =item dayfield - Name of the text field to place the day of the month into.
5881
5882 =item monthfield - Name of the select field to select the month of the year in, indexed from 1.
5883
5884 =item yearfield - Name of the text field to place the year into.
5885
5886 =cut
5887 sub date_chooser_button
5888 {
5889 return &theme_date_chooser_button(@_)
5890         if (defined(&theme_date_chooser_button));
5891 my ($w, $h) = (250, 225);
5892 if ($gconfig{'db_sizedate'}) {
5893         ($w, $h) = split(/x/, $gconfig{'db_sizedate'});
5894         }
5895 return "<input type=button onClick='window.dfield = form.$_[0]; window.mfield = form.$_[1]; window.yfield = form.$_[2]; window.open(\"$gconfig{'webprefix'}/date_chooser.cgi?day=\"+escape(dfield.value)+\"&month=\"+escape(mfield.selectedIndex)+\"&year=\"+yfield.value, \"chooser\", \"toolbar=no,menubar=no,scrollbars=yes,width=$w,height=$h\")' value=\"...\">\n";
5896 }
5897
5898 =head2 help_file(module, file)
5899
5900 Returns the path to a module's help file of some name, typically under the
5901 help directory with a .html extension.
5902
5903 =cut
5904 sub help_file
5905 {
5906 my $mdir = &module_root_directory($_[0]);
5907 my $dir = "$mdir/help";
5908 foreach my $o (@lang_order_list) {
5909         my $lang = "$dir/$_[1].$o.html";
5910         return $lang if (-r $lang);
5911         }
5912 return "$dir/$_[1].html";
5913 }
5914
5915 =head2 seed_random
5916
5917 Seeds the random number generator, if not already done in this script. On Linux
5918 this makes use of the current time, process ID and a read from /dev/urandom.
5919 On other systems, only the current time and process ID are used.
5920
5921 =cut
5922 sub seed_random
5923 {
5924 if (!$main::done_seed_random) {
5925         if (open(RANDOM, "/dev/urandom")) {
5926                 my $buf;
5927                 read(RANDOM, $buf, 4);
5928                 close(RANDOM);
5929                 srand(time() ^ $$ ^ $buf);
5930                 }
5931         else {
5932                 srand(time() ^ $$);
5933                 }
5934         $main::done_seed_random = 1;
5935         }
5936 }
5937
5938 =head2 disk_usage_kb(directory)
5939
5940 Returns the number of kB used by some directory and all subdirs. Implemented
5941 by calling the C<du -k> command.
5942
5943 =cut
5944 sub disk_usage_kb
5945 {
5946 my $dir = &translate_filename($_[0]);
5947 my $out;
5948 my $ex = &execute_command("du -sk ".quotemeta($dir), undef, \$out, undef, 0, 1);
5949 if ($ex) {
5950         &execute_command("du -s ".quotemeta($dir), undef, \$out, undef, 0, 1);
5951         }
5952 return $out =~ /^([0-9]+)/ ? $1 : "???";
5953 }
5954
5955 =head2 recursive_disk_usage(directory, [skip-regexp], [only-regexp])
5956
5957 Returns the number of bytes taken up by all files in some directory and all
5958 sub-directories, by summing up their lengths. The disk_usage_kb is more
5959 reflective of reality, as the filesystem typically pads file sizes to 1k or
5960 4k blocks.
5961
5962 =cut
5963 sub recursive_disk_usage
5964 {
5965 my $dir = &translate_filename($_[0]);
5966 my $skip = $_[1];
5967 my $only = $_[2];
5968 if (-l $dir) {
5969         return 0;
5970         }
5971 elsif (!-d $dir) {
5972         my @st = stat($dir);
5973         return $st[7];
5974         }
5975 else {
5976         my $rv = 0;
5977         opendir(DIR, $dir);
5978         my @files = readdir(DIR);
5979         closedir(DIR);
5980         foreach my $f (@files) {
5981                 next if ($f eq "." || $f eq "..");
5982                 next if ($skip && $f =~ /$skip/);
5983                 next if ($only && $f !~ /$only/);
5984                 $rv += &recursive_disk_usage("$dir/$f", $skip, $only);
5985                 }
5986         return $rv;
5987         }
5988 }
5989
5990 =head2 help_search_link(term, [ section, ... ] )
5991
5992 Returns HTML for a link to the man module for searching local and online
5993 docs for various search terms. The term parameter can either be a single
5994 word like 'bind', or a space-separated list of words. This function is typically
5995 used by modules that want to refer users to additional documentation in man
5996 pages or local system doc files.
5997
5998 =cut
5999 sub help_search_link
6000 {
6001 if (&foreign_available("man") && !$tconfig{'nosearch'}) {
6002         my $for = &urlize(shift(@_));
6003         return "<a href='$gconfig{'webprefix'}/man/search.cgi?".
6004                join("&", map { "section=$_" } @_)."&".
6005                "for=$for&exact=1&check=".&get_module_name()."'>".
6006                $text{'helpsearch'}."</a>\n";
6007         }
6008 else {
6009         return "";
6010         }
6011 }
6012
6013 =head2 make_http_connection(host, port, ssl, method, page, [&headers])
6014
6015 Opens a connection to some HTTP server, maybe through a proxy, and returns
6016 a handle object. The handle can then be used to send additional headers
6017 and read back a response. If anything goes wrong, returns an error string.
6018 The parameters are :
6019
6020 =item host - Hostname or IP address of the webserver to connect to.
6021
6022 =item port - HTTP port number to connect to.
6023
6024 =item ssl - Set to 1 to connect in SSL mode.
6025
6026 =item method - HTTP method, like GET or POST.
6027
6028 =item page - Page to request on the webserver, like /foo/index.html
6029
6030 =item headers - Array ref of additional HTTP headers, each of which is a 2-element array ref.
6031
6032 =cut
6033 sub make_http_connection
6034 {
6035 my ($host, $port, $ssl, $method, $page, $headers) = @_;
6036 my $htxt;
6037 if ($headers) {
6038         foreach my $h (@$headers) {
6039                 $htxt .= $h->[0].": ".$h->[1]."\r\n";
6040                 }
6041         $htxt .= "\r\n";
6042         }
6043 if (&is_readonly_mode()) {
6044         return "HTTP connections not allowed in readonly mode";
6045         }
6046 my $rv = { 'fh' => time().$$ };
6047 if ($ssl) {
6048         # Connect using SSL
6049         eval "use Net::SSLeay";
6050         $@ && return $text{'link_essl'};
6051         eval "Net::SSLeay::SSLeay_add_ssl_algorithms()";
6052         eval "Net::SSLeay::load_error_strings()";
6053         $rv->{'ssl_ctx'} = Net::SSLeay::CTX_new() ||
6054                 return "Failed to create SSL context";
6055         $rv->{'ssl_con'} = Net::SSLeay::new($rv->{'ssl_ctx'}) ||
6056                 return "Failed to create SSL connection";
6057         my $connected;
6058         if ($gconfig{'http_proxy'} =~ /^http:\/\/(\S+):(\d+)/ &&
6059             !&no_proxy($host)) {
6060                 # Via proxy
6061                 my $error;
6062                 &open_socket($1, $2, $rv->{'fh'}, \$error);
6063                 if (!$error) {
6064                         # Connected OK
6065                         my $fh = $rv->{'fh'};
6066                         print $fh "CONNECT $host:$port HTTP/1.0\r\n";
6067                         if ($gconfig{'proxy_user'}) {
6068                                 my $auth = &encode_base64(
6069                                    "$gconfig{'proxy_user'}:".
6070                                    "$gconfig{'proxy_pass'}");
6071                                 $auth =~ tr/\r\n//d;
6072                                 print $fh "Proxy-Authorization: Basic $auth\r\n";
6073                                 }
6074                         print $fh "\r\n";
6075                         my $line = <$fh>;
6076                         if ($line =~ /^HTTP(\S+)\s+(\d+)\s+(.*)/) {
6077                                 return "Proxy error : $3" if ($2 != 200);
6078                                 }
6079                         else {
6080                                 return "Proxy error : $line";
6081                                 }
6082                         $line = <$fh>;
6083                         $connected = 1;
6084                         }
6085                 elsif (!$gconfig{'proxy_fallback'}) {
6086                         # Connection to proxy failed - give up
6087                         return $error;
6088                         }
6089                 }
6090         if (!$connected) {
6091                 # Direct connection
6092                 my $error;
6093                 &open_socket($host, $port, $rv->{'fh'}, \$error);
6094                 return $error if ($error);
6095                 }
6096         Net::SSLeay::set_fd($rv->{'ssl_con'}, fileno($rv->{'fh'}));
6097         Net::SSLeay::connect($rv->{'ssl_con'}) ||
6098                 return "SSL connect() failed";
6099         my $rtxt = "$method $page HTTP/1.0\r\n".$htxt;
6100         Net::SSLeay::write($rv->{'ssl_con'}, $rtxt);
6101         }
6102 else {
6103         # Plain HTTP request
6104         my $connected;
6105         if ($gconfig{'http_proxy'} =~ /^http:\/\/(\S+):(\d+)/ &&
6106             !&no_proxy($host)) {
6107                 # Via a proxy
6108                 my $error;
6109                 &open_socket($1, $2, $rv->{'fh'}, \$error);
6110                 if (!$error) {
6111                         # Connected OK
6112                         $connected = 1;
6113                         my $fh = $rv->{'fh'};
6114                         my $rtxt = $method." ".
6115                                    "http://$host:$port$page HTTP/1.0\r\n";
6116                         if ($gconfig{'proxy_user'}) {
6117                                 my $auth = &encode_base64(
6118                                    "$gconfig{'proxy_user'}:".
6119                                    "$gconfig{'proxy_pass'}");
6120                                 $auth =~ tr/\r\n//d;
6121                                 $rtxt .= "Proxy-Authorization: Basic $auth\r\n";
6122                                 }
6123                         $rtxt .= $htxt;
6124                         print $fh $rtxt;
6125                         }
6126                 elsif (!$gconfig{'proxy_fallback'}) {
6127                         return $error;
6128                         }
6129                 }
6130         if (!$connected) {
6131                 # Connecting directly
6132                 my $error;
6133                 &open_socket($host, $port, $rv->{'fh'}, \$error);
6134                 return $error if ($error);
6135                 my $fh = $rv->{'fh'};
6136                 my $rtxt = "$method $page HTTP/1.0\r\n".$htxt;
6137                 print $fh $rtxt;
6138                 }
6139         }
6140 return $rv;
6141 }
6142
6143 =head2 read_http_connection(&handle, [bytes])
6144
6145 Reads either one line or up to the specified number of bytes from the handle,
6146 originally supplied by make_http_connection. 
6147
6148 =cut
6149 sub read_http_connection
6150 {
6151 my ($h) = @_;
6152 my $rv;
6153 if ($h->{'ssl_con'}) {
6154         if (!$_[1]) {
6155                 my ($idx, $more);
6156                 while(($idx = index($h->{'buffer'}, "\n")) < 0) {
6157                         # need to read more..
6158                         if (!($more = Net::SSLeay::read($h->{'ssl_con'}))) {
6159                                 # end of the data
6160                                 $rv = $h->{'buffer'};
6161                                 delete($h->{'buffer'});
6162                                 return $rv;
6163                                 }
6164                         $h->{'buffer'} .= $more;
6165                         }
6166                 $rv = substr($h->{'buffer'}, 0, $idx+1);
6167                 $h->{'buffer'} = substr($h->{'buffer'}, $idx+1);
6168                 }
6169         else {
6170                 if (length($h->{'buffer'})) {
6171                         $rv = $h->{'buffer'};
6172                         delete($h->{'buffer'});
6173                         }
6174                 else {
6175                         $rv = Net::SSLeay::read($h->{'ssl_con'}, $_[1]);
6176                         }
6177                 }
6178         }
6179 else {
6180         if ($_[1]) {
6181                 read($h->{'fh'}, $rv, $_[1]) > 0 || return undef;
6182                 }
6183         else {
6184                 my $fh = $h->{'fh'};
6185                 $rv = <$fh>;
6186                 }
6187         }
6188 $rv = undef if ($rv eq "");
6189 return $rv;
6190 }
6191
6192 =head2 write_http_connection(&handle, [data+])
6193
6194 Writes the given data to the given HTTP connection handle.
6195
6196 =cut
6197 sub write_http_connection
6198 {
6199 my $h = shift(@_);
6200 my $fh = $h->{'fh'};
6201 my $allok = 1;
6202 if ($h->{'ssl_ctx'}) {
6203         foreach my $s (@_) {
6204                 my $ok = Net::SSLeay::write($h->{'ssl_con'}, $s);
6205                 $allok = 0 if (!$ok);
6206                 }
6207         }
6208 else {
6209         my $ok = (print $fh @_);
6210         $allok = 0 if (!$ok);
6211         }
6212 return $allok;
6213 }
6214
6215 =head2 close_http_connection(&handle)
6216
6217 Closes a connection to an HTTP server, identified by the given handle.
6218
6219 =cut
6220 sub close_http_connection
6221 {
6222 my ($h) = @_;
6223 close($h->{'fh'});
6224 }
6225
6226 =head2 clean_environment
6227
6228 Deletes any environment variables inherited from miniserv so that they
6229 won't be passed to programs started by webmin. This is useful when calling
6230 programs that check for CGI-related environment variables and modify their
6231 behaviour, and to avoid passing sensitive variables to un-trusted programs.
6232
6233 =cut
6234 sub clean_environment
6235 {
6236 %UNCLEAN_ENV = %ENV;
6237 foreach my $k (keys %ENV) {
6238         if ($k =~ /^(HTTP|VIRTUALSERVER|QUOTA|USERADMIN)_/) {
6239                 delete($ENV{$k});
6240                 }
6241         }
6242 foreach my $e ('WEBMIN_CONFIG', 'SERVER_NAME', 'CONTENT_TYPE', 'REQUEST_URI',
6243             'PATH_INFO', 'WEBMIN_VAR', 'REQUEST_METHOD', 'GATEWAY_INTERFACE',
6244             'QUERY_STRING', 'REMOTE_USER', 'SERVER_SOFTWARE', 'SERVER_PROTOCOL',
6245             'REMOTE_HOST', 'SERVER_PORT', 'DOCUMENT_ROOT', 'SERVER_ROOT',
6246             'MINISERV_CONFIG', 'SCRIPT_NAME', 'SERVER_ADMIN', 'CONTENT_LENGTH',
6247             'HTTPS', 'FOREIGN_MODULE_NAME', 'FOREIGN_ROOT_DIRECTORY',
6248             'SCRIPT_FILENAME', 'PATH_TRANSLATED', 'BASE_REMOTE_USER',
6249             'DOCUMENT_REALROOT', 'MINISERV_CONFIG', 'MYSQL_PWD') {
6250         delete($ENV{$e});
6251         }
6252 }
6253
6254 =head2 reset_environment
6255
6256 Puts the environment back how it was before clean_environment was callled.
6257
6258 =cut
6259 sub reset_environment
6260 {
6261 if (%UNCLEAN_ENV) {
6262         foreach my $k (keys %UNCLEAN_ENV) {
6263                 $ENV{$k} = $UNCLEAN_ENV{$k};
6264                 }
6265         undef(%UNCLEAN_ENV);
6266         }
6267 }
6268
6269 =head2 progress_callback
6270
6271 Never called directly, but useful for passing to &http_download to print
6272 out progress of an HTTP request.
6273
6274 =cut
6275 sub progress_callback
6276 {
6277 if (defined(&theme_progress_callback)) {
6278         # Call the theme override
6279         return &theme_progress_callback(@_);
6280         }
6281 if ($_[0] == 2) {
6282         # Got size
6283         print $progress_callback_prefix;
6284         if ($_[1]) {
6285                 $progress_size = $_[1];
6286                 $progress_step = int($_[1] / 10);
6287                 print &text('progress_size2', $progress_callback_url,
6288                             &nice_size($progress_size)),"<br>\n";
6289                 }
6290         else {
6291                 print &text('progress_nosize', $progress_callback_url),"<br>\n";
6292                 }
6293         $last_progress_time = $last_progress_size = undef;
6294         }
6295 elsif ($_[0] == 3) {
6296         # Got data update
6297         my $sp = $progress_callback_prefix.("&nbsp;" x 5);
6298         if ($progress_size) {
6299                 # And we have a size to compare against
6300                 my $st = int(($_[1] * 10) / $progress_size);
6301                 my $time_now = time();
6302                 if ($st != $progress_step ||
6303                     $time_now - $last_progress_time > 60) {
6304                         # Show progress every 10% or 60 seconds
6305                         print $sp,&text('progress_datan', &nice_size($_[1]),
6306                                         int($_[1]*100/$progress_size)),"<br>\n";
6307                         $last_progress_time = $time_now;
6308                         }
6309                 $progress_step = $st;
6310                 }
6311         else {
6312                 # No total size .. so only show in 100k jumps
6313                 if ($_[1] > $last_progress_size+100*1024) {
6314                         print $sp,&text('progress_data2n',
6315                                         &nice_size($_[1])),"<br>\n";
6316                         $last_progress_size = $_[1];
6317                         }
6318                 }
6319         }
6320 elsif ($_[0] == 4) {
6321         # All done downloading
6322         print $progress_callback_prefix,&text('progress_done'),"<br>\n";
6323         }
6324 elsif ($_[0] == 5) {
6325         # Got new location after redirect
6326         $progress_callback_url = $_[1];
6327         }
6328 elsif ($_[0] == 6) {
6329         # URL is in cache
6330         $progress_callback_url = $_[1];
6331         print &text('progress_incache', $progress_callback_url),"<br>\n";
6332         }
6333 }
6334
6335 =head2 switch_to_remote_user
6336
6337 Changes the user and group of the current process to that of the unix user
6338 with the same name as the current webmin login, or fails if there is none.
6339 This should be called by Usermin module scripts that only need to run with
6340 limited permissions.
6341
6342 =cut
6343 sub switch_to_remote_user
6344 {
6345 @remote_user_info = $remote_user ? getpwnam($remote_user) :
6346                                    getpwuid($<);
6347 @remote_user_info || &error(&text('switch_remote_euser', $remote_user));
6348 &create_missing_homedir(\@remote_user_info);
6349 if ($< == 0) {
6350         &switch_to_unix_user(\@remote_user_info);
6351         $ENV{'USER'} = $ENV{'LOGNAME'} = $remote_user;
6352         $ENV{'HOME'} = $remote_user_info[7];
6353         }
6354 # Export global variables to caller
6355 if ($main::export_to_caller) {
6356         my ($callpkg) = caller();
6357         eval "\@${callpkg}::remote_user_info = \@remote_user_info";
6358         }
6359 }
6360
6361 =head2 switch_to_unix_user(&user-details)
6362
6363 Switches the current process to the UID and group ID from the given list
6364 of user details, which must be in the format returned by getpwnam.
6365
6366 =cut
6367 sub switch_to_unix_user
6368 {
6369 my ($uinfo) = @_;
6370 if (!defined($uinfo->[0])) {
6371         # No username given, so just use given GID
6372         ($(, $)) = ( $uinfo->[3], "$uinfo->[3] $uinfo->[3]" );
6373         }
6374 else {
6375         # Use all groups from user
6376         ($(, $)) = ( $uinfo->[3],
6377                      "$uinfo->[3] ".join(" ", $uinfo->[3],
6378                                          &other_groups($uinfo->[0])) );
6379         }
6380 eval {
6381         POSIX::setuid($uinfo->[2]);
6382         };
6383 if ($< != $uinfo->[2] || $> != $uinfo->[2]) {
6384         ($>, $<) = ( $uinfo->[2], $uinfo->[2] );
6385         }
6386 }
6387
6388 =head2 eval_as_unix_user(username, &code)
6389
6390 Runs some code fragment with the effective UID and GID switch to that
6391 of the given Unix user, so that file IO takes place with his permissions.
6392
6393 =cut
6394
6395 sub eval_as_unix_user
6396 {
6397 my ($user, $code) = @_;
6398 my @uinfo = getpwnam($user);
6399 if (!scalar(@uinfo)) {
6400         &error("eval_as_unix_user called with invalid user $user");
6401         }
6402 $) = $uinfo[3]." ".join(" ", $uinfo[3], &other_groups($user));
6403 $> = $uinfo[2];
6404 my @rv;
6405 eval {
6406         local $main::error_must_die = 1;
6407         @rv = &$code();
6408         };
6409 my $err = $@;
6410 $) = 0;
6411 $> = 0;
6412 if ($err) {
6413         $err =~ s/\s+at\s+(\/\S+)\s+line\s+(\d+)\.?//;
6414         &error($err);
6415         }
6416 return wantarray ? @rv : $rv[0];
6417 }
6418
6419 =head2 create_user_config_dirs
6420
6421 Creates per-user config directories and sets $user_config_directory and
6422 $user_module_config_directory to them. Also reads per-user module configs
6423 into %userconfig. This should be called by Usermin module scripts that need
6424 to store per-user preferences or other settings.
6425
6426 =cut
6427 sub create_user_config_dirs
6428 {
6429 return if (!$gconfig{'userconfig'});
6430 my @uinfo = @remote_user_info ? @remote_user_info : getpwnam($remote_user);
6431 return if (!@uinfo || !$uinfo[7]);
6432 &create_missing_homedir(\@uinfo);
6433 $user_config_directory = "$uinfo[7]/$gconfig{'userconfig'}";
6434 if (!-d $user_config_directory) {
6435         mkdir($user_config_directory, 0700) ||
6436                 &error("Failed to create $user_config_directory : $!");
6437         if ($< == 0 && $uinfo[2]) {
6438                 chown($uinfo[2], $uinfo[3], $user_config_directory);
6439                 }
6440         }
6441 if (&get_module_name()) {
6442         $user_module_config_directory = $user_config_directory."/".
6443                                         &get_module_name();
6444         if (!-d $user_module_config_directory) {
6445                 mkdir($user_module_config_directory, 0700) ||
6446                         &error("Failed to create $user_module_config_directory : $!");
6447                 if ($< == 0 && $uinfo[2]) {
6448                         chown($uinfo[2], $uinfo[3], $user_config_directory);
6449                         }
6450                 }
6451         undef(%userconfig);
6452         &read_file_cached("$module_root_directory/defaultuconfig",
6453                           \%userconfig);
6454         &read_file_cached("$module_config_directory/uconfig", \%userconfig);
6455         &read_file_cached("$user_module_config_directory/config",
6456                           \%userconfig);
6457         }
6458
6459 # Export global variables to caller
6460 if ($main::export_to_caller) {
6461         my ($callpkg) = caller();
6462         foreach my $v ('$user_config_directory',
6463                        '$user_module_config_directory', '%userconfig') {
6464                 my ($vt, $vn) = split('', $v, 2);
6465                 eval "${vt}${callpkg}::${vn} = ${vt}${vn}";
6466                 }
6467         }
6468 }
6469
6470 =head2 create_missing_homedir(&uinfo)
6471
6472 If auto homedir creation is enabled, create one for this user if needed.
6473 For internal use only.
6474
6475 =cut
6476 sub create_missing_homedir
6477 {
6478 my ($uinfo) = @_;
6479 if (!-e $uinfo->[7] && $gconfig{'create_homedir'}) {
6480         # Use has no home dir .. make one
6481         system("mkdir -p ".quotemeta($uinfo->[7]));
6482         chown($uinfo->[2], $uinfo->[3], $uinfo->[7]);
6483         if ($gconfig{'create_homedir_perms'} ne '') {
6484                 chmod(oct($gconfig{'create_homedir_perms'}), $uinfo->[7]);
6485                 }
6486         }
6487 }
6488
6489 =head2 filter_javascript(text)
6490
6491 Disables all javascript <script>, onClick= and so on tags in the given HTML,
6492 and returns the new HTML. Useful for displaying HTML from an un-trusted source.
6493
6494 =cut
6495 sub filter_javascript
6496 {
6497 my ($rv) = @_;
6498 $rv =~ s/<\s*script[^>]*>([\000-\377]*?)<\s*\/script\s*>//gi;
6499 $rv =~ s/(on(Abort|Blur|Change|Click|DblClick|DragDrop|Error|Focus|KeyDown|KeyPress|KeyUp|Load|MouseDown|MouseMove|MouseOut|MouseOver|MouseUp|Move|Reset|Resize|Select|Submit|Unload)=)/x$1/gi;
6500 $rv =~ s/(javascript:)/x$1/gi;
6501 $rv =~ s/(vbscript:)/x$1/gi;
6502 return $rv;
6503 }
6504
6505 =head2 resolve_links(path)
6506
6507 Given a path that may contain symbolic links, returns the real path.
6508
6509 =cut
6510 sub resolve_links
6511 {
6512 my ($path) = @_;
6513 $path =~ s/\/+/\//g;
6514 $path =~ s/\/$// if ($path ne "/");
6515 my @p = split(/\/+/, $path);
6516 shift(@p);
6517 for(my $i=0; $i<@p; $i++) {
6518         my $sofar = "/".join("/", @p[0..$i]);
6519         my $lnk = readlink($sofar);
6520         if ($lnk eq $sofar) {
6521                 # Link to itself! Cannot do anything more really ..
6522                 last;
6523                 }
6524         elsif ($lnk =~ /^\//) {
6525                 # Link is absolute..
6526                 return &resolve_links($lnk."/".join("/", @p[$i+1 .. $#p]));
6527                 }
6528         elsif ($lnk) {
6529                 # Link is relative
6530                 return &resolve_links("/".join("/", @p[0..$i-1])."/".$lnk."/".join("/", @p[$i+1 .. $#p]));
6531                 }
6532         }
6533 return $path;
6534 }
6535
6536 =head2 simplify_path(path, bogus)
6537
6538 Given a path, maybe containing elements ".." and "." , convert it to a
6539 clean, absolute form. Returns undef if this is not possible.
6540
6541 =cut
6542 sub simplify_path
6543 {
6544 my ($dir) = @_;
6545 $dir =~ s/^\/+//g;
6546 $dir =~ s/\/+$//g;
6547 my @bits = split(/\/+/, $dir);
6548 my @fixedbits = ();
6549 $_[1] = 0;
6550 foreach my $b (@bits) {
6551         if ($b eq ".") {
6552                 # Do nothing..
6553                 }
6554         elsif ($b eq "..") {
6555                 # Remove last dir
6556                 if (scalar(@fixedbits) == 0) {
6557                         # Cannot! Already at root!
6558                         return undef;
6559                         }
6560                 pop(@fixedbits);
6561                 }
6562         else {
6563                 # Add dir to list
6564                 push(@fixedbits, $b);
6565                 }
6566         }
6567 return "/".join('/', @fixedbits);
6568 }
6569
6570 =head2 same_file(file1, file2)
6571
6572 Returns 1 if two files are actually the same
6573
6574 =cut
6575 sub same_file
6576 {
6577 return 1 if ($_[0] eq $_[1]);
6578 return 0 if ($_[0] !~ /^\// || $_[1] !~ /^\//);
6579 my @stat1 = $stat_cache{$_[0]} ? @{$stat_cache{$_[0]}}
6580                                : (@{$stat_cache{$_[0]}} = stat($_[0]));
6581 my @stat2 = $stat_cache{$_[1]} ? @{$stat_cache{$_[1]}}
6582                                : (@{$stat_cache{$_[1]}} = stat($_[1]));
6583 return 0 if (!@stat1 || !@stat2);
6584 return $stat1[0] == $stat2[0] && $stat1[1] == $stat2[1];
6585 }
6586
6587 =head2 flush_webmin_caches
6588
6589 Clears all in-memory and on-disk caches used by Webmin.
6590
6591 =cut
6592 sub flush_webmin_caches
6593 {
6594 undef(%main::read_file_cache);
6595 undef(%main::acl_hash_cache);
6596 undef(%main::acl_array_cache);
6597 undef(%main::has_command_cache);
6598 undef(@main::list_languages_cache);
6599 undef($main::got_list_usermods_cache);
6600 undef(@main::list_usermods_cache);
6601 undef(%main::foreign_installed_cache);
6602 unlink("$config_directory/module.infos.cache");
6603 &get_all_module_infos();
6604 }
6605
6606 =head2 list_usermods
6607
6608 Returns a list of additional module restrictions. For internal use in
6609 Usermin only.
6610
6611 =cut
6612 sub list_usermods
6613 {
6614 if (!$main::got_list_usermods_cache) {
6615         @main::list_usermods_cache = ( );
6616         local $_;
6617         open(USERMODS, "$config_directory/usermin.mods");
6618         while(<USERMODS>) {
6619                 if (/^([^:]+):(\+|-|):(.*)/) {
6620                         push(@main::list_usermods_cache,
6621                              [ $1, $2, [ split(/\s+/, $3) ] ]);
6622                         }
6623                 }
6624         close(USERMODS);
6625         $main::got_list_usermods_cache = 1;
6626         }
6627 return @main::list_usermods_cache;
6628 }
6629
6630 =head2 available_usermods(&allmods, &usermods)
6631
6632 Returns a list of modules that are available to the given user, based
6633 on usermod additional/subtractions. For internal use by Usermin only.
6634
6635 =cut
6636 sub available_usermods
6637 {
6638 return @{$_[0]} if (!@{$_[1]});
6639
6640 my %mods = map { $_->{'dir'}, 1 } @{$_[0]};
6641 my @uinfo = @remote_user_info;
6642 @uinfo = getpwnam($remote_user) if (!@uinfo);
6643 foreach my $u (@{$_[1]}) {
6644         my $applies;
6645         if ($u->[0] eq "*" || $u->[0] eq $remote_user) {
6646                 $applies++;
6647                 }
6648         elsif ($u->[0] =~ /^\@(.*)$/) {
6649                 # Check for group membership
6650                 my @ginfo = getgrnam($1);
6651                 $applies++ if (@ginfo && ($ginfo[2] == $uinfo[3] ||
6652                         &indexof($remote_user, split(/\s+/, $ginfo[3])) >= 0));
6653                 }
6654         elsif ($u->[0] =~ /^\//) {
6655                 # Check users and groups in file
6656                 local $_;
6657                 open(USERFILE, $u->[0]);
6658                 while(<USERFILE>) {
6659                         tr/\r\n//d;
6660                         if ($_ eq $remote_user) {
6661                                 $applies++;
6662                                 }
6663                         elsif (/^\@(.*)$/) {
6664                                 my @ginfo = getgrnam($1);
6665                                 $applies++
6666                                   if (@ginfo && ($ginfo[2] == $uinfo[3] ||
6667                                       &indexof($remote_user,
6668                                                split(/\s+/, $ginfo[3])) >= 0));
6669                                 }
6670                         last if ($applies);
6671                         }
6672                 close(USERFILE);
6673                 }
6674         if ($applies) {
6675                 if ($u->[1] eq "+") {
6676                         map { $mods{$_}++ } @{$u->[2]};
6677                         }
6678                 elsif ($u->[1] eq "-") {
6679                         map { delete($mods{$_}) } @{$u->[2]};
6680                         }
6681                 else {
6682                         undef(%mods);
6683                         map { $mods{$_}++ } @{$u->[2]};
6684                         }
6685                 }
6686         }
6687 return grep { $mods{$_->{'dir'}} } @{$_[0]};
6688 }
6689
6690 =head2 get_available_module_infos(nocache)
6691
6692 Returns a list of modules available to the current user, based on
6693 operating system support, access control and usermod restrictions. Useful
6694 in themes that need to display a list of modules the user can use.
6695 Each element of the returned array is a hash reference in the same format as
6696 returned by get_module_info.
6697
6698 =cut
6699 sub get_available_module_infos
6700 {
6701 my (%acl, %uacl);
6702 &read_acl(\%acl, \%uacl);
6703 my $risk = $gconfig{'risk_'.$base_remote_user};
6704 my @rv;
6705 foreach my $minfo (&get_all_module_infos($_[0])) {
6706         next if (!&check_os_support($minfo));
6707         if ($risk) {
6708                 # Check module risk level
6709                 next if ($risk ne 'high' && $minfo->{'risk'} &&
6710                          $minfo->{'risk'} !~ /$risk/);
6711                 }
6712         else {
6713                 # Check user's ACL
6714                 next if (!$acl{$base_remote_user,$minfo->{'dir'}} &&
6715                          !$acl{$base_remote_user,"*"});
6716                 }
6717         next if (&is_readonly_mode() && !$minfo->{'readonly'});
6718         push(@rv, $minfo);
6719         }
6720
6721 # Check usermod restrictions
6722 my @usermods = &list_usermods();
6723 @rv = sort { $a->{'desc'} cmp $b->{'desc'} }
6724             &available_usermods(\@rv, \@usermods);
6725
6726 # Check RBAC restrictions
6727 my @rbacrv;
6728 foreach my $m (@rv) {
6729         if (&supports_rbac($m->{'dir'}) &&
6730             &use_rbac_module_acl(undef, $m->{'dir'})) {
6731                 local $rbacs = &get_rbac_module_acl($remote_user,
6732                                                     $m->{'dir'});
6733                 if ($rbacs) {
6734                         # RBAC allows
6735                         push(@rbacrv, $m);
6736                         }
6737                 }
6738         else {
6739                 # Module or system doesn't support RBAC
6740                 push(@rbacrv, $m) if (!$gconfig{'rbacdeny_'.$base_remote_user});
6741                 }
6742         }
6743
6744 # Check theme vetos
6745 my @themerv;
6746 if (defined(&theme_foreign_available)) {
6747         foreach my $m (@rbacrv) {
6748                 if (&theme_foreign_available($m->{'dir'})) {
6749                         push(@themerv, $m);
6750                         }
6751                 }
6752         }
6753 else {
6754         @themerv = @rbacrv;
6755         }
6756
6757 # Check licence module vetos
6758 my @licrv;
6759 if ($main::licence_module) {
6760         foreach my $m (@themerv) {
6761                 if (&foreign_call($main::licence_module,
6762                                   "check_module_licence", $m->{'dir'})) {       
6763                         push(@licrv, $m);
6764                         }
6765                 }
6766         }
6767 else {  
6768         @licrv = @themerv;
6769         }
6770
6771 return @licrv;
6772 }
6773
6774 =head2 get_visible_module_infos(nocache)
6775
6776 Like get_available_module_infos, but excludes hidden modules from the list.
6777 Each element of the returned array is a hash reference in the same format as
6778 returned by get_module_info.
6779
6780 =cut
6781 sub get_visible_module_infos
6782 {
6783 my ($nocache) = @_;
6784 my $pn = &get_product_name();
6785 return grep { !$_->{'hidden'} &&
6786               !$_->{$pn.'_hidden'} } &get_available_module_infos($nocache);
6787 }
6788
6789 =head2 get_visible_modules_categories(nocache)
6790
6791 Returns a list of Webmin module categories, each of which is a hash ref
6792 with 'code', 'desc' and 'modules' keys. The modules value is an array ref
6793 of modules in the category, in the format returned by get_module_info.
6794 Un-used modules are automatically assigned to the 'unused' category, and
6795 those with no category are put into 'others'.
6796
6797 =cut
6798 sub get_visible_modules_categories
6799 {
6800 my ($nocache) = @_;
6801 my @mods = &get_visible_module_infos($nocache);
6802 my @unmods;
6803 if (&get_product_name() eq 'webmin') {
6804         @unmods = grep { $_->{'installed'} eq '0' } @mods;
6805         @mods = grep { $_->{'installed'} ne '0' } @mods;
6806         }
6807 my %cats = &list_categories(\@mods);
6808 my @rv;
6809 foreach my $c (keys %cats) {
6810         my $cat = { 'code' => $c || 'other',
6811                     'desc' => $cats{$c} };
6812         $cat->{'modules'} = [ grep { $_->{'category'} eq $c } @mods ];
6813         push(@rv, $cat);
6814         }
6815 @rv = sort { ($b->{'code'} eq "others" ? "" : $b->{'code'}) cmp
6816              ($a->{'code'} eq "others" ? "" : $a->{'code'}) } @rv;
6817 if (@unmods) {
6818         # Add un-installed modules in magic category
6819         my $cat = { 'code' => 'unused',
6820                     'desc' => $text{'main_unused'},
6821                     'unused' => 1,
6822                     'modules' => \@unmods };
6823         push(@rv, $cat);
6824         }
6825 return @rv;
6826 }
6827
6828 =head2 is_under_directory(directory, file)
6829
6830 Returns 1 if the given file is under the specified directory, 0 if not.
6831 Symlinks are taken into account in the file to find it's 'real' location.
6832
6833 =cut
6834 sub is_under_directory
6835 {
6836 my ($dir, $file) = @_;
6837 return 1 if ($dir eq "/");
6838 return 0 if ($file =~ /\.\./);
6839 my $ld = &resolve_links($dir);
6840 if ($ld ne $dir) {
6841         return &is_under_directory($ld, $file);
6842         }
6843 my $lp = &resolve_links($file);
6844 if ($lp ne $file) {
6845         return &is_under_directory($dir, $lp);
6846         }
6847 return 0 if (length($file) < length($dir));
6848 return 1 if ($dir eq $file);
6849 $dir =~ s/\/*$/\//;
6850 return substr($file, 0, length($dir)) eq $dir;
6851 }
6852
6853 =head2 parse_http_url(url, [basehost, baseport, basepage, basessl])
6854
6855 Given an absolute URL, returns the host, port, page and ssl flag components.
6856 Relative URLs can also be parsed, if the base information is provided.
6857
6858 =cut
6859 sub parse_http_url
6860 {
6861 if ($_[0] =~ /^(http|https):\/\/([^:\/]+)(:(\d+))?(\/\S*)?$/) {
6862         # An absolute URL
6863         my $ssl = $1 eq 'https';
6864         return ($2, $3 ? $4 : $ssl ? 443 : 80, $5 || "/", $ssl);
6865         }
6866 elsif (!$_[1]) {
6867         # Could not parse
6868         return undef;
6869         }
6870 elsif ($_[0] =~ /^\/\S*$/) {
6871         # A relative to the server URL
6872         return ($_[1], $_[2], $_[0], $_[4]);
6873         }
6874 else {
6875         # A relative to the directory URL
6876         my $page = $_[3];
6877         $page =~ s/[^\/]+$//;
6878         return ($_[1], $_[2], $page.$_[0], $_[4]);
6879         }
6880 }
6881
6882 =head2 check_clicks_function
6883
6884 Returns HTML for a JavaScript function called check_clicks that returns
6885 true when first called, but false subsequently. Useful on onClick for
6886 critical buttons. Deprecated, as this method of preventing duplicate actions
6887 is un-reliable.
6888
6889 =cut
6890 sub check_clicks_function
6891 {
6892 return <<EOF;
6893 <script>
6894 clicks = 0;
6895 function check_clicks(form)
6896 {
6897 clicks++;
6898 if (clicks == 1)
6899         return true;
6900 else {
6901         if (form != null) {
6902                 for(i=0; i<form.length; i++)
6903                         form.elements[i].disabled = true;
6904                 }
6905         return false;
6906         }
6907 }
6908 </script>
6909 EOF
6910 }
6911
6912 =head2 load_entities_map
6913
6914 Returns a hash ref containing mappings between HTML entities (like ouml) and
6915 ascii values (like 246). Mainly for internal use.
6916
6917 =cut
6918 sub load_entities_map
6919 {
6920 if (!%entities_map_cache) {
6921         local $_;
6922         open(EMAP, "$root_directory/entities_map.txt");
6923         while(<EMAP>) {
6924                 if (/^(\d+)\s+(\S+)/) {
6925                         $entities_map_cache{$2} = $1;
6926                         }
6927                 }
6928         close(EMAP);
6929         }
6930 return \%entities_map_cache;
6931 }
6932
6933 =head2 entities_to_ascii(string)
6934
6935 Given a string containing HTML entities like &ouml; and &#55;, replace them
6936 with their ASCII equivalents.
6937
6938 =cut
6939 sub entities_to_ascii
6940 {
6941 my ($str) = @_;
6942 my $emap = &load_entities_map();
6943 $str =~ s/&([a-z]+);/chr($emap->{$1})/ge;
6944 $str =~ s/&#(\d+);/chr($1)/ge;
6945 return $str;
6946 }
6947
6948 =head2 get_product_name
6949
6950 Returns either 'webmin' or 'usermin', depending on which program the current
6951 module is in. Useful for modules that can be installed into either.
6952
6953 =cut
6954 sub get_product_name
6955 {
6956 return $gconfig{'product'} if (defined($gconfig{'product'}));
6957 return defined($gconfig{'userconfig'}) ? 'usermin' : 'webmin';
6958 }
6959
6960 =head2 get_charset
6961
6962 Returns the character set for the current language, such as iso-8859-1.
6963
6964 =cut
6965 sub get_charset
6966 {
6967 my $charset = defined($gconfig{'charset'}) ? $gconfig{'charset'} :
6968                  $current_lang_info->{'charset'} ?
6969                  $current_lang_info->{'charset'} : $default_charset;
6970 return $charset;
6971 }
6972
6973 =head2 get_display_hostname
6974
6975 Returns the system's hostname for UI display purposes. This may be different
6976 from the actual hostname if you administrator has configured it so in the
6977 Webmin Configuration module.
6978
6979 =cut
6980 sub get_display_hostname
6981 {
6982 if ($gconfig{'hostnamemode'} == 0) {
6983         return &get_system_hostname();
6984         }
6985 elsif ($gconfig{'hostnamemode'} == 3) {
6986         return $gconfig{'hostnamedisplay'};
6987         }
6988 else {
6989         my $h = $ENV{'HTTP_HOST'};
6990         $h =~ s/:\d+//g;
6991         if ($gconfig{'hostnamemode'} == 2) {
6992                 $h =~ s/^(www|ftp|mail)\.//i;
6993                 }
6994         return $h;
6995         }
6996 }
6997
6998 =head2 save_module_config([&config], [modulename])
6999
7000 Saves the configuration for some module. The config parameter is an optional
7001 hash reference of names and values to save, which defaults to the global
7002 %config hash. The modulename parameter is the module to update the config
7003 file, which defaults to the current module.
7004
7005 =cut
7006 sub save_module_config
7007 {
7008 my $c = $_[0] || { &get_module_variable('%config') };
7009 my $m = defined($_[1]) ? $_[1] : &get_module_name();
7010 &write_file("$config_directory/$m/config", $c);
7011 }
7012
7013 =head2 save_user_module_config([&config], [modulename])
7014
7015 Saves the user's Usermin preferences for some module. The config parameter is
7016 an optional hash reference of names and values to save, which defaults to the
7017 global %userconfig hash. The modulename parameter is the module to update the
7018 config file, which defaults to the current module.
7019
7020 =cut
7021 sub save_user_module_config
7022 {
7023 my $c = $_[0] || { &get_module_variable('%userconfig') };
7024 my $m = $_[1] || &get_module_name();
7025 my $ucd = $user_config_directory;
7026 if (!$ucd) {
7027         my @uinfo = @remote_user_info ? @remote_user_info
7028                                       : getpwnam($remote_user);
7029         return if (!@uinfo || !$uinfo[7]);
7030         $ucd = "$uinfo[7]/$gconfig{'userconfig'}";
7031         }
7032 &write_file("$ucd/$m/config", $c);
7033 }
7034
7035 =head2 nice_size(bytes, [min])
7036
7037 Converts a number of bytes into a number followed by a suffix like GB, MB
7038 or kB. Rounding is to two decimal digits. The optional min parameter sets the
7039 smallest units to use - so you could pass 1024*1024 to never show bytes or kB.
7040
7041 =cut
7042 sub nice_size
7043 {
7044 my ($units, $uname);
7045 if (abs($_[0]) > 1024*1024*1024*1024 || $_[1] >= 1024*1024*1024*1024) {
7046         $units = 1024*1024*1024*1024;
7047         $uname = "TB";
7048         }
7049 elsif (abs($_[0]) > 1024*1024*1024 || $_[1] >= 1024*1024*1024) {
7050         $units = 1024*1024*1024;
7051         $uname = "GB";
7052         }
7053 elsif (abs($_[0]) > 1024*1024 || $_[1] >= 1024*1024) {
7054         $units = 1024*1024;
7055         $uname = "MB";
7056         }
7057 elsif (abs($_[0]) > 1024 || $_[1] >= 1024) {
7058         $units = 1024;
7059         $uname = "kB";
7060         }
7061 else {
7062         $units = 1;
7063         $uname = "bytes";
7064         }
7065 my $sz = sprintf("%.2f", ($_[0]*1.0 / $units));
7066 $sz =~ s/\.00$//;
7067 return $sz." ".$uname;
7068 }
7069
7070 =head2 get_perl_path
7071
7072 Returns the path to Perl currently in use, such as /usr/bin/perl.
7073
7074 =cut
7075 sub get_perl_path
7076 {
7077 if (open(PERL, "$config_directory/perl-path")) {
7078         my $rv;
7079         chop($rv = <PERL>);
7080         close(PERL);
7081         return $rv;
7082         }
7083 return $^X if (-x $^X);
7084 return &has_command("perl");
7085 }
7086
7087 =head2 get_goto_module([&mods])
7088
7089 Returns the details of a module that the current user should be re-directed
7090 to after logging in, or undef if none. Useful for themes.
7091
7092 =cut
7093 sub get_goto_module
7094 {
7095 my @mods = $_[0] ? @{$_[0]} : &get_visible_module_infos();
7096 if ($gconfig{'gotomodule'}) {
7097         my ($goto) = grep { $_->{'dir'} eq $gconfig{'gotomodule'} } @mods;
7098         return $goto if ($goto);
7099         }
7100 if (@mods == 1 && $gconfig{'gotoone'}) {
7101         return $mods[0];
7102         }
7103 return undef;
7104 }
7105
7106 =head2 select_all_link(field, form, [text])
7107
7108 Returns HTML for a 'Select all' link that uses Javascript to select
7109 multiple checkboxes with the same name. The parameters are :
7110
7111 =item field - Name of the checkbox inputs.
7112
7113 =item form - Index of the form on the page.
7114
7115 =item text - Message for the link, defaulting to 'Select all'.
7116
7117 =cut
7118 sub select_all_link
7119 {
7120 return &theme_select_all_link(@_) if (defined(&theme_select_all_link));
7121 my ($field, $form, $text) = @_;
7122 $form = int($form);
7123 $text ||= $text{'ui_selall'};
7124 return "<a class='select_all' href='#' onClick='document.forms[$form].$field.checked = true; for(i=0; i<document.forms[$form].$field.length; i++) { document.forms[$form].${field}[i].checked = true; } return false'>$text</a>";
7125 }
7126
7127 =head2 select_invert_link(field, form, text)
7128
7129 Returns HTML for an 'Invert selection' link that uses Javascript to invert the
7130 selection on multiple checkboxes with the same name. The parameters are :
7131
7132 =item field - Name of the checkbox inputs.
7133
7134 =item form - Index of the form on the page.
7135
7136 =item text - Message for the link, defaulting to 'Invert selection'.
7137
7138 =cut
7139 sub select_invert_link
7140 {
7141 return &theme_select_invert_link(@_) if (defined(&theme_select_invert_link));
7142 my ($field, $form, $text) = @_;
7143 $form = int($form);
7144 $text ||= $text{'ui_selinv'};
7145 return "<a class='select_invert' href='#' onClick='document.forms[$form].$field.checked = !document.forms[$form].$field.checked; for(i=0; i<document.forms[$form].$field.length; i++) { document.forms[$form].${field}[i].checked = !document.forms[$form].${field}[i].checked; } return false'>$text</a>";
7146 }
7147
7148 =head2 select_rows_link(field, form, text, &rows)
7149
7150 Returns HTML for a link that uses Javascript to select rows with particular
7151 values for their checkboxes. The parameters are :
7152
7153 =item field - Name of the checkbox inputs.
7154
7155 =item form - Index of the form on the page.
7156
7157 =item text - Message for the link, de
7158
7159 =item rows - Reference to an array of 1 or 0 values, indicating which rows to check.
7160
7161 =cut
7162 sub select_rows_link
7163 {
7164 return &theme_select_rows_link(@_) if (defined(&theme_select_rows_link));
7165 my ($field, $form, $text, $rows) = @_;
7166 $form = int($form);
7167 my $js = "var sel = { ".join(",", map { "\"".&quote_escape($_)."\":1" } @$rows)." }; ";
7168 $js .= "for(var i=0; i<document.forms[$form].${field}.length; i++) { var r = document.forms[$form].${field}[i]; r.checked = sel[r.value]; } ";
7169 $js .= "return false;";
7170 return "<a href='#' onClick='$js'>$text</a>";
7171 }
7172
7173 =head2 check_pid_file(file)
7174
7175 Given a pid file, returns the PID it contains if the process is running.
7176
7177 =cut
7178 sub check_pid_file
7179 {
7180 open(PIDFILE, $_[0]) || return undef;
7181 my $pid = <PIDFILE>;
7182 close(PIDFILE);
7183 $pid =~ /^\s*(\d+)/ || return undef;
7184 kill(0, $1) || return undef;
7185 return $1;
7186 }
7187
7188 =head2 get_mod_lib
7189
7190 Return the local os-specific library name to this module. For internal use only.
7191
7192 =cut
7193 sub get_mod_lib
7194 {
7195 my $mn = &get_module_name();
7196 my $md = &module_root_directory($mn);
7197 if (-r "$md/$mn-$gconfig{'os_type'}-$gconfig{'os_version'}-lib.pl") {
7198         return "$mn-$gconfig{'os_type'}-$gconfig{'os_version'}-lib.pl";
7199         }
7200 elsif (-r "$md/$mn-$gconfig{'os_type'}-lib.pl") {
7201         return "$mn-$gconfig{'os_type'}-lib.pl";
7202         }
7203 elsif (-r "$md/$mn-generic-lib.pl") {
7204         return "$mn-generic-lib.pl";
7205         }
7206 else {
7207         return "";
7208         }
7209 }
7210
7211 =head2 module_root_directory(module)
7212
7213 Given a module name, returns its root directory. On a typical Webmin install,
7214 all modules are under the same directory - but it is theoretically possible to
7215 have more than one.
7216
7217 =cut
7218 sub module_root_directory
7219 {
7220 my $d = ref($_[0]) ? $_[0]->{'dir'} : $_[0];
7221 if (@root_directories > 1) {
7222         foreach my $r (@root_directories) {
7223                 if (-d "$r/$d") {
7224                         return "$r/$d";
7225                         }
7226                 }
7227         }
7228 return "$root_directories[0]/$d";
7229 }
7230
7231 =head2 list_mime_types
7232
7233 Returns a list of all known MIME types and their extensions, as a list of hash
7234 references with keys :
7235
7236 =item type - The MIME type, like text/plain.
7237
7238 =item exts - A list of extensions, like .doc and .avi.
7239
7240 =item desc - A human-readable description for the MIME type.
7241
7242 =cut
7243 sub list_mime_types
7244 {
7245 if (!@list_mime_types_cache) {
7246         local $_;
7247         open(MIME, "$root_directory/mime.types");
7248         while(<MIME>) {
7249                 my $cmt;
7250                 s/\r|\n//g;
7251                 if (s/#\s*(.*)$//g) {
7252                         $cmt = $1;
7253                         }
7254                 my ($type, @exts) = split(/\s+/);
7255                 if ($type) {
7256                         push(@list_mime_types_cache, { 'type' => $type,
7257                                                        'exts' => \@exts,
7258                                                        'desc' => $cmt });
7259                         }
7260                 }
7261         close(MIME);
7262         }
7263 return @list_mime_types_cache;
7264 }
7265
7266 =head2 guess_mime_type(filename, [default])
7267
7268 Given a file name like xxx.gif or foo.html, returns a guessed MIME type.
7269 The optional default parameter sets a default type of use if none is found,
7270 which defaults to application/octet-stream.
7271
7272 =cut
7273 sub guess_mime_type
7274 {
7275 if ($_[0] =~ /\.([A-Za-z0-9\-]+)$/) {
7276         my $ext = $1;
7277         foreach my $t (&list_mime_types()) {
7278                 foreach my $e (@{$t->{'exts'}}) {
7279                         return $t->{'type'} if (lc($e) eq lc($ext));
7280                         }
7281                 }
7282         }
7283 return @_ > 1 ? $_[1] : "application/octet-stream";
7284 }
7285
7286 =head2 open_tempfile([handle], file, [no-error], [no-tempfile], [safe?])
7287
7288 Opens a file handle for writing to a temporary file, which will only be
7289 renamed over the real file when the handle is closed. This allows critical
7290 files like /etc/shadow to be updated safely, even if writing fails part way
7291 through due to lack of disk space. The parameters are :
7292
7293 =item handle - File handle to open, as you would use in Perl's open function.
7294
7295 =item file - Full path to the file to write, prefixed by > or >> to indicate over-writing or appending. In append mode, no temp file is used.
7296
7297 =item no-error - By default, this function will call error if the open fails. Setting this parameter to 1 causes it to return 0 on failure, and set $! with the error code.
7298
7299 =item no-tempfile - If set to 1, writing will be direct to the file instead of using a temporary file.
7300
7301 =item safe - Indicates to users in read-only mode that this write is safe and non-destructive.
7302
7303 =cut
7304 sub open_tempfile
7305 {
7306 if (@_ == 1) {
7307         # Just getting a temp file
7308         if (!defined($main::open_tempfiles{$_[0]})) {
7309                 $_[0] =~ /^(.*)\/(.*)$/ || return $_[0];
7310                 my $dir = $1 || "/";
7311                 my $tmp = "$dir/$2.webmintmp.$$";
7312                 $main::open_tempfiles{$_[0]} = $tmp;
7313                 push(@main::temporary_files, $tmp);
7314                 }
7315         return $main::open_tempfiles{$_[0]};
7316         }
7317 else {
7318         # Actually opening
7319         my ($fh, $file, $noerror, $notemp, $safe) = @_;
7320         $fh = &callers_package($fh);
7321
7322         my %gaccess = &get_module_acl(undef, "");
7323         my $db = $gconfig{'debug_what_write'};
7324         if ($file =~ /\r|\n|\0/) {
7325                 if ($noerror) { return 0; }
7326                 else { &error("Filename contains invalid characters"); }
7327                 }
7328         if (&is_readonly_mode() && $file =~ />/ && !$safe) {
7329                 # Read-only mode .. veto all writes
7330                 print STDERR "vetoing write to $file\n";
7331                 return open($fh, ">$null_file");
7332                 }
7333         elsif ($file =~ /^(>|>>|)nul$/i) {
7334                 # Write to Windows null device
7335                 &webmin_debug_log($1 eq ">" ? "WRITE" :
7336                           $1 eq ">>" ? "APPEND" : "READ", "nul") if ($db);
7337                 }
7338         elsif ($file =~ /^(>|>>)(\/dev\/.*)/ || lc($file) eq "nul") {
7339                 # Writes to /dev/null or TTYs don't need to be handled
7340                 &webmin_debug_log($1 eq ">" ? "WRITE" : "APPEND", $2) if ($db);
7341                 return open($fh, $file);
7342                 }
7343         elsif ($file =~ /^>\s*(([a-zA-Z]:)?\/.*)$/ && !$notemp) {
7344                 &webmin_debug_log("WRITE", $1) if ($db);
7345                 # Over-writing a file, via a temp file
7346                 $file = $1;
7347                 $file = &translate_filename($file);
7348                 while(-l $file) {
7349                         # Open the link target instead
7350                         $file = &resolve_links($file);
7351                         }
7352                 if (-d $file) {
7353                         # Cannot open a directory!
7354                         if ($noerror) { return 0; }
7355                         else { &error("Cannot write to directory $file"); }
7356                         }
7357                 my $tmp = &open_tempfile($file);
7358                 my $ex = open($fh, ">$tmp");
7359                 if (!$ex && $! =~ /permission/i) {
7360                         # Could not open temp file .. try opening actual file
7361                         # instead directly
7362                         $ex = open($fh, ">$file");
7363                         delete($main::open_tempfiles{$file});
7364                         }
7365                 else {
7366                         $main::open_temphandles{$fh} = $file;
7367                         }
7368                 binmode($fh);
7369                 if (!$ex && !$noerror) {
7370                         &error(&text("efileopen", $file, $!));
7371                         }
7372                 return $ex;
7373                 }
7374         elsif ($file =~ /^>\s*(([a-zA-Z]:)?\/.*)$/ && $notemp) {
7375                 # Just writing direct to a file
7376                 &webmin_debug_log("WRITE", $1) if ($db);
7377                 $file = $1;
7378                 $file = &translate_filename($file);
7379                 my @old_attributes = &get_clear_file_attributes($file);
7380                 my $ex = open($fh, ">$file");
7381                 &reset_file_attributes($file, \@old_attributes);
7382                 $main::open_temphandles{$fh} = $file;
7383                 if (!$ex && !$noerror) {
7384                         &error(&text("efileopen", $file, $!));
7385                         }
7386                 binmode($fh);
7387                 return $ex;
7388                 }
7389         elsif ($file =~ /^>>\s*(([a-zA-Z]:)?\/.*)$/) {
7390                 # Appending to a file .. nothing special to do
7391                 &webmin_debug_log("APPEND", $1) if ($db);
7392                 $file = $1;
7393                 $file = &translate_filename($file);
7394                 my @old_attributes = &get_clear_file_attributes($file);
7395                 my $ex = open($fh, ">>$file");
7396                 &reset_file_attributes($file, \@old_attributes);
7397                 $main::open_temphandles{$fh} = $file;
7398                 if (!$ex && !$noerror) {
7399                         &error(&text("efileopen", $file, $!));
7400                         }
7401                 binmode($fh);
7402                 return $ex;
7403                 }
7404         elsif ($file =~ /^([a-zA-Z]:)?\//) {
7405                 # Read mode .. nothing to do here
7406                 &webmin_debug_log("READ", $file) if ($db);
7407                 $file = &translate_filename($file);
7408                 return open($fh, $file);
7409                 }
7410         elsif ($file eq ">" || $file eq ">>") {
7411                 my ($package, $filename, $line) = caller;
7412                 if ($noerror) { return 0; }
7413                 else { &error("Missing file to open at ${package}::${filename} line $line"); }
7414                 }
7415         else {
7416                 my ($package, $filename, $line) = caller;
7417                 &error("Unsupported file or mode $file at ${package}::${filename} line $line");
7418                 }
7419         }
7420 }
7421
7422 =head2 close_tempfile(file|handle)
7423
7424 Copies a temp file to the actual file, assuming that all writes were
7425 successful. The handle must have been one passed to open_tempfile.
7426
7427 =cut
7428 sub close_tempfile
7429 {
7430 my $file;
7431 my $fh = &callers_package($_[0]);
7432
7433 if (defined($file = $main::open_temphandles{$fh})) {
7434         # Closing a handle
7435         close($fh) || &error(&text("efileclose", $file, $!));
7436         delete($main::open_temphandles{$fh});
7437         return &close_tempfile($file);
7438         }
7439 elsif (defined($main::open_tempfiles{$_[0]})) {
7440         # Closing a file
7441         &webmin_debug_log("CLOSE", $_[0]) if ($gconfig{'debug_what_write'});
7442         my @st = stat($_[0]);
7443         if (&is_selinux_enabled() && &has_command("chcon")) {
7444                 # Set original security context
7445                 system("chcon --reference=".quotemeta($_[0]).
7446                        " ".quotemeta($main::open_tempfiles{$_[0]}).
7447                        " >/dev/null 2>&1");
7448                 }
7449         my @old_attributes = &get_clear_file_attributes($_[0]);
7450         rename($main::open_tempfiles{$_[0]}, $_[0]) || &error("Failed to replace $_[0] with $main::open_tempfiles{$_[0]} : $!");
7451         if (@st) {
7452                 # Set original permissions and ownership
7453                 chmod($st[2], $_[0]);
7454                 chown($st[4], $st[5], $_[0]);
7455                 }
7456         &reset_file_attributes($_[0], \@old_attributes);
7457         delete($main::open_tempfiles{$_[0]});
7458         @main::temporary_files = grep { $_ ne $main::open_tempfiles{$_[0]} } @main::temporary_files;
7459         if ($main::open_templocks{$_[0]}) {
7460                 &unlock_file($_[0]);
7461                 delete($main::open_templocks{$_[0]});
7462                 }
7463         return 1;
7464         }
7465 else {
7466         # Must be closing a handle not associated with a file
7467         close($_[0]);
7468         return 1;
7469         }
7470 }
7471
7472 =head2 print_tempfile(handle, text, ...)
7473
7474 Like the normal print function, but calls &error on failure. Useful when
7475 combined with open_tempfile, to ensure that a criticial file is never
7476 only partially written.
7477
7478 =cut
7479 sub print_tempfile
7480 {
7481 my ($fh, @args) = @_;
7482 $fh = &callers_package($fh);
7483 (print $fh @args) || &error(&text("efilewrite",
7484                             $main::open_temphandles{$fh} || $fh, $!));
7485 }
7486
7487 =head2 is_selinux_enabled
7488
7489 Returns 1 if SElinux is supported on this system and enabled, 0 if not.
7490
7491 =cut
7492 sub is_selinux_enabled
7493 {
7494 if (!defined($main::selinux_enabled_cache)) {
7495         my %seconfig;
7496         if ($gconfig{'os_type'} !~ /-linux$/) {
7497                 # Not on linux, so no way
7498                 $main::selinux_enabled_cache = 0;
7499                 }
7500         elsif (&read_env_file("/etc/selinux/config", \%seconfig)) {
7501                 # Use global config file
7502                 $main::selinux_enabled_cache =
7503                         $seconfig{'SELINUX'} eq 'disabled' ||
7504                         !$seconfig{'SELINUX'} ? 0 : 1;
7505                 }
7506         else {
7507                 # Use selinuxenabled command
7508                 #$selinux_enabled_cache =
7509                 #       system("selinuxenabled >/dev/null 2>&1") ? 0 : 1;
7510                 $main::selinux_enabled_cache = 0;
7511                 }
7512         }
7513 return $main::selinux_enabled_cache;
7514 }
7515
7516 =head2 get_clear_file_attributes(file)
7517
7518 Finds file attributes that may prevent writing, clears them and returns them
7519 as a list. May call error. Mainly for internal use by open_tempfile and
7520 close_tempfile.
7521
7522 =cut
7523 sub get_clear_file_attributes
7524 {
7525 my ($file) = @_;
7526 my @old_attributes;
7527 if ($gconfig{'chattr'}) {
7528         # Get original immutable bit
7529         my $out = &backquote_command(
7530                 "lsattr ".quotemeta($file)." 2>/dev/null");
7531         if (!$?) {
7532                 $out =~ s/\s\S+\n//;
7533                 @old_attributes = grep { $_ ne '-' } split(//, $out);
7534                 }
7535         if (&indexof("i", @old_attributes) >= 0) {
7536                 my $err = &backquote_logged(
7537                         "chattr -i ".quotemeta($file)." 2>&1");
7538                 if ($?) {
7539                         &error("Failed to remove immutable bit on ".
7540                                "$file : $err");
7541                         }
7542                 }
7543         }
7544 return @old_attributes;
7545 }
7546
7547 =head2 reset_file_attributes(file, &attributes)
7548
7549 Put back cleared attributes on some file. May call error. Mainly for internal
7550 use by close_tempfile.
7551
7552 =cut
7553 sub reset_file_attributes
7554 {
7555 my ($file, $old_attributes) = @_;
7556 if (&indexof("i", @$old_attributes) >= 0) {
7557         my $err = &backquote_logged(
7558                 "chattr +i ".quotemeta($file)." 2>&1");
7559         if ($?) {
7560                 &error("Failed to restore immutable bit on ".
7561                        "$file : $err");
7562                 }
7563         }
7564 }
7565
7566 =head2 cleanup_tempnames
7567
7568 Remove all temporary files generated using transname. Typically only called
7569 internally when a Webmin script exits.
7570
7571 =cut
7572 sub cleanup_tempnames
7573 {
7574 foreach my $t (@main::temporary_files) {
7575         &unlink_file($t);
7576         }
7577 @main::temporary_files = ( );
7578 }
7579
7580 =head2 open_lock_tempfile([handle], file, [no-error])
7581
7582 Returns a temporary file for writing to some actual file, and also locks it.
7583 Effectively the same as calling lock_file and open_tempfile on the same file,
7584 but calls the unlock for you automatically when it is closed.
7585
7586 =cut
7587 sub open_lock_tempfile
7588 {
7589 my ($fh, $file, $noerror, $notemp, $safe) = @_;
7590 $fh = &callers_package($fh);
7591 my $lockfile = $file;
7592 $lockfile =~ s/^[^\/]*//;
7593 if ($lockfile =~ /^\//) {
7594         $main::open_templocks{$lockfile} = &lock_file($lockfile);
7595         }
7596 return &open_tempfile($fh, $file, $noerror, $notemp, $safe);
7597 }
7598
7599 sub END
7600 {
7601 $main::end_exit_status ||= $?;
7602 if ($$ == $main::initial_process_id) {
7603         # Exiting from initial process
7604         &cleanup_tempnames();
7605         if ($gconfig{'debug_what_start'} && $main::debug_log_start_time &&
7606             $main::debug_log_start_module eq &get_module_name()) {
7607                 my $len = time() - $main::debug_log_start_time;
7608                 &webmin_debug_log("STOP", "runtime=$len");
7609                 $main::debug_log_start_time = 0;
7610                 }
7611         if (!$ENV{'SCRIPT_NAME'} &&
7612             $main::initial_module_name eq &get_module_name()) {
7613                 # In a command-line script - call the real exit, so that the
7614                 # exit status gets properly propogated. In some cases this
7615                 # was not happening.
7616                 exit($main::end_exit_status);
7617                 }
7618         }
7619 }
7620
7621 =head2 month_to_number(month)
7622
7623 Converts a month name like feb to a number like 1.
7624
7625 =cut
7626 sub month_to_number
7627 {
7628 return $month_to_number_map{lc(substr($_[0], 0, 3))};
7629 }
7630
7631 =head2 number_to_month(number)
7632
7633 Converts a number like 1 to a month name like Feb.
7634
7635 =cut
7636 sub number_to_month
7637 {
7638 return ucfirst($number_to_month_map{$_[0]});
7639 }
7640
7641 =head2 get_rbac_module_acl(user, module)
7642
7643 Returns a hash reference of RBAC overrides ACLs for some user and module.
7644 May return undef if none exist (indicating access denied), or the string *
7645 if full access is granted.
7646
7647 =cut
7648 sub get_rbac_module_acl
7649 {
7650 my ($user, $mod) = @_;
7651 eval "use Authen::SolarisRBAC";
7652 return undef if ($@);
7653 my %rv;
7654 my $foundany = 0;
7655 if (Authen::SolarisRBAC::chkauth("webmin.$mod.admin", $user)) {
7656         # Automagic webmin.modulename.admin authorization exists .. allow access
7657         $foundany = 1;
7658         if (!Authen::SolarisRBAC::chkauth("webmin.$mod.config", $user)) {
7659                 %rv = ( 'noconfig' => 1 );
7660                 }
7661         else {
7662                 %rv = ( );
7663                 }
7664         }
7665 local $_;
7666 open(RBAC, &module_root_directory($mod)."/rbac-mapping");
7667 while(<RBAC>) {
7668         s/\r|\n//g;
7669         s/#.*$//;
7670         my ($auths, $acls) = split(/\s+/, $_);
7671         my @auths = split(/,/, $auths);
7672         next if (!$auths);
7673         my ($merge) = ($acls =~ s/^\+//);
7674         my $gotall = 1;
7675         if ($auths eq "*") {
7676                 # These ACLs apply to all RBAC users.
7677                 # Only if there is some that match a specific authorization
7678                 # later will they be used though.
7679                 }
7680         else {
7681                 # Check each of the RBAC authorizations
7682                 foreach my $a (@auths) {
7683                         if (!Authen::SolarisRBAC::chkauth($a, $user)) {
7684                                 $gotall = 0;
7685                                 last;
7686                                 }
7687                         }
7688                 $foundany++ if ($gotall);
7689                 }
7690         if ($gotall) {
7691                 # Found an RBAC authorization - return the ACLs
7692                 return "*" if ($acls eq "*");
7693                 my %acl = map { split(/=/, $_, 2) } split(/,/, $acls);
7694                 if ($merge) {
7695                         # Just add to current set
7696                         foreach my $a (keys %acl) {
7697                                 $rv{$a} = $acl{$a};
7698                                 }
7699                         }
7700                 else {
7701                         # Found final ACLs
7702                         return \%acl;
7703                         }
7704                 }
7705         }
7706 close(RBAC);
7707 return !$foundany ? undef : %rv ? \%rv : undef;
7708 }
7709
7710 =head2 supports_rbac([module])
7711
7712 Returns 1 if RBAC client support is available, such as on Solaris.
7713
7714 =cut
7715 sub supports_rbac
7716 {
7717 return 0 if ($gconfig{'os_type'} ne 'solaris');
7718 eval "use Authen::SolarisRBAC";
7719 return 0 if ($@);
7720 if ($_[0]) {
7721         #return 0 if (!-r &module_root_directory($_[0])."/rbac-mapping");
7722         }
7723 return 1;
7724 }
7725
7726 =head2 use_rbac_module_acl(user, module)
7727
7728 Returns 1 if some user should use RBAC to get permissions for a module
7729
7730 =cut
7731 sub use_rbac_module_acl
7732 {
7733 my $u = defined($_[0]) ? $_[0] : $base_remote_user;
7734 my $m = defined($_[1]) ? $_[1] : &get_module_name();
7735 return 1 if ($gconfig{'rbacdeny_'.$u});         # RBAC forced for user
7736 my %access = &get_module_acl($u, $m, 1);
7737 return $access{'rbac'} ? 1 : 0;
7738 }
7739
7740 =head2 execute_command(command, stdin, stdout, stderr, translate-files?, safe?)
7741
7742 Runs some command, possibly feeding it input and capturing output to the
7743 give files or scalar references. The parameters are :
7744
7745 =item command - Full command to run, possibly including shell meta-characters.
7746
7747 =item stdin - File to read input from, or a scalar ref containing input, or undef if no input should be given.
7748
7749 =item stdout - File to write output to, or a scalar ref into which output should be placed, or undef if the output is to be discarded.
7750
7751 =item stderr - File to write error output to, or a scalar ref into which error output should be placed, or undef if the error output is to be discarded.
7752
7753 =item translate-files - Set to 1 to apply filename translation to any filenames. Usually has no effect.
7754
7755 =item safe - Set to 1 if this command is safe and does not modify the state of the system.
7756
7757 =cut
7758 sub execute_command
7759 {
7760 my ($cmd, $stdin, $stdout, $stderr, $trans, $safe) = @_;
7761 if (&is_readonly_mode() && !$safe) {
7762         print STDERR "Vetoing command $_[0]\n";
7763         $? = 0;
7764         return 0;
7765         }
7766 $cmd = &translate_command($cmd);
7767
7768 # Use ` operator where possible
7769 &webmin_debug_log('CMD', "cmd=$cmd") if ($gconfig{'debug_what_cmd'});
7770 if (!$stdin && ref($stdout) && !$stderr) {
7771         $cmd = "($cmd)" if ($gconfig{'os_type'} ne 'windows');
7772         $$stdout = `$cmd 2>$null_file`;
7773         return $?;
7774         }
7775 elsif (!$stdin && ref($stdout) && $stdout eq $stderr) {
7776         $cmd = "($cmd)" if ($gconfig{'os_type'} ne 'windows');
7777         $$stdout = `$cmd 2>&1`;
7778         return $?;
7779         }
7780 elsif (!$stdin && !$stdout && !$stderr) {
7781         $cmd = "($cmd)" if ($gconfig{'os_type'} ne 'windows');
7782         return system("$cmd >$null_file 2>$null_file <$null_file");
7783         }
7784
7785 # Setup pipes
7786 $| = 1;         # needed on some systems to flush before forking
7787 pipe(EXECSTDINr, EXECSTDINw);
7788 pipe(EXECSTDOUTr, EXECSTDOUTw);
7789 pipe(EXECSTDERRr, EXECSTDERRw);
7790 my $pid;
7791 if (!($pid = fork())) {
7792         untie(*STDIN);
7793         untie(*STDOUT);
7794         untie(*STDERR);
7795         open(STDIN, "<&EXECSTDINr");
7796         open(STDOUT, ">&EXECSTDOUTw");
7797         if (ref($stderr) && $stderr eq $stdout) {
7798                 open(STDERR, ">&EXECSTDOUTw");
7799                 }
7800         else {
7801                 open(STDERR, ">&EXECSTDERRw");
7802                 }
7803         $| = 1;
7804         close(EXECSTDINw);
7805         close(EXECSTDOUTr);
7806         close(EXECSTDERRr);
7807
7808         my $fullcmd = "($cmd)";
7809         if ($stdin && !ref($stdin)) {
7810                 $fullcmd .= " <$stdin";
7811                 }
7812         if ($stdout && !ref($stdout)) {
7813                 $fullcmd .= " >$stdout";
7814                 }
7815         if ($stderr && !ref($stderr)) {
7816                 if ($stderr eq $stdout) {
7817                         $fullcmd .= " 2>&1";
7818                         }
7819                 else {
7820                         $fullcmd .= " 2>$stderr";
7821                         }
7822                 }
7823         if ($gconfig{'os_type'} eq 'windows') {
7824                 exec($fullcmd);
7825                 }
7826         else {
7827                 exec("/bin/sh", "-c", $fullcmd);
7828                 }
7829         print "Exec failed : $!\n";
7830         exit(1);
7831         }
7832 close(EXECSTDINr);
7833 close(EXECSTDOUTw);
7834 close(EXECSTDERRw);
7835
7836 # Feed input and capture output
7837 local $_;
7838 if ($stdin && ref($stdin)) {
7839         print EXECSTDINw $$stdin;
7840         close(EXECSTDINw);
7841         }
7842 if ($stdout && ref($stdout)) {
7843         $$stdout = undef;
7844         while(<EXECSTDOUTr>) {
7845                 $$stdout .= $_;
7846                 }
7847         close(EXECSTDOUTr);
7848         }
7849 if ($stderr && ref($stderr) && $stderr ne $stdout) {
7850         $$stderr = undef;
7851         while(<EXECSTDERRr>) {
7852                 $$stderr .= $_;
7853                 }
7854         close(EXECSTDERRr);
7855         }
7856
7857 # Get exit status
7858 waitpid($pid, 0);
7859 return $?;
7860 }
7861
7862 =head2 open_readfile(handle, file)
7863
7864 Opens some file for reading. Returns 1 on success, 0 on failure. Pretty much
7865 exactly the same as Perl's open function.
7866
7867 =cut
7868 sub open_readfile
7869 {
7870 my ($fh, $file) = @_;
7871 $fh = &callers_package($fh);
7872 my $realfile = &translate_filename($file);
7873 &webmin_debug_log('READ', $file) if ($gconfig{'debug_what_read'});
7874 return open($fh, "<".$realfile);
7875 }
7876
7877 =head2 open_execute_command(handle, command, output?, safe?)
7878
7879 Runs some command, with the specified file handle set to either write to it if
7880 in-or-out is set to 0, or read to it if output is set to 1. The safe flag
7881 indicates if the command modifies the state of the system or not.
7882
7883 =cut
7884 sub open_execute_command
7885 {
7886 my ($fh, $cmd, $mode, $safe) = @_;
7887 $fh = &callers_package($fh);
7888 my $realcmd = &translate_command($cmd);
7889 if (&is_readonly_mode() && !$safe) {
7890         # Don't actually run it
7891         print STDERR "vetoing command $cmd\n";
7892         $? = 0;
7893         if ($mode == 0) {
7894                 return open($fh, ">$null_file");
7895                 }
7896         else {
7897                 return open($fh, $null_file);
7898                 }
7899         }
7900 # Really run it
7901 &webmin_debug_log('CMD', "cmd=$realcmd mode=$mode")
7902         if ($gconfig{'debug_what_cmd'});
7903 if ($mode == 0) {
7904         return open($fh, "| $cmd");
7905         }
7906 elsif ($mode == 1) {
7907         return open($fh, "$cmd 2>$null_file |");
7908         }
7909 elsif ($mode == 2) {
7910         return open($fh, "$cmd 2>&1 |");
7911         }
7912 }
7913
7914 =head2 translate_filename(filename)
7915
7916 Applies all relevant registered translation functions to a filename. Mostly
7917 for internal use, and typically does nothing.
7918
7919 =cut
7920 sub translate_filename
7921 {
7922 my ($realfile) = @_;
7923 my @funcs = grep { $_->[0] eq &get_module_name() ||
7924                    !defined($_->[0]) } @main::filename_callbacks;
7925 foreach my $f (@funcs) {
7926         my $func = $f->[1];
7927         $realfile = &$func($realfile, @{$f->[2]});
7928         }
7929 return $realfile;
7930 }
7931
7932 =head2 translate_command(filename)
7933
7934 Applies all relevant registered translation functions to a command. Mostly
7935 for internal use, and typically does nothing.
7936
7937 =cut
7938 sub translate_command
7939 {
7940 my ($realcmd) = @_;
7941 my @funcs = grep { $_->[0] eq &get_module_name() ||
7942                    !defined($_->[0]) } @main::command_callbacks;
7943 foreach my $f (@funcs) {
7944         my $func = $f->[1];
7945         $realcmd = &$func($realcmd, @{$f->[2]});
7946         }
7947 return $realcmd;
7948 }
7949
7950 =head2 register_filename_callback(module|undef, &function, &args)
7951
7952 Registers some function to be called when the specified module (or all
7953 modules) tries to open a file for reading and writing. The function must
7954 return the actual file to open. This allows you to override which files
7955 other code actually operates on, via the translate_filename function.
7956
7957 =cut
7958 sub register_filename_callback
7959 {
7960 my ($mod, $func, $args) = @_;
7961 push(@main::filename_callbacks, [ $mod, $func, $args ]);
7962 }
7963
7964 =head2 register_command_callback(module|undef, &function, &args)
7965
7966 Registers some function to be called when the specified module (or all
7967 modules) tries to execute a command. The function must return the actual
7968 command to run. This allows you to override which commands other other code
7969 actually runs, via the translate_command function.
7970
7971 =cut
7972 sub register_command_callback
7973 {
7974 my ($mod, $func, $args) = @_;
7975 push(@main::command_callbacks, [ $mod, $func, $args ]);
7976 }
7977
7978 =head2 capture_function_output(&function, arg, ...)
7979
7980 Captures output that some function prints to STDOUT, and returns it. Useful
7981 for functions outside your control that print data when you really want to
7982 manipulate it before output.
7983
7984 =cut
7985 sub capture_function_output
7986 {
7987 my ($func, @args) = @_;
7988 socketpair(SOCKET2, SOCKET1, AF_UNIX, SOCK_STREAM, PF_UNSPEC);
7989 my $old = select(SOCKET1);
7990 my @rv = &$func(@args);
7991 select($old);
7992 close(SOCKET1);
7993 my $out;
7994 local $_;
7995 while(<SOCKET2>) {
7996         $out .= $_;
7997         }
7998 close(SOCKET2);
7999 return wantarray ? ($out, \@rv) : $out;
8000 }
8001
8002 =head2 capture_function_output_tempfile(&function, arg, ...)
8003
8004 Behaves the same as capture_function_output, but uses a temporary file
8005 to avoid buffer full problems.
8006
8007 =cut
8008 sub capture_function_output_tempfile
8009 {
8010 my ($func, @args) = @_;
8011 my $temp = &transname();
8012 open(BUFFER, ">$temp");
8013 my $old = select(BUFFER);
8014 my @rv = &$func(@args);
8015 select($old);
8016 close(BUFFER);
8017 my $out = &read_file_contents($temp);
8018 &unlink_file($temp);
8019 return wantarray ? ($out, \@rv) : $out;
8020 }
8021
8022 =head2 modules_chooser_button(field, multiple, [form])
8023
8024 Returns HTML for a button for selecting one or many Webmin modules.
8025 field - Name of the HTML field to place the module names into.
8026 multiple - Set to 1 if multiple modules can be selected.
8027 form - Index of the form on the page.
8028
8029 =cut
8030 sub modules_chooser_button
8031 {
8032 return &theme_modules_chooser_button(@_)
8033         if (defined(&theme_modules_chooser_button));
8034 my $form = defined($_[2]) ? $_[2] : 0;
8035 my $w = $_[1] ? 700 : 500;
8036 my $h = 200;
8037 if ($_[1] && $gconfig{'db_sizemodules'}) {
8038         ($w, $h) = split(/x/, $gconfig{'db_sizemodules'});
8039         }
8040 elsif (!$_[1] && $gconfig{'db_sizemodule'}) {
8041         ($w, $h) = split(/x/, $gconfig{'db_sizemodule'});
8042         }
8043 return "<input type=button onClick='ifield = document.forms[$form].$_[0]; chooser = window.open(\"$gconfig{'webprefix'}/module_chooser.cgi?multi=$_[1]&module=\"+escape(ifield.value), \"chooser\", \"toolbar=no,menubar=no,scrollbars=yes,width=$w,height=$h\"); chooser.ifield = ifield; window.ifield = ifield' value=\"...\">\n";
8044 }
8045
8046 =head2 substitute_template(text, &hash)
8047
8048 Given some text and a hash reference, for each ocurrance of $FOO or ${FOO} in
8049 the text replaces it with the value of the hash key foo. Also supports blocks
8050 like ${IF-FOO} ... ${ENDIF-FOO}, whose contents are only included if foo is 
8051 non-zero, and ${IF-FOO} ... ${ELSE-FOO} ... ${ENDIF-FOO}.
8052
8053 =cut
8054 sub substitute_template
8055 {
8056 # Add some extra fixed parameters to the hash
8057 my %hash = %{$_[1]};
8058 $hash{'hostname'} = &get_system_hostname();
8059 $hash{'webmin_config'} = $config_directory;
8060 $hash{'webmin_etc'} = $config_directory;
8061 $hash{'module_config'} = &get_module_variable('$module_config_directory');
8062 $hash{'webmin_var'} = $var_directory;
8063
8064 # Add time-based parameters, for use in DNS
8065 $hash{'current_time'} = time();
8066 my @tm = localtime($hash{'current_time'});
8067 $hash{'current_year'} = $tm[5]+1900;
8068 $hash{'current_month'} = sprintf("%2.2d", $tm[4]+1);
8069 $hash{'current_day'} = sprintf("%2.2d", $tm[3]);
8070 $hash{'current_hour'} = sprintf("%2.2d", $tm[2]);
8071 $hash{'current_minute'} = sprintf("%2.2d", $tm[1]);
8072 $hash{'current_second'} = sprintf("%2.2d", $tm[0]);
8073
8074 # Actually do the substition
8075 my $rv = $_[0];
8076 foreach my $s (keys %hash) {
8077         next if ($s eq '');     # Prevent just $ from being subbed
8078         my $us = uc($s);
8079         my $sv = $hash{$s};
8080         $rv =~ s/\$\{\Q$us\E\}/$sv/g;
8081         $rv =~ s/\$\Q$us\E/$sv/g;
8082         if ($sv) {
8083                 # Replace ${IF}..${ELSE}..${ENDIF} block with first value,
8084                 # and ${IF}..${ENDIF} with value
8085                 $rv =~ s/\$\{IF-\Q$us\E\}(\n?)([\000-\377]*?)\$\{ELSE-\Q$us\E\}(\n?)([\000-\377]*?)\$\{ENDIF-\Q$us\E\}(\n?)/$2/g;
8086                 $rv =~ s/\$\{IF-\Q$us\E\}(\n?)([\000-\377]*?)\$\{ENDIF-\Q$us\E\}(\n?)/$2/g;
8087
8088                 # Replace $IF..$ELSE..$ENDIF block with first value,
8089                 # and $IF..$ENDIF with value
8090                 $rv =~ s/\$IF-\Q$us\E(\n?)([\000-\377]*?)\$ELSE-\Q$us\E(\n?)([\000-\377]*?)\$ENDIF-\Q$us\E(\n?)/$2/g;
8091                 $rv =~ s/\$IF-\Q$us\E(\n?)([\000-\377]*?)\$ENDIF-\Q$us\E(\n?)/$2/g;
8092
8093                 # Replace ${IFEQ}..${ENDIFEQ} block with first value if
8094                 # matching, nothing if not
8095                 $rv =~ s/\$\{IFEQ-\Q$us\E-\Q$sv\E\}(\n?)([\000-\377]*?)\$\{ENDIFEQ-\Q$us\E-\Q$sv\E\}(\n?)/$2/g;
8096                 $rv =~ s/\$\{IFEQ-\Q$us\E-[^\}]+}(\n?)([\000-\377]*?)\$\{ENDIFEQ-\Q$us\E-[^\}]+\}(\n?)//g;
8097
8098                 # Replace $IFEQ..$ENDIFEQ block with first value if
8099                 # matching, nothing if not
8100                 $rv =~ s/\$IFEQ-\Q$us\E-\Q$sv\E(\n?)([\000-\377]*?)\$ENDIFEQ-\Q$us\E-\Q$sv\E(\n?)/$2/g;
8101                 $rv =~ s/\$IFEQ-\Q$us\E-\S+(\n?)([\000-\377]*?)\$ENDIFEQ-\Q$us\E-\S+(\n?)//g;
8102                 }
8103         else {
8104                 # Replace ${IF}..${ELSE}..${ENDIF} block with second value,
8105                 # and ${IF}..${ENDIF} with nothing
8106                 $rv =~ s/\$\{IF-\Q$us\E\}(\n?)([\000-\377]*?)\$\{ELSE-\Q$us\E\}(\n?)([\000-\377]*?)\$\{ENDIF-\Q$us\E\}(\n?)/$4/g;
8107                 $rv =~ s/\$\{IF-\Q$us\E\}(\n?)([\000-\377]*?)\$\{ENDIF-\Q$us\E\}(\n?)//g;
8108
8109                 # Replace $IF..$ELSE..$ENDIF block with second value,
8110                 # and $IF..$ENDIF with nothing
8111                 $rv =~ s/\$IF-\Q$us\E(\n?)([\000-\377]*?)\$ELSE-\Q$us\E(\n?)([\000-\377]*?)\$ENDIF-\Q$us\E(\n?)/$4/g;
8112                 $rv =~ s/\$IF-\Q$us\E(\n?)([\000-\377]*?)\$ENDIF-\Q$us\E(\n?)//g;
8113
8114                 # Replace ${IFEQ}..${ENDIFEQ} block with nothing
8115                 $rv =~ s/\$\{IFEQ-\Q$us\E-[^\}]+}(\n?)([\000-\377]*?)\$\{ENDIFEQ-\Q$us\E-[^\}]+\}(\n?)//g;
8116                 $rv =~ s/\$IFEQ-\Q$us\E-\S+(\n?)([\000-\377]*?)\$ENDIFEQ-\Q$us\E-\S+(\n?)//g;
8117                 }
8118         }
8119
8120 # Now assume any $IF blocks whose variables are not present in the hash
8121 # evaluate to false.
8122 # $IF...$ELSE x $ENDIF => x
8123 $rv =~ s/\$\{IF\-([A-Z]+)\}.*?\$\{ELSE\-\1\}(.*?)\$\{ENDIF\-\1\}/$2/gs;
8124 # $IF...x...$ENDIF => (nothing)
8125 $rv =~ s/\$\{IF\-([A-Z]+)\}.*?\$\{ENDIF\-\1\}//gs;
8126 # ${var} => (nothing)
8127 $rv =~ s/\$\{[A-Z]+\}//g;
8128
8129 return $rv;
8130 }
8131
8132 =head2 running_in_zone
8133
8134 Returns 1 if the current Webmin instance is running in a Solaris zone. Used to
8135 disable module and features that are not appropriate, like those that modify
8136 mounted filesystems.
8137
8138 =cut
8139 sub running_in_zone
8140 {
8141 return 0 if ($gconfig{'os_type'} ne 'solaris' ||
8142              $gconfig{'os_version'} < 10);
8143 my $zn = `zonename 2>$null_file`;
8144 chop($zn);
8145 return $zn && $zn ne "global";
8146 }
8147
8148 =head2 running_in_vserver
8149
8150 Returns 1 if the current Webmin instance is running in a Linux VServer.
8151 Used to disable modules and features that are not appropriate.
8152
8153 =cut
8154 sub running_in_vserver
8155 {
8156 return 0 if ($gconfig{'os_type'} !~ /^\*-linux$/);
8157 my $vserver;
8158 local $_;
8159 open(MTAB, "/etc/mtab");
8160 while(<MTAB>) {
8161         my ($dev, $mp) = split(/\s+/, $_);
8162         if ($mp eq "/" && $dev =~ /^\/dev\/hdv/) {
8163                 $vserver = 1;
8164                 last;
8165                 }
8166         }
8167 close(MTAB);
8168 return $vserver;
8169 }
8170
8171 =head2 running_in_xen
8172
8173 Returns 1 if Webmin is running inside a Xen instance, by looking
8174 at /proc/xen/capabilities.
8175
8176 =cut
8177 sub running_in_xen
8178 {
8179 return 0 if (!-r "/proc/xen/capabilities");
8180 my $cap = &read_file_contents("/proc/xen/capabilities");
8181 return $cap =~ /control_d/ ? 0 : 1;
8182 }
8183
8184 =head2 running_in_openvz
8185
8186 Returns 1 if Webmin is running inside an OpenVZ container, by looking
8187 at /proc/vz/veinfo for a non-zero line.
8188
8189 =cut
8190 sub running_in_openvz
8191 {
8192 return 0 if (!-r "/proc/vz/veinfo");
8193 my $lref = &read_file_lines("/proc/vz/veinfo", 1);
8194 return 0 if (!$lref || !@$lref);
8195 foreach my $l (@$lref) {
8196         $l =~ s/^\s+//;
8197         my @ll = split(/\s+/, $l);
8198         return 0 if ($ll[0] eq '0');
8199         }
8200 return 1;
8201 }
8202
8203 =head2 list_categories(&modules, [include-empty])
8204
8205 Returns a hash mapping category codes to names, including any custom-defined
8206 categories. The modules parameter must be an array ref of module hash objects,
8207 as returned by get_all_module_infos.
8208
8209 =cut
8210 sub list_categories
8211 {
8212 my ($mods, $empty) = @_;
8213 my (%cats, %catnames);
8214 &read_file("$config_directory/webmin.catnames", \%catnames);
8215 foreach my $o (@lang_order_list) {
8216         &read_file("$config_directory/webmin.catnames.$o", \%catnames);
8217         }
8218 if ($empty) {
8219         %cats = %catnames;
8220         }
8221 foreach my $m (@$mods) {
8222         my $c = $m->{'category'};
8223         next if ($cats{$c});
8224         if (defined($catnames{$c})) {
8225                 $cats{$c} = $catnames{$c};
8226                 }
8227         elsif ($text{"category_$c"}) {
8228                 $cats{$c} = $text{"category_$c"};
8229                 }
8230         else {
8231                 # try to get category name from module ..
8232                 my %mtext = &load_language($m->{'dir'});
8233                 if ($mtext{"category_$c"}) {
8234                         $cats{$c} = $mtext{"category_$c"};
8235                         }
8236                 else {
8237                         $c = $m->{'category'} = "";
8238                         $cats{$c} = $text{"category_$c"};
8239                         }
8240                 }
8241         }
8242 return %cats;
8243 }
8244
8245 =head2 is_readonly_mode
8246
8247 Returns 1 if the current user is in read-only mode, and thus all writes
8248 to files and command execution should fail.
8249
8250 =cut
8251 sub is_readonly_mode
8252 {
8253 if (!defined($main::readonly_mode_cache)) {
8254         my %gaccess = &get_module_acl(undef, "");
8255         $main::readonly_mode_cache = $gaccess{'readonly'} ? 1 : 0;
8256         }
8257 return $main::readonly_mode_cache;
8258 }
8259
8260 =head2 command_as_user(user, with-env?, command, ...)
8261
8262 Returns a command to execute some command as the given user, using the
8263 su statement. If on Linux, the /bin/sh shell is forced in case the user
8264 does not have a valid shell. If with-env is set to 1, the -s flag is added
8265 to the su command to read the user's .profile or .bashrc file.
8266
8267 =cut
8268 sub command_as_user
8269 {
8270 my ($user, $env, @args) = @_;
8271 my @uinfo = getpwnam($user);
8272 if ($uinfo[8] ne "/bin/sh" && $uinfo[8] !~ /\/bash$/) {
8273         # User shell doesn't appear to be valid
8274         if ($gconfig{'os_type'} =~ /-linux$/) {
8275                 # Use -s /bin/sh to force it
8276                 $shellarg = " -s /bin/sh";
8277                 }
8278         elsif ($gconfig{'os_type'} eq 'freebsd' ||
8279                $gconfig{'os_type'} eq 'solaris' &&
8280                 $gconfig{'os_version'} >= 11 ||
8281                $gconfig{'os_type'} eq 'macos') {
8282                 # Use -m and force /bin/sh
8283                 @args = ( "/bin/sh", "-c", quotemeta(join(" ", @args)) );
8284                 $shellarg = " -m";
8285                 }
8286         }
8287 my $rv = "su".($env ? " -" : "").$shellarg.
8288          " ".quotemeta($user)." -c ".quotemeta(join(" ", @args));
8289 return $rv;
8290 }
8291
8292 =head2 list_osdn_mirrors(project, file)
8293
8294 This function is now deprecated in favor of letting sourceforge just
8295 redirect to the best mirror, and now just returns their primary download URL.
8296
8297 =cut
8298 sub list_osdn_mirrors
8299 {
8300 my ($project, $file) = @_;
8301 return ( { 'url' => "http://downloads.sourceforge.net/$project/$file",
8302            'default' => 0,
8303            'mirror' => 'downloads' } );
8304 }
8305
8306 =head2 convert_osdn_url(url)
8307
8308 Given a URL like http://osdn.dl.sourceforge.net/sourceforge/project/file.zip
8309 or http://prdownloads.sourceforge.net/project/file.zip , convert it
8310 to a real URL on the sourceforge download redirector.
8311
8312 =cut
8313 sub convert_osdn_url
8314 {
8315 my ($url) = @_;
8316 if ($url =~ /^http:\/\/[^\.]+.dl.sourceforge.net\/sourceforge\/([^\/]+)\/(.*)$/ ||
8317     $url =~ /^http:\/\/prdownloads.sourceforge.net\/([^\/]+)\/(.*)$/) {
8318         # Always use the Sourceforge mail download URL, which does
8319         # a location-based redirect for us
8320         my ($project, $file) = ($1, $2);
8321         $url = "http://prdownloads.sourceforge.net/sourceforge/".
8322                "$project/$file";
8323         return wantarray ? ( $url, 0 ) : $url;
8324         }
8325 else {
8326         # Some other source .. don't change
8327         return wantarray ? ( $url, 2 ) : $url;
8328         }
8329 }
8330
8331 =head2 get_current_dir
8332
8333 Returns the directory the current process is running in.
8334
8335 =cut
8336 sub get_current_dir
8337 {
8338 my $out;
8339 if ($gconfig{'os_type'} eq 'windows') {
8340         # Use cd command
8341         $out = `cd`;
8342         }
8343 else {
8344         # Use pwd command
8345         $out = `pwd`;
8346         $out =~ s/\\/\//g;
8347         }
8348 $out =~ s/\r|\n//g;
8349 return $out;
8350 }
8351
8352 =head2 supports_users
8353
8354 Returns 1 if the current OS supports Unix user concepts and functions like
8355 su , getpw* and so on. This will be true on Linux and other Unixes, but false
8356 on Windows.
8357
8358 =cut
8359 sub supports_users
8360 {
8361 return $gconfig{'os_type'} ne 'windows';
8362 }
8363
8364 =head2 supports_symlinks
8365
8366 Returns 1 if the current OS supports symbolic and hard links. This will not
8367 be the case on Windows.
8368
8369 =cut
8370 sub supports_symlinks
8371 {
8372 return $gconfig{'os_type'} ne 'windows';
8373 }
8374
8375 =head2 quote_path(path)
8376
8377 Returns a path with safe quoting for the current operating system.
8378
8379 =cut
8380 sub quote_path
8381 {
8382 my ($path) = @_;
8383 if ($gconfig{'os_type'} eq 'windows' || $path =~ /^[a-z]:/i) {
8384         # Windows only supports "" style quoting
8385         return "\"$path\"";
8386         }
8387 else {
8388         return quotemeta($path);
8389         }
8390 }
8391
8392 =head2 get_windows_root
8393
8394 Returns the base windows system directory, like c:/windows.
8395
8396 =cut
8397 sub get_windows_root
8398 {
8399 if ($ENV{'SystemRoot'}) {
8400         my $rv = $ENV{'SystemRoot'};
8401         $rv =~ s/\\/\//g;
8402         return $rv;
8403         }
8404 else {
8405         return -d "c:/windows" ? "c:/windows" : "c:/winnt";
8406         }
8407 }
8408
8409 =head2 read_file_contents(file)
8410
8411 Given a filename, returns its complete contents as a string. Effectively
8412 the same as the Perl construct `cat file`.
8413
8414 =cut
8415 sub read_file_contents
8416 {
8417 &open_readfile(FILE, $_[0]) || return undef;
8418 local $/ = undef;
8419 my $rv = <FILE>;
8420 close(FILE);
8421 return $rv;
8422 }
8423
8424 =head2 unix_crypt(password, salt)
8425
8426 Performs Unix encryption on a password, using the built-in crypt function or
8427 the Crypt::UnixCrypt module if the former does not work. The salt parameter
8428 must be either an already-hashed password, or a two-character alpha-numeric
8429 string.
8430
8431 =cut
8432 sub unix_crypt
8433 {
8434 my ($pass, $salt) = @_;
8435 return "" if ($salt !~ /^[a-zA-Z0-9\.\/]{2}/);   # same as real crypt
8436 my $rv = eval "crypt(\$pass, \$salt)";
8437 my $err = $@;
8438 return $rv if ($rv && !$@);
8439 eval "use Crypt::UnixCrypt";
8440 if (!$@) {
8441         return Crypt::UnixCrypt::crypt($pass, $salt);
8442         }
8443 else {
8444         &error("Failed to encrypt password : $err");
8445         }
8446 }
8447
8448 =head2 split_quoted_string(string)
8449
8450 Given a string like I<foo "bar baz" quux>, returns the array :
8451 foo, bar baz, quux
8452
8453 =cut
8454 sub split_quoted_string
8455 {
8456 my ($str) = @_;
8457 my @rv;
8458 while($str =~ /^"([^"]*)"\s*([\000-\377]*)$/ ||
8459       $str =~ /^'([^']*)'\s*([\000-\377]*)$/ ||
8460       $str =~ /^(\S+)\s*([\000-\377]*)$/) {
8461         push(@rv, $1);
8462         $str = $2;
8463         }
8464 return @rv;
8465 }
8466
8467 =head2 write_to_http_cache(url, file|&data)
8468
8469 Updates the Webmin cache with the contents of the given file, possibly also
8470 clearing out old data. Mainly for internal use by http_download.
8471
8472 =cut
8473 sub write_to_http_cache
8474 {
8475 my ($url, $file) = @_;
8476 return 0 if (!$gconfig{'cache_size'});
8477
8478 # Don't cache downloads that look dynamic
8479 if ($url =~ /cgi-bin/ || $url =~ /\?/) {
8480         return 0;
8481         }
8482
8483 # Check if the current module should do caching
8484 if ($gconfig{'cache_mods'} =~ /^\!(.*)$/) {
8485         # Caching all except some modules
8486         my @mods = split(/\s+/, $1);
8487         return 0 if (&indexof(&get_module_name(), @mods) != -1);
8488         }
8489 elsif ($gconfig{'cache_mods'}) {
8490         # Only caching some modules
8491         my @mods = split(/\s+/, $gconfig{'cache_mods'});
8492         return 0 if (&indexof(&get_module_name(), @mods) == -1);
8493         }
8494
8495 # Work out the size
8496 my $size;
8497 if (ref($file)) {
8498         $size = length($$file);
8499         }
8500 else {
8501         my @st = stat($file);
8502         $size = $st[7];
8503         }
8504
8505 if ($size > $gconfig{'cache_size'}) {
8506         # Bigger than the whole cache - so don't save it
8507         return 0;
8508         }
8509 my $cfile = $url;
8510 $cfile =~ s/\//_/g;
8511 $cfile = "$main::http_cache_directory/$cfile";
8512
8513 # See how much we have cached currently, clearing old files
8514 my $total = 0;
8515 mkdir($main::http_cache_directory, 0700) if (!-d $main::http_cache_directory);
8516 opendir(CACHEDIR, $main::http_cache_directory);
8517 foreach my $f (readdir(CACHEDIR)) {
8518         next if ($f eq "." || $f eq "..");
8519         my $path = "$main::http_cache_directory/$f";
8520         my @st = stat($path);
8521         if ($gconfig{'cache_days'} &&
8522             time()-$st[9] > $gconfig{'cache_days'}*24*60*60) {
8523                 # This file is too old .. trash it
8524                 unlink($path);
8525                 }
8526         else {
8527                 $total += $st[7];
8528                 push(@cached, [ $path, $st[7], $st[9] ]);
8529                 }
8530         }
8531 closedir(CACHEDIR);
8532 @cached = sort { $a->[2] <=> $b->[2] } @cached;
8533 while($total+$size > $gconfig{'cache_size'} && @cached) {
8534         # Cache is too big .. delete some files until the new one will fit
8535         unlink($cached[0]->[0]);
8536         $total -= $cached[0]->[1];
8537         shift(@cached);
8538         }
8539
8540 # Finally, write out the new file
8541 if (ref($file)) {
8542         &open_tempfile(CACHEFILE, ">$cfile");
8543         &print_tempfile(CACHEFILE, $$file);
8544         &close_tempfile(CACHEFILE);
8545         }
8546 else {
8547         my ($ok, $err) = &copy_source_dest($file, $cfile);
8548         }
8549
8550 return 1;
8551 }
8552
8553 =head2 check_in_http_cache(url)
8554
8555 If some URL is in the cache and valid, return the filename for it. Mainly
8556 for internal use by http_download.
8557
8558 =cut
8559 sub check_in_http_cache
8560 {
8561 my ($url) = @_;
8562 return undef if (!$gconfig{'cache_size'});
8563
8564 # Check if the current module should do caching
8565 if ($gconfig{'cache_mods'} =~ /^\!(.*)$/) {
8566         # Caching all except some modules
8567         my @mods = split(/\s+/, $1);
8568         return 0 if (&indexof(&get_module_name(), @mods) != -1);
8569         }
8570 elsif ($gconfig{'cache_mods'}) {
8571         # Only caching some modules
8572         my @mods = split(/\s+/, $gconfig{'cache_mods'});
8573         return 0 if (&indexof(&get_module_name(), @mods) == -1);
8574         }
8575
8576 my $cfile = $url;
8577 $cfile =~ s/\//_/g;
8578 $cfile = "$main::http_cache_directory/$cfile";
8579 my @st = stat($cfile);
8580 return undef if (!@st || !$st[7]);
8581 if ($gconfig{'cache_days'} && time()-$st[9] > $gconfig{'cache_days'}*24*60*60) {
8582         # Too old!
8583         unlink($cfile);
8584         return undef;
8585         }
8586 open(TOUCH, ">>$cfile");        # Update the file time, to keep it in the cache
8587 close(TOUCH);
8588 return $cfile;
8589 }
8590
8591 =head2 supports_javascript
8592
8593 Returns 1 if the current browser is assumed to support javascript.
8594
8595 =cut
8596 sub supports_javascript
8597 {
8598 if (defined(&theme_supports_javascript)) {
8599         return &theme_supports_javascript();
8600         }
8601 return $ENV{'MOBILE_DEVICE'} ? 0 : 1;
8602 }
8603
8604 =head2 get_module_name
8605
8606 Returns the name of the Webmin module that called this function. For internal
8607 use only by other API functions.
8608
8609 =cut
8610 sub get_module_name
8611 {
8612 return &get_module_variable('$module_name');
8613 }
8614
8615 =head2 get_module_variable(name, [ref])
8616
8617 Returns the value of some variable which is set in the caller's context, if
8618 using the new WebminCore package. For internal use only.
8619
8620 =cut
8621 sub get_module_variable
8622 {
8623 my ($v, $wantref) = @_;
8624 my $slash = $wantref ? "\\" : "";
8625 my $thispkg = &web_libs_package();
8626 if ($thispkg eq 'WebminCore') {
8627         my ($vt, $vn) = split('', $v, 2);
8628         my $callpkg;
8629         for(my $i=0; ($callpkg) = caller($i); $i++) {
8630                 last if ($callpkg ne $thispkg);
8631                 }
8632         return eval "${slash}${vt}${callpkg}::${vn}";
8633         }
8634 return eval "${slash}${v}";
8635 }
8636
8637 =head2 clear_time_locale()
8638
8639 Temporarily force the locale to C, until reset_time_locale is called. This is
8640 useful if your code is going to call C<strftime> from the POSIX package, and
8641 you want to ensure that the output is in a consistent format.
8642
8643 =cut
8644 sub clear_time_locale
8645 {
8646 if ($main::clear_time_locale_count == 0) {
8647         eval {
8648                 use POSIX;
8649                 $main::clear_time_locale_old = POSIX::setlocale(POSIX::LC_TIME);
8650                 POSIX::setlocale(POSIX::LC_TIME, "C");
8651                 };
8652         }
8653 $main::clear_time_locale_count++;
8654 }
8655
8656 =head2 reset_time_locale()
8657
8658 Revert the locale to whatever it was before clear_time_locale was called
8659
8660 =cut
8661 sub reset_time_locale
8662 {
8663 if ($main::clear_time_locale_count == 1) {
8664         eval {
8665                 POSIX::setlocale(POSIX::LC_TIME, $main::clear_time_locale_old);
8666                 $main::clear_time_locale_old = undef;
8667                 };
8668         }
8669 $main::clear_time_locale_count--;
8670 }
8671
8672 =head2 callers_package(filehandle)
8673
8674 Convert a non-module filehandle like FOO to one qualified with the 
8675 caller's caller's package, like fsdump::FOO. For internal use only.
8676
8677 =cut
8678 sub callers_package
8679 {
8680 my ($fh) = @_;
8681 my $callpkg = (caller(1))[0];
8682 my $thispkg = &web_libs_package();
8683 if (!ref($fh) && $fh !~ /::/ &&
8684     $callpkg ne $thispkg && $thispkg eq 'WebminCore') {
8685         $fh = $callpkg."::".$fh;
8686         }
8687 return $fh;
8688 }
8689
8690 =head2 web_libs_package()
8691
8692 Returns the package this code is in. We can't always trust __PACKAGE__. For
8693 internal use only.
8694
8695 =cut
8696 sub web_libs_package
8697 {
8698 if ($called_from_webmin_core) {
8699         return "WebminCore";
8700         }
8701 return __PACKAGE__;
8702 }
8703
8704 $done_web_lib_funcs = 1;
8705
8706 1;