File:  [LON-CAPA] / loncom / loncron
Revision 1.81: download - view: text, annotated - select for diffs
Thu Jun 11 00:15:27 2009 UTC (14 years, 10 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_8_99_0, bz5969, bz2851, HEAD, GCI_2, BZ5971-printing-apage
loncron updates firewall access to lond port (5663) when connections are updated.
- uses lciptables (setuid script which calls routines in LONCAPA::Firewall.pm).
- list of IPs of hosts in cluster stored in temporary file, so
  lciptables does not need to load lonnet.pm
  (contains inadmissable commands in setuid context).

    1: #!/usr/bin/perl
    2: 
    3: # Housekeeping program, started by cron, loncontrol and loncron.pl
    4: #
    5: # $Id: loncron,v 1.81 2009/06/11 00:15:27 raeburn Exp $
    6: #
    7: # Copyright Michigan State University Board of Trustees
    8: #
    9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   10: #
   11: # LON-CAPA is free software; you can redistribute it and/or modify
   12: # it under the terms of the GNU General Public License as published by
   13: # the Free Software Foundation; either version 2 of the License, or
   14: # (at your option) any later version.
   15: #
   16: # LON-CAPA is distributed in the hope that it will be useful,
   17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   19: # GNU General Public License for more details.
   20: #
   21: # You should have received a copy of the GNU General Public License
   22: # along with LON-CAPA; if not, write to the Free Software
   23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   24: #
   25: # /home/httpd/html/adm/gpl.txt
   26: #
   27: # http://www.lon-capa.org/
   28: #
   29: 
   30: $|=1;
   31: use strict;
   32: 
   33: use lib '/home/httpd/lib/perl/';
   34: use LONCAPA::Configuration;
   35: use Apache::lonnet;
   36: use Apache::loncommon;
   37: 
   38: use IO::File;
   39: use IO::Socket;
   40: use HTML::Entities;
   41: use Getopt::Long;
   42: #globals
   43: use vars qw (%perlvar %simplestatus $errors $warnings $notices $totalcount);
   44: 
   45: my $statusdir="/home/httpd/html/lon-status";
   46: 
   47: 
   48: # --------------------------------------------------------- Output error status
   49: 
   50: sub log {
   51:     my $fh=shift;
   52:     if ($fh) {	print $fh @_  }
   53: }
   54: 
   55: sub errout {
   56:    my $fh=shift;
   57:    &log($fh,(<<ENDERROUT));
   58:      <table border="2" bgcolor="#CCCCCC">
   59:      <tr><td>Notices</td><td>$notices</td></tr>
   60:      <tr><td>Warnings</td><td>$warnings</td></tr>
   61:      <tr><td>Errors</td><td>$errors</td></tr>
   62:      </table><p><a href="#top">Top</a></p>
   63: ENDERROUT
   64: }
   65: 
   66: sub rotate_logfile {
   67:     my ($file,$fh,$description) = @_;
   68:     my $size=(stat($file))[7];
   69:     if ($size>40000) {
   70: 	&log($fh,"<p>Rotating $description ...</p>");
   71: 	rename("$file.2","$file.3");
   72: 	rename("$file.1","$file.2");
   73: 	rename("$file","$file.1");
   74:     } 
   75: }
   76: 
   77: sub start_daemon {
   78:     my ($fh,$daemon,$pidfile,$args) = @_;
   79:     my $progname=$daemon;
   80:     if ($daemon eq 'lonc') {
   81: 	$progname='loncnew'; 
   82:     }
   83:     my $error_fname="$perlvar{'lonDaemons'}/logs/${daemon}_errors";
   84:     &rotate_logfile($error_fname,$fh,'error logs');
   85:     if ($daemon eq 'lonc') {
   86: 	&clean_sockets($fh);
   87:     }
   88:     system("$perlvar{'lonDaemons'}/$progname 2>$perlvar{'lonDaemons'}/logs/${daemon}_errors");
   89:     sleep 1;
   90:     if (-e $pidfile) {
   91: 	&log($fh,"<p>Seems like it started ...</p>");
   92: 	my $lfh=IO::File->new("$pidfile");
   93: 	my $daemonpid=<$lfh>;
   94: 	chomp($daemonpid);
   95: 	if ($daemonpid =~ /^\d+$/ && kill 0 => $daemonpid) {
   96: 	    return 1;
   97: 	} else {
   98: 	    return 0;
   99: 	}
  100:     }
  101:     &log($fh,"<p>Seems like that did not work!</p>");
  102:     $errors++;
  103:     return 0;
  104: }
  105: 
  106: sub checkon_daemon {
  107:     my ($fh,$daemon,$maxsize,$send,$args)=@_;
  108: 
  109:     my $result;
  110:     &log($fh,'<hr /><a name="'.$daemon.'" /><h2>'.$daemon.'</h2><h3>Log</h3><p style="white-space: pre;"><tt>');
  111:     printf("%-15s ",$daemon);
  112:     if (-e "$perlvar{'lonDaemons'}/logs/$daemon.log"){
  113: 	open (DFH,"tail -n25 $perlvar{'lonDaemons'}/logs/$daemon.log|");
  114: 	while (my $line=<DFH>) { 
  115: 	    &log($fh,"$line");
  116: 	    if ($line=~/INFO/) { $notices++; }
  117: 	    if ($line=~/WARNING/) { $notices++; }
  118: 	    if ($line=~/CRITICAL/) { $warnings++; }
  119: 	};
  120: 	close (DFH);
  121:     }
  122:     &log($fh,"</tt></p>");
  123:     
  124:     my $pidfile="$perlvar{'lonDaemons'}/logs/$daemon.pid";
  125:     
  126:     my $restartflag=1;
  127:     my $daemonpid;
  128:     if (-e $pidfile) {
  129: 	my $lfh=IO::File->new("$pidfile");
  130: 	$daemonpid=<$lfh>;
  131: 	chomp($daemonpid);
  132: 	if ($daemonpid =~ /^\d+$/ && kill 0 => $daemonpid) {
  133: 	    &log($fh,"<h3>$daemon at pid $daemonpid responding");
  134: 	    if ($send) { &log($fh,", sending $send"); }
  135: 	    &log($fh,"</h3>");
  136: 	    if ($send eq 'USR1') { kill USR1 => $daemonpid; }
  137: 	    if ($send eq 'USR2') { kill USR2 => $daemonpid; }
  138: 	    $restartflag=0;
  139: 	    if ($send eq 'USR2') {
  140: 		$result = 'reloaded';
  141: 		print "reloaded\n";
  142: 	    } else {
  143: 		$result = 'running';
  144: 		print "running\n";
  145: 	    }
  146: 	} else {
  147: 	    $errors++;
  148: 	    &log($fh,"<h3>$daemon at pid $daemonpid not responding</h3>");
  149: 	    $restartflag=1;
  150: 	    &log($fh,"<h3>Decided to clean up stale .pid file and restart $daemon</h3>");
  151: 	}
  152:     }
  153:     if ($restartflag==1) {
  154: 	$simplestatus{$daemon}='off';
  155: 	$errors++;
  156: 	my $kadaemon=$daemon;
  157: 	if ($kadaemon eq 'lonmemcached') { $kadaemon='memcached'; }
  158: 	&log($fh,'<br><font color="red">Killall '.$daemon.': '.
  159: 	    `killall $kadaemon 2>&1`.' - ');
  160: 	sleep 1;
  161: 	&log($fh,unlink($pidfile).' - '.
  162: 	    `killall -9 $kadaemon 2>&1`.
  163: 	    '</font><br>');
  164: 	&log($fh,"<h3>$daemon not running, trying to start</h3>");
  165: 	
  166: 	if (&start_daemon($fh,$daemon,$pidfile,$args)) {
  167: 	    &log($fh,"<h3>$daemon at pid $daemonpid responding</h3>");
  168: 	    $simplestatus{$daemon}='restarted';
  169: 	    $result = 'started';
  170: 	    print "started\n";
  171: 	} else {
  172: 	    $errors++;
  173: 	    &log($fh,"<h3>$daemon at pid $daemonpid not responding</h3>");
  174: 	    &log($fh,"<p>Give it one more try ...</p>");
  175: 	    print " ";
  176: 	    if (&start_daemon($fh,$daemon,$pidfile,$args)) {
  177: 		&log($fh,"<h3>$daemon at pid $daemonpid responding</h3>");
  178: 		$simplestatus{$daemon}='restarted';
  179: 		$result = 'started';
  180: 		print "started\n";
  181: 	    } else {
  182: 		$result = 'failed';
  183: 		print " failed\n";
  184: 		$simplestatus{$daemon}='failed';
  185: 		$errors++; $errors++;
  186: 		&log($fh,"<h3>$daemon at pid $daemonpid not responding</h3>");
  187: 		&log($fh,"<p>Unable to start $daemon</p>");
  188: 	    }
  189: 	}
  190: 
  191: 	if (-e "$perlvar{'lonDaemons'}/logs/$daemon.log"){
  192: 	    &log($fh,"<p><pre>");
  193: 	    open (DFH,"tail -n100 $perlvar{'lonDaemons'}/logs/$daemon.log|");
  194: 	    while (my $line=<DFH>) { 
  195: 		&log($fh,"$line");
  196: 		if ($line=~/WARNING/) { $notices++; }
  197: 		if ($line=~/CRITICAL/) { $notices++; }
  198: 	    };
  199: 	    close (DFH);
  200: 	    &log($fh,"</pre></p>");
  201: 	}
  202:     }
  203:     
  204:     my $fname="$perlvar{'lonDaemons'}/logs/$daemon.log";
  205:     &rotate_logfile($fname,$fh,'logs');
  206: 
  207:     &errout($fh);
  208:     return $result;
  209: }
  210: 
  211: # --------------------------------------------------------------------- Machine
  212: sub log_machine_info {
  213:     my ($fh)=@_;
  214:     &log($fh,'<hr /><a name="machine" /><h2>Machine Information</h2>');
  215:     &log($fh,"<h3>loadavg</h3>");
  216: 	
  217:     open (LOADAVGH,"/proc/loadavg");
  218:     my $loadavg=<LOADAVGH>;
  219:     close (LOADAVGH);
  220:     
  221:     &log($fh,"<tt>$loadavg</tt>");
  222:     
  223:     my @parts=split(/\s+/,$loadavg);
  224:     if ($parts[1]>4.0) {
  225: 	$errors++;
  226:     } elsif ($parts[1]>2.0) {
  227: 	$warnings++;
  228:     } elsif ($parts[1]>1.0) {
  229: 	$notices++;
  230:     }
  231: 
  232:     &log($fh,"<h3>df</h3>");
  233:     &log($fh,"<pre>");
  234: 
  235:     open (DFH,"df|");
  236:     while (my $line=<DFH>) { 
  237: 	&log($fh,&encode_entities($line,'<>&"')); 
  238: 	@parts=split(/\s+/,$line);
  239: 	my $usage=$parts[4];
  240: 	$usage=~s/\W//g;
  241: 	if ($usage>90) { 
  242: 	    $warnings++;
  243: 	    $notices++; 
  244: 	} elsif ($usage>80) {
  245: 	    $warnings++;
  246: 	} elsif ($usage>60) {
  247: 	    $notices++;
  248: 	}
  249: 	if ($usage>95) { $warnings++; $warnings++; $simplestatus{'diskfull'}++; }
  250:     }
  251:     close (DFH);
  252:     &log($fh,"</pre>");
  253: 
  254: 
  255:     &log($fh,"<h3>ps</h3>");
  256:     &log($fh,"<pre>");
  257:     my $psproc=0;
  258: 
  259:     open (PSH,"ps aux --cols 140 |");
  260:     while (my $line=<PSH>) { 
  261: 	&log($fh,&encode_entities($line,'<>&"')); 
  262: 	$psproc++;
  263:     }
  264:     close (PSH);
  265:     &log($fh,"</pre>");
  266: 
  267:     if ($psproc>200) { $notices++; }
  268:     if ($psproc>250) { $notices++; }
  269: 
  270:     &log($fh,"<h3>distprobe</h3>");
  271:     &log($fh,"<pre>");
  272:     open(DSH,"$perlvar{'lonDaemons'}/distprobe |");
  273:     while (my $line=<DSH>) { 
  274: 	&log($fh,&encode_entities($line,'<>&"')); 
  275: 	$psproc++;
  276:     }
  277:     close(DSH);
  278:     &log($fh,"</pre>");
  279: 
  280:     &errout($fh);
  281: }
  282: 
  283: sub start_logging {
  284:     my $fh=IO::File->new(">$statusdir/newstatus.html");
  285:     my %simplestatus=();
  286:     my $now=time;
  287:     my $date=localtime($now);
  288:     
  289: 
  290:     &log($fh,(<<ENDHEADERS));
  291: <html>
  292: <head>
  293: <title>LON Status Report $perlvar{'lonHostID'}</title>
  294: </head>
  295: <body bgcolor="#AAAAAA">
  296: <a name="top" />
  297: <h1>LON Status Report $perlvar{'lonHostID'}</h1>
  298: <h2>$date ($now)</h2>
  299: <ol>
  300: <li><a href="#configuration">Configuration</a></li>
  301: <li><a href="#machine">Machine Information</a></li>
  302: <li><a href="#tmp">Temporary Files</a></li>
  303: <li><a href="#tokens">Session Tokens</a></li>
  304: <li><a href="#httpd">httpd</a></li>
  305: <li><a href="#lonsql">lonsql</a></li>
  306: <li><a href="#lond">lond</a></li>
  307: <li><a href="#lonc">lonc</a></li>
  308: <li><a href="#lonnet">lonnet</a></li>
  309: <li><a href="#connections">Connections</a></li>
  310: <li><a href="#delayed">Delayed Messages</a></li>
  311: <li><a href="#errcount">Error Count</a></li>
  312: </ol>
  313: <hr />
  314: <a name="configuration" />
  315: <h2>Configuration</h2>
  316: <h3>PerlVars</h3>
  317: <table border="2">
  318: ENDHEADERS
  319: 
  320:     foreach my $varname (sort(keys(%perlvar))) {
  321: 	&log($fh,"<tr><td>$varname</td><td>".
  322: 	     &encode_entities($perlvar{$varname},'<>&"')."</td></tr>\n");
  323:     }
  324:     &log($fh,"</table><h3>Hosts</h3><table border='2'>");
  325:     my %hostname = &Apache::lonnet::all_hostnames();
  326:     foreach my $id (sort(keys(%hostname))) {
  327: 	my $role = (&Apache::lonnet::is_library($id) ? 'library'
  328: 		                                     : 'access');
  329: 	&log($fh,
  330: 	    "<tr><td>$id</td><td>".&Apache::lonnet::host_domain($id).
  331: 	    "</td><td>".$role.
  332: 	    "</td><td>".&Apache::lonnet::hostname($id)."</td></tr>\n");
  333:     }
  334:     &log($fh,"</table><h3>Spare Hosts</h3><ul>");
  335:     foreach my $type (sort(keys(%Apache::lonnet::spareid))) {
  336: 	&log($fh,"<li>$type\n<ol>");
  337: 	foreach my $id (@{ $Apache::lonnet::spareid{$type} }) {
  338: 	    &log($fh,"<li>$id</li>\n");
  339: 	}
  340: 	&log($fh,"</ol>\n</li>\n");
  341:     }
  342:     &log($fh,"</ul>\n");
  343:     return $fh;
  344: }
  345: 
  346: # --------------------------------------------------------------- clean out tmp
  347: sub clean_tmp {
  348:     my ($fh)=@_;
  349:     &log($fh,'<hr /><a name="tmp" /><h2>Temporary Files</h2>');
  350:     my $cleaned=0;
  351:     my $old=0;
  352:     while (my $fname=<$perlvar{'lonDaemons'}/tmp/*>) {
  353: 	my ($dev,$ino,$mode,$nlink,
  354: 	    $uid,$gid,$rdev,$size,
  355: 	    $atime,$mtime,$ctime,
  356: 	    $blksize,$blocks)=stat($fname);
  357: 	my $now=time;
  358: 	my $since=$now-$mtime;
  359: 	if ($since>$perlvar{'lonExpire'}) {
  360: 	    my $line='';
  361: 	    if (open(PROBE,$fname)) {
  362: 		$line=<PROBE>;
  363: 		close(PROBE);
  364: 	    }
  365: 	    unless ($line=~/^CHECKOUTTOKEN\&/) {
  366: 		$cleaned++;
  367: 		unlink("$fname");
  368: 	    } else {
  369: 		if ($since>365*$perlvar{'lonExpire'}) {
  370: 		    $cleaned++;
  371: 		    unlink("$fname");
  372: 		} else { $old++; }
  373: 	    }
  374: 	}
  375:     }
  376:     &log($fh,"Cleaned up ".$cleaned." files (".$old." old checkout tokens).");
  377: }
  378: 
  379: # ------------------------------------------------------------ clean out lonIDs
  380: sub clean_lonIDs {
  381:     my ($fh)=@_;
  382:     &log($fh,'<hr /><a name="tokens" /><h2>Session Tokens</h2>');
  383:     my $cleaned=0;
  384:     my $active=0;
  385:     while (my $fname=<$perlvar{'lonIDsDir'}/*>) {
  386: 	my ($dev,$ino,$mode,$nlink,
  387: 	    $uid,$gid,$rdev,$size,
  388: 	    $atime,$mtime,$ctime,
  389: 	    $blksize,$blocks)=stat($fname);
  390: 	my $now=time;
  391: 	my $since=$now-$mtime;
  392: 	if ($since>$perlvar{'lonExpire'}) {
  393: 	    $cleaned++;
  394: 	    &log($fh,"Unlinking $fname<br>");
  395: 	    unlink("$fname");
  396: 	} else {
  397: 	    $active++;
  398: 	}
  399:     }
  400:     &log($fh,"<p>Cleaned up ".$cleaned." stale session token(s).</p>");
  401:     &log($fh,"<h3>$active open session(s)</h3>");
  402: }
  403: 
  404: # ----------------------------------------------------------- clean out sockets
  405: sub clean_sockets {
  406:     my ($fh)=@_;
  407:     my $cleaned=0;
  408:     opendir(SOCKETS,$perlvar{'lonSockDir'});
  409:     while (my $fname=readdir(SOCKETS)) {
  410: 	next if (-d $fname 
  411: 		 || $fname=~/(mysqlsock|maximasock|rsock|\Q$perlvar{'lonSockDir'}\E)/);
  412: 	$cleaned++;
  413: 	&log($fh,"Unlinking $fname<br />");
  414: 	unlink("/home/httpd/sockets/$fname");
  415:     }
  416:     &log($fh,"<p>Cleaned up ".$cleaned." stale sockets.</p>");
  417: }
  418: 
  419: 
  420: # ----------------------------------------------------------------------- httpd
  421: sub check_httpd_logs {
  422:     my ($fh)=@_;
  423:     &log($fh,'<hr /><a name="httpd" /><h2>httpd</h2><h3>Access Log</h3><pre>');
  424:     
  425:     open (DFH,"tail -n25 /etc/httpd/logs/access_log|");
  426:     while (my $line=<DFH>) { &log($fh,&encode_entities($line,'<>&"')) };
  427:     close (DFH);
  428: 	
  429:     &log($fh,"</pre><h3>Error Log</h3><pre>");
  430: 	
  431:     open (DFH,"tail -n25 /etc/httpd/logs/error_log|");
  432:     while (my $line=<DFH>) { 
  433: 	&log($fh,"$line");
  434: 	if ($line=~/\[error\]/) { $notices++; } 
  435:     }
  436:     close (DFH);
  437:     &log($fh,"</pre>");
  438:     &errout($fh);
  439: }
  440: 
  441: # ---------------------------------------------------------------------- lonnet
  442: 
  443: sub rotate_lonnet_logs {
  444:     my ($fh)=@_;
  445:     &log($fh,'<hr /><a name="lonnet" /><h2>lonnet</h2><h3>Temp Log</h3><pre>');
  446:     print "checking logs\n";
  447:     if (-e "$perlvar{'lonDaemons'}/logs/lonnet.log"){
  448: 	open (DFH,"tail -n50 $perlvar{'lonDaemons'}/logs/lonnet.log|");
  449: 	while (my $line=<DFH>) { 
  450: 	    &log($fh,&encode_entities($line,'<>&"'));
  451: 	}
  452: 	close (DFH);
  453:     }
  454:     &log($fh,"</pre><h3>Perm Log</h3><pre>");
  455:     
  456:     if (-e "$perlvar{'lonDaemons'}/logs/lonnet.perm.log") {
  457: 	open(DFH,"tail -n10 $perlvar{'lonDaemons'}/logs/lonnet.perm.log|");
  458: 	while (my $line=<DFH>) { 
  459: 	    &log($fh,&encode_entities($line,'<>&"'));
  460: 	}
  461: 	close (DFH);
  462:     } else { &log($fh,"No perm log\n") }
  463: 
  464:     my $fname="$perlvar{'lonDaemons'}/logs/lonnet.log";
  465:     &rotate_logfile($fname,$fh,'lonnet log');
  466: 
  467:     &log($fh,"</pre>");
  468:     &errout($fh);
  469: }
  470: 
  471: sub rotate_other_logs {
  472:     my ($fh) = @_;
  473:     my $fname="$perlvar{'lonDaemons'}/logs/autoenroll.log";
  474:     &rotate_logfile($fname,$fh,'Auto Enroll log');
  475:     $fname="$perlvar{'lonDaemons'}/logs/autocreate.log";
  476:     &rotate_logfile($fname,$fh,'Create Course log');
  477:     $fname="$perlvar{'lonDaemons'}/logs/searchcat.log";
  478:     &rotate_logfile($fname,$fh,'Search Cataloguing log');
  479: }
  480: 
  481: # ----------------------------------------------------------------- Connections
  482: sub test_connections {
  483:     my ($fh)=@_;
  484:     &log($fh,'<hr /><a name="connections" /><h2>Connections</h2>');
  485:     print "testing connections\n";
  486:     &log($fh,"<table border='2'>");
  487:     my ($good,$bad)=(0,0);
  488:     my %hostname = &Apache::lonnet::all_hostnames();
  489:     foreach my $tryserver (sort(keys(%hostname))) {
  490: 	print(".");
  491: 	my $result;
  492: 	my $answer=&Apache::lonnet::reply("ping",$tryserver);
  493: 	if ($answer eq "$tryserver:$perlvar{'lonHostID'}") {
  494: 	    $result="<b>ok</b>";
  495: 	    $good++;
  496: 	} else {
  497: 	    $result=$answer;
  498: 	    $warnings++;
  499: 	    if ($answer eq 'con_lost') {
  500: 		$bad++;
  501: 		$warnings++;
  502: 	    } else {
  503: 		$good++; #self connection
  504: 	    }
  505: 	}
  506: 	if ($answer =~ /con_lost/) { print(" $tryserver down\n"); }
  507: 	&log($fh,"<tr><td>$tryserver</td><td>$result</td></tr>\n");
  508:     }
  509:     &log($fh,"</table>");
  510:     print "\n$good good, $bad bad connections\n";
  511:     &errout($fh);
  512: }
  513: 
  514: 
  515: # ------------------------------------------------------------ Delayed messages
  516: sub check_delayed_msg {
  517:     my ($fh)=@_;
  518:     &log($fh,'<hr /><a name="delayed" /><h2>Delayed Messages</h2>');
  519:     print "checking buffers\n";
  520:     
  521:     &log($fh,'<h3>Scanning Permanent Log</h3>');
  522: 
  523:     my $unsend=0;
  524: 
  525:     my $dfh=IO::File->new("$perlvar{'lonDaemons'}/logs/lonnet.perm.log");
  526:     while (my $line=<$dfh>) {
  527: 	my ($time,$sdf,$dserv,$dcmd)=split(/:/,$line);
  528: 	if ($sdf eq 'F') { 
  529: 	    my $local=localtime($time);
  530: 	    &log($fh,"<b>Failed: $time, $dserv, $dcmd</b><br>");
  531: 	    $warnings++;
  532: 	}
  533: 	if ($sdf eq 'S') { $unsend--; }
  534: 	if ($sdf eq 'D') { $unsend++; }
  535:     }
  536: 
  537:     &log($fh,"<p>Total unsend messages: <b>$unsend</b></p>\n");
  538:     $warnings=$warnings+5*$unsend;
  539: 
  540:     if ($unsend) { $simplestatus{'unsend'}=$unsend; }
  541:     &log($fh,"<h3>Outgoing Buffer</h3>\n<pre>");
  542: # list directory with delayed messages and remember offline servers
  543:     my %servers=();
  544:     open (DFH,"ls -lF $perlvar{'lonSockDir'}/delayed|");
  545:     while (my $line=<DFH>) {
  546:         my ($server)=($line=~/\.(\w+)$/);
  547:         if ($server) { $servers{$server}=1; }
  548: 	&log($fh,&encode_entities($line,'<>&"'));
  549:     }
  550:     &log($fh,"</pre>\n");
  551:     close (DFH);
  552: # pong to all servers that have delayed messages
  553: # this will trigger a reverse connection, which should flush the buffers
  554:     foreach my $tryserver (keys %servers) {
  555: 	my $answer=&Apache::lonnet::reply("pong",$tryserver);
  556: 	&log($fh,"Pong to $tryserver: $answer<br />");
  557:     }
  558: }
  559: 
  560: sub finish_logging {
  561:     my ($fh)=@_;
  562:     &log($fh,"<a name='errcount' />\n");
  563:     $totalcount=$notices+4*$warnings+100*$errors;
  564:     &errout($fh);
  565:     &log($fh,"<h1>Total Error Count: $totalcount</h1>");
  566:     my $now=time;
  567:     my $date=localtime($now);
  568:     &log($fh,"<hr />$date ($now)</body></html>\n");
  569:     print "lon-status webpage updated\n";
  570:     $fh->close();
  571: 
  572:     if ($errors) { $simplestatus{'errors'}=$errors; }
  573:     if ($warnings) { $simplestatus{'warnings'}=$warnings; }
  574:     if ($notices) { $simplestatus{'notices'}=$notices; }
  575:     $simplestatus{'time'}=time;
  576: }
  577: 
  578: sub log_simplestatus {
  579:     rename("$statusdir/newstatus.html","$statusdir/index.html");
  580:     
  581:     my $sfh=IO::File->new(">$statusdir/loncron_simple.txt");
  582:     foreach (keys %simplestatus) {
  583: 	print $sfh $_.'='.$simplestatus{$_}.'&';
  584:     }
  585:     print $sfh "\n";
  586:     $sfh->close();
  587: }
  588: 
  589: sub send_mail {
  590:     print "sending mail\n";
  591:     my $defdom = $perlvar{'lonDefDomain'};
  592:     my $origmail = $perlvar{'lonAdmEMail'};
  593:     my $emailto = &Apache::loncommon::build_recipient_list(undef,
  594:                                    'lonstatusmail',$defdom,$origmail);
  595:     if ($totalcount>2500) {
  596: 	$emailto.=",$perlvar{'lonSysEMail'}";
  597:     }
  598:     my $subj="LON: $perlvar{'lonHostID'} E:$errors W:$warnings N:$notices"; 
  599: 
  600:     my $result=system("metasend -b -S 4000000 -t $emailto -s '$subj' -f $statusdir/index.html -m text/html >& /dev/null");
  601:     if ($result != 0) {
  602: 	$result=system("mail -s '$subj' $emailto < $statusdir/index.html");
  603:     }
  604: }
  605: 
  606: sub usage {
  607:     print(<<USAGE);
  608: loncron - housekeeping program that checks up on various parts of Lon-CAPA
  609: 
  610: Options:
  611:    --help     Display 
  612:    --noemail  Do not send the status email
  613:    --justcheckconnections  Only check the current status of the lonc/d
  614:                                 connections, do not send emails do not
  615:                                 check if the daemons are running, do not
  616:                                 generate lon-status
  617:    --justcheckdaemons      Only check that all of the Lon-CAPA daemons are
  618:                                 running, do not send emails do not
  619:                                 check the lonc/d connections, do not
  620:                                 generate lon-status
  621:    --justreload            Only tell the daemons to reload the config files,
  622: 				do not send emails do not
  623:                                 check if the daemons are running, do not
  624:                                 generate lon-status
  625:                            
  626: USAGE
  627: }
  628: 
  629: # ================================================================ Main Program
  630: sub main () {
  631:     my ($help,$justcheckdaemons,$noemail,$justcheckconnections,
  632: 	$justreload);
  633:     &GetOptions("help"                 => \$help,
  634: 		"justcheckdaemons"     => \$justcheckdaemons,
  635: 		"noemail"              => \$noemail,
  636: 		"justcheckconnections" => \$justcheckconnections,
  637: 		"justreload"           => \$justreload
  638: 		);
  639:     if ($help) { &usage(); return; }
  640: # --------------------------------- Read loncapa_apache.conf and loncapa.conf
  641:     my $perlvarref=LONCAPA::Configuration::read_conf('loncapa.conf');
  642:     %perlvar=%{$perlvarref};
  643:     undef $perlvarref;
  644:     delete $perlvar{'lonReceipt'}; # remove since sensitive and not needed
  645:     delete $perlvar{'lonSqlAccess'}; # remove since sensitive and not needed
  646:     chdir($perlvar{'lonDaemons'});
  647: # --------------------------------------- Make sure that LON-CAPA is configured
  648: # I only test for one thing here (lonHostID).  This is just a safeguard.
  649:     if ('{[[[[lonHostID]]]]}' eq $perlvar{'lonHostID'}) {
  650: 	print("Unconfigured machine.\n");
  651: 	my $emailto=$perlvar{'lonSysEMail'};
  652: 	my $hostname=`/bin/hostname`;
  653: 	chop $hostname;
  654: 	$hostname=~s/[^\w\.]//g; # make sure is safe to pass through shell
  655: 	my $subj="LON: Unconfigured machine $hostname";
  656: 	system("echo 'Unconfigured machine $hostname.' |\
  657:  mailto $emailto -s '$subj' > /dev/null");
  658: 	exit 1;
  659:     }
  660: 
  661: # ----------------------------- Make sure this process is running from user=www
  662:     my $wwwid=getpwnam('www');
  663:     if ($wwwid!=$<) {
  664: 	print("User ID mismatch.  This program must be run as user 'www'\n");
  665: 	my $emailto="$perlvar{'lonAdmEMail'},$perlvar{'lonSysEMail'}";
  666: 	my $subj="LON: $perlvar{'lonHostID'} User ID mismatch";
  667: 	system("echo 'User ID mismatch.  loncron must be run as user www.' |\
  668:  mailto $emailto -s '$subj' > /dev/null");
  669: 	exit 1;
  670:     }
  671: 
  672: # -------------------------------------------- Force reload of host information
  673:     &Apache::lonnet::load_hosts_tab(1);
  674:     &Apache::lonnet::load_domain_tab(1);
  675:     &Apache::lonnet::get_iphost(1);
  676: 
  677: # ----------------------------------------- Force firewall update for lond port  
  678: 
  679:     if ((!$justcheckdaemons) && (!$justreload)) {
  680:         my $now = time;
  681:         my $tmpfile = $perlvar{'lonDaemons'}.'/tmp/lciptables_iphost_'.
  682:                       $now.$$.int(rand(10000));
  683:         if (open(my $fh,">$tmpfile")) {
  684:             my %iphosts = &Apache::lonnet::get_iphost();
  685:             foreach my $key (keys(%iphosts)) {
  686:                 print $fh "$key\n";
  687:             }
  688:             close($fh);
  689:             my $execpath = $perlvar{'lonDaemons'}.'/lciptables';
  690:             system("$execpath $tmpfile");
  691:             unlink($fh);
  692:         }
  693:     }
  694: 
  695: # ---------------------------------------------------------------- Start report
  696: 
  697:     $errors=0;
  698:     $warnings=0;
  699:     $notices=0;
  700: 
  701: 	
  702:     my $fh;
  703:     if (!$justcheckdaemons && !$justcheckconnections && !$justreload) {
  704: 	$fh=&start_logging();
  705: 
  706: 	&log_machine_info($fh);
  707: 	&clean_tmp($fh);
  708: 	&clean_lonIDs($fh);
  709: 	&check_httpd_logs($fh);
  710: 	&rotate_lonnet_logs($fh);
  711: 	&rotate_other_logs($fh);
  712:     }
  713:     if (!$justcheckconnections && !$justreload) {
  714: 	&checkon_daemon($fh,'lonmemcached',40000);
  715: 	&checkon_daemon($fh,'lonsql',200000);
  716: 	if ( &checkon_daemon($fh,'lond',40000,'USR1') eq 'running') {
  717: 	    &checkon_daemon($fh,'lond',40000,'USR2');
  718: 	}
  719: 	&checkon_daemon($fh,'lonc',40000,'USR1');
  720:         &checkon_daemon($fh,'lonmaxima',40000);
  721:         &checkon_daemon($fh,'lonr',40000);
  722:     }
  723:     if ($justreload) {
  724: 	&checkon_daemon($fh,'lond',40000,'USR2');
  725: 	&checkon_daemon($fh,'lonc',40000,'USR2');
  726:     }
  727:     if ($justcheckconnections) {
  728: 	&test_connections($fh);
  729:     }
  730:     if (!$justcheckdaemons && !$justcheckconnections && !$justreload) {
  731: 	&check_delayed_msg($fh);
  732: 	&finish_logging($fh);
  733: 	&log_simplestatus();
  734: 	
  735: 	if ($totalcount>200 && !$noemail) { &send_mail(); }
  736:     }
  737: }
  738: 
  739: &main();
  740: 1;
  741: 
  742: 
  743: 
  744: 
  745: 
  746: 
  747: 
  748: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>