Annotation of loncom/lond, revision 1.37

1.1       albertel    1: #!/usr/bin/perl
                      2: # The LearningOnline Network
                      3: # lond "LON Daemon" Server (port "LOND" 5663)
                      4: # 5/26/99,6/4,6/10,6/11,6/14,6/15,6/26,6/28,6/30,
1.2       www         5: # 7/8,7/9,7/10,7/12,7/17,7/19,9/21,
1.6       www         6: # 10/7,10/8,10/9,10/11,10/13,10/15,11/4,11/16,
1.11      www         7: # 12/7,12/15,01/06,01/11,01/12,01/14,2/8,
1.12      harris41    8: # 03/07,05/31 Gerd Kortemeyer
1.13      www         9: # 06/26 Scott Harrison
1.20      www        10: # 06/29,06/30,07/14,07/15,07/17,07/20,07/25,09/18 Gerd Kortemeyer
1.25      www        11: # 12/05 Scott Harrison
1.34      www        12: # 12/05,12/13,12/29 Gerd Kortemeyer
1.36      www        13: # Jan 01 Scott Harrison
                     14: # 02/12 Gerd Kortemeyer
1.37    ! harris41   15: # 03/15 Scott Harrison
1.13      www        16: #
1.1       albertel   17: # based on "Perl Cookbook" ISBN 1-56592-243-3
                     18: # preforker - server who forks first
                     19: # runs as a daemon
                     20: # HUPs
                     21: # uses IDEA encryption
                     22: 
                     23: use IO::Socket;
                     24: use IO::File;
                     25: use Apache::File;
                     26: use Symbol;
                     27: use POSIX;
                     28: use Crypt::IDEA;
                     29: use LWP::UserAgent();
1.3       www        30: use GDBM_File;
                     31: use Authen::Krb4;
1.1       albertel   32: 
1.23      harris41   33: # grabs exception and records it to log before exiting
                     34: sub catchexception {
1.27      albertel   35:     my ($error)=@_;
1.25      www        36:     $SIG{'QUIT'}='DEFAULT';
                     37:     $SIG{__DIE__}='DEFAULT';
1.23      harris41   38:     &logthis("<font color=red>CRITICAL: "
                     39:      ."ABNORMAL EXIT. Child $$ for server $wasserver died through "
1.27      albertel   40:      ."a crash with this error msg->[$error]</font>");
                     41:     if ($client) { print $client "error: $error\n"; }
                     42:     die($error);
1.23      harris41   43: }
                     44: 
1.22      harris41   45: # -------------------------------- Set signal handlers to record abnormal exits
                     46: 
                     47: $SIG{'QUIT'}=\&catchexception;
                     48: $SIG{__DIE__}=\&catchexception;
                     49: 
1.1       albertel   50: # ------------------------------------ Read httpd access.conf and get variables
                     51: 
1.29      harris41   52: open (CONFIG,"/etc/httpd/conf/access.conf") || die "Can't read access.conf";
1.1       albertel   53: 
                     54: while ($configline=<CONFIG>) {
                     55:     if ($configline =~ /PerlSetVar/) {
                     56: 	my ($dummy,$varname,$varvalue)=split(/\s+/,$configline);
1.7       www        57:         chomp($varvalue);
1.1       albertel   58:         $perlvar{$varname}=$varvalue;
                     59:     }
                     60: }
                     61: close(CONFIG);
1.19      www        62: 
1.35      harris41   63: # ----------------------------- Make sure this process is running from user=www
                     64: my $wwwid=getpwnam('www');
                     65: if ($wwwid!=$<) {
                     66:    $emailto="$perlvar{'lonAdmEMail'},$perlvar{'lonSysEMail'}";
                     67:    $subj="LON: $perlvar{'lonHostID'} User ID mismatch";
1.37    ! harris41   68:    system("echo 'User ID mismatch.  lond must be run as user www.' |\
1.35      harris41   69:  mailto $emailto -s '$subj' > /dev/null");
                     70:    exit 1;
                     71: }
                     72: 
1.19      www        73: # --------------------------------------------- Check if other instance running
                     74: 
                     75: my $pidfile="$perlvar{'lonDaemons'}/logs/lond.pid";
                     76: 
                     77: if (-e $pidfile) {
                     78:    my $lfh=IO::File->new("$pidfile");
                     79:    my $pide=<$lfh>;
                     80:    chomp($pide);
1.29      harris41   81:    if (kill 0 => $pide) { die "already running"; }
1.19      www        82: }
1.1       albertel   83: 
                     84: $PREFORK=4; # number of children to maintain, at least four spare
                     85: 
                     86: # ------------------------------------------------------------- Read hosts file
                     87: 
1.29      harris41   88: open (CONFIG,"$perlvar{'lonTabDir'}/hosts.tab") || die "Can't read host file";
1.1       albertel   89: 
                     90: while ($configline=<CONFIG>) {
                     91:     my ($id,$domain,$role,$name,$ip)=split(/:/,$configline);
                     92:     chomp($ip);
                     93:     $hostid{$ip}=$id;
                     94:     if ($id eq $perlvar{'lonHostID'}) { $thisserver=$name; }
                     95:     $PREFORK++;
                     96: }
                     97: close(CONFIG);
                     98: 
                     99: # establish SERVER socket, bind and listen.
                    100: $server = IO::Socket::INET->new(LocalPort => $perlvar{'londPort'},
                    101:                                 Type      => SOCK_STREAM,
                    102:                                 Proto     => 'tcp',
                    103:                                 Reuse     => 1,
                    104:                                 Listen    => 10 )
1.29      harris41  105:   or die "making socket: $@\n";
1.1       albertel  106: 
                    107: # --------------------------------------------------------- Do global variables
                    108: 
                    109: # global variables
                    110: 
                    111: $MAX_CLIENTS_PER_CHILD  = 5;        # number of clients each child should 
                    112:                                     # process
                    113: %children               = ();       # keys are current child process IDs
                    114: $children               = 0;        # current number of children
                    115: 
                    116: sub REAPER {                        # takes care of dead children
                    117:     $SIG{CHLD} = \&REAPER;
                    118:     my $pid = wait;
                    119:     $children --;
                    120:     &logthis("Child $pid died");
                    121:     delete $children{$pid};
                    122: }
                    123: 
                    124: sub HUNTSMAN {                      # signal handler for SIGINT
                    125:     local($SIG{CHLD}) = 'IGNORE';   # we're going to kill our children
                    126:     kill 'INT' => keys %children;
                    127:     my $execdir=$perlvar{'lonDaemons'};
                    128:     unlink("$execdir/logs/lond.pid");
1.9       www       129:     &logthis("<font color=red>CRITICAL: Shutting down</font>");
1.1       albertel  130:     exit;                           # clean up with dignity
                    131: }
                    132: 
                    133: sub HUPSMAN {                      # signal handler for SIGHUP
                    134:     local($SIG{CHLD}) = 'IGNORE';  # we're going to kill our children
                    135:     kill 'INT' => keys %children;
                    136:     close($server);                # free up socket
1.9       www       137:     &logthis("<font color=red>CRITICAL: Restarting</font>");
1.30      harris41  138:     unlink("$execdir/logs/lond.pid");
1.1       albertel  139:     my $execdir=$perlvar{'lonDaemons'};
                    140:     exec("$execdir/lond");         # here we go again
                    141: }
                    142: 
                    143: # --------------------------------------------------------------------- Logging
                    144: 
                    145: sub logthis {
                    146:     my $message=shift;
                    147:     my $execdir=$perlvar{'lonDaemons'};
                    148:     my $fh=IO::File->new(">>$execdir/logs/lond.log");
                    149:     my $now=time;
                    150:     my $local=localtime($now);
                    151:     print $fh "$local ($$): $message\n";
                    152: }
                    153: 
1.11      www       154: 
                    155: # -------------------------------------------------------- Escape Special Chars
                    156: 
                    157: sub escape {
                    158:     my $str=shift;
                    159:     $str =~ s/(\W)/"%".unpack('H2',$1)/eg;
                    160:     return $str;
                    161: }
                    162: 
                    163: # ----------------------------------------------------- Un-Escape Special Chars
                    164: 
                    165: sub unescape {
                    166:     my $str=shift;
                    167:     $str =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
                    168:     return $str;
                    169: }
                    170: 
1.1       albertel  171: # ----------------------------------------------------------- Send USR1 to lonc
                    172: 
                    173: sub reconlonc {
                    174:     my $peerfile=shift;
                    175:     &logthis("Trying to reconnect for $peerfile");
                    176:     my $loncfile="$perlvar{'lonDaemons'}/logs/lonc.pid";
                    177:     if (my $fh=IO::File->new("$loncfile")) {
                    178: 	my $loncpid=<$fh>;
                    179:         chomp($loncpid);
                    180:         if (kill 0 => $loncpid) {
                    181: 	    &logthis("lonc at pid $loncpid responding, sending USR1");
                    182:             kill USR1 => $loncpid;
                    183:             sleep 1;
                    184:             if (-e "$peerfile") { return; }
                    185:             &logthis("$peerfile still not there, give it another try");
                    186:             sleep 5;
                    187:             if (-e "$peerfile") { return; }
1.9       www       188:             &logthis(
                    189:  "<font color=blue>WARNING: $peerfile still not there, giving up</font>");
1.1       albertel  190:         } else {
1.9       www       191: 	    &logthis(
                    192:               "<font color=red>CRITICAL: "
                    193:              ."lonc at pid $loncpid not responding, giving up</font>");
1.1       albertel  194:         }
                    195:     } else {
1.9       www       196:       &logthis('<font color=red>CRITICAL: lonc not running, giving up</font>');
1.1       albertel  197:     }
                    198: }
                    199: 
                    200: # -------------------------------------------------- Non-critical communication
1.11      www       201: 
1.1       albertel  202: sub subreply {
                    203:     my ($cmd,$server)=@_;
                    204:     my $peerfile="$perlvar{'lonSockDir'}/$server";
                    205:     my $sclient=IO::Socket::UNIX->new(Peer    =>"$peerfile",
                    206:                                       Type    => SOCK_STREAM,
                    207:                                       Timeout => 10)
                    208:        or return "con_lost";
                    209:     print $sclient "$cmd\n";
                    210:     my $answer=<$sclient>;
                    211:     chomp($answer);
                    212:     if (!$answer) { $answer="con_lost"; }
                    213:     return $answer;
                    214: }
                    215: 
                    216: sub reply {
                    217:   my ($cmd,$server)=@_;
                    218:   my $answer;
                    219:   if ($server ne $perlvar{'lonHostID'}) { 
                    220:     $answer=subreply($cmd,$server);
                    221:     if ($answer eq 'con_lost') {
                    222: 	$answer=subreply("ping",$server);
                    223:         if ($answer ne $server) {
                    224:            &reconlonc("$perlvar{'lonSockDir'}/$server");
                    225:         }
                    226:         $answer=subreply($cmd,$server);
                    227:     }
                    228:   } else {
                    229:     $answer='self_reply';
                    230:   } 
                    231:   return $answer;
                    232: }
                    233: 
1.13      www       234: # -------------------------------------------------------------- Talk to lonsql
                    235: 
1.12      harris41  236: sub sqlreply {
                    237:     my ($cmd)=@_;
                    238:     my $answer=subsqlreply($cmd);
                    239:     if ($answer eq 'con_lost') { $answer=subsqlreply($cmd); }
                    240:     return $answer;
                    241: }
                    242: 
                    243: sub subsqlreply {
                    244:     my ($cmd)=@_;
                    245:     my $unixsock="mysqlsock";
                    246:     my $peerfile="$perlvar{'lonSockDir'}/$unixsock";
                    247:     my $sclient=IO::Socket::UNIX->new(Peer    =>"$peerfile",
                    248:                                       Type    => SOCK_STREAM,
                    249:                                       Timeout => 10)
                    250:        or return "con_lost";
                    251:     print $sclient "$cmd\n";
                    252:     my $answer=<$sclient>;
                    253:     chomp($answer);
                    254:     if (!$answer) { $answer="con_lost"; }
                    255:     return $answer;
                    256: }
                    257: 
1.1       albertel  258: # -------------------------------------------- Return path to profile directory
1.11      www       259: 
1.1       albertel  260: sub propath {
                    261:     my ($udom,$uname)=@_;
                    262:     $udom=~s/\W//g;
                    263:     $uname=~s/\W//g;
1.16      www       264:     my $subdir=$uname.'__';
1.1       albertel  265:     $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
                    266:     my $proname="$perlvar{'lonUsersDir'}/$udom/$subdir/$uname";
                    267:     return $proname;
                    268: } 
                    269: 
                    270: # --------------------------------------- Is this the home server of an author?
1.11      www       271: 
1.1       albertel  272: sub ishome {
                    273:     my $author=shift;
                    274:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
                    275:     my ($udom,$uname)=split(/\//,$author);
                    276:     my $proname=propath($udom,$uname);
                    277:     if (-e $proname) {
                    278: 	return 'owner';
                    279:     } else {
                    280:         return 'not_owner';
                    281:     }
                    282: }
                    283: 
                    284: # ======================================================= Continue main program
                    285: # ---------------------------------------------------- Fork once and dissociate
                    286: 
                    287: $fpid=fork;
                    288: exit if $fpid;
1.29      harris41  289: die "Couldn't fork: $!" unless defined ($fpid);
1.1       albertel  290: 
1.29      harris41  291: POSIX::setsid() or die "Can't start new session: $!";
1.1       albertel  292: 
                    293: # ------------------------------------------------------- Write our PID on disk
                    294: 
                    295: $execdir=$perlvar{'lonDaemons'};
                    296: open (PIDSAVE,">$execdir/logs/lond.pid");
                    297: print PIDSAVE "$$\n";
                    298: close(PIDSAVE);
1.9       www       299: &logthis("<font color=red>CRITICAL: ---------- Starting ----------</font>");
1.1       albertel  300: 
                    301: # ------------------------------------------------------- Now we are on our own
                    302:     
                    303: # Fork off our children.
                    304: for (1 .. $PREFORK) {
                    305:     make_new_child();
                    306: }
                    307: 
                    308: # ----------------------------------------------------- Install signal handlers
                    309: 
                    310: $SIG{CHLD} = \&REAPER;
                    311: $SIG{INT}  = $SIG{TERM} = \&HUNTSMAN;
                    312: $SIG{HUP}  = \&HUPSMAN;
                    313: 
                    314: # And maintain the population.
                    315: while (1) {
                    316:     sleep;                          # wait for a signal (i.e., child's death)
                    317:     for ($i = $children; $i < $PREFORK; $i++) {
                    318:         make_new_child();           # top up the child pool
                    319:     }
                    320: }
                    321: 
                    322: sub make_new_child {
                    323:     my $pid;
                    324:     my $cipher;
                    325:     my $sigset;
                    326:     &logthis("Attempting to start child");    
                    327:     # block signal for fork
                    328:     $sigset = POSIX::SigSet->new(SIGINT);
                    329:     sigprocmask(SIG_BLOCK, $sigset)
1.29      harris41  330:         or die "Can't block SIGINT for fork: $!\n";
1.1       albertel  331:     
1.29      harris41  332:     die "fork: $!" unless defined ($pid = fork);
1.1       albertel  333:     
                    334:     if ($pid) {
                    335:         # Parent records the child's birth and returns.
                    336:         sigprocmask(SIG_UNBLOCK, $sigset)
1.29      harris41  337:             or die "Can't unblock SIGINT for fork: $!\n";
1.1       albertel  338:         $children{$pid} = 1;
                    339:         $children++;
                    340:         return;
                    341:     } else {
                    342:         # Child can *not* return from this subroutine.
                    343:         $SIG{INT} = 'DEFAULT';      # make SIGINT kill us as it did before
                    344:     
                    345:         # unblock signals
                    346:         sigprocmask(SIG_UNBLOCK, $sigset)
1.29      harris41  347:             or die "Can't unblock SIGINT for fork: $!\n";
1.13      www       348: 
                    349:         $tmpsnum=0;
1.1       albertel  350:     
                    351:         # handle connections until we've reached $MAX_CLIENTS_PER_CHILD
                    352:         for ($i=0; $i < $MAX_CLIENTS_PER_CHILD; $i++) {
                    353:             $client = $server->accept()     or last;
                    354: 
                    355: # =============================================================================
                    356:             # do something with the connection
                    357: # -----------------------------------------------------------------------------
1.2       www       358:             # see if we know client and check for spoof IP by challenge
1.1       albertel  359:             my $caller=getpeername($client);
                    360:             my ($port,$iaddr)=unpack_sockaddr_in($caller);
                    361:             my $clientip=inet_ntoa($iaddr);
                    362:             my $clientrec=($hostid{$clientip} ne undef);
1.9       www       363:             &logthis(
                    364: "<font color=yellow>INFO: Connect from $clientip ($hostid{$clientip})</font>");
1.2       www       365:             my $clientok;
1.1       albertel  366:             if ($clientrec) {
1.2       www       367: 	      my $remotereq=<$client>;
                    368:               $remotereq=~s/\W//g;
                    369:               if ($remotereq eq 'init') {
                    370: 		  my $challenge="$$".time;
                    371:                   print $client "$challenge\n";
                    372:                   $remotereq=<$client>;
                    373:                   $remotereq=~s/\W//g;
                    374:                   if ($challenge eq $remotereq) {
                    375: 		      $clientok=1;
                    376:                       print $client "ok\n";
                    377:                   } else {
1.9       www       378: 		      &logthis(
                    379:  "<font color=blue>WARNING: $clientip did not reply challenge</font>");
1.16      www       380:                       print $client "bye\n";
1.2       www       381:                   }
                    382:               } else {
1.9       www       383: 		  &logthis(
                    384:                     "<font color=blue>WARNING: "
                    385:                    ."$clientip failed to initialize: >$remotereq< </font>");
1.16      www       386: 		  print $client "bye\n";
1.2       www       387:               }
                    388: 	    } else {
1.9       www       389:               &logthis(
                    390:  "<font color=blue>WARNING: Unknown client $clientip</font>");
1.16      www       391:               print $client "bye\n";
1.2       www       392:             }
                    393:             if ($clientok) {
1.1       albertel  394: # ---------------- New known client connecting, could mean machine online again
                    395: 	      &reconlonc("$perlvar{'lonSockDir'}/$hostid{$clientip}");
1.9       www       396:               &logthis(
                    397:        "<font color=green>Established connection: $hostid{$clientip}</font>");
1.1       albertel  398: # ------------------------------------------------------------ Process requests
                    399:               while (my $userinput=<$client>) {
                    400:                 chomp($userinput);
                    401:                 my $wasenc=0;
                    402: # ------------------------------------------------------------ See if encrypted
                    403: 		if ($userinput =~ /^enc/) {
                    404: 		  if ($cipher) {
                    405:                     my ($cmd,$cmdlength,$encinput)=split(/:/,$userinput);
                    406: 		    $userinput='';
                    407:                     for (my $encidx=0;$encidx<length($encinput);$encidx+=16) {
                    408:                        $userinput.=
                    409: 			   $cipher->decrypt(
                    410:                             pack("H16",substr($encinput,$encidx,16))
                    411:                            );
                    412: 		    }
                    413: 		    $userinput=substr($userinput,0,$cmdlength);
                    414:                     $wasenc=1;
                    415: 		  }
                    416: 		}
                    417: # ------------------------------------------------------------- Normal commands
                    418: # ------------------------------------------------------------------------ ping
                    419: 		   if ($userinput =~ /^ping/) {
                    420:                        print $client "$perlvar{'lonHostID'}\n";
                    421: # ------------------------------------------------------------------------ pong
                    422: 		   } elsif ($userinput =~ /^pong/) {
                    423:                        $reply=reply("ping",$hostid{$clientip});
                    424:                        print $client "$perlvar{'lonHostID'}:$reply\n"; 
                    425: # ------------------------------------------------------------------------ ekey
                    426: 		   } elsif ($userinput =~ /^ekey/) {
                    427:                        my $buildkey=time.$$.int(rand 100000);
                    428:                        $buildkey=~tr/1-6/A-F/;
                    429:                        $buildkey=int(rand 100000).$buildkey.int(rand 100000);
                    430:                        my $key=$perlvar{'lonHostID'}.$hostid{$clientip};
                    431:                        $key=~tr/a-z/A-Z/;
                    432:                        $key=~tr/G-P/0-9/;
                    433:                        $key=~tr/Q-Z/0-9/;
                    434:                        $key=$key.$buildkey.$key.$buildkey.$key.$buildkey;
                    435:                        $key=substr($key,0,32);
                    436:                        my $cipherkey=pack("H32",$key);
                    437:                        $cipher=new IDEA $cipherkey;
                    438:                        print $client "$buildkey\n"; 
                    439: # ------------------------------------------------------------------------ load
                    440: 		   } elsif ($userinput =~ /^load/) {
                    441:                        my $loadavg;
                    442:                        {
                    443:                           my $loadfile=IO::File->new('/proc/loadavg');
                    444:                           $loadavg=<$loadfile>;
                    445:                        }
                    446:                        $loadavg =~ s/\s.*//g;
                    447:                        my $loadpercent=100*$loadavg/$perlvar{'lonLoadLim'};
                    448: 		       print $client "$loadpercent\n";
                    449: # ------------------------------------------------------------------------ auth
                    450:                    } elsif ($userinput =~ /^auth/) {
                    451: 		     if ($wasenc==1) {
                    452:                        my ($cmd,$udom,$uname,$upass)=split(/:/,$userinput);
                    453:                        chomp($upass);
1.11      www       454:                        $upass=unescape($upass);
1.1       albertel  455:                        my $proname=propath($udom,$uname);
                    456:                        my $passfilename="$proname/passwd";
                    457:                        if (-e $passfilename) {
                    458:                           my $pf = IO::File->new($passfilename);
                    459:                           my $realpasswd=<$pf>;
                    460:                           chomp($realpasswd);
1.2       www       461:                           my ($howpwd,$contentpwd)=split(/:/,$realpasswd);
                    462:                           my $pwdcorrect=0;
                    463:                           if ($howpwd eq 'internal') {
                    464: 			      $pwdcorrect=
                    465: 				  (crypt($upass,$contentpwd) eq $contentpwd);
                    466:                           } elsif ($howpwd eq 'unix') {
                    467:                               $contentpwd=(getpwnam($uname))[1];
                    468:                               $pwdcorrect=
                    469:                                   (crypt($upass,$contentpwd) eq $contentpwd);
1.3       www       470:                           } elsif ($howpwd eq 'krb4') {
                    471:                               $pwdcorrect=(
                    472:                                  Authen::Krb4::get_pw_in_tkt($uname,"",
                    473:                                         $contentpwd,'krbtgt',$contentpwd,1,
                    474: 							     $upass) == 0);
1.2       www       475:                           }
                    476:                           if ($pwdcorrect) {
1.1       albertel  477:                              print $client "authorized\n";
                    478:                           } else {
                    479:                              print $client "non_authorized\n";
                    480:                           }  
                    481: 		       } else {
                    482:                           print $client "unknown_user\n";
                    483:                        }
                    484: 		     } else {
                    485: 		       print $client "refused\n";
                    486: 		     }
                    487: # ---------------------------------------------------------------------- passwd
                    488:                    } elsif ($userinput =~ /^passwd/) {
                    489: 		     if ($wasenc==1) {
                    490:                        my 
                    491:                        ($cmd,$udom,$uname,$upass,$npass)=split(/:/,$userinput);
                    492:                        chomp($npass);
1.32      www       493:                        $upass=&unescape($upass);
                    494:                        $npass=&unescape($npass);
1.1       albertel  495:                        my $proname=propath($udom,$uname);
                    496:                        my $passfilename="$proname/passwd";
                    497:                        if (-e $passfilename) {
                    498: 			   my $realpasswd;
                    499:                           { my $pf = IO::File->new($passfilename);
                    500: 			    $realpasswd=<$pf>; }
                    501:                           chomp($realpasswd);
1.2       www       502:                           my ($howpwd,$contentpwd)=split(/:/,$realpasswd);
                    503:                           if ($howpwd eq 'internal') {
                    504: 			   if (crypt($upass,$contentpwd) eq $contentpwd) {
                    505: 			     my $salt=time;
                    506:                              $salt=substr($salt,6,2);
                    507: 			     my $ncpass=crypt($npass,$salt);
1.1       albertel  508:                              { my $pf = IO::File->new(">$passfilename");
1.31      www       509:  	  		       print $pf "internal:$ncpass\n"; }             
1.1       albertel  510:                              print $client "ok\n";
1.2       www       511:                            } else {
                    512:                              print $client "non_authorized\n";
                    513:                            }
1.1       albertel  514:                           } else {
1.2       www       515:                             print $client "auth_mode_error\n";
1.1       albertel  516:                           }  
                    517: 		       } else {
                    518:                           print $client "unknown_user\n";
1.31      www       519:                        }
                    520: 		     } else {
                    521: 		       print $client "refused\n";
                    522: 		     }
                    523: # -------------------------------------------------------------------- makeuser
                    524:                    } elsif ($userinput =~ /^makeuser/) {
                    525: 		     if ($wasenc==1) {
                    526:                        my 
                    527:                        ($cmd,$udom,$uname,$umode,$npass)=split(/:/,$userinput);
                    528:                        chomp($npass);
1.32      www       529:                        $npass=&unescape($npass);
1.31      www       530:                        my $proname=propath($udom,$uname);
                    531:                        my $passfilename="$proname/passwd";
                    532:                        if (-e $passfilename) {
                    533: 			   print $client "already_exists\n";
                    534:                        } elsif ($udom ne $perlvar{'lonDefDomain'}) {
                    535:                            print $client "not_right_domain\n";
                    536:                        } else {
                    537:                            @fpparts=split(/\//,$proname);
                    538:                            $fpnow=$fpparts[0].'/'.$fpparts[1].'/'.$fpparts[2];
                    539:                            $fperror='';
                    540:                            for ($i=3;$i<=$#fpparts;$i++) {
                    541:                                $fpnow.='/'.$fpparts[$i]; 
                    542:                                unless (-e $fpnow) {
                    543: 				   unless (mkdir($fpnow,0777)) {
                    544:                                       $fperror="error:$!\n";
                    545:                                    }
                    546:                                }
                    547:                            }
                    548:                            unless ($fperror) {
1.34      www       549: 			     if ($umode eq 'krb4') {
1.31      www       550:                                { 
                    551:                                  my $pf = IO::File->new(">$passfilename");
1.33      www       552:  	  		         print $pf "krb4:$npass\n"; 
1.31      www       553:                                }             
                    554:                                print $client "ok\n";
                    555:                              } elsif ($umode eq 'internal') {
                    556: 			       my $salt=time;
                    557:                                $salt=substr($salt,6,2);
                    558: 			       my $ncpass=crypt($npass,$salt);
                    559:                                { 
                    560:                                  my $pf = IO::File->new(">$passfilename");
                    561:  	  		         print $pf "internal:$ncpass\n"; 
                    562:                                }             
                    563:                                print $client "ok\n";
                    564:                              } elsif ($umode eq 'none') {
                    565:                                { 
                    566:                                  my $pf = IO::File->new(">$passfilename");
                    567:  	  		         print $pf "none:\n"; 
                    568:                                }             
                    569:                                print $client "ok\n";
                    570:                              } else {
                    571:                                print $client "auth_mode_error\n";
                    572:                              }  
                    573:                            } else {
                    574:                                print $client "$fperror\n";
                    575:                            }
1.1       albertel  576:                        }
                    577: 		     } else {
                    578: 		       print $client "refused\n";
                    579: 		     }
                    580: # ------------------------------------------------------------------------ home
                    581:                    } elsif ($userinput =~ /^home/) {
                    582:                        my ($cmd,$udom,$uname)=split(/:/,$userinput);
                    583:                        chomp($uname);
                    584:                        my $proname=propath($udom,$uname);
                    585:                        if (-e $proname) {
                    586:                           print $client "found\n";
                    587:                        } else {
                    588: 			  print $client "not_found\n";
                    589:                        }
                    590: # ---------------------------------------------------------------------- update
                    591:                    } elsif ($userinput =~ /^update/) {
                    592:                        my ($cmd,$fname)=split(/:/,$userinput);
                    593:                        my $ownership=ishome($fname);
                    594:                        if ($ownership eq 'not_owner') {
                    595:                         if (-e $fname) {
                    596:                           my ($dev,$ino,$mode,$nlink,
                    597:                               $uid,$gid,$rdev,$size,
                    598:                               $atime,$mtime,$ctime,
                    599:                               $blksize,$blocks)=stat($fname);
                    600:                           $now=time;
                    601:                           $since=$now-$atime;
                    602:                           if ($since>$perlvar{'lonExpire'}) {
                    603:                               $reply=
                    604:                                     reply("unsub:$fname","$hostid{$clientip}");
                    605:                               unlink("$fname");
                    606:                           } else {
                    607: 			     my $transname="$fname.in.transfer";
                    608:                              my $remoteurl=
                    609:                                     reply("sub:$fname","$hostid{$clientip}");
                    610:                              my $response;
                    611:                               {
                    612:                              my $ua=new LWP::UserAgent;
                    613:                              my $request=new HTTP::Request('GET',"$remoteurl");
                    614:                              $response=$ua->request($request,$transname);
                    615: 			      }
                    616:                              if ($response->is_error()) {
1.24      albertel  617: 				 unlink($transname);
1.1       albertel  618:                                  my $message=$response->status_line;
                    619:                                  &logthis(
                    620:                                   "LWP GET: $message for $fname ($remoteurl)");
                    621:                              } else {
1.14      www       622: 	                         if ($remoteurl!~/\.meta$/) {
1.28      www       623:                                   my $ua=new LWP::UserAgent;
1.14      www       624:                                   my $mrequest=
                    625:                                    new HTTP::Request('GET',$remoteurl.'.meta');
                    626:                                   my $mresponse=
                    627:                                    $ua->request($mrequest,$fname.'.meta');
                    628:                                   if ($mresponse->is_error()) {
                    629: 		                    unlink($fname.'.meta');
                    630:                                   }
                    631: 	                         }
1.1       albertel  632:                                  rename($transname,$fname);
                    633: 			     }
                    634:                           }
                    635:                           print $client "ok\n";
                    636:                         } else {
                    637:                           print $client "not_found\n";
                    638:                         }
                    639: 		       } else {
                    640: 			print $client "rejected\n";
                    641:                        }
                    642: # ----------------------------------------------------------------- unsubscribe
                    643:                    } elsif ($userinput =~ /^unsub/) {
                    644:                        my ($cmd,$fname)=split(/:/,$userinput);
                    645:                        if (-e $fname) {
                    646:                            if (unlink("$fname.$hostid{$clientip}")) {
                    647:                               print $client "ok\n";
                    648: 			   } else {
                    649:                               print $client "not_subscribed\n";
                    650: 			   }
                    651:                        } else {
                    652: 			   print $client "not_found\n";
                    653:                        }
                    654: # ------------------------------------------------------------------- subscribe
                    655:                    } elsif ($userinput =~ /^sub/) {
                    656:                        my ($cmd,$fname)=split(/:/,$userinput);
                    657:                        my $ownership=ishome($fname);
                    658:                        if ($ownership eq 'owner') {
                    659:                         if (-e $fname) {
1.18      www       660: 			 if (-d $fname) {
                    661: 			   print $client "directory\n";
                    662:                          } else {
1.1       albertel  663:                            $now=time;
                    664:                            { 
1.26      www       665: 			    my $sh;
1.25      www       666:                             if ($sh=
                    667:                              IO::File->new(">$fname.$hostid{$clientip}")) {
                    668:                                print $sh "$clientip:$now\n";
                    669: 			    }
1.1       albertel  670: 			   }
                    671:                            $fname=~s/\/home\/httpd\/html\/res/raw/;
                    672:                            $fname="http://$thisserver/".$fname;
                    673:                            print $client "$fname\n";
1.18      www       674: 		         }
1.1       albertel  675:                         } else {
                    676: 		      	   print $client "not_found\n";
                    677:                         }
                    678: 		       } else {
                    679:                         print $client "rejected\n";
                    680: 		       }
1.12      harris41  681: # ------------------------------------------------------------------------- log
                    682:                    } elsif ($userinput =~ /^log/) {
                    683:                        my ($cmd,$udom,$uname,$what)=split(/:/,$userinput);
                    684:                        chomp($what);
                    685:                        my $proname=propath($udom,$uname);
                    686:                        my $now=time;
                    687:                        {
                    688: 			 my $hfh;
                    689: 			 if ($hfh=IO::File->new(">>$proname/activity.log")) { 
                    690:                             print $hfh "$now:$hostid{$clientip}:$what\n";
                    691:                             print $client "ok\n"; 
                    692: 			} else {
                    693:                             print $client "error:$!\n";
                    694: 		        }
                    695: 		       }
1.1       albertel  696: # ------------------------------------------------------------------------- put
                    697:                    } elsif ($userinput =~ /^put/) {
1.6       www       698:                       my ($cmd,$udom,$uname,$namespace,$what)
1.1       albertel  699:                           =split(/:/,$userinput);
1.8       www       700:                       $namespace=~s/\//\_/g;
1.6       www       701:                       $namespace=~s/\W//g;
                    702:                       if ($namespace ne 'roles') {
1.1       albertel  703:                        chomp($what);
                    704:                        my $proname=propath($udom,$uname);
                    705:                        my $now=time;
                    706:                        {
                    707: 			   my $hfh;
                    708: 			   if (
                    709:                              $hfh=IO::File->new(">>$proname/$namespace.hist")
                    710: 			       ) { print $hfh "P:$now:$what\n"; }
                    711: 		       }
                    712:                        my @pairs=split(/\&/,$what);
1.4       www       713:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_WRCREAT,0640)) {
1.1       albertel  714:                            foreach $pair (@pairs) {
                    715: 			       ($key,$value)=split(/=/,$pair);
                    716:                                $hash{$key}=$value;
                    717:                            }
1.4       www       718: 			   if (untie(%hash)) {
1.1       albertel  719:                               print $client "ok\n";
                    720:                            } else {
                    721:                               print $client "error:$!\n";
                    722:                            }
                    723:                        } else {
                    724:                            print $client "error:$!\n";
                    725:                        }
1.6       www       726: 		      } else {
                    727:                           print $client "refused\n";
                    728:                       }
                    729: # -------------------------------------------------------------------- rolesput
                    730:                    } elsif ($userinput =~ /^rolesput/) {
                    731: 		    if ($wasenc==1) {
                    732:                        my ($cmd,$exedom,$exeuser,$udom,$uname,$what)
                    733:                           =split(/:/,$userinput);
                    734:                        my $namespace='roles';
                    735:                        chomp($what);
                    736:                        my $proname=propath($udom,$uname);
                    737:                        my $now=time;
                    738:                        {
                    739: 			   my $hfh;
                    740: 			   if (
                    741:                              $hfh=IO::File->new(">>$proname/$namespace.hist")
                    742: 			       ) { 
                    743:                                   print $hfh "P:$now:$exedom:$exeuser:$what\n";
                    744:                                  }
                    745: 		       }
                    746:                        my @pairs=split(/\&/,$what);
                    747:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_WRCREAT,0640)) {
                    748:                            foreach $pair (@pairs) {
                    749: 			       ($key,$value)=split(/=/,$pair);
                    750:                                $hash{$key}=$value;
                    751:                            }
                    752: 			   if (untie(%hash)) {
                    753:                               print $client "ok\n";
                    754:                            } else {
                    755:                               print $client "error:$!\n";
                    756:                            }
                    757:                        } else {
                    758:                            print $client "error:$!\n";
                    759:                        }
                    760: 		      } else {
                    761:                           print $client "refused\n";
                    762:                       }
1.1       albertel  763: # ------------------------------------------------------------------------- get
                    764:                    } elsif ($userinput =~ /^get/) {
                    765:                        my ($cmd,$udom,$uname,$namespace,$what)
                    766:                           =split(/:/,$userinput);
1.8       www       767:                        $namespace=~s/\//\_/g;
1.1       albertel  768:                        $namespace=~s/\W//g;
                    769:                        chomp($what);
                    770:                        my @queries=split(/\&/,$what);
                    771:                        my $proname=propath($udom,$uname);
                    772:                        my $qresult='';
1.20      www       773:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.1       albertel  774:                            for ($i=0;$i<=$#queries;$i++) {
                    775:                                $qresult.="$hash{$queries[$i]}&";
                    776:                            }
1.4       www       777: 			   if (untie(%hash)) {
1.1       albertel  778: 		              $qresult=~s/\&$//;
                    779:                               print $client "$qresult\n";
                    780:                            } else {
                    781:                               print $client "error:$!\n";
                    782:                            }
                    783:                        } else {
                    784:                            print $client "error:$!\n";
                    785:                        }
                    786: # ------------------------------------------------------------------------ eget
                    787:                    } elsif ($userinput =~ /^eget/) {
                    788:                        my ($cmd,$udom,$uname,$namespace,$what)
                    789:                           =split(/:/,$userinput);
1.8       www       790:                        $namespace=~s/\//\_/g;
1.1       albertel  791:                        $namespace=~s/\W//g;
                    792:                        chomp($what);
                    793:                        my @queries=split(/\&/,$what);
                    794:                        my $proname=propath($udom,$uname);
                    795:                        my $qresult='';
1.20      www       796:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.1       albertel  797:                            for ($i=0;$i<=$#queries;$i++) {
                    798:                                $qresult.="$hash{$queries[$i]}&";
                    799:                            }
1.4       www       800: 			   if (untie(%hash)) {
1.1       albertel  801: 		              $qresult=~s/\&$//;
                    802:                               if ($cipher) {
                    803:                                 my $cmdlength=length($qresult);
                    804:                                 $qresult.="         ";
                    805:                                 my $encqresult='';
                    806:                                 for 
                    807: 				(my $encidx=0;$encidx<=$cmdlength;$encidx+=8) {
                    808:                                  $encqresult.=
                    809:                                  unpack("H16",
                    810:                                  $cipher->encrypt(substr($qresult,$encidx,8)));
                    811:                                 }
                    812:                                 print $client "enc:$cmdlength:$encqresult\n";
                    813: 			      } else {
                    814: 			        print $client "error:no_key\n";
                    815:                               }
                    816:                            } else {
                    817:                               print $client "error:$!\n";
                    818:                            }
                    819:                        } else {
                    820:                            print $client "error:$!\n";
                    821:                        }
                    822: # ------------------------------------------------------------------------- del
                    823:                    } elsif ($userinput =~ /^del/) {
                    824:                        my ($cmd,$udom,$uname,$namespace,$what)
                    825:                           =split(/:/,$userinput);
1.8       www       826:                        $namespace=~s/\//\_/g;
1.1       albertel  827:                        $namespace=~s/\W//g;
                    828:                        chomp($what);
                    829:                        my $proname=propath($udom,$uname);
                    830:                        my $now=time;
                    831:                        {
                    832: 			   my $hfh;
                    833: 			   if (
                    834:                              $hfh=IO::File->new(">>$proname/$namespace.hist")
                    835: 			       ) { print $hfh "D:$now:$what\n"; }
                    836: 		       }
                    837:                        my @keys=split(/\&/,$what);
1.4       www       838:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_WRCREAT,0640)) {
1.1       albertel  839:                            foreach $key (@keys) {
                    840:                                delete($hash{$key});
                    841:                            }
1.4       www       842: 			   if (untie(%hash)) {
1.1       albertel  843:                               print $client "ok\n";
                    844:                            } else {
                    845:                               print $client "error:$!\n";
                    846:                            }
                    847:                        } else {
                    848:                            print $client "error:$!\n";
                    849:                        }
                    850: # ------------------------------------------------------------------------ keys
                    851:                    } elsif ($userinput =~ /^keys/) {
                    852:                        my ($cmd,$udom,$uname,$namespace)
                    853:                           =split(/:/,$userinput);
1.8       www       854:                        $namespace=~s/\//\_/g;
1.1       albertel  855:                        $namespace=~s/\W//g;
                    856:                        my $proname=propath($udom,$uname);
                    857:                        my $qresult='';
1.20      www       858:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.1       albertel  859:                            foreach $key (keys %hash) {
                    860:                                $qresult.="$key&";
                    861:                            }
1.4       www       862: 			   if (untie(%hash)) {
1.1       albertel  863: 		              $qresult=~s/\&$//;
                    864:                               print $client "$qresult\n";
                    865:                            } else {
                    866:                               print $client "error:$!\n";
                    867:                            }
                    868:                        } else {
                    869:                            print $client "error:$!\n";
                    870:                        }
                    871: # ------------------------------------------------------------------------ dump
                    872:                    } elsif ($userinput =~ /^dump/) {
                    873:                        my ($cmd,$udom,$uname,$namespace)
                    874:                           =split(/:/,$userinput);
1.8       www       875:                        $namespace=~s/\//\_/g;
1.1       albertel  876:                        $namespace=~s/\W//g;
                    877:                        my $proname=propath($udom,$uname);
                    878:                        my $qresult='';
1.20      www       879:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.1       albertel  880:                            foreach $key (keys %hash) {
                    881:                                $qresult.="$key=$hash{$key}&";
1.7       www       882:                            }
                    883: 			   if (untie(%hash)) {
                    884: 		              $qresult=~s/\&$//;
                    885:                               print $client "$qresult\n";
                    886:                            } else {
                    887:                               print $client "error:$!\n";
                    888:                            }
                    889:                        } else {
                    890:                            print $client "error:$!\n";
                    891:                        }
                    892: # ----------------------------------------------------------------------- store
                    893:                    } elsif ($userinput =~ /^store/) {
                    894:                       my ($cmd,$udom,$uname,$namespace,$rid,$what)
                    895:                           =split(/:/,$userinput);
1.8       www       896:                       $namespace=~s/\//\_/g;
1.7       www       897:                       $namespace=~s/\W//g;
                    898:                       if ($namespace ne 'roles') {
                    899:                        chomp($what);
                    900:                        my $proname=propath($udom,$uname);
                    901:                        my $now=time;
                    902:                        {
                    903: 			   my $hfh;
                    904: 			   if (
                    905:                              $hfh=IO::File->new(">>$proname/$namespace.hist")
                    906: 			       ) { print $hfh "P:$now:$rid:$what\n"; }
                    907: 		       }
                    908:                        my @pairs=split(/\&/,$what);
                    909:                          
                    910:     if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_WRCREAT,0640)) {
                    911:                            my @previouskeys=split(/&/,$hash{"keys:$rid"});
                    912:                            my $key;
                    913:                            $hash{"version:$rid"}++;
                    914:                            my $version=$hash{"version:$rid"};
                    915:                            my $allkeys=''; 
                    916:                            foreach $pair (@pairs) {
                    917: 			       ($key,$value)=split(/=/,$pair);
                    918:                                $allkeys.=$key.':';
                    919:                                $hash{"$version:$rid:$key"}=$value;
                    920:                            }
1.36      www       921:                            $hash{"$version:$rid:timestamp"}=$now;
                    922:                            $allkeys.='timestamp';
1.7       www       923:                            $hash{"$version:keys:$rid"}=$allkeys;
                    924: 			   if (untie(%hash)) {
                    925:                               print $client "ok\n";
                    926:                            } else {
                    927:                               print $client "error:$!\n";
                    928:                            }
                    929:                        } else {
                    930:                            print $client "error:$!\n";
                    931:                        }
                    932: 		      } else {
                    933:                           print $client "refused\n";
                    934:                       }
                    935: # --------------------------------------------------------------------- restore
                    936:                    } elsif ($userinput =~ /^restore/) {
                    937:                        my ($cmd,$udom,$uname,$namespace,$rid)
                    938:                           =split(/:/,$userinput);
1.8       www       939:                        $namespace=~s/\//\_/g;
1.7       www       940:                        $namespace=~s/\W//g;
                    941:                        chomp($rid);
                    942:                        my $proname=propath($udom,$uname);
                    943:                        my $qresult='';
1.20      www       944:       if (tie(%hash,'GDBM_File',"$proname/$namespace.db",&GDBM_READER,0640)) {
1.7       www       945:                 	   my $version=$hash{"version:$rid"};
                    946:                            $qresult.="version=$version&";
                    947:                            my $scope;
                    948:                            for ($scope=1;$scope<=$version;$scope++) {
                    949: 			      my $vkeys=$hash{"$scope:keys:$rid"};
                    950:                               my @keys=split(/:/,$vkeys);
                    951:                               my $key;
                    952:                               $qresult.="$scope:keys=$vkeys&";
                    953:                               foreach $key (@keys) {
1.21      www       954: 	     $qresult.="$scope:$key=".$hash{"$scope:$rid:$key"}."&";
1.7       www       955:                               }                                  
1.1       albertel  956:                            }
1.4       www       957: 			   if (untie(%hash)) {
1.1       albertel  958: 		              $qresult=~s/\&$//;
                    959:                               print $client "$qresult\n";
                    960:                            } else {
                    961:                               print $client "error:$!\n";
                    962:                            }
                    963:                        } else {
                    964:                            print $client "error:$!\n";
                    965:                        }
1.12      harris41  966: # ------------------------------------------------------------------- querysend
                    967:                    } elsif ($userinput =~ /^querysend/) {
                    968:                        my ($cmd,$query)=split(/:/,$userinput);
                    969: 		       $query=~s/\n*$//g;
1.13      www       970:                      print $client sqlreply("$hostid{$clientip}\&$query")."\n";
1.12      harris41  971: # ------------------------------------------------------------------ queryreply
                    972:                    } elsif ($userinput =~ /^queryreply/) {
                    973:                        my ($cmd,$id,$reply)=split(/:/,$userinput); 
                    974: 		       my $store;
1.13      www       975:                        my $execdir=$perlvar{'lonDaemons'};
                    976:                        if ($store=IO::File->new(">$execdir/tmp/$id")) {
1.12      harris41  977: 			   print $store $reply;
                    978: 			   close $store;
                    979: 			   print $client "ok\n";
                    980: 		       }
                    981: 		       else {
                    982: 			   print $client "error:$!\n";
                    983: 		       }
1.1       albertel  984: # ----------------------------------------------------------------------- idput
                    985:                    } elsif ($userinput =~ /^idput/) {
                    986:                        my ($cmd,$udom,$what)=split(/:/,$userinput);
                    987:                        chomp($what);
                    988:                        $udom=~s/\W//g;
                    989:                        my $proname="$perlvar{'lonUsersDir'}/$udom/ids";
                    990:                        my $now=time;
                    991:                        {
                    992: 			   my $hfh;
                    993: 			   if (
                    994:                              $hfh=IO::File->new(">>$proname.hist")
                    995: 			       ) { print $hfh "P:$now:$what\n"; }
                    996: 		       }
                    997:                        my @pairs=split(/\&/,$what);
1.4       www       998:                  if (tie(%hash,'GDBM_File',"$proname.db",&GDBM_WRCREAT,0640)) {
1.1       albertel  999:                            foreach $pair (@pairs) {
                   1000: 			       ($key,$value)=split(/=/,$pair);
                   1001:                                $hash{$key}=$value;
                   1002:                            }
1.4       www      1003: 			   if (untie(%hash)) {
1.1       albertel 1004:                               print $client "ok\n";
                   1005:                            } else {
                   1006:                               print $client "error:$!\n";
                   1007:                            }
                   1008:                        } else {
                   1009:                            print $client "error:$!\n";
                   1010:                        }
                   1011: # ----------------------------------------------------------------------- idget
                   1012:                    } elsif ($userinput =~ /^idget/) {
                   1013:                        my ($cmd,$udom,$what)=split(/:/,$userinput);
                   1014:                        chomp($what);
                   1015:                        $udom=~s/\W//g;
                   1016:                        my $proname="$perlvar{'lonUsersDir'}/$udom/ids";
                   1017:                        my @queries=split(/\&/,$what);
                   1018:                        my $qresult='';
1.20      www      1019:                  if (tie(%hash,'GDBM_File',"$proname.db",&GDBM_READER,0640)) {
1.1       albertel 1020:                            for ($i=0;$i<=$#queries;$i++) {
                   1021:                                $qresult.="$hash{$queries[$i]}&";
                   1022:                            }
1.4       www      1023: 			   if (untie(%hash)) {
1.1       albertel 1024: 		              $qresult=~s/\&$//;
                   1025:                               print $client "$qresult\n";
                   1026:                            } else {
                   1027:                               print $client "error:$!\n";
                   1028:                            }
                   1029:                        } else {
                   1030:                            print $client "error:$!\n";
                   1031:                        }
1.13      www      1032: # ---------------------------------------------------------------------- tmpput
                   1033:                    } elsif ($userinput =~ /^tmpput/) {
                   1034:                        my ($cmd,$what)=split(/:/,$userinput);
                   1035: 		       my $store;
                   1036:                        $tmpsnum++;
                   1037:                        my $id=$$.'_'.$clientip.'_'.$tmpsnum;
                   1038:                        $id=~s/\W/\_/g;
                   1039:                        $what=~s/\n//g;
                   1040:                        my $execdir=$perlvar{'lonDaemons'};
                   1041:                        if ($store=IO::File->new(">$execdir/tmp/$id.tmp")) {
                   1042: 			   print $store $what;
                   1043: 			   close $store;
                   1044: 			   print $client "$id\n";
                   1045: 		       }
                   1046: 		       else {
                   1047: 			   print $client "error:$!\n";
                   1048: 		       }
                   1049: 
                   1050: # ---------------------------------------------------------------------- tmpget
                   1051:                    } elsif ($userinput =~ /^tmpget/) {
                   1052:                        my ($cmd,$id)=split(/:/,$userinput);
                   1053:                        chomp($id);
                   1054:                        $id=~s/\W/\_/g;
                   1055:                        my $store;
                   1056:                        my $execdir=$perlvar{'lonDaemons'};
                   1057:                        if ($store=IO::File->new("$execdir/tmp/$id.tmp")) {
                   1058:                            my $reply=<$store>;
                   1059: 			   print $client "$reply\n";
                   1060:                            close $store;
                   1061: 		       }
                   1062: 		       else {
                   1063: 			   print $client "error:$!\n";
                   1064: 		       }
                   1065: 
1.5       www      1066: # -------------------------------------------------------------------------- ls
                   1067:                    } elsif ($userinput =~ /^ls/) {
                   1068:                        my ($cmd,$ulsdir)=split(/:/,$userinput);
                   1069:                        my $ulsout='';
                   1070:                        my $ulsfn;
                   1071:                        if (-e $ulsdir) {
                   1072:                           while ($ulsfn=<$ulsdir/*>) {
                   1073: 			     my @ulsstats=stat($ulsfn);
                   1074:                              $ulsout.=$ulsfn.'&'.join('&',@ulsstats).':';
                   1075:                           }
                   1076: 		       } else {
                   1077:                           $ulsout='no_such_dir';
                   1078:                        }
1.17      www      1079:                        if ($ulsout eq '') { $ulsout='empty'; }
1.5       www      1080:                        print $client "$ulsout\n";
1.1       albertel 1081: # ------------------------------------------------------------- unknown command
                   1082:                    } else {
                   1083:                        # unknown command
                   1084:                        print $client "unknown_cmd\n";
                   1085:                    }
                   1086: # ------------------------------------------------------ client unknown, refuse
                   1087: 	       }
                   1088:             } else {
                   1089: 	        print $client "refused\n";
1.9       www      1090:                 &logthis("<font color=blue>WARNING: "
                   1091:                 ."Rejected client $clientip, closing connection</font>");
1.1       albertel 1092:             }              
1.9       www      1093:             &logthis("<font color=red>CRITICAL: "
1.10      www      1094:                     ."Disconnect from $clientip ($hostid{$clientip})</font>");
1.1       albertel 1095: # =============================================================================
                   1096:         }
                   1097:     
                   1098:         # tidy up gracefully and finish
                   1099:     
                   1100:         # this exit is VERY important, otherwise the child will become
                   1101:         # a producer of more and more children, forking yourself into
                   1102:         # process death.
                   1103:         exit;
                   1104:     }
                   1105: }
                   1106: 
                   1107: 
                   1108: 
                   1109: 
                   1110: 

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