Server IP : 195.201.23.43 / Your IP : 13.58.214.82 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/squid/ |
Upload File : |
#!/usr/bin/perl # save_logs.cgi # Save logging options use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; our (%text, %in, %access, $squid_version, %config); require './squid-lib.pl'; $access{'logging'} || &error($text{'elogs_ecannot'}); &ReadParse(); &lock_file($config{'squid_conf'}); my $conf = &get_config(); &error_setup($text{'slogs_ftslo'}); if ($squid_version < 2.6) { # Just a single logging directive &save_opt("cache_access_log", \&check_file, $conf); } else { # Supports definition of log formats and files my @logformat; for(my $i=0; defined(my $fname = $in{"fname_$i"}); $i++) { my $ffmt = $in{"ffmt_$i"}; next if (!$fname); $fname =~ /^\S+$/ || &error(&text('slogs_efname', $i+1)); $ffmt =~ /\S/ || &error(&text('slogs_effmt', $i+1)); push(@logformat, { 'name' => 'logformat', 'values' => [ $fname, $ffmt ] }); } &save_directive($conf, "logformat", \@logformat); # Save log files my @access; for(my $i=0; defined(my $afile = $in{"afile_$i"}); $i++) { my $adef = $in{"afile_def_$i"}; next if ($adef == 1); $adef == 2 || $afile =~ /^\/\S+$/ || &error(&text('slogs_eafile', $i+1)); my $afmt = $in{"afmt_$i"}; my $aacls = $in{"aacls_$i"}; push(@access, { 'name' => 'access_log', 'values' => [ $adef == 2 ? "none" : $afile, $afmt ? ( $afmt ) : $aacls ? ( "squid" ) : ( ), split(/\s+/, $aacls) ] } ); } &save_directive($conf, "access_log", \@access); } &save_opt("cache_log", \&check_file, $conf); if ($in{'cache_store_log_def'} == 2) { &save_directive($conf, "cache_store_log", [ { 'name' => 'cache_store_log', 'values' => [ "none" ] } ]); } else { &save_opt("cache_store_log", \&check_file, $conf); } &save_opt("cache_swap_log", \&check_file, $conf); &save_choice("emulate_httpd_log", "off", $conf); &save_choice("log_mime_hdrs", "off", $conf); &save_opt("useragent_log", \&check_file, $conf); &save_opt("pid_filename", \&check_pid_file, $conf); if ($squid_version >= 2.2) { if (!$in{'complex_ident'}) { my @ila = split(/\0/, $in{'ident_lookup_access'}); &save_directive($conf, "ident_lookup_access", !@ila ? [ ] : [ { 'name' => 'ident_lookup_access', 'values' => [ 'allow', @ila ] } ]); } &save_opt_time("ident_timeout", $conf); } else { &save_choice("ident_lookup", "off", $conf); } &save_choice("log_fqdn", "off", $conf); &save_opt("client_netmask", \&check_netmask, $conf); &save_opt("debug_options", \&check_debug, $conf); if ($squid_version >= 2) { &save_opt("mime_table", \&check_file, $conf); } &flush_file_lines(); &unlock_file($config{'squid_conf'}); &webmin_log("logs", undef, undef, \%in); &redirect(""); sub check_pid_file { my ($file) = @_; return $file eq 'none' ? undef : &check_file($file); } sub check_file { my ($file) = @_; $file =~ /^\// || return &text('slogs_emsg1', $file); $file =~ /^(\S*\/)([^\/\s]+)$/ || return &text('slogs_emsg2', $file); (-d $1) || return &text('slogs_emsg3', $1); return undef; } sub check_netmask { my ($value) = @_; &check_ipaddress($value) || return &text('slogs_emsg4', $value); return undef; } sub check_debug { my ($value) = @_; $value =~ /\S+/ || return &text('slogs_emsg5', $value); return undef; }Private