version 1.103.2.13, 2024/07/01 12:02:42
|
version 1.103.2.16, 2024/07/28 23:52:11
|
Line 335 sub start_logging {
|
Line 335 sub start_logging {
|
<li><a href="#lonc">lonc</a></li> |
<li><a href="#lonc">lonc</a></li> |
<li><a href="#lonnet">lonnet</a></li> |
<li><a href="#lonnet">lonnet</a></li> |
<li><a href="#connections">Connections</a></li> |
<li><a href="#connections">Connections</a></li> |
|
<li><a href="#bashconf">bash readline config</a></li> |
<li><a href="#delayed">Delayed Messages</a></li> |
<li><a href="#delayed">Delayed Messages</a></li> |
<li><a href="#errcount">Error Count</a></li> |
<li><a href="#errcount">Error Count</a></li> |
</ol> |
</ol> |
Line 1263 sub read_serverhomeIDs {
|
Line 1264 sub read_serverhomeIDs {
|
return %server; |
return %server; |
} |
} |
|
|
|
sub check_bash_settings { |
|
my $distro = &LONCAPA::distro(); |
|
my ($check_bracketed_paste,$bracketed_warning); |
|
if ($distro =~ /^debian(\d+)$/) { |
|
if ($1 >= 12) { |
|
$check_bracketed_paste = 1; |
|
} |
|
} elsif ($distro =~ /^ubuntu(\d+)$/) { |
|
if ($1 >= 22) { |
|
$check_bracketed_paste = 1; |
|
} |
|
} elsif ($distro =~ /^(?:redhat|oracle|alma|rocky|centos-stream)(\d+)$/) { |
|
if ($1 >= 9) { |
|
$check_bracketed_paste = 1; |
|
} |
|
} elsif ($distro =~ /^fedora(\d+)/) { |
|
if ($1 >= 34) { |
|
$check_bracketed_paste = 1; |
|
} |
|
} |
|
if ($check_bracketed_paste) { |
|
if (open(PIPE,"bind -V 2>&1 | grep enable-bracketed-paste |")) { |
|
my $info = <PIPE>; |
|
chomp($info); |
|
my ($bracketed) = ($info =~ /^\Qenable-bracketed-paste\E\s+is\s+set\s+to\s+\W(on|off)\W$/); |
|
close(PIPE); |
|
if ($bracketed eq 'on') { |
|
$bracketed_warning = 1; |
|
} |
|
} else { |
|
print "Unable to check if bracketed paste is set to off for www user's shell\n"; |
|
} |
|
} |
|
return ($bracketed_warning,$check_bracketed_paste); |
|
} |
|
|
|
sub set_bracketed_paste_off { |
|
my $bash_www_cnf = '/home/www/.inputrc'; |
|
my $result; |
|
if (!-e $bash_www_cnf) { |
|
system("touch $bash_www_cnf"); |
|
if (open(my $cfh,'>',$bash_www_cnf)) { |
|
print $cfh <<'END'; |
|
$if R |
|
set enable-bracketed-paste off |
|
$endif |
|
|
|
$if maxima |
|
set enable-bracketed-paste off |
|
$endif |
|
END |
|
close($cfh); |
|
$result = "Updated $bash_www_cnf so enable-bracketed-paste is off for R bash shell"; |
|
} else { |
|
$result = "Could not open $bash_www_cnf to add 'set enable-bracketed-paste to off'"; |
|
} |
|
my $wwwuid = getpwnam('www'); |
|
my $wwwgid = getgrnam('www'); |
|
if ($wwwuid!=$<) { |
|
chown($wwwuid,$wwwgid,$bash_www_cnf); |
|
} |
|
} else { |
|
my (%bracketed_paste_on,%bracketed_paste_off,@preserve,$condition); |
|
$condition = ''; |
|
if (open(my $cfh,'<',$bash_www_cnf)) { |
|
while (my $line=<$cfh>) { |
|
chomp($line); |
|
if ($line =~ /^\$if\s+(\w+)\s*$/) { |
|
if ($1 eq 'R') { |
|
$condition = 'r'; |
|
} elsif ($1 eq 'maxima') { |
|
$condition = 'maxima'; |
|
} else { |
|
$condition = 'other'; |
|
} |
|
} elsif ($line =~ /^\$endif\s*$/) { |
|
$condition = ''; |
|
} |
|
if ($line =~ /^\s*set\s+enable\-bracketed\-paste\s+(off|on)\s*$/) { |
|
if ($1 eq 'off') { |
|
if ($condition ne '') { |
|
$bracketed_paste_off{$condition} = 1; |
|
} else { |
|
$bracketed_paste_off{all} = 1; |
|
} |
|
push(@preserve,$line); |
|
} else { |
|
if ($condition ne '') { |
|
$bracketed_paste_on{$condition} = 1; |
|
if (($condition eq 'r') || ($condition eq 'maxima')) { |
|
push(@preserve,' set enable-bracketed-paste off'); |
|
} else { |
|
push(@preserve,$line); |
|
} |
|
} else { |
|
$bracketed_paste_on{all} = 1; |
|
push(@preserve,$line); |
|
} |
|
} |
|
} else { |
|
push(@preserve,$line); |
|
} |
|
} |
|
close($cfh); |
|
} else { |
|
$result = "Could not open $bash_www_cnf to check if a value is included for 'enable-bracketed-paste'."; |
|
} |
|
if (($bracketed_paste_on{r} || $bracketed_paste_on{maxima}) || |
|
(!exists($bracketed_paste_off{r}) && !exists($bracketed_paste_on{r}) && |
|
!exists($bracketed_paste_off{maxima}) && !exists($bracketed_paste_on{maxima}))) { |
|
if (open(my $cfh,'>',$bash_www_cnf)) { |
|
if (@preserve) { |
|
foreach my $entry (@preserve) { |
|
print $cfh "$entry\n"; |
|
} |
|
if (!exists($bracketed_paste_off{r}) && !exists($bracketed_paste_on{r})) { |
|
print $cfh <<'END'; |
|
$if R |
|
set enable-bracketed-paste off |
|
$endif |
|
END |
|
} |
|
if (!exists($bracketed_paste_off{r}) && !exists($bracketed_paste_on{r})) { |
|
print $cfh <<'END'; |
|
$if maxima |
|
set enable-bracketed-paste off |
|
$endif |
|
END |
|
} |
|
} else { |
|
print $cfh <<'END'; |
|
$if R |
|
set enable-bracketed-paste off |
|
$endif |
|
|
|
$if maxima |
|
set enable-bracketed-paste off |
|
$endif |
|
END |
|
} |
|
close($cfh); |
|
$result = "Updated $bash_www_cnf"; |
|
} else { |
|
$result = "Could not open $bash_www_cnf to add 'set enable-bracketed-paste to off'"; |
|
} |
|
} else { |
|
$result = "No action needed; $bash_www_cnf already includes 'set enable-bracketed-paste to off'"; |
|
} |
|
} |
|
return $result; |
|
} |
|
|
sub send_mail { |
sub send_mail { |
my ($sysmail,$reportstatus) = @_; |
my ($sysmail,$reportstatus) = @_; |
my $defdom = $perlvar{'lonDefDomain'}; |
my $defdom = $perlvar{'lonDefDomain'}; |
Line 1454 sub main () {
|
Line 1607 sub main () {
|
&test_connections($fh); |
&test_connections($fh); |
} |
} |
if (!$justcheckdaemons && !$justcheckconnections && !$justreload && !$justiptables) { |
if (!$justcheckdaemons && !$justcheckconnections && !$justreload && !$justiptables) { |
|
my ($bracketed_warning,$check_bracketed_paste) = &check_bash_settings(); |
|
if ($check_bracketed_paste) { |
|
&log($fh,'<hr /><a name="bashconf" /><h2>bash readline config</h2><h3>Bracketed Paste</h3>'. |
|
'<p>Distros using bash readline library 8.1 or later need bracketed paste disabled for the R bash shell for the www user so R commands sent to lonr daemon will be processed.</p>'); |
|
my $bash_www_cnf = '/home/www/.inputrc'; |
|
my $non_empty_conffile; |
|
unless ($bracketed_warning) { |
|
if (-e $bash_www_cnf) { |
|
my $filesize = (stat($bash_www_cnf))[7]; |
|
if ($filesize > 0) { |
|
$non_empty_conffile = 1; |
|
} |
|
} |
|
} |
|
if (($bracketed_warning) || ($non_empty_conffile)) { |
|
my $bash_update = &set_bracketed_paste_off(); |
|
if ($bash_update) { |
|
&log($fh,'<p>'.$bash_update.'</p>'."\n"); |
|
} |
|
} else { |
|
&log($fh,'<p>No action needed; /home/www/.inputrc already set.</p>'."\n"); |
|
} |
|
} else { |
|
&log($fh,'<hr /><a name="bashconf" /><h2>bash readline config</h2><h3>Bracketed Paste</h3>'. |
|
'<p>No action needed for distros using pre-8.1 bash readline library</p>'."\n"); |
|
} |
my $domconf = &get_domain_config(); |
my $domconf = &get_domain_config(); |
my ($threshold,$sysmail,$reportstatus,$weightsref,$exclusionsref) = |
my ($threshold,$sysmail,$reportstatus,$weightsref,$exclusionsref) = |
&get_permcount_settings($domconf); |
&get_permcount_settings($domconf); |