Annotation of loncom/lond, revision 1.91

1.1       albertel    1: #!/usr/bin/perl
                      2: # The LearningOnline Network
                      3: # lond "LON Daemon" Server (port "LOND" 5663)
1.60      www         4: #
1.91    ! albertel    5: # $Id: lond,v 1.90 2002/08/13 00:37:18 stredwic Exp $
1.60      www         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: #
1.1       albertel   29: # 5/26/99,6/4,6/10,6/11,6/14,6/15,6/26,6/28,6/30,
1.2       www        30: # 7/8,7/9,7/10,7/12,7/17,7/19,9/21,
1.6       www        31: # 10/7,10/8,10/9,10/11,10/13,10/15,11/4,11/16,
1.11      www        32: # 12/7,12/15,01/06,01/11,01/12,01/14,2/8,
1.12      harris41   33: # 03/07,05/31 Gerd Kortemeyer
1.13      www        34: # 06/26 Scott Harrison
1.20      www        35: # 06/29,06/30,07/14,07/15,07/17,07/20,07/25,09/18 Gerd Kortemeyer
1.25      www        36: # 12/05 Scott Harrison
1.34      www        37: # 12/05,12/13,12/29 Gerd Kortemeyer
1.61      harris41   38: # YEAR=2001
1.36      www        39: # Jan 01 Scott Harrison
                     40: # 02/12 Gerd Kortemeyer
1.37      harris41   41: # 03/15 Scott Harrison
1.41      www        42: # 03/24 Gerd Kortemeyer
1.47      www        43: # 04/02 Scott Harrison
1.51      www        44: # 05/11,05/28,08/30 Gerd Kortemeyer
1.56      harris41   45: # 9/30,10/22,11/13,11/15,11/16 Scott Harrison
1.59      www        46: # 11/26,11/27 Gerd Kortemeyer
1.61      harris41   47: # 12/20 Scott Harrison
1.62      www        48: # 12/22 Gerd Kortemeyer
1.63      www        49: # YEAR=2002
1.65      www        50: # 01/20/02,02/05 Gerd Kortemeyer
1.71      www        51: # 02/05 Guy Albertelli
                     52: # 02/07 Scott Harrison
                     53: # 02/12 Gerd Kortemeyer
1.73      www        54: # 02/19 Matthew Hall
                     55: # 02/25 Gerd Kortemeyer
1.80      harris41   56: # 05/11 Scott Harrison
1.54      harris41   57: ###
                     58: 
1.1       albertel   59: # based on "Perl Cookbook" ISBN 1-56592-243-3
                     60: # preforker - server who forks first
                     61: # runs as a daemon
                     62: # HUPs
                     63: # uses IDEA encryption
                     64: 
1.80      harris41   65: use lib '/home/httpd/lib/perl/';
                     66: use LONCAPA::Configuration;
                     67: 
1.1       albertel   68: use IO::Socket;
                     69: use IO::File;
                     70: use Apache::File;
                     71: use Symbol;
                     72: use POSIX;
                     73: use Crypt::IDEA;
                     74: use LWP::UserAgent();
1.3       www        75: use GDBM_File;
                     76: use Authen::Krb4;
1.91    ! albertel   77: use Authen::Krb5;
1.49      albertel   78: use lib '/home/httpd/lib/perl/';
                     79: use localauth;
1.1       albertel   80: 
1.77      foxr       81: my $DEBUG = 0;		       # Non zero to enable debug log entries.
                     82: 
1.57      www        83: my $status='';
                     84: my $lastlog='';
                     85: 
1.23      harris41   86: # grabs exception and records it to log before exiting
                     87: sub catchexception {
1.27      albertel   88:     my ($error)=@_;
1.25      www        89:     $SIG{'QUIT'}='DEFAULT';
                     90:     $SIG{__DIE__}='DEFAULT';
1.23      harris41   91:     &logthis("<font color=red>CRITICAL: "
                     92:      ."ABNORMAL EXIT. Child $$ for server $wasserver died through "
1.27      albertel   93:      ."a crash with this error msg->[$error]</font>");
1.57      www        94:     &logthis('Famous last words: '.$status.' - '.$lastlog);
1.27      albertel   95:     if ($client) { print $client "error: $error\n"; }
1.59      www        96:     $server->close();
1.27      albertel   97:     die($error);
1.23      harris41   98: }
                     99: 
1.63      www       100: sub timeout {
                    101:     &logthis("<font color=ref>CRITICAL: TIME OUT ".$$."</font>");
                    102:     &catchexception('Timeout');
                    103: }
1.22      harris41  104: # -------------------------------- Set signal handlers to record abnormal exits
                    105: 
                    106: $SIG{'QUIT'}=\&catchexception;
                    107: $SIG{__DIE__}=\&catchexception;
                    108: 
1.81      matthew   109: # ---------------------------------- Read loncapa_apache.conf and loncapa.conf
                    110: &status("Read loncapa_apache.conf and loncapa.conf");
                    111: my $perlvarref=LONCAPA::Configuration::read_conf('loncapa_apache.conf',
                    112:                                                  'loncapa.conf');
1.80      harris41  113: my %perlvar=%{$perlvarref};
                    114: undef $perlvarref;
1.19      www       115: 
1.35      harris41  116: # ----------------------------- Make sure this process is running from user=www
                    117: my $wwwid=getpwnam('www');
                    118: if ($wwwid!=$<) {
                    119:    $emailto="$perlvar{'lonAdmEMail'},$perlvar{'lonSysEMail'}";
                    120:    $subj="LON: $perlvar{'lonHostID'} User ID mismatch";
1.37      harris41  121:    system("echo 'User ID mismatch.  lond must be run as user www.' |\
1.35      harris41  122:  mailto $emailto -s '$subj' > /dev/null");
                    123:    exit 1;
                    124: }
                    125: 
1.19      www       126: # --------------------------------------------- Check if other instance running
                    127: 
                    128: my $pidfile="$perlvar{'lonDaemons'}/logs/lond.pid";
                    129: 
                    130: if (-e $pidfile) {
                    131:    my $lfh=IO::File->new("$pidfile");
                    132:    my $pide=<$lfh>;
                    133:    chomp($pide);
1.29      harris41  134:    if (kill 0 => $pide) { die "already running"; }
1.19      www       135: }
1.1       albertel  136: 
                    137: $PREFORK=4; # number of children to maintain, at least four spare
                    138: 
                    139: # ------------------------------------------------------------- Read hosts file
                    140: 
1.29      harris41  141: open (CONFIG,"$perlvar{'lonTabDir'}/hosts.tab") || die "Can't read host file";
1.1       albertel  142: 
                    143: while ($configline=<CONFIG>) {
                    144:     my ($id,$domain,$role,$name,$ip)=split(/:/,$configline);
1.70      harris41  145:     chomp($ip); $ip=~s/\D+$//;
1.1       albertel  146:     $hostid{$ip}=$id;
                    147:     if ($id eq $perlvar{'lonHostID'}) { $thisserver=$name; }
                    148:     $PREFORK++;
                    149: }
                    150: close(CONFIG);
                    151: 
                    152: # establish SERVER socket, bind and listen.
                    153: $server = IO::Socket::INET->new(LocalPort => $perlvar{'londPort'},
                    154:                                 Type      => SOCK_STREAM,
                    155:                                 Proto     => 'tcp',
                    156:                                 Reuse     => 1,
                    157:                                 Listen    => 10 )
1.29      harris41  158:   or die "making socket: $@\n";
1.1       albertel  159: 
                    160: # --------------------------------------------------------- Do global variables
                    161: 
                    162: # global variables
                    163: 
1.75      foxr      164: $MAX_CLIENTS_PER_CHILD  = 50;        # number of clients each child should 
1.1       albertel  165:                                     # process
                    166: %children               = ();       # keys are current child process IDs
                    167: $children               = 0;        # current number of children
                    168: 
                    169: sub REAPER {                        # takes care of dead children
                    170:     $SIG{CHLD} = \&REAPER;
                    171:     my $pid = wait;
1.67      albertel  172:     if (defined($children{$pid})) {
                    173: 	&logthis("Child $pid died");
                    174: 	$children --;
                    175: 	delete $children{$pid};
                    176:     } else {
                    177: 	&logthis("Unknown Child $pid died");
                    178:     }
1.1       albertel  179: }
                    180: 
                    181: sub HUNTSMAN {                      # signal handler for SIGINT
                    182:     local($SIG{CHLD}) = 'IGNORE';   # we're going to kill our children
                    183:     kill 'INT' => keys %children;
1.59      www       184:     &logthis("Free socket: ".shutdown($server,2)); # free up socket
1.1       albertel  185:     my $execdir=$perlvar{'lonDaemons'};
                    186:     unlink("$execdir/logs/lond.pid");
1.9       www       187:     &logthis("<font color=red>CRITICAL: Shutting down</font>");
1.1       albertel  188:     exit;                           # clean up with dignity
                    189: }
                    190: 
                    191: sub HUPSMAN {                      # signal handler for SIGHUP
                    192:     local($SIG{CHLD}) = 'IGNORE';  # we're going to kill our children
                    193:     kill 'INT' => keys %children;
1.59      www       194:     &logthis("Free socket: ".shutdown($server,2)); # free up socket
1.9       www       195:     &logthis("<font color=red>CRITICAL: Restarting</font>");
1.30      harris41  196:     unlink("$execdir/logs/lond.pid");
1.1       albertel  197:     my $execdir=$perlvar{'lonDaemons'};
                    198:     exec("$execdir/lond");         # here we go again
                    199: }
                    200: 
1.57      www       201: sub checkchildren {
                    202:     &initnewstatus();
                    203:     &logstatus();
                    204:     &logthis('Going to check on the children');
1.63      www       205:     $docdir=$perlvar{'lonDocRoot'};
1.61      harris41  206:     foreach (sort keys %children) {
1.57      www       207: 	sleep 1;
                    208:         unless (kill 'USR1' => $_) {
                    209: 	    &logthis ('Child '.$_.' is dead');
                    210:             &logstatus($$.' is dead');
                    211:         } 
1.61      harris41  212:     }
1.63      www       213:     sleep 5;
                    214:     foreach (sort keys %children) {
                    215:         unless (-e "$docdir/lon-status/londchld/$_.txt") {
                    216: 	    &logthis('Child '.$_.' did not respond');
1.67      albertel  217: 	    kill 9 => $_;
                    218: 	    $emailto="$perlvar{'lonAdmEMail'},$perlvar{'lonSysEMail'}";
                    219: 	    $subj="LON: $perlvar{'lonHostID'} killed lond process $_";
1.68      albertel  220: 	    my $result=`echo 'Killed lond process $_.' | mailto $emailto -s '$subj' > /dev/null`;
1.66      www       221: 	    $execdir=$perlvar{'lonDaemons'};
1.67      albertel  222: 	    $result=`/bin/cp $execdir/logs/lond.log $execdir/logs/lond.log.$_`
1.63      www       223:         }
                    224:     }
1.57      www       225: }
                    226: 
1.1       albertel  227: # --------------------------------------------------------------------- Logging
                    228: 
                    229: sub logthis {
                    230:     my $message=shift;
                    231:     my $execdir=$perlvar{'lonDaemons'};
                    232:     my $fh=IO::File->new(">>$execdir/logs/lond.log");
                    233:     my $now=time;
                    234:     my $local=localtime($now);
1.58      www       235:     $lastlog=$local.': '.$message;
1.1       albertel  236:     print $fh "$local ($$): $message\n";
                    237: }
                    238: 
1.77      foxr      239: # ------------------------- Conditional log if $DEBUG true.
                    240: sub Debug {
                    241:     my $message = shift;
                    242:     if($DEBUG) {
                    243: 	&logthis($message);
                    244:     }
                    245: }
1.57      www       246: # ------------------------------------------------------------------ Log status
                    247: 
                    248: sub logstatus {
                    249:     my $docdir=$perlvar{'lonDocRoot'};
1.63      www       250:     {
1.57      www       251:     my $fh=IO::File->new(">>$docdir/lon-status/londstatus.txt");
                    252:     print $fh $$."\t".$status."\t".$lastlog."\n";
1.63      www       253:     $fh->close();
                    254:     }
                    255:     {
                    256: 	my $fh=IO::File->new(">$docdir/lon-status/londchld/$$.txt");
                    257:         print $fh $status."\n".$lastlog."\n".time;
                    258:         $fh->close();
                    259:     }
1.57      www       260: }
                    261: 
                    262: sub initnewstatus {
                    263:     my $docdir=$perlvar{'lonDocRoot'};
                    264:     my $fh=IO::File->new(">$docdir/lon-status/londstatus.txt");
                    265:     my $now=time;
                    266:     my $local=localtime($now);
                    267:     print $fh "LOND status $local - parent $$\n\n";
1.64      www       268:     opendir(DIR,"$docdir/lon-status/londchld");
                    269:     while ($filename=readdir(DIR)) {
                    270:         unlink("$docdir/lon-status/londchld/$filename");
                    271:     }
                    272:     closedir(DIR);
1.57      www       273: }
                    274: 
                    275: # -------------------------------------------------------------- Status setting
                    276: 
                    277: sub status {
                    278:     my $what=shift;
                    279:     my $now=time;
                    280:     my $local=localtime($now);
                    281:     $status=$local.': '.$what;
                    282: }
1.11      www       283: 
                    284: # -------------------------------------------------------- Escape Special Chars
                    285: 
                    286: sub escape {
                    287:     my $str=shift;
                    288:     $str =~ s/(\W)/"%".unpack('H2',$1)/eg;
                    289:     return $str;
                    290: }
                    291: 
                    292: # ----------------------------------------------------- Un-Escape Special Chars
                    293: 
                    294: sub unescape {
                    295:     my $str=shift;
                    296:     $str =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
                    297:     return $str;
                    298: }
                    299: 
1.1       albertel  300: # ----------------------------------------------------------- Send USR1 to lonc
                    301: 
                    302: sub reconlonc {
                    303:     my $peerfile=shift;
                    304:     &logthis("Trying to reconnect for $peerfile");
                    305:     my $loncfile="$perlvar{'lonDaemons'}/logs/lonc.pid";
                    306:     if (my $fh=IO::File->new("$loncfile")) {
                    307: 	my $loncpid=<$fh>;
                    308:         chomp($loncpid);
                    309:         if (kill 0 => $loncpid) {
                    310: 	    &logthis("lonc at pid $loncpid responding, sending USR1");
                    311:             kill USR1 => $loncpid;
1.75      foxr      312:             sleep 5;
1.1       albertel  313:             if (-e "$peerfile") { return; }
                    314:             &logthis("$peerfile still not there, give it another try");
1.75      foxr      315:             sleep 10;
1.1       albertel  316:             if (-e "$peerfile") { return; }
1.9       www       317:             &logthis(
                    318:  "<font color=blue>WARNING: $peerfile still not there, giving up</font>");
1.1       albertel  319:         } else {
1.9       www       320: 	    &logthis(
                    321:               "<font color=red>CRITICAL: "
                    322:              ."lonc at pid $loncpid not responding, giving up</font>");
1.1       albertel  323:         }
                    324:     } else {
1.9       www       325:       &logthis('<font color=red>CRITICAL: lonc not running, giving up</font>');
1.1       albertel  326:     }
                    327: }
                    328: 
                    329: # -------------------------------------------------- Non-critical communication
1.11      www       330: 
1.1       albertel  331: sub subreply {
                    332:     my ($cmd,$server)=@_;
                    333:     my $peerfile="$perlvar{'lonSockDir'}/$server";
                    334:     my $sclient=IO::Socket::UNIX->new(Peer    =>"$peerfile",
                    335:                                       Type    => SOCK_STREAM,
                    336:                                       Timeout => 10)
                    337:        or return "con_lost";
                    338:     print $sclient "$cmd\n";
                    339:     my $answer=<$sclient>;
                    340:     chomp($answer);
                    341:     if (!$answer) { $answer="con_lost"; }
                    342:     return $answer;
                    343: }
                    344: 
                    345: sub reply {
                    346:   my ($cmd,$server)=@_;
                    347:   my $answer;
                    348:   if ($server ne $perlvar{'lonHostID'}) { 
                    349:     $answer=subreply($cmd,$server);
                    350:     if ($answer eq 'con_lost') {
                    351: 	$answer=subreply("ping",$server);
                    352:         if ($answer ne $server) {
1.75      foxr      353: 	    &logthis("sub reply: answer != server");
1.1       albertel  354:            &reconlonc("$perlvar{'lonSockDir'}/$server");
                    355:         }
                    356:         $answer=subreply($cmd,$server);
                    357:     }
                    358:   } else {
                    359:     $answer='self_reply';
                    360:   } 
                    361:   return $answer;
                    362: }
                    363: 
1.13      www       364: # -------------------------------------------------------------- Talk to lonsql
                    365: 
1.12      harris41  366: sub sqlreply {
                    367:     my ($cmd)=@_;
                    368:     my $answer=subsqlreply($cmd);
                    369:     if ($answer eq 'con_lost') { $answer=subsqlreply($cmd); }
                    370:     return $answer;
                    371: }
                    372: 
                    373: sub subsqlreply {
                    374:     my ($cmd)=@_;
                    375:     my $unixsock="mysqlsock";
                    376:     my $peerfile="$perlvar{'lonSockDir'}/$unixsock";
                    377:     my $sclient=IO::Socket::UNIX->new(Peer    =>"$peerfile",
                    378:                                       Type    => SOCK_STREAM,
                    379:                                       Timeout => 10)
                    380:        or return "con_lost";
                    381:     print $sclient "$cmd\n";
                    382:     my $answer=<$sclient>;
                    383:     chomp($answer);
                    384:     if (!$answer) { $answer="con_lost"; }
                    385:     return $answer;
                    386: }
                    387: 
1.1       albertel  388: # -------------------------------------------- Return path to profile directory
1.11      www       389: 
1.1       albertel  390: sub propath {
                    391:     my ($udom,$uname)=@_;
                    392:     $udom=~s/\W//g;
                    393:     $uname=~s/\W//g;
1.16      www       394:     my $subdir=$uname.'__';
1.1       albertel  395:     $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
                    396:     my $proname="$perlvar{'lonUsersDir'}/$udom/$subdir/$uname";
                    397:     return $proname;
                    398: } 
                    399: 
                    400: # --------------------------------------- Is this the home server of an author?
1.11      www       401: 
1.1       albertel  402: sub ishome {
                    403:     my $author=shift;
                    404:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
                    405:     my ($udom,$uname)=split(/\//,$author);
                    406:     my $proname=propath($udom,$uname);
                    407:     if (-e $proname) {
                    408: 	return 'owner';
                    409:     } else {
                    410:         return 'not_owner';
                    411:     }
                    412: }
                    413: 
                    414: # ======================================================= Continue main program
                    415: # ---------------------------------------------------- Fork once and dissociate
                    416: 
                    417: $fpid=fork;
                    418: exit if $fpid;
1.29      harris41  419: die "Couldn't fork: $!" unless defined ($fpid);
1.1       albertel  420: 
1.29      harris41  421: POSIX::setsid() or die "Can't start new session: $!";
1.1       albertel  422: 
                    423: # ------------------------------------------------------- Write our PID on disk
                    424: 
                    425: $execdir=$perlvar{'lonDaemons'};
                    426: open (PIDSAVE,">$execdir/logs/lond.pid");
                    427: print PIDSAVE "$$\n";
                    428: close(PIDSAVE);
1.9       www       429: &logthis("<font color=red>CRITICAL: ---------- Starting ----------</font>");
1.57      www       430: &status('Starting');
1.1       albertel  431: 
                    432: # ------------------------------------------------------- Now we are on our own
                    433:     
                    434: # Fork off our children.
                    435: for (1 .. $PREFORK) {
                    436:     make_new_child();
                    437: }
                    438: 
                    439: # ----------------------------------------------------- Install signal handlers
                    440: 
1.57      www       441: &status('Forked children');
                    442: 
1.1       albertel  443: $SIG{CHLD} = \&REAPER;
                    444: $SIG{INT}  = $SIG{TERM} = \&HUNTSMAN;
                    445: $SIG{HUP}  = \&HUPSMAN;
1.57      www       446: $SIG{USR1} = \&checkchildren;
1.1       albertel  447: 
                    448: # And maintain the population.
                    449: while (1) {
1.57      www       450:     &status('Sleeping');
1.1       albertel  451:     sleep;                          # wait for a signal (i.e., child's death)
1.57      www       452:     &logthis('Woke up');
                    453:     &status('Woke up');
1.1       albertel  454:     for ($i = $children; $i < $PREFORK; $i++) {
                    455:         make_new_child();           # top up the child pool
                    456:     }
                    457: }
                    458: 
                    459: sub make_new_child {
                    460:     my $pid;
                    461:     my $cipher;
                    462:     my $sigset;
                    463:     &logthis("Attempting to start child");    
                    464:     # block signal for fork
                    465:     $sigset = POSIX::SigSet->new(SIGINT);
                    466:     sigprocmask(SIG_BLOCK, $sigset)
1.29      harris41  467:         or die "Can't block SIGINT for fork: $!\n";
1.1       albertel  468:     
1.29      harris41  469:     die "fork: $!" unless defined ($pid = fork);
1.1       albertel  470:     
                    471:     if ($pid) {
                    472:         # Parent records the child's birth and returns.
                    473:         sigprocmask(SIG_UNBLOCK, $sigset)
1.29      harris41  474:             or die "Can't unblock SIGINT for fork: $!\n";
1.1       albertel  475:         $children{$pid} = 1;
                    476:         $children++;
1.57      www       477:         &status('Started child '.$pid);
1.1       albertel  478:         return;
                    479:     } else {
                    480:         # Child can *not* return from this subroutine.
                    481:         $SIG{INT} = 'DEFAULT';      # make SIGINT kill us as it did before
1.57      www       482:         $SIG{USR1}= \&logstatus;
1.63      www       483:         $SIG{ALRM}= \&timeout;
1.57      www       484:         $lastlog='Forked ';
                    485:         $status='Forked';
                    486: 
1.1       albertel  487:         # unblock signals
                    488:         sigprocmask(SIG_UNBLOCK, $sigset)
1.29      harris41  489:             or die "Can't unblock SIGINT for fork: $!\n";
1.13      www       490: 
                    491:         $tmpsnum=0;
1.91    ! albertel  492: #---------------------------------------------------- kerberos 5 initialization
        !           493:         &Authen::Krb5::init_context();
        !           494:         &Authen::Krb5::init_ets();
        !           495: 
1.1       albertel  496:         # handle connections until we've reached $MAX_CLIENTS_PER_CHILD
                    497:         for ($i=0; $i < $MAX_CLIENTS_PER_CHILD; $i++) {
1.57      www       498:             &status('Idle, waiting for connection');
1.1       albertel  499:             $client = $server->accept()     or last;
1.57      www       500:             &status('Accepted connection');
1.1       albertel  501: # =============================================================================
                    502:             # do something with the connection
                    503: # -----------------------------------------------------------------------------
1.2       www       504:             # see if we know client and check for spoof IP by challenge
1.1       albertel  505:             my $caller=getpeername($client);
                    506:             my ($port,$iaddr)=unpack_sockaddr_in($caller);
                    507:             my $clientip=inet_ntoa($iaddr);
                    508:             my $clientrec=($hostid{$clientip} ne undef);
1.9       www       509:             &logthis(
1.51      www       510: "<font color=yellow>INFO: Connection $i, $clientip ($hostid{$clientip})</font>"
                    511:             );
1.57      www       512:             &status("Connecting $clientip ($hostid{$clientip})"); 
1.2       www       513:             my $clientok;
1.1       albertel  514:             if ($clientrec) {
1.57      www       515: 	      &status("Waiting for init from $clientip ($hostid{$clientip})");
1.2       www       516: 	      my $remotereq=<$client>;
                    517:               $remotereq=~s/\W//g;
                    518:               if ($remotereq eq 'init') {
                    519: 		  my $challenge="$$".time;
                    520:                   print $client "$challenge\n";
1.57      www       521:                   &status(
                    522:            "Waiting for challenge reply from $clientip ($hostid{$clientip})"); 
1.2       www       523:                   $remotereq=<$client>;
                    524:                   $remotereq=~s/\W//g;
                    525:                   if ($challenge eq $remotereq) {
                    526: 		      $clientok=1;
                    527:                       print $client "ok\n";
                    528:                   } else {
1.9       www       529: 		      &logthis(
                    530:  "<font color=blue>WARNING: $clientip did not reply challenge</font>");
1.57      www       531:                       &status('No challenge reply '.$clientip);
1.2       www       532:                   }
                    533:               } else {
1.9       www       534: 		  &logthis(
                    535:                     "<font color=blue>WARNING: "
                    536:                    ."$clientip failed to initialize: >$remotereq< </font>");
1.57      www       537:                   &status('No init '.$clientip);
1.2       www       538:               }
                    539: 	    } else {
1.9       www       540:               &logthis(
                    541:  "<font color=blue>WARNING: Unknown client $clientip</font>");
1.57      www       542:               &status('Hung up on '.$clientip);
1.2       www       543:             }
                    544:             if ($clientok) {
1.1       albertel  545: # ---------------- New known client connecting, could mean machine online again
1.75      foxr      546: 
1.76      foxr      547: 	      &reconlonc("$perlvar{'lonSockDir'}/$hostid{$clientip}");
1.9       www       548:               &logthis(
                    549:        "<font color=green>Established connection: $hostid{$clientip}</font>");
1.58      www       550:               &status('Will listen to '.$hostid{$clientip});
1.1       albertel  551: # ------------------------------------------------------------ Process requests
                    552:               while (my $userinput=<$client>) {
                    553:                 chomp($userinput);
1.79      foxr      554: 		Debug("Request = $userinput\n");
1.57      www       555:                 &status('Processing '.$hostid{$clientip}.': '.$userinput);
1.1       albertel  556:                 my $wasenc=0;
1.63      www       557:                 alarm(120);
1.1       albertel  558: # ------------------------------------------------------------ See if encrypted
                    559: 		if ($userinput =~ /^enc/) {
                    560: 		  if ($cipher) {
                    561:                     my ($cmd,$cmdlength,$encinput)=split(/:/,$userinput);
                    562: 		    $userinput='';
                    563:                     for (my $encidx=0;$encidx<length($encinput);$encidx+=16) {
                    564:                        $userinput.=
                    565: 			   $cipher->decrypt(
                    566:                             pack("H16",substr($encinput,$encidx,16))
                    567:                            );
                    568: 		    }
                    569: 		    $userinput=substr($userinput,0,$cmdlength);
                    570:                     $wasenc=1;
                    571: 		}
1.75      foxr      572: 	      }
                    573: 	  
1.1       albertel  574: # ------------------------------------------------------------- Normal commands
                    575: # ------------------------------------------------------------------------ ping
                    576: 		   if ($userinput =~ /^ping/) {
                    577:                        print $client "$perlvar{'lonHostID'}\n";
                    578: # ------------------------------------------------------------------------ pong
                    579: 		   } elsif ($userinput =~ /^pong/) {
                    580:                        $reply=reply("ping",$hostid{$clientip});
                    581:                        print $client "$perlvar{'lonHostID'}:$reply\n"; 
                    582: # ------------------------------------------------------------------------ ekey
                    583: 		   } elsif ($userinput =~ /^ekey/) {
                    584:                        my $buildkey=time.$$.int(rand 100000);
                    585:                        $buildkey=~tr/1-6/A-F/;
                    586:                        $buildkey=int(rand 100000).$buildkey.int(rand 100000);
                    587:                        my $key=$perlvar{'lonHostID'}.$hostid{$clientip};
                    588:                        $key=~tr/a-z/A-Z/;
                    589:                        $key=~tr/G-P/0-9/;
                    590:                        $key=~tr/Q-Z/0-9/;
                    591:                        $key=$key.$buildkey.$key.$buildkey.$key.$buildkey;
                    592:                        $key=substr($key,0,32);
                    593:                        my $cipherkey=pack("H32",$key);
                    594:                        $cipher=new IDEA $cipherkey;
                    595:                        print $client "$buildkey\n"; 
                    596: # ------------------------------------------------------------------------ load
                    597: 		   } elsif ($userinput =~ /^load/) {
                    598:                        my $loadavg;
                    599:                        {
                    600:                           my $loadfile=IO::File->new('/proc/loadavg');
                    601:                           $loadavg=<$loadfile>;
                    602:                        }
                    603:                        $loadavg =~ s/\s.*//g;
                    604:                        my $loadpercent=100*$loadavg/$perlvar{'lonLoadLim'};
                    605: 		       print $client "$loadpercent\n";
1.54      harris41  606: # ----------------------------------------------------------------- currentauth
                    607: 		   } elsif ($userinput =~ /^currentauth/) {
                    608: 		     if ($wasenc==1) {
                    609:                        my ($cmd,$udom,$uname)=split(/:/,$userinput);
1.79      foxr      610: 		       my $result = GetAuthType($udom, $uname);
1.78      foxr      611: 		       if($result eq "nouser") {
                    612: 			   print $client "unknown_user\n";
                    613: 		       }
                    614: 		       else {
                    615: 			   print $client "$result\n"
                    616: 		       }
1.54      harris41  617: 		     } else {
                    618: 		       print $client "refused\n";
                    619: 		     }
1.1       albertel  620: # ------------------------------------------------------------------------ auth
                    621:                    } elsif ($userinput =~ /^auth/) {
                    622: 		     if ($wasenc==1) {
                    623:                        my ($cmd,$udom,$uname,$upass)=split(/:/,$userinput);
                    624:                        chomp($upass);
1.11      www       625:                        $upass=unescape($upass);
1.1       albertel  626:                        my $proname=propath($udom,$uname);
                    627:                        my $passfilename="$proname/passwd";
                    628:                        if (-e $passfilename) {
                    629:                           my $pf = IO::File->new($passfilename);
                    630:                           my $realpasswd=<$pf>;
                    631:                           chomp($realpasswd);
1.2       www       632:                           my ($howpwd,$contentpwd)=split(/:/,$realpasswd);
                    633:                           my $pwdcorrect=0;
                    634:                           if ($howpwd eq 'internal') {
                    635: 			      $pwdcorrect=
                    636: 				  (crypt($upass,$contentpwd) eq $contentpwd);
                    637:                           } elsif ($howpwd eq 'unix') {
                    638:                               $contentpwd=(getpwnam($uname))[1];
1.52      harris41  639: 			      my $pwauth_path="/usr/local/sbin/pwauth";
                    640: 			      unless ($contentpwd eq 'x') {
                    641: 				  $pwdcorrect=
                    642:                                     (crypt($upass,$contentpwd) eq $contentpwd);
                    643: 			      }
                    644: 			      elsif (-e $pwauth_path) {
                    645: 				  open PWAUTH, "|$pwauth_path" or
                    646: 				      die "Cannot invoke authentication";
                    647: 				  print PWAUTH "$uname\n$upass\n";
                    648: 				  close PWAUTH;
                    649: 				  $pwdcorrect=!$?;
                    650: 			      }
1.3       www       651:                           } elsif ($howpwd eq 'krb4') {
1.71      www       652:                              $null=pack("C",0);
                    653: 			     unless ($upass=~/$null/) {
1.3       www       654:                               $pwdcorrect=(
                    655:                                  Authen::Krb4::get_pw_in_tkt($uname,"",
                    656:                                         $contentpwd,'krbtgt',$contentpwd,1,
                    657: 							     $upass) == 0);
1.71      www       658: 			     } else { $pwdcorrect=0; }
1.91    ! albertel  659:                           } elsif ($howpwd eq 'krb5') {
        !           660: 			      $null=pack("C",0);
        !           661: 			      unless ($upass=~/$null/) {
        !           662: 				  my $krbclient=&Authen::Krb5::parse_name($uname.'@'.$contentpwd);
        !           663: 				  &logthis("Realm ".$krbclient->realm);
        !           664: 				  my $krbservice="krbtgt/".$contentpwd."\@".$contentpwd;
        !           665: 				  my $krbserver=&Authen::Krb5::parse_name($krbservice);
        !           666: 				  my $credentials=&Authen::Krb5::cc_default();
        !           667: 				  $credentials->initialize($krbclient);
        !           668: 				  my $krbreturn = 
        !           669: 				    &Authen::Krb5::get_in_tkt_with_password(
        !           670: 				     $krbclient,$krbserver,$upass,$credentials);
        !           671: 				  unless ($krbreturn) {
        !           672: 				      &logthis("Krb5 Error: ".
        !           673: 					       &Authen::Krb5::error());
        !           674: 				  }
        !           675: 				  $pwdcorrect = ($krbreturn == 1);
        !           676: 			   } else { $pwdcorrect=0; }
1.50      albertel  677:                           } elsif ($howpwd eq 'localauth') {
1.49      albertel  678: 			    $pwdcorrect=&localauth::localauth($uname,$upass,
                    679: 							      $contentpwd);
                    680: 			  }
1.2       www       681:                           if ($pwdcorrect) {
1.1       albertel  682:                              print $client "authorized\n";
                    683:                           } else {
                    684:                              print $client "non_authorized\n";
                    685:                           }  
                    686: 		       } else {
                    687:                           print $client "unknown_user\n";
                    688:                        }
                    689: 		     } else {
                    690: 		       print $client "refused\n";
                    691: 		     }
                    692: # ---------------------------------------------------------------------- passwd
                    693:                    } elsif ($userinput =~ /^passwd/) {
                    694: 		     if ($wasenc==1) {
                    695:                        my 
                    696:                        ($cmd,$udom,$uname,$upass,$npass)=split(/:/,$userinput);
                    697:                        chomp($npass);
1.32      www       698:                        $upass=&unescape($upass);
                    699:                        $npass=&unescape($npass);
1.72      matthew   700: 		       &logthis("Trying to change password for $uname");
                    701: 		       my $proname=propath($udom,$uname);
1.1       albertel  702:                        my $passfilename="$proname/passwd";
                    703:                        if (-e $passfilename) {
                    704: 			   my $realpasswd;
                    705:                           { my $pf = IO::File->new($passfilename);
                    706: 			    $realpasswd=<$pf>; }
                    707:                           chomp($realpasswd);
1.2       www       708:                           my ($howpwd,$contentpwd)=split(/:/,$realpasswd);
                    709:                           if ($howpwd eq 'internal') {
                    710: 			   if (crypt($upass,$contentpwd) eq $contentpwd) {
                    711: 			     my $salt=time;
                    712:                              $salt=substr($salt,6,2);
                    713: 			     my $ncpass=crypt($npass,$salt);
1.1       albertel  714:                              { my $pf = IO::File->new(">$passfilename");
1.31      www       715:  	  		       print $pf "internal:$ncpass\n"; }             
1.72      matthew   716: 			     &logthis("Result of password change for $uname: pwchange_success");
1.1       albertel  717:                              print $client "ok\n";
1.2       www       718:                            } else {
                    719:                              print $client "non_authorized\n";
                    720:                            }
1.72      matthew   721:                           } elsif ($howpwd eq 'unix') {
                    722: 			      # Unix means we have to access /etc/password
                    723: 			      # one way or another.
                    724: 			      # First: Make sure the current password is
                    725: 			      #        correct
                    726: 			      $contentpwd=(getpwnam($uname))[1];
                    727: 			      my $pwdcorrect = "0";
                    728: 			      my $pwauth_path="/usr/local/sbin/pwauth";
                    729: 			      unless ($contentpwd eq 'x') {
                    730: 				  $pwdcorrect=
                    731:                                     (crypt($upass,$contentpwd) eq $contentpwd);
                    732: 			      } elsif (-e $pwauth_path) {
                    733: 				  open PWAUTH, "|$pwauth_path" or
                    734: 				      die "Cannot invoke authentication";
                    735: 				  print PWAUTH "$uname\n$upass\n";
                    736: 				  close PWAUTH;
                    737: 				  $pwdcorrect=!$?;
                    738: 			      }
                    739: 			     if ($pwdcorrect) {
                    740: 				 my $execdir=$perlvar{'lonDaemons'};
                    741: 				 my $pf = IO::File->new("|$execdir/lcpasswd");
                    742: 				 print $pf "$uname\n$npass\n$npass\n";
                    743: 				 close $pf;
                    744: 				 my $result = ($?>0 ? 'pwchange_failure' 
                    745: 					       : 'ok');
                    746: 				 &logthis("Result of password change for $uname: $result");
                    747: 				 print $client "$result\n";
                    748: 			     } else {
                    749: 				 print $client "non_authorized\n";
                    750: 			     }
                    751: 			  } else {
1.2       www       752:                             print $client "auth_mode_error\n";
1.1       albertel  753:                           }  
                    754: 		       } else {
                    755:                           print $client "unknown_user\n";
1.31      www       756:                        }
                    757: 		     } else {
                    758: 		       print $client "refused\n";
                    759: 		     }
                    760: # -------------------------------------------------------------------- makeuser
                    761:                    } elsif ($userinput =~ /^makeuser/) {
1.91    ! albertel  762: 		     &Debug("Make user received");
1.56      harris41  763:     	             my $oldumask=umask(0077);
1.31      www       764: 		     if ($wasenc==1) {
                    765:                        my 
                    766:                        ($cmd,$udom,$uname,$umode,$npass)=split(/:/,$userinput);
1.77      foxr      767: 		       &Debug("cmd =".$cmd." $udom =".$udom.
                    768: 				    " uname=".$uname);
1.31      www       769:                        chomp($npass);
1.32      www       770:                        $npass=&unescape($npass);
1.31      www       771:                        my $proname=propath($udom,$uname);
                    772:                        my $passfilename="$proname/passwd";
1.77      foxr      773: 		       &Debug("Password file created will be:".
                    774: 				    $passfilename);
1.31      www       775:                        if (-e $passfilename) {
                    776: 			   print $client "already_exists\n";
                    777:                        } elsif ($udom ne $perlvar{'lonDefDomain'}) {
                    778:                            print $client "not_right_domain\n";
                    779:                        } else {
                    780:                            @fpparts=split(/\//,$proname);
                    781:                            $fpnow=$fpparts[0].'/'.$fpparts[1].'/'.$fpparts[2];
                    782:                            $fperror='';
                    783:                            for ($i=3;$i<=$#fpparts;$i++) {
                    784:                                $fpnow.='/'.$fpparts[$i]; 
                    785:                                unless (-e $fpnow) {
                    786: 				   unless (mkdir($fpnow,0777)) {
1.65      www       787:                                       $fperror="error:$!";
1.31      www       788:                                    }
                    789:                                }
                    790:                            }
                    791:                            unless ($fperror) {
1.91    ! albertel  792: 			       my $result=&make_passwd_file($umode,$npass,
        !           793: 							    $passfilename);
        !           794: 			       print $client $result;
1.31      www       795:                            } else {
                    796:                                print $client "$fperror\n";
                    797:                            }
1.55      harris41  798:                        }
                    799: 		     } else {
                    800: 		       print $client "refused\n";
                    801: 		     }
1.56      harris41  802: 		     umask($oldumask);
1.55      harris41  803: # -------------------------------------------------------------- changeuserauth
                    804:                    } elsif ($userinput =~ /^changeuserauth/) {
1.77      foxr      805: 		       &Debug("Changing authorization");
                    806: 		      if ($wasenc==1) {
1.55      harris41  807:                        my 
1.91    ! albertel  808: 		       ($cmd,$udom,$uname,$umode,$npass)=split(/:/,$userinput);
1.55      harris41  809:                        chomp($npass);
1.77      foxr      810: 		       &Debug("cmd = ".$cmd." domain= ".$udom.
                    811: 			      "uname =".$uname." umode= ".$umode);
1.55      harris41  812:                        $npass=&unescape($npass);
1.91    ! albertel  813:                        my $proname=&propath($udom,$uname);
1.55      harris41  814:                        my $passfilename="$proname/passwd";
                    815: 		       if ($udom ne $perlvar{'lonDefDomain'}) {
                    816:                            print $client "not_right_domain\n";
                    817:                        } else {
1.91    ! albertel  818: 			   &make_passwd_file($umode,$npass,$passfilename);
        !           819: 			   print $client $result;
1.1       albertel  820:                        }
                    821: 		     } else {
                    822: 		       print $client "refused\n";
                    823: 		     }
                    824: # ------------------------------------------------------------------------ home
                    825:                    } elsif ($userinput =~ /^home/) {
                    826:                        my ($cmd,$udom,$uname)=split(/:/,$userinput);
                    827:                        chomp($uname);
                    828:                        my $proname=propath($udom,$uname);
                    829:                        if (-e $proname) {
                    830:                           print $client "found\n";
                    831:                        } else {
                    832: 			  print $client "not_found\n";
                    833:                        }
                    834: # ---------------------------------------------------------------------- update
                    835:                    } elsif ($userinput =~ /^update/) {
                    836:                        my ($cmd,$fname)=split(/:/,$userinput);
                    837:                        my $ownership=ishome($fname);
                    838:                        if ($ownership eq 'not_owner') {
                    839:                         if (-e $fname) {
                    840:                           my ($dev,$ino,$mode,$nlink,
                    841:                               $uid,$gid,$rdev,$size,
                    842:                               $atime,$mtime,$ctime,
                    843:                               $blksize,$blocks)=stat($fname);
                    844:                           $now=time;
                    845:                           $since=$now-$atime;
                    846:                           if ($since>$perlvar{'lonExpire'}) {
                    847:                               $reply=
                    848:                                     reply("unsub:$fname","$hostid{$clientip}");
                    849:                               unlink("$fname");
                    850:                           } else {
                    851: 			     my $transname="$fname.in.transfer";
                    852:                              my $remoteurl=
                    853:                                     reply("sub:$fname","$hostid{$clientip}");
                    854:                              my $response;
                    855:                               {
                    856:                              my $ua=new LWP::UserAgent;
                    857:                              my $request=new HTTP::Request('GET',"$remoteurl");
                    858:                              $response=$ua->request($request,$transname);
                    859: 			      }
                    860:                              if ($response->is_error()) {
1.24      albertel  861: 				 unlink($transname);
1.1       albertel  862:                                  my $message=$response->status_line;
                    863:                                  &logthis(
                    864:                                   "LWP GET: $message for $fname ($remoteurl)");
                    865:                              } else {
1.14      www       866: 	                         if ($remoteurl!~/\.meta$/) {
1.28      www       867:                                   my $ua=new LWP::UserAgent;
1.14      www       868:                                   my $mrequest=
                    869:                                    new HTTP::Request('GET',$remoteurl.'.meta');
                    870:                                   my $mresponse=
                    871:                                    $ua->request($mrequest,$fname.'.meta');
                    872:                                   if ($mresponse->is_error()) {
                    873: 		                    unlink($fname.'.meta');
                    874:                                   }
                    875: 	                         }
1.1       albertel  876:                                  rename($transname,$fname);
                    877: 			     }
                    878:                           }
                    879:                           print $client "ok\n";
                    880:                         } else {
                    881:                           print $client "not_found\n";
                    882:                         }
                    883: 		       } else {
                    884: 			print $client "rejected\n";
                    885:                        }
1.85      www       886: # -------------------------------------- fetch a user file from a remote server
                    887:                    } elsif ($userinput =~ /^fetchuserfile/) {
1.86      www       888:                       my ($cmd,$fname)=split(/:/,$userinput);
                    889: 		      my ($udom,$uname,$ufile)=split(/\//,$fname);
                    890:                       my $udir=propath($udom,$uname).'/userfiles';
1.88      albertel  891:                       unless (-e $udir) { mkdir($udir,0770); }
1.86      www       892:                        if (-e $udir) {
                    893:                        $ufile=~s/^[\.\~]+//;
                    894:                        $ufile=~s/\///g;
                    895:                        my $transname=$udir.'/'.$ufile;
                    896:                        my $remoteurl='http://'.$clientip.'/userfiles/'.$fname;
                    897:                              my $response;
                    898:                               {
                    899:                              my $ua=new LWP::UserAgent;
                    900:                              my $request=new HTTP::Request('GET',"$remoteurl");
                    901:                              $response=$ua->request($request,$transname);
                    902: 			      }
                    903:                              if ($response->is_error()) {
                    904: 				 unlink($transname);
                    905:                                  my $message=$response->status_line;
                    906:                                  &logthis(
                    907:                                   "LWP GET: $message for $fname ($remoteurl)");
                    908: 				 print $client "failed\n";
                    909:                              } else {
                    910:                                  print $client "ok\n";
                    911:                              }
                    912:                      } else {
                    913:                        print $client "not_home\n";
                    914:                      } 
1.85      www       915: # ------------------------------------------ authenticate access to a user file
1.86      www       916:                    } elsif ($userinput =~ /^tokenauthuserfile/) {
1.85      www       917:                        my ($cmd,$fname,$session)=split(/:/,$userinput);
1.86      www       918:                        chomp($session);
                    919:                        $reply='non_auth';
                    920:                        if (open(ENVIN,$perlvar{'lonIDsDir'}.'/'.
                    921:                                       $session.'.id')) {
                    922:                         while ($line=<ENVIN>) {
                    923: 			   if ($line=~/userfile\.$fname\=/) { $reply='ok'; }
                    924:                         }
                    925:                         close(ENVIN);
                    926:                         print $client $reply."\n";
                    927: 		       } else {
                    928: 			print $client "invalid_token\n";
                    929:                        }
1.1       albertel  930: # ----------------------------------------------------------------- unsubscribe
                    931:                    } elsif ($userinput =~ /^unsub/) {
                    932:                        my ($cmd,$fname)=split(/:/,$userinput);
                    933:                        if (-e $fname) {
1.84      albertel  934: 			   print $client &unsub($client,$fname,$clientip);
1.1       albertel  935:                        } else {
                    936: 			   print $client "not_found\n";
                    937:                        }
                    938: # ------------------------------------------------------------------- subscribe
                    939:                    } elsif ($userinput =~ /^sub/) {
1.84      albertel  940: 		       print $client &subscribe($userinput,$clientip);
1.12      harris41  941: # ------------------------------------------------------------------------- log
                    942:                    } elsif ($userinput =~ /^log/) {
                    943:                        my ($cmd,$udom,$uname,$what)=split(/:/,$userinput);
                    944:                        chomp($what);
                    945:                        my $proname=propath($udom,$uname);
                    946:                        my $now=time;
                    947:                        {
                    948: 			 my $hfh;
                    949: 			 if ($hfh=IO::File->new(">>$proname/activity.log")) { 
                    950:                             print $hfh "$now:$hostid{$clientip}:$what\n";
                    951:                             print $client "ok\n"; 
                    952: 			} else {
                    953:                             print $client "error:$!\n";
                    954: 		        }
                    955: 		       }
1.1       albertel  956: # ------------------------------------------------------------------------- put
                    957:                    } elsif ($userinput =~ /^put/) {
1.6       www       958:                       my ($cmd,$udom,$uname,$namespace,$what)
1.1       albertel  959:                           =split(/:/,$userinput);
1.8       www       960:                       $namespace=~s/\//\_/g;
1.6       www       961:                       $namespace=~s/\W//g;
                    962:                       if ($namespace ne 'roles') {
1.1       albertel  963:                        chomp($what);
                    964:                        my $proname=propath($udom,$uname);
                    965:                        my $now=time;
1.48      www       966:                        unless ($namespace=~/^nohist\_/) {
1.1       albertel  967: 			   my $hfh;
                    968: 			   if (
                    969:                              $hfh=IO::File->new(">>$proname/$namespace.hist")
                    970: 			       ) { print $hfh "P:$now:$what\n"; }
                    971: 		       }
                    972:                        my @pairs=split(/\&/,$what);
1.4       www       973:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_WRCREAT,0640)) {
1.1       albertel  974:                            foreach $pair (@pairs) {
                    975: 			       ($key,$value)=split(/=/,$pair);
                    976:                                $hash{$key}=$value;
                    977:                            }
1.4       www       978: 			   if (untie(%hash)) {
1.1       albertel  979:                               print $client "ok\n";
                    980:                            } else {
                    981:                               print $client "error:$!\n";
                    982:                            }
                    983:                        } else {
                    984:                            print $client "error:$!\n";
                    985:                        }
1.6       www       986: 		      } else {
                    987:                           print $client "refused\n";
                    988:                       }
                    989: # -------------------------------------------------------------------- rolesput
                    990:                    } elsif ($userinput =~ /^rolesput/) {
1.77      foxr      991: 		       &Debug("rolesput");
1.6       www       992: 		    if ($wasenc==1) {
                    993:                        my ($cmd,$exedom,$exeuser,$udom,$uname,$what)
                    994:                           =split(/:/,$userinput);
1.77      foxr      995: 		       &Debug("cmd = ".$cmd." exedom= ".$exedom.
                    996: 				    "user = ".$exeuser." udom=".$udom.
                    997: 				    "what = ".$what);
1.6       www       998:                        my $namespace='roles';
                    999:                        chomp($what);
                   1000:                        my $proname=propath($udom,$uname);
                   1001:                        my $now=time;
                   1002:                        {
                   1003: 			   my $hfh;
                   1004: 			   if (
                   1005:                              $hfh=IO::File->new(">>$proname/$namespace.hist")
                   1006: 			       ) { 
                   1007:                                   print $hfh "P:$now:$exedom:$exeuser:$what\n";
                   1008:                                  }
                   1009: 		       }
                   1010:                        my @pairs=split(/\&/,$what);
                   1011:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_WRCREAT,0640)) {
                   1012:                            foreach $pair (@pairs) {
                   1013: 			       ($key,$value)=split(/=/,$pair);
1.78      foxr     1014: 			       &ManagePermissions($key, $udom, $uname,
                   1015: 						  &GetAuthType( $udom, 
                   1016: 								$uname));
1.6       www      1017:                                $hash{$key}=$value;
1.78      foxr     1018: 			       
1.6       www      1019:                            }
                   1020: 			   if (untie(%hash)) {
                   1021:                               print $client "ok\n";
                   1022:                            } else {
                   1023:                               print $client "error:$!\n";
                   1024:                            }
                   1025:                        } else {
                   1026:                            print $client "error:$!\n";
                   1027:                        }
                   1028: 		      } else {
                   1029:                           print $client "refused\n";
                   1030:                       }
1.1       albertel 1031: # ------------------------------------------------------------------------- get
                   1032:                    } elsif ($userinput =~ /^get/) {
                   1033:                        my ($cmd,$udom,$uname,$namespace,$what)
                   1034:                           =split(/:/,$userinput);
1.8       www      1035:                        $namespace=~s/\//\_/g;
1.1       albertel 1036:                        $namespace=~s/\W//g;
                   1037:                        chomp($what);
                   1038:                        my @queries=split(/\&/,$what);
                   1039:                        my $proname=propath($udom,$uname);
                   1040:                        my $qresult='';
1.20      www      1041:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.1       albertel 1042:                            for ($i=0;$i<=$#queries;$i++) {
                   1043:                                $qresult.="$hash{$queries[$i]}&";
                   1044:                            }
1.4       www      1045: 			   if (untie(%hash)) {
1.1       albertel 1046: 		              $qresult=~s/\&$//;
                   1047:                               print $client "$qresult\n";
                   1048:                            } else {
                   1049:                               print $client "error:$!\n";
                   1050:                            }
                   1051:                        } else {
                   1052:                            print $client "error:$!\n";
                   1053:                        }
                   1054: # ------------------------------------------------------------------------ eget
                   1055:                    } elsif ($userinput =~ /^eget/) {
                   1056:                        my ($cmd,$udom,$uname,$namespace,$what)
                   1057:                           =split(/:/,$userinput);
1.8       www      1058:                        $namespace=~s/\//\_/g;
1.1       albertel 1059:                        $namespace=~s/\W//g;
                   1060:                        chomp($what);
                   1061:                        my @queries=split(/\&/,$what);
                   1062:                        my $proname=propath($udom,$uname);
                   1063:                        my $qresult='';
1.20      www      1064:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.1       albertel 1065:                            for ($i=0;$i<=$#queries;$i++) {
                   1066:                                $qresult.="$hash{$queries[$i]}&";
                   1067:                            }
1.4       www      1068: 			   if (untie(%hash)) {
1.1       albertel 1069: 		              $qresult=~s/\&$//;
                   1070:                               if ($cipher) {
                   1071:                                 my $cmdlength=length($qresult);
                   1072:                                 $qresult.="         ";
                   1073:                                 my $encqresult='';
                   1074:                                 for 
                   1075: 				(my $encidx=0;$encidx<=$cmdlength;$encidx+=8) {
                   1076:                                  $encqresult.=
                   1077:                                  unpack("H16",
                   1078:                                  $cipher->encrypt(substr($qresult,$encidx,8)));
                   1079:                                 }
                   1080:                                 print $client "enc:$cmdlength:$encqresult\n";
                   1081: 			      } else {
                   1082: 			        print $client "error:no_key\n";
                   1083:                               }
                   1084:                            } else {
                   1085:                               print $client "error:$!\n";
                   1086:                            }
                   1087:                        } else {
                   1088:                            print $client "error:$!\n";
                   1089:                        }
                   1090: # ------------------------------------------------------------------------- del
                   1091:                    } elsif ($userinput =~ /^del/) {
                   1092:                        my ($cmd,$udom,$uname,$namespace,$what)
                   1093:                           =split(/:/,$userinput);
1.8       www      1094:                        $namespace=~s/\//\_/g;
1.1       albertel 1095:                        $namespace=~s/\W//g;
                   1096:                        chomp($what);
                   1097:                        my $proname=propath($udom,$uname);
                   1098:                        my $now=time;
1.48      www      1099:                        unless ($namespace=~/^nohist\_/) {
1.1       albertel 1100: 			   my $hfh;
                   1101: 			   if (
                   1102:                              $hfh=IO::File->new(">>$proname/$namespace.hist")
                   1103: 			       ) { print $hfh "D:$now:$what\n"; }
                   1104: 		       }
                   1105:                        my @keys=split(/\&/,$what);
1.4       www      1106:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_WRCREAT,0640)) {
1.1       albertel 1107:                            foreach $key (@keys) {
                   1108:                                delete($hash{$key});
                   1109:                            }
1.4       www      1110: 			   if (untie(%hash)) {
1.1       albertel 1111:                               print $client "ok\n";
                   1112:                            } else {
                   1113:                               print $client "error:$!\n";
                   1114:                            }
                   1115:                        } else {
                   1116:                            print $client "error:$!\n";
                   1117:                        }
                   1118: # ------------------------------------------------------------------------ keys
                   1119:                    } elsif ($userinput =~ /^keys/) {
                   1120:                        my ($cmd,$udom,$uname,$namespace)
                   1121:                           =split(/:/,$userinput);
1.8       www      1122:                        $namespace=~s/\//\_/g;
1.1       albertel 1123:                        $namespace=~s/\W//g;
                   1124:                        my $proname=propath($udom,$uname);
                   1125:                        my $qresult='';
1.20      www      1126:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.1       albertel 1127:                            foreach $key (keys %hash) {
                   1128:                                $qresult.="$key&";
                   1129:                            }
1.4       www      1130: 			   if (untie(%hash)) {
1.1       albertel 1131: 		              $qresult=~s/\&$//;
                   1132:                               print $client "$qresult\n";
                   1133:                            } else {
                   1134:                               print $client "error:$!\n";
                   1135:                            }
                   1136:                        } else {
                   1137:                            print $client "error:$!\n";
                   1138:                        }
                   1139: # ------------------------------------------------------------------------ dump
                   1140:                    } elsif ($userinput =~ /^dump/) {
1.62      www      1141:                        my ($cmd,$udom,$uname,$namespace,$regexp)
1.1       albertel 1142:                           =split(/:/,$userinput);
1.8       www      1143:                        $namespace=~s/\//\_/g;
1.1       albertel 1144:                        $namespace=~s/\W//g;
1.62      www      1145:                        if (defined($regexp)) {
                   1146:                           $regexp=&unescape($regexp);
                   1147: 		       } else {
                   1148:                           $regexp='.';
                   1149: 		       }
1.1       albertel 1150:                        my $proname=propath($udom,$uname);
                   1151:                        my $qresult='';
1.20      www      1152:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.90      stredwic 1153:                            study($regexp);
1.1       albertel 1154:                            foreach $key (keys %hash) {
1.90      stredwic 1155:                                my $unescapeKey = &unescape($key);
                   1156:                                if (eval('$unescapeKey=~/$regexp/')) {
1.62      www      1157:                                   $qresult.="$key=$hash{$key}&";
1.90      stredwic 1158:                               }
1.7       www      1159:                            }
                   1160: 			   if (untie(%hash)) {
                   1161: 		              $qresult=~s/\&$//;
                   1162:                               print $client "$qresult\n";
                   1163:                            } else {
                   1164:                               print $client "error:$!\n";
                   1165:                            }
                   1166:                        } else {
                   1167:                            print $client "error:$!\n";
                   1168:                        }
                   1169: # ----------------------------------------------------------------------- store
                   1170:                    } elsif ($userinput =~ /^store/) {
                   1171:                       my ($cmd,$udom,$uname,$namespace,$rid,$what)
                   1172:                           =split(/:/,$userinput);
1.8       www      1173:                       $namespace=~s/\//\_/g;
1.7       www      1174:                       $namespace=~s/\W//g;
                   1175:                       if ($namespace ne 'roles') {
                   1176:                        chomp($what);
                   1177:                        my $proname=propath($udom,$uname);
                   1178:                        my $now=time;
1.48      www      1179:                        unless ($namespace=~/^nohist\_/) {
1.7       www      1180: 			   my $hfh;
                   1181: 			   if (
                   1182:                              $hfh=IO::File->new(">>$proname/$namespace.hist")
                   1183: 			       ) { print $hfh "P:$now:$rid:$what\n"; }
                   1184: 		       }
                   1185:                        my @pairs=split(/\&/,$what);
                   1186:                          
                   1187:     if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_WRCREAT,0640)) {
                   1188:                            my @previouskeys=split(/&/,$hash{"keys:$rid"});
                   1189:                            my $key;
                   1190:                            $hash{"version:$rid"}++;
                   1191:                            my $version=$hash{"version:$rid"};
                   1192:                            my $allkeys=''; 
                   1193:                            foreach $pair (@pairs) {
                   1194: 			       ($key,$value)=split(/=/,$pair);
                   1195:                                $allkeys.=$key.':';
                   1196:                                $hash{"$version:$rid:$key"}=$value;
                   1197:                            }
1.36      www      1198:                            $hash{"$version:$rid:timestamp"}=$now;
                   1199:                            $allkeys.='timestamp';
1.7       www      1200:                            $hash{"$version:keys:$rid"}=$allkeys;
                   1201: 			   if (untie(%hash)) {
                   1202:                               print $client "ok\n";
                   1203:                            } else {
                   1204:                               print $client "error:$!\n";
                   1205:                            }
                   1206:                        } else {
                   1207:                            print $client "error:$!\n";
                   1208:                        }
                   1209: 		      } else {
                   1210:                           print $client "refused\n";
                   1211:                       }
                   1212: # --------------------------------------------------------------------- restore
                   1213:                    } elsif ($userinput =~ /^restore/) {
                   1214:                        my ($cmd,$udom,$uname,$namespace,$rid)
                   1215:                           =split(/:/,$userinput);
1.8       www      1216:                        $namespace=~s/\//\_/g;
1.7       www      1217:                        $namespace=~s/\W//g;
                   1218:                        chomp($rid);
                   1219:                        my $proname=propath($udom,$uname);
                   1220:                        my $qresult='';
1.20      www      1221:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.7       www      1222:                 	   my $version=$hash{"version:$rid"};
                   1223:                            $qresult.="version=$version&";
                   1224:                            my $scope;
                   1225:                            for ($scope=1;$scope<=$version;$scope++) {
                   1226: 			      my $vkeys=$hash{"$scope:keys:$rid"};
                   1227:                               my @keys=split(/:/,$vkeys);
                   1228:                               my $key;
                   1229:                               $qresult.="$scope:keys=$vkeys&";
                   1230:                               foreach $key (@keys) {
1.21      www      1231: 	     $qresult.="$scope:$key=".$hash{"$scope:$rid:$key"}."&";
1.7       www      1232:                               }                                  
1.1       albertel 1233:                            }
1.4       www      1234: 			   if (untie(%hash)) {
1.1       albertel 1235: 		              $qresult=~s/\&$//;
                   1236:                               print $client "$qresult\n";
                   1237:                            } else {
                   1238:                               print $client "error:$!\n";
                   1239:                            }
                   1240:                        } else {
                   1241:                            print $client "error:$!\n";
                   1242:                        }
1.86      www      1243: # -------------------------------------------------------------------- chatsend
                   1244:                    } elsif ($userinput =~ /^chatsend/) {
                   1245:                        my ($cmd,$cdom,$cnum,$newpost)=split(/\:/,$userinput);
                   1246:                        &chatadd($cdom,$cnum,$newpost);
                   1247:                        print $client "ok\n";
                   1248: # -------------------------------------------------------------------- chatretr
                   1249:                    } elsif ($userinput =~ /^chatretr/) {
                   1250:                        my ($cmd,$cdom,$cnum)=split(/\:/,$userinput);
                   1251:                        my $reply='';
                   1252:                        foreach (&getchat($cdom,$cnum)) {
                   1253: 			   $reply.=&escape($_).':';
                   1254:                        }
                   1255:                        $reply=~s/\:$//;
                   1256:                        print $client $reply."\n";
1.12      harris41 1257: # ------------------------------------------------------------------- querysend
                   1258:                    } elsif ($userinput =~ /^querysend/) {
1.44      harris41 1259:                        my ($cmd,$query,
1.82      www      1260: 			   $arg1,$arg2,$arg3)=split(/\:/,$userinput);
1.12      harris41 1261: 		       $query=~s/\n*$//g;
1.82      www      1262: 		       print $client "".
1.40      harris41 1263: 			       sqlreply("$hostid{$clientip}\&$query".
1.82      www      1264: 					"\&$arg1"."\&$arg2"."\&$arg3")."\n";
1.12      harris41 1265: # ------------------------------------------------------------------ queryreply
                   1266:                    } elsif ($userinput =~ /^queryreply/) {
                   1267:                        my ($cmd,$id,$reply)=split(/:/,$userinput); 
                   1268: 		       my $store;
1.13      www      1269:                        my $execdir=$perlvar{'lonDaemons'};
                   1270:                        if ($store=IO::File->new(">$execdir/tmp/$id")) {
1.43      harris41 1271: 			   $reply=~s/\&/\n/g;
1.12      harris41 1272: 			   print $store $reply;
                   1273: 			   close $store;
1.46      harris41 1274: 			   my $store2=IO::File->new(">$execdir/tmp/$id.end");
                   1275: 			   print $store2 "done\n";
                   1276: 			   close $store2;
1.12      harris41 1277: 			   print $client "ok\n";
                   1278: 		       }
                   1279: 		       else {
                   1280: 			   print $client "error:$!\n";
                   1281: 		       }
1.1       albertel 1282: # ----------------------------------------------------------------------- idput
                   1283:                    } elsif ($userinput =~ /^idput/) {
                   1284:                        my ($cmd,$udom,$what)=split(/:/,$userinput);
                   1285:                        chomp($what);
                   1286:                        $udom=~s/\W//g;
                   1287:                        my $proname="$perlvar{'lonUsersDir'}/$udom/ids";
                   1288:                        my $now=time;
                   1289:                        {
                   1290: 			   my $hfh;
                   1291: 			   if (
                   1292:                              $hfh=IO::File->new(">>$proname.hist")
                   1293: 			       ) { print $hfh "P:$now:$what\n"; }
                   1294: 		       }
                   1295:                        my @pairs=split(/\&/,$what);
1.4       www      1296:                  if (tie(%hash,'GDBM_File',"$proname.db",&GDBM_WRCREAT,0640)) {
1.1       albertel 1297:                            foreach $pair (@pairs) {
                   1298: 			       ($key,$value)=split(/=/,$pair);
                   1299:                                $hash{$key}=$value;
                   1300:                            }
1.4       www      1301: 			   if (untie(%hash)) {
1.1       albertel 1302:                               print $client "ok\n";
                   1303:                            } else {
                   1304:                               print $client "error:$!\n";
                   1305:                            }
                   1306:                        } else {
                   1307:                            print $client "error:$!\n";
                   1308:                        }
                   1309: # ----------------------------------------------------------------------- idget
                   1310:                    } elsif ($userinput =~ /^idget/) {
                   1311:                        my ($cmd,$udom,$what)=split(/:/,$userinput);
                   1312:                        chomp($what);
                   1313:                        $udom=~s/\W//g;
                   1314:                        my $proname="$perlvar{'lonUsersDir'}/$udom/ids";
                   1315:                        my @queries=split(/\&/,$what);
                   1316:                        my $qresult='';
1.20      www      1317:                  if (tie(%hash,'GDBM_File',"$proname.db",&GDBM_READER,0640)) {
1.1       albertel 1318:                            for ($i=0;$i<=$#queries;$i++) {
                   1319:                                $qresult.="$hash{$queries[$i]}&";
                   1320:                            }
1.4       www      1321: 			   if (untie(%hash)) {
1.1       albertel 1322: 		              $qresult=~s/\&$//;
                   1323:                               print $client "$qresult\n";
                   1324:                            } else {
                   1325:                               print $client "error:$!\n";
                   1326:                            }
                   1327:                        } else {
                   1328:                            print $client "error:$!\n";
                   1329:                        }
1.13      www      1330: # ---------------------------------------------------------------------- tmpput
                   1331:                    } elsif ($userinput =~ /^tmpput/) {
                   1332:                        my ($cmd,$what)=split(/:/,$userinput);
                   1333: 		       my $store;
                   1334:                        $tmpsnum++;
                   1335:                        my $id=$$.'_'.$clientip.'_'.$tmpsnum;
                   1336:                        $id=~s/\W/\_/g;
                   1337:                        $what=~s/\n//g;
                   1338:                        my $execdir=$perlvar{'lonDaemons'};
                   1339:                        if ($store=IO::File->new(">$execdir/tmp/$id.tmp")) {
                   1340: 			   print $store $what;
                   1341: 			   close $store;
                   1342: 			   print $client "$id\n";
                   1343: 		       }
                   1344: 		       else {
                   1345: 			   print $client "error:$!\n";
                   1346: 		       }
                   1347: 
                   1348: # ---------------------------------------------------------------------- tmpget
                   1349:                    } elsif ($userinput =~ /^tmpget/) {
                   1350:                        my ($cmd,$id)=split(/:/,$userinput);
                   1351:                        chomp($id);
                   1352:                        $id=~s/\W/\_/g;
                   1353:                        my $store;
                   1354:                        my $execdir=$perlvar{'lonDaemons'};
                   1355:                        if ($store=IO::File->new("$execdir/tmp/$id.tmp")) {
                   1356:                            my $reply=<$store>;
                   1357: 			   print $client "$reply\n";
                   1358:                            close $store;
                   1359: 		       }
                   1360: 		       else {
                   1361: 			   print $client "error:$!\n";
                   1362: 		       }
                   1363: 
1.5       www      1364: # -------------------------------------------------------------------------- ls
                   1365:                    } elsif ($userinput =~ /^ls/) {
                   1366:                        my ($cmd,$ulsdir)=split(/:/,$userinput);
                   1367:                        my $ulsout='';
                   1368:                        my $ulsfn;
                   1369:                        if (-e $ulsdir) {
1.83      stredwic 1370:                            if(-d $ulsdir) {
                   1371:                                if (opendir(LSDIR,$ulsdir)) {
                   1372:                                    while ($ulsfn=readdir(LSDIR)) {
                   1373:                                        my @ulsstats=stat($ulsdir.'/'.$ulsfn);
                   1374:                                        $ulsout.=$ulsfn.'&'.
                   1375:                                                 join('&',@ulsstats).':';
                   1376:                                    }
                   1377:                                    closedir(LSDIR);
                   1378:                                }
                   1379:                            } else {
                   1380:                                my @ulsstats=stat($ulsdir);
                   1381:                                $ulsout.=$ulsfn.'&'.join('&',@ulsstats).':';
                   1382:                            }
                   1383:                        } else {
1.5       www      1384:                           $ulsout='no_such_dir';
                   1385:                        }
1.17      www      1386:                        if ($ulsout eq '') { $ulsout='empty'; }
1.5       www      1387:                        print $client "$ulsout\n";
1.51      www      1388: # ------------------------------------------------------------------ Hanging up
                   1389:                    } elsif (($userinput =~ /^exit/) ||
                   1390:                             ($userinput =~ /^init/)) {
                   1391:                        &logthis(
                   1392:       "Client $clientip ($hostid{$clientip}) hanging up: $userinput");
                   1393:                        print $client "bye\n";
1.59      www      1394:                        $client->close();
1.51      www      1395: 		       last;
1.1       albertel 1396: # ------------------------------------------------------------- unknown command
                   1397:                    } else {
                   1398:                        # unknown command
                   1399:                        print $client "unknown_cmd\n";
                   1400:                    }
1.58      www      1401: # -------------------------------------------------------------------- complete
1.63      www      1402: 		   alarm(0);
1.58      www      1403:                    &status('Listening to '.$hostid{$clientip});
                   1404: 	       }
1.59      www      1405: # --------------------------------------------- client unknown or fishy, refuse
1.1       albertel 1406:             } else {
                   1407: 	        print $client "refused\n";
1.59      www      1408:                 $client->close();
1.9       www      1409:                 &logthis("<font color=blue>WARNING: "
                   1410:                 ."Rejected client $clientip, closing connection</font>");
1.75      foxr     1411:             }
                   1412: 	}              
                   1413: 
1.1       albertel 1414: # =============================================================================
1.75      foxr     1415:        
                   1416: 	&logthis("<font color=red>CRITICAL: "
                   1417: 		 ."Disconnect from $clientip ($hostid{$clientip})</font>");    
1.1       albertel 1418:         # tidy up gracefully and finish
                   1419:     
1.59      www      1420:         $server->close();
                   1421: 
1.1       albertel 1422:         # this exit is VERY important, otherwise the child will become
                   1423:         # a producer of more and more children, forking yourself into
                   1424:         # process death.
                   1425:         exit;
                   1426:     }
1.78      foxr     1427: }
                   1428: 
                   1429: 
                   1430: #
                   1431: #   Checks to see if the input roleput request was to set
                   1432: # an author role.  If so, invokes the lchtmldir script to set
                   1433: # up a correct public_html 
                   1434: # Parameters:
                   1435: #    request   - The request sent to the rolesput subchunk.
                   1436: #                We're looking for  /domain/_au
                   1437: #    domain    - The domain in which the user is having roles doctored.
                   1438: #    user      - Name of the user for which the role is being put.
                   1439: #    authtype  - The authentication type associated with the user.
                   1440: #
                   1441: sub ManagePermissions
                   1442: {
                   1443:     my $request = shift;
                   1444:     my $domain  = shift;
                   1445:     my $user    = shift;
                   1446:     my $authtype= shift;
                   1447: 
                   1448:     # See if the request is of the form /$domain/_au
                   1449: 
                   1450:     if($request =~ /^(\/$domain\/_au)$/) { # It's an author rolesput...
                   1451: 	my $execdir = $perlvar{'lonDaemons'};
                   1452: 	my $userhome= "/home/$user" ;
                   1453: 	Debug("system $execdir/lchtmldir $userhome $system $authtype");
                   1454: 	system("$execdir/lchtmldir $userhome $user $authtype");
                   1455:     }
                   1456: }
                   1457: #
                   1458: #   GetAuthType - Determines the authorization type of a user in a domain.
                   1459: 
                   1460: #     Returns the authorization type or nouser if there is no such user.
                   1461: #
                   1462: sub GetAuthType 
                   1463: {
                   1464:     my $domain = shift;
                   1465:     my $user   = shift;
                   1466: 
1.79      foxr     1467:     Debug("GetAuthType( $domain, $user ) \n");
1.78      foxr     1468:     my $proname    = &propath($domain, $user); 
                   1469:     my $passwdfile = "$proname/passwd";
                   1470:     if( -e $passwdfile ) {
                   1471: 	my $pf = IO::File->new($passwdfile);
                   1472: 	my $realpassword = <$pf>;
                   1473: 	chomp($realpassword);
1.79      foxr     1474: 	Debug("Password info = $realpassword\n");
1.78      foxr     1475: 	my ($authtype, $contentpwd) = split(/:/, $realpassword);
1.79      foxr     1476: 	Debug("Authtype = $authtype, content = $contentpwd\n");
1.78      foxr     1477: 	my $availinfo = '';
1.91    ! albertel 1478: 	if($authtype eq 'krb4' or $authtype eq 'krb5') {
1.78      foxr     1479: 	    $availinfo = $contentpwd;
                   1480: 	}
1.79      foxr     1481: 
1.78      foxr     1482: 	return "$authtype:$availinfo";
                   1483:     }
                   1484:     else {
1.79      foxr     1485: 	Debug("Returning nouser");
1.78      foxr     1486: 	return "nouser";
                   1487:     }
1.1       albertel 1488: }
                   1489: 
1.84      albertel 1490: sub addline {
                   1491:     my ($fname,$hostid,$ip,$newline)=@_;
                   1492:     my $contents;
                   1493:     my $found=0;
                   1494:     my $expr='^'.$hostid.':'.$ip.':';
                   1495:     $expr =~ s/\./\\\./g;
                   1496:     if ($sh=IO::File->new("$fname.subscription")) {
                   1497: 	while (my $subline=<$sh>) {
                   1498: 	    if ($subline !~ /$expr/) {$contents.= $subline;} else {$found=1;}
                   1499: 	}
                   1500: 	$sh->close();
                   1501:     }
                   1502:     $sh=IO::File->new(">$fname.subscription");
                   1503:     if ($contents) { print $sh $contents; }
                   1504:     if ($newline) { print $sh $newline; }
                   1505:     $sh->close();
                   1506:     return $found;
1.86      www      1507: }
                   1508: 
                   1509: sub getchat {
                   1510:     my ($cdom,$cname)=@_;
1.87      www      1511:     my %hash;
                   1512:     my $proname=&propath($cdom,$cname);
                   1513:     my @entries=();
1.88      albertel 1514:     if (tie(%hash,'GDBM_File',"$proname/nohist_chatroom.db",
                   1515: 	    &GDBM_READER(),0640)) {
                   1516: 	@entries=map { $_.':'.$hash{$_} } sort keys %hash;
                   1517: 	untie %hash;
1.86      www      1518:     }
1.87      www      1519:     return @entries;
1.86      www      1520: }
                   1521: 
                   1522: sub chatadd {
1.88      albertel 1523:     my ($cdom,$cname,$newchat)=@_;
                   1524:     my %hash;
                   1525:     my $proname=&propath($cdom,$cname);
                   1526:     my @entries=();
                   1527:     if (tie(%hash,'GDBM_File',"$proname/nohist_chatroom.db",
                   1528: 	    &GDBM_WRCREAT(),0640)) {
                   1529: 	@entries=map { $_.':'.$hash{$_} } sort keys %hash;
                   1530: 	my $time=time;
                   1531: 	my ($lastid)=($entries[$#entries]=~/^(\w+)\:/);
                   1532: 	my ($thentime,$idnum)=split(/\_/,$lastid);
                   1533: 	my $newid=$time.'_000000';
                   1534: 	if ($thentime==$time) {
                   1535: 	    $idnum=~s/^0+//;
                   1536: 	    $idnum++;
                   1537: 	    $idnum=substr('000000'.$idnum,-6,6);
                   1538: 	    $newid=$time.'_'.$idnum;
                   1539: 	}
                   1540: 	$hash{$newid}=$newchat;
                   1541: 	my $expired=$time-3600;
                   1542: 	foreach (keys %hash) {
                   1543: 	    my ($thistime)=($_=~/(\d+)\_/);
                   1544: 	    if ($thistime<$expired) {
1.89      www      1545: 		delete $hash{$_};
1.88      albertel 1546: 	    }
                   1547: 	}
                   1548: 	untie %hash;
1.86      www      1549:     }
1.84      albertel 1550: }
                   1551: 
                   1552: sub unsub {
                   1553:     my ($fname,$clientip)=@_;
                   1554:     my $result;
                   1555:     if (unlink("$fname.$hostid{$clientip}")) {
                   1556: 	$result="ok\n";
                   1557:     } else {
                   1558: 	$result="not_subscribed\n";
                   1559:     }
                   1560:     if (-e "$fname.subscription") {
                   1561: 	my $found=&addline($fname,$hostid{$clientip},$clientip,'');
                   1562: 	if ($found) { $result="ok\n"; }
                   1563:     } else {
                   1564: 	if ($result != "ok\n") { $result="not_subscribed\n"; }
                   1565:     }
                   1566:     return $result;
                   1567: }
                   1568: 
                   1569: sub subscribe {
                   1570:     my ($userinput,$clientip)=@_;
                   1571:     my $result;
                   1572:     my ($cmd,$fname)=split(/:/,$userinput);
                   1573:     my $ownership=&ishome($fname);
                   1574:     if ($ownership eq 'owner') {
                   1575: 	if (-e $fname) {
                   1576: 	    if (-d $fname) {
                   1577: 		$result="directory\n";
                   1578: 	    } else {
                   1579: 		if (-e "$fname.$hostid{$clientip}") {&unsub($fname,$clientip);}
                   1580: 		$now=time;
                   1581: 		my $found=&addline($fname,$hostid{$clientip},$clientip,
                   1582: 				   "$hostid{$clientip}:$clientip:$now\n");
                   1583: 		if ($found) { $result="$fname\n"; }
                   1584: 		# if they were subscribed to only meta data, delete that
                   1585:                 # subscription, when you subscribe to a file you also get
                   1586:                 # the metadata
                   1587: 		unless ($fname=~/\.meta$/) { &unsub("$fname.meta",$clientip); }
                   1588: 		$fname=~s/\/home\/httpd\/html\/res/raw/;
                   1589: 		$fname="http://$thisserver/".$fname;
                   1590: 		$result="$fname\n";
                   1591: 	    }
                   1592: 	} else {
                   1593: 	    $result="not_found\n";
                   1594: 	}
                   1595:     } else {
                   1596: 	$result="rejected\n";
                   1597:     }
                   1598:     return $result;
                   1599: }
1.91    ! albertel 1600: 
        !          1601: sub make_passwd_file {
        !          1602:     my ($umode,$npass,$passfilename)=@_;
        !          1603:     my $result="ok\n";
        !          1604:     if ($umode eq 'krb4' or $umode eq 'krb5') {
        !          1605: 	{
        !          1606: 	    my $pf = IO::File->new(">$passfilename");
        !          1607: 	    print $pf "$umode:$npass\n";
        !          1608: 	}
        !          1609:     } elsif ($umode eq 'internal') {
        !          1610: 	my $salt=time;
        !          1611: 	$salt=substr($salt,6,2);
        !          1612: 	my $ncpass=crypt($npass,$salt);
        !          1613: 	{
        !          1614: 	    &Debug("Creating internal auth");
        !          1615: 	    my $pf = IO::File->new(">$passfilename");
        !          1616: 	    print $pf "internal:$ncpass\n"; 
        !          1617: 	}
        !          1618:     } elsif ($umode eq 'localauth') {
        !          1619: 	{
        !          1620: 	    my $pf = IO::File->new(">$passfilename");
        !          1621: 	    print $pf "localauth:$npass\n";
        !          1622: 	}
        !          1623:     } elsif ($umode eq 'unix') {
        !          1624: 	{
        !          1625: 	    my $execpath="$perlvar{'lonDaemons'}/"."lcuseradd";
        !          1626: 	    {
        !          1627: 		&Debug("Executing external: ".$execpath);
        !          1628: 		my $se = IO::File->new("|$execpath");
        !          1629: 		print $se "$uname\n";
        !          1630: 		print $se "$npass\n";
        !          1631: 		print $se "$npass\n";
        !          1632: 	    }
        !          1633: 	    my $pf = IO::File->new(">$passfilename");
        !          1634: 	    print $pf "unix:\n";
        !          1635: 	}
        !          1636:     } elsif ($umode eq 'none') {
        !          1637: 	{
        !          1638: 	    my $pf = IO::File->new(">$passfilename");
        !          1639: 	    print $pf "none:\n";
        !          1640: 	}
        !          1641:     } else {
        !          1642: 	$result="auth_mode_error\n";
        !          1643:     }
        !          1644:     return $result;
        !          1645: }
        !          1646: 
1.61      harris41 1647: # ----------------------------------- POD (plain old documentation, CPAN style)
                   1648: 
                   1649: =head1 NAME
                   1650: 
                   1651: lond - "LON Daemon" Server (port "LOND" 5663)
                   1652: 
                   1653: =head1 SYNOPSIS
                   1654: 
1.74      harris41 1655: Usage: B<lond>
                   1656: 
                   1657: Should only be run as user=www.  This is a command-line script which
                   1658: is invoked by B<loncron>.  There is no expectation that a typical user
                   1659: will manually start B<lond> from the command-line.  (In other words,
                   1660: DO NOT START B<lond> YOURSELF.)
1.61      harris41 1661: 
                   1662: =head1 DESCRIPTION
                   1663: 
1.74      harris41 1664: There are two characteristics associated with the running of B<lond>,
                   1665: PROCESS MANAGEMENT (starting, stopping, handling child processes)
                   1666: and SERVER-SIDE ACTIVITIES (password authentication, user creation,
                   1667: subscriptions, etc).  These are described in two large
                   1668: sections below.
                   1669: 
                   1670: B<PROCESS MANAGEMENT>
                   1671: 
1.61      harris41 1672: Preforker - server who forks first. Runs as a daemon. HUPs.
                   1673: Uses IDEA encryption
                   1674: 
1.74      harris41 1675: B<lond> forks off children processes that correspond to the other servers
                   1676: in the network.  Management of these processes can be done at the
                   1677: parent process level or the child process level.
                   1678: 
                   1679: B<logs/lond.log> is the location of log messages.
                   1680: 
                   1681: The process management is now explained in terms of linux shell commands,
                   1682: subroutines internal to this code, and signal assignments:
                   1683: 
                   1684: =over 4
                   1685: 
                   1686: =item *
                   1687: 
                   1688: PID is stored in B<logs/lond.pid>
                   1689: 
                   1690: This is the process id number of the parent B<lond> process.
                   1691: 
                   1692: =item *
                   1693: 
                   1694: SIGTERM and SIGINT
                   1695: 
                   1696: Parent signal assignment:
                   1697:  $SIG{INT}  = $SIG{TERM} = \&HUNTSMAN;
                   1698: 
                   1699: Child signal assignment:
                   1700:  $SIG{INT}  = 'DEFAULT'; (and SIGTERM is DEFAULT also)
                   1701: (The child dies and a SIGALRM is sent to parent, awaking parent from slumber
                   1702:  to restart a new child.)
                   1703: 
                   1704: Command-line invocations:
                   1705:  B<kill> B<-s> SIGTERM I<PID>
                   1706:  B<kill> B<-s> SIGINT I<PID>
                   1707: 
                   1708: Subroutine B<HUNTSMAN>:
                   1709:  This is only invoked for the B<lond> parent I<PID>.
                   1710: This kills all the children, and then the parent.
                   1711: The B<lonc.pid> file is cleared.
                   1712: 
                   1713: =item *
                   1714: 
                   1715: SIGHUP
                   1716: 
                   1717: Current bug:
                   1718:  This signal can only be processed the first time
                   1719: on the parent process.  Subsequent SIGHUP signals
                   1720: have no effect.
                   1721: 
                   1722: Parent signal assignment:
                   1723:  $SIG{HUP}  = \&HUPSMAN;
                   1724: 
                   1725: Child signal assignment:
                   1726:  none (nothing happens)
                   1727: 
                   1728: Command-line invocations:
                   1729:  B<kill> B<-s> SIGHUP I<PID>
                   1730: 
                   1731: Subroutine B<HUPSMAN>:
                   1732:  This is only invoked for the B<lond> parent I<PID>,
                   1733: This kills all the children, and then the parent.
                   1734: The B<lond.pid> file is cleared.
                   1735: 
                   1736: =item *
                   1737: 
                   1738: SIGUSR1
                   1739: 
                   1740: Parent signal assignment:
                   1741:  $SIG{USR1} = \&USRMAN;
                   1742: 
                   1743: Child signal assignment:
                   1744:  $SIG{USR1}= \&logstatus;
                   1745: 
                   1746: Command-line invocations:
                   1747:  B<kill> B<-s> SIGUSR1 I<PID>
                   1748: 
                   1749: Subroutine B<USRMAN>:
                   1750:  When invoked for the B<lond> parent I<PID>,
                   1751: SIGUSR1 is sent to all the children, and the status of
                   1752: each connection is logged.
                   1753: 
                   1754: =item *
                   1755: 
                   1756: SIGCHLD
                   1757: 
                   1758: Parent signal assignment:
                   1759:  $SIG{CHLD} = \&REAPER;
                   1760: 
                   1761: Child signal assignment:
                   1762:  none
                   1763: 
                   1764: Command-line invocations:
                   1765:  B<kill> B<-s> SIGCHLD I<PID>
                   1766: 
                   1767: Subroutine B<REAPER>:
                   1768:  This is only invoked for the B<lond> parent I<PID>.
                   1769: Information pertaining to the child is removed.
                   1770: The socket port is cleaned up.
                   1771: 
                   1772: =back
                   1773: 
                   1774: B<SERVER-SIDE ACTIVITIES>
                   1775: 
                   1776: Server-side information can be accepted in an encrypted or non-encrypted
                   1777: method.
                   1778: 
                   1779: =over 4
                   1780: 
                   1781: =item ping
                   1782: 
                   1783: Query a client in the hosts.tab table; "Are you there?"
                   1784: 
                   1785: =item pong
                   1786: 
                   1787: Respond to a ping query.
                   1788: 
                   1789: =item ekey
                   1790: 
                   1791: Read in encrypted key, make cipher.  Respond with a buildkey.
                   1792: 
                   1793: =item load
                   1794: 
                   1795: Respond with CPU load based on a computation upon /proc/loadavg.
                   1796: 
                   1797: =item currentauth
                   1798: 
                   1799: Reply with current authentication information (only over an
                   1800: encrypted channel).
                   1801: 
                   1802: =item auth
                   1803: 
                   1804: Only over an encrypted channel, reply as to whether a user's
                   1805: authentication information can be validated.
                   1806: 
                   1807: =item passwd
                   1808: 
                   1809: Allow for a password to be set.
                   1810: 
                   1811: =item makeuser
                   1812: 
                   1813: Make a user.
                   1814: 
                   1815: =item passwd
                   1816: 
                   1817: Allow for authentication mechanism and password to be changed.
                   1818: 
                   1819: =item home
1.61      harris41 1820: 
1.74      harris41 1821: Respond to a question "are you the home for a given user?"
                   1822: 
                   1823: =item update
                   1824: 
                   1825: Update contents of a subscribed resource.
                   1826: 
                   1827: =item unsubscribe
                   1828: 
                   1829: The server is unsubscribing from a resource.
                   1830: 
                   1831: =item subscribe
                   1832: 
                   1833: The server is subscribing to a resource.
                   1834: 
                   1835: =item log
                   1836: 
                   1837: Place in B<logs/lond.log>
                   1838: 
                   1839: =item put
                   1840: 
                   1841: stores hash in namespace
                   1842: 
                   1843: =item rolesput
                   1844: 
                   1845: put a role into a user's environment
                   1846: 
                   1847: =item get
                   1848: 
                   1849: returns hash with keys from array
                   1850: reference filled in from namespace
                   1851: 
                   1852: =item eget
                   1853: 
                   1854: returns hash with keys from array
                   1855: reference filled in from namesp (encrypts the return communication)
                   1856: 
                   1857: =item rolesget
                   1858: 
                   1859: get a role from a user's environment
                   1860: 
                   1861: =item del
                   1862: 
                   1863: deletes keys out of array from namespace
                   1864: 
                   1865: =item keys
                   1866: 
                   1867: returns namespace keys
                   1868: 
                   1869: =item dump
                   1870: 
                   1871: dumps the complete (or key matching regexp) namespace into a hash
                   1872: 
                   1873: =item store
                   1874: 
                   1875: stores hash permanently
                   1876: for this url; hashref needs to be given and should be a \%hashname; the
                   1877: remaining args aren't required and if they aren't passed or are '' they will
                   1878: be derived from the ENV
                   1879: 
                   1880: =item restore
                   1881: 
                   1882: returns a hash for a given url
                   1883: 
                   1884: =item querysend
                   1885: 
                   1886: Tells client about the lonsql process that has been launched in response
                   1887: to a sent query.
                   1888: 
                   1889: =item queryreply
                   1890: 
                   1891: Accept information from lonsql and make appropriate storage in temporary
                   1892: file space.
                   1893: 
                   1894: =item idput
                   1895: 
                   1896: Defines usernames as corresponding to IDs.  (These "IDs" are unique identifiers
                   1897: for each student, defined perhaps by the institutional Registrar.)
                   1898: 
                   1899: =item idget
                   1900: 
                   1901: Returns usernames corresponding to IDs.  (These "IDs" are unique identifiers
                   1902: for each student, defined perhaps by the institutional Registrar.)
                   1903: 
                   1904: =item tmpput
                   1905: 
                   1906: Accept and store information in temporary space.
                   1907: 
                   1908: =item tmpget
                   1909: 
                   1910: Send along temporarily stored information.
                   1911: 
                   1912: =item ls
                   1913: 
                   1914: List part of a user's directory.
                   1915: 
                   1916: =item Hanging up (exit or init)
                   1917: 
                   1918: What to do when a client tells the server that they (the client)
                   1919: are leaving the network.
                   1920: 
                   1921: =item unknown command
                   1922: 
                   1923: If B<lond> is sent an unknown command (not in the list above),
                   1924: it replys to the client "unknown_cmd".
                   1925: 
                   1926: =item UNKNOWN CLIENT
                   1927: 
                   1928: If the anti-spoofing algorithm cannot verify the client,
                   1929: the client is rejected (with a "refused" message sent
                   1930: to the client, and the connection is closed.
                   1931: 
                   1932: =back
1.61      harris41 1933: 
                   1934: =head1 PREREQUISITES
                   1935: 
                   1936: IO::Socket
                   1937: IO::File
                   1938: Apache::File
                   1939: Symbol
                   1940: POSIX
                   1941: Crypt::IDEA
                   1942: LWP::UserAgent()
                   1943: GDBM_File
                   1944: Authen::Krb4
1.91    ! albertel 1945: Authen::Krb5
1.61      harris41 1946: 
                   1947: =head1 COREQUISITES
                   1948: 
                   1949: =head1 OSNAMES
                   1950: 
                   1951: linux
                   1952: 
                   1953: =head1 SCRIPT CATEGORIES
                   1954: 
                   1955: Server/Process
                   1956: 
                   1957: =cut

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