Annotation of loncom/lond, revision 1.489.2.14
1.1 albertel 1: #!/usr/bin/perl
2: # The LearningOnline Network
3: # lond "LON Daemon" Server (port "LOND" 5663)
1.60 www 4: #
1.489.2.14! raeburn 5: # $Id: lond,v 1.489.2.13 2014/04/16 16:18:24 raeburn 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
1.167 foxr 13: # the Free Software Foundation; either version 2 of the License, or
1.60 www 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
1.469 foxr 18:
1.60 www 19: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20: # GNU General Public License for more details.
21: #
22: # You should have received a copy of the GNU General Public License
23: # along with LON-CAPA; if not, write to the Free Software
1.178 foxr 24: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1.60 www 25: #
26: # /home/httpd/html/adm/gpl.txt
27: #
1.161 foxr 28:
29:
1.60 www 30: # http://www.lon-capa.org/
31: #
1.54 harris41 32:
1.134 albertel 33: use strict;
1.80 harris41 34: use lib '/home/httpd/lib/perl/';
1.325 albertel 35: use LONCAPA;
1.80 harris41 36: use LONCAPA::Configuration;
1.489.2.4 raeburn 37: use LONCAPA::Lond;
1.80 harris41 38:
1.1 albertel 39: use IO::Socket;
40: use IO::File;
1.126 albertel 41: #use Apache::File;
1.1 albertel 42: use POSIX;
43: use Crypt::IDEA;
44: use LWP::UserAgent();
1.347 raeburn 45: use Digest::MD5 qw(md5_hex);
1.3 www 46: use GDBM_File;
1.91 albertel 47: use Authen::Krb5;
1.49 albertel 48: use localauth;
1.193 raeburn 49: use localenroll;
1.265 albertel 50: use localstudentphoto;
1.143 foxr 51: use File::Copy;
1.292 albertel 52: use File::Find;
1.200 matthew 53: use LONCAPA::lonlocal;
54: use LONCAPA::lonssl;
1.221 albertel 55: use Fcntl qw(:flock);
1.383 raeburn 56: use Apache::lonnet;
1.472 raeburn 57: use Mail::Send;
1.1 albertel 58:
1.463 foxr 59: my $DEBUG = 0; # Non zero to enable debug log entries.
1.77 foxr 60:
1.57 www 61: my $status='';
62: my $lastlog='';
63:
1.489.2.14! raeburn 64: my $VERSION='$Revision: 1.489.2.13 $'; #' stupid emacs
1.121 albertel 65: my $remoteVERSION;
1.214 foxr 66: my $currenthostid="default";
1.115 albertel 67: my $currentdomainid;
1.134 albertel 68:
69: my $client;
1.200 matthew 70: my $clientip; # IP address of client.
71: my $clientname; # LonCAPA name of client.
1.448 raeburn 72: my $clientversion; # LonCAPA version running on client.
73: my $clienthomedom; # LonCAPA domain of homeID for client.
74: # primary library server.
1.140 foxr 75:
1.134 albertel 76: my $server;
1.200 matthew 77:
78: my $keymode;
1.198 foxr 79:
1.207 foxr 80: my $cipher; # Cipher key negotiated with client
81: my $tmpsnum = 0; # Id of tmpputs.
82:
1.178 foxr 83: #
84: # Connection type is:
85: # client - All client actions are allowed
86: # manager - only management functions allowed.
87: # both - Both management and client actions are allowed
88: #
1.161 foxr 89:
1.178 foxr 90: my $ConnectionType;
1.161 foxr 91:
1.178 foxr 92: my %managers; # Ip -> manager names
1.161 foxr 93:
1.178 foxr 94: my %perlvar; # Will have the apache conf defined perl vars.
1.134 albertel 95:
1.480 raeburn 96: my $dist;
97:
1.178 foxr 98: #
1.207 foxr 99: # The hash below is used for command dispatching, and is therefore keyed on the request keyword.
100: # Each element of the hash contains a reference to an array that contains:
101: # A reference to a sub that executes the request corresponding to the keyword.
102: # A flag that is true if the request must be encoded to be acceptable.
103: # A mask with bits as follows:
104: # CLIENT_OK - Set when the function is allowed by ordinary clients
105: # MANAGER_OK - Set when the function is allowed to manager clients.
106: #
107: my $CLIENT_OK = 1;
108: my $MANAGER_OK = 2;
109: my %Dispatcher;
110:
111:
112: #
1.178 foxr 113: # The array below are password error strings."
114: #
115: my $lastpwderror = 13; # Largest error number from lcpasswd.
116: my @passwderrors = ("ok",
1.287 foxr 117: "pwchange_failure - lcpasswd must be run as user 'www'",
118: "pwchange_failure - lcpasswd got incorrect number of arguments",
119: "pwchange_failure - lcpasswd did not get the right nubmer of input text lines",
120: "pwchange_failure - lcpasswd too many simultaneous pwd changes in progress",
121: "pwchange_failure - lcpasswd User does not exist.",
122: "pwchange_failure - lcpasswd Incorrect current passwd",
123: "pwchange_failure - lcpasswd Unable to su to root.",
124: "pwchange_failure - lcpasswd Cannot set new passwd.",
125: "pwchange_failure - lcpasswd Username has invalid characters",
126: "pwchange_failure - lcpasswd Invalid characters in password",
127: "pwchange_failure - lcpasswd User already exists",
128: "pwchange_failure - lcpasswd Something went wrong with user addition.",
129: "pwchange_failure - lcpasswd Password mismatch",
130: "pwchange_failure - lcpasswd Error filename is invalid");
1.97 foxr 131:
132:
1.412 foxr 133: # This array are the errors from lcinstallfile:
134:
135: my @installerrors = ("ok",
136: "Initial user id of client not that of www",
137: "Usage error, not enough command line arguments",
1.489.2.5 raeburn 138: "Source filename does not exist",
139: "Destination filename does not exist",
1.412 foxr 140: "Some file operation failed",
141: "Invalid table filename."
142: );
1.207 foxr 143:
144: #
145: # Statistics that are maintained and dislayed in the status line.
146: #
1.212 foxr 147: my $Transactions = 0; # Number of attempted transactions.
148: my $Failures = 0; # Number of transcations failed.
1.207 foxr 149:
150: # ResetStatistics:
151: # Resets the statistics counters:
152: #
153: sub ResetStatistics {
154: $Transactions = 0;
155: $Failures = 0;
156: }
157:
1.200 matthew 158: #------------------------------------------------------------------------
159: #
160: # LocalConnection
161: # Completes the formation of a locally authenticated connection.
162: # This function will ensure that the 'remote' client is really the
163: # local host. If not, the connection is closed, and the function fails.
164: # If so, initcmd is parsed for the name of a file containing the
165: # IDEA session key. The fie is opened, read, deleted and the session
166: # key returned to the caller.
167: #
168: # Parameters:
169: # $Socket - Socket open on client.
170: # $initcmd - The full text of the init command.
171: #
172: # Returns:
173: # IDEA session key on success.
174: # undef on failure.
175: #
176: sub LocalConnection {
177: my ($Socket, $initcmd) = @_;
1.373 albertel 178: Debug("Attempting local connection: $initcmd client: $clientip");
1.277 albertel 179: if($clientip ne "127.0.0.1") {
1.200 matthew 180: &logthis('<font color="red"> LocalConnection rejecting non local: '
1.373 albertel 181: ."$clientip ne 127.0.0.1 </font>");
1.200 matthew 182: close $Socket;
183: return undef;
1.224 foxr 184: } else {
1.200 matthew 185: chomp($initcmd); # Get rid of \n in filename.
186: my ($init, $type, $name) = split(/:/, $initcmd);
187: Debug(" Init command: $init $type $name ");
188:
189: # Require that $init = init, and $type = local: Otherwise
190: # the caller is insane:
191:
192: if(($init ne "init") && ($type ne "local")) {
193: &logthis('<font color = "red"> LocalConnection: caller is insane! '
194: ."init = $init, and type = $type </font>");
195: close($Socket);;
196: return undef;
197:
198: }
199: # Now get the key filename:
200:
201: my $IDEAKey = lonlocal::ReadKeyFile($name);
202: return $IDEAKey;
203: }
204: }
205: #------------------------------------------------------------------------------
206: #
207: # SSLConnection
208: # Completes the formation of an ssh authenticated connection. The
209: # socket is promoted to an ssl socket. If this promotion and the associated
210: # certificate exchange are successful, the IDEA key is generated and sent
211: # to the remote peer via the SSL tunnel. The IDEA key is also returned to
212: # the caller after the SSL tunnel is torn down.
213: #
214: # Parameters:
215: # Name Type Purpose
216: # $Socket IO::Socket::INET Plaintext socket.
217: #
218: # Returns:
219: # IDEA key on success.
220: # undef on failure.
221: #
222: sub SSLConnection {
223: my $Socket = shift;
224:
225: Debug("SSLConnection: ");
226: my $KeyFile = lonssl::KeyFile();
227: if(!$KeyFile) {
228: my $err = lonssl::LastError();
229: &logthis("<font color=\"red\"> CRITICAL"
230: ."Can't get key file $err </font>");
231: return undef;
232: }
233: my ($CACertificate,
234: $Certificate) = lonssl::CertificateFile();
235:
236:
237: # If any of the key, certificate or certificate authority
238: # certificate filenames are not defined, this can't work.
239:
240: if((!$Certificate) || (!$CACertificate)) {
241: my $err = lonssl::LastError();
242: &logthis("<font color=\"red\"> CRITICAL"
243: ."Can't get certificates: $err </font>");
244:
245: return undef;
246: }
247: Debug("Key: $KeyFile CA: $CACertificate Cert: $Certificate");
248:
249: # Indicate to our peer that we can procede with
250: # a transition to ssl authentication:
251:
252: print $Socket "ok:ssl\n";
253:
254: Debug("Approving promotion -> ssl");
255: # And do so:
256:
257: my $SSLSocket = lonssl::PromoteServerSocket($Socket,
258: $CACertificate,
259: $Certificate,
260: $KeyFile);
261: if(! ($SSLSocket) ) { # SSL socket promotion failed.
262: my $err = lonssl::LastError();
263: &logthis("<font color=\"red\"> CRITICAL "
264: ."SSL Socket promotion failed: $err </font>");
265: return undef;
266: }
267: Debug("SSL Promotion successful");
268:
269: #
270: # The only thing we'll use the socket for is to send the IDEA key
271: # to the peer:
272:
273: my $Key = lonlocal::CreateCipherKey();
274: print $SSLSocket "$Key\n";
275:
276: lonssl::Close($SSLSocket);
277:
278: Debug("Key exchange complete: $Key");
279:
280: return $Key;
281: }
282: #
283: # InsecureConnection:
284: # If insecure connections are allowd,
285: # exchange a challenge with the client to 'validate' the
286: # client (not really, but that's the protocol):
287: # We produce a challenge string that's sent to the client.
288: # The client must then echo the challenge verbatim to us.
289: #
290: # Parameter:
291: # Socket - Socket open on the client.
292: # Returns:
293: # 1 - success.
294: # 0 - failure (e.g.mismatch or insecure not allowed).
295: #
296: sub InsecureConnection {
297: my $Socket = shift;
298:
299: # Don't even start if insecure connections are not allowed.
300:
301: if(! $perlvar{londAllowInsecure}) { # Insecure connections not allowed.
302: return 0;
303: }
304:
305: # Fabricate a challenge string and send it..
306:
307: my $challenge = "$$".time; # pid + time.
308: print $Socket "$challenge\n";
309: &status("Waiting for challenge reply");
310:
311: my $answer = <$Socket>;
312: $answer =~s/\W//g;
313: if($challenge eq $answer) {
314: return 1;
1.224 foxr 315: } else {
1.200 matthew 316: logthis("<font color='blue'>WARNING client did not respond to challenge</font>");
317: &status("No challenge reqply");
318: return 0;
319: }
320:
321:
322: }
1.251 foxr 323: #
324: # Safely execute a command (as long as it's not a shel command and doesn
325: # not require/rely on shell escapes. The function operates by doing a
326: # a pipe based fork and capturing stdout and stderr from the pipe.
327: #
328: # Formal Parameters:
329: # $line - A line of text to be executed as a command.
330: # Returns:
331: # The output from that command. If the output is multiline the caller
332: # must know how to split up the output.
333: #
334: #
335: sub execute_command {
336: my ($line) = @_;
337: my @words = split(/\s/, $line); # Bust the command up into words.
338: my $output = "";
339:
340: my $pid = open(CHILD, "-|");
341:
342: if($pid) { # Parent process
343: Debug("In parent process for execute_command");
344: my @data = <CHILD>; # Read the child's outupt...
345: close CHILD;
346: foreach my $output_line (@data) {
347: Debug("Adding $output_line");
348: $output .= $output_line; # Presumably has a \n on it.
349: }
350:
351: } else { # Child process
352: close (STDERR);
353: open (STDERR, ">&STDOUT");# Combine stderr, and stdout...
354: exec(@words); # won't return.
355: }
356: return $output;
357: }
358:
1.200 matthew 359:
1.140 foxr 360: # GetCertificate: Given a transaction that requires a certificate,
361: # this function will extract the certificate from the transaction
362: # request. Note that at this point, the only concept of a certificate
363: # is the hostname to which we are connected.
364: #
365: # Parameter:
366: # request - The request sent by our client (this parameterization may
367: # need to change when we really use a certificate granting
368: # authority.
369: #
370: sub GetCertificate {
371: my $request = shift;
372:
373: return $clientip;
374: }
1.161 foxr 375:
1.178 foxr 376: #
377: # Return true if client is a manager.
378: #
379: sub isManager {
380: return (($ConnectionType eq "manager") || ($ConnectionType eq "both"));
381: }
382: #
383: # Return tru if client can do client functions
384: #
385: sub isClient {
386: return (($ConnectionType eq "client") || ($ConnectionType eq "both"));
387: }
1.161 foxr 388:
389:
1.156 foxr 390: #
391: # ReadManagerTable: Reads in the current manager table. For now this is
392: # done on each manager authentication because:
393: # - These authentications are not frequent
394: # - This allows dynamic changes to the manager table
395: # without the need to signal to the lond.
396: #
397: sub ReadManagerTable {
398:
1.412 foxr 399: &Debug("Reading manager table");
1.156 foxr 400: # Clean out the old table first..
401:
1.166 foxr 402: foreach my $key (keys %managers) {
403: delete $managers{$key};
404: }
405:
406: my $tablename = $perlvar{'lonTabDir'}."/managers.tab";
407: if (!open (MANAGERS, $tablename)) {
1.473 raeburn 408: my $hostname = &Apache::lonnet::hostname($perlvar{'lonHostID'});
409: if (&Apache::lonnet::is_LC_dns($hostname)) {
1.472 raeburn 410: &logthis('<font color="red">No manager table. Nobody can manage!!</font>');
411: }
412: return;
1.166 foxr 413: }
414: while(my $host = <MANAGERS>) {
415: chomp($host);
416: if ($host =~ "^#") { # Comment line.
417: next;
418: }
1.368 albertel 419: if (!defined &Apache::lonnet::get_host_ip($host)) { # This is a non cluster member
1.161 foxr 420: # The entry is of the form:
421: # cluname:hostname
422: # cluname - A 'cluster hostname' is needed in order to negotiate
423: # the host key.
424: # hostname- The dns name of the host.
425: #
1.166 foxr 426: my($cluname, $dnsname) = split(/:/, $host);
427:
428: my $ip = gethostbyname($dnsname);
429: if(defined($ip)) { # bad names don't deserve entry.
430: my $hostip = inet_ntoa($ip);
431: $managers{$hostip} = $cluname;
432: logthis('<font color="green"> registering manager '.
433: "$dnsname as $cluname with $hostip </font>\n");
434: }
435: } else {
436: logthis('<font color="green"> existing host'." $host</font>\n");
1.472 raeburn 437: $managers{&Apache::lonnet::get_host_ip($host)} = $host; # Use info from cluster tab if cluster memeber
1.166 foxr 438: }
439: }
1.156 foxr 440: }
1.140 foxr 441:
442: #
443: # ValidManager: Determines if a given certificate represents a valid manager.
444: # in this primitive implementation, the 'certificate' is
445: # just the connecting loncapa client name. This is checked
446: # against a valid client list in the configuration.
447: #
448: #
449: sub ValidManager {
450: my $certificate = shift;
451:
1.163 foxr 452: return isManager;
1.140 foxr 453: }
454: #
1.143 foxr 455: # CopyFile: Called as part of the process of installing a
456: # new configuration file. This function copies an existing
457: # file to a backup file.
458: # Parameters:
459: # oldfile - Name of the file to backup.
460: # newfile - Name of the backup file.
461: # Return:
462: # 0 - Failure (errno has failure reason).
463: # 1 - Success.
464: #
465: sub CopyFile {
1.192 foxr 466:
467: my ($oldfile, $newfile) = @_;
1.143 foxr 468:
1.281 matthew 469: if (! copy($oldfile,$newfile)) {
470: return 0;
1.143 foxr 471: }
1.281 matthew 472: chmod(0660, $newfile);
473: return 1;
1.143 foxr 474: }
1.157 foxr 475: #
476: # Host files are passed out with externally visible host IPs.
477: # If, for example, we are behind a fire-wall or NAT host, our
478: # internally visible IP may be different than the externally
479: # visible IP. Therefore, we always adjust the contents of the
480: # host file so that the entry for ME is the IP that we believe
481: # we have. At present, this is defined as the entry that
482: # DNS has for us. If by some chance we are not able to get a
483: # DNS translation for us, then we assume that the host.tab file
484: # is correct.
485: # BUGBUGBUG - in the future, we really should see if we can
486: # easily query the interface(s) instead.
487: # Parameter(s):
488: # contents - The contents of the host.tab to check.
489: # Returns:
490: # newcontents - The adjusted contents.
491: #
492: #
493: sub AdjustHostContents {
494: my $contents = shift;
495: my $adjusted;
496: my $me = $perlvar{'lonHostID'};
497:
1.354 albertel 498: foreach my $line (split(/\n/,$contents)) {
1.472 raeburn 499: if(!(($line eq "") || ($line =~ /^ *\#/) || ($line =~ /^ *$/) ||
500: ($line =~ /^\s*\^/))) {
1.157 foxr 501: chomp($line);
502: my ($id,$domain,$role,$name,$ip,$maxcon,$idleto,$mincon)=split(/:/,$line);
503: if ($id eq $me) {
1.354 albertel 504: my $ip = gethostbyname($name);
505: my $ipnew = inet_ntoa($ip);
506: $ip = $ipnew;
1.157 foxr 507: # Reconstruct the host line and append to adjusted:
508:
1.354 albertel 509: my $newline = "$id:$domain:$role:$name:$ip";
510: if($maxcon ne "") { # Not all hosts have loncnew tuning params
511: $newline .= ":$maxcon:$idleto:$mincon";
512: }
513: $adjusted .= $newline."\n";
1.157 foxr 514:
1.354 albertel 515: } else { # Not me, pass unmodified.
516: $adjusted .= $line."\n";
517: }
1.157 foxr 518: } else { # Blank or comment never re-written.
519: $adjusted .= $line."\n"; # Pass blanks and comments as is.
520: }
1.354 albertel 521: }
522: return $adjusted;
1.157 foxr 523: }
1.143 foxr 524: #
525: # InstallFile: Called to install an administrative file:
1.412 foxr 526: # - The file is created int a temp directory called <name>.tmp
527: # - lcinstall file is called to install the file.
528: # since the web app has no direct write access to the table directory
1.143 foxr 529: #
530: # Parameters:
531: # Name of the file
532: # File Contents.
533: # Return:
534: # nonzero - success.
535: # 0 - failure and $! has an errno.
1.412 foxr 536: # Assumptions:
537: # File installtion is a relatively infrequent
1.143 foxr 538: #
539: sub InstallFile {
1.192 foxr 540:
541: my ($Filename, $Contents) = @_;
1.412 foxr 542: # my $TempFile = $Filename.".tmp";
543: my $exedir = $perlvar{'lonDaemons'};
544: my $tmpdir = $exedir.'/tmp/';
545: my $TempFile = $tmpdir."TempTableFile.tmp";
1.143 foxr 546:
547: # Open the file for write:
548:
549: my $fh = IO::File->new("> $TempFile"); # Write to temp.
550: if(!(defined $fh)) {
551: &logthis('<font color="red"> Unable to create '.$TempFile."</font>");
552: return 0;
553: }
554: # write the contents of the file:
555:
556: print $fh ($Contents);
557: $fh->close; # In case we ever have a filesystem w. locking
558:
1.412 foxr 559: chmod(0664, $TempFile); # Everyone can write it.
560:
561: # Use lcinstall file to put the file in the table directory...
562:
563: &Debug("Opening pipe to $exedir/lcinstallfile $TempFile $Filename");
564: my $pf = IO::File->new("| $exedir/lcinstallfile $TempFile $Filename > $exedir/logs/lcinstallfile.log");
565: close $pf;
566: my $err = $?;
567: &Debug("Status is $err");
568: if ($err != 0) {
569: my $msg = $err;
570: if ($err < @installerrors) {
571: $msg = $installerrors[$err];
572: }
573: &logthis("Install failed for table file $Filename : $msg");
574: return 0;
575: }
576:
577: # Remove the temp file:
1.143 foxr 578:
1.412 foxr 579: unlink($TempFile);
1.143 foxr 580:
581: return 1;
582: }
1.200 matthew 583:
584:
1.169 foxr 585: #
586: # ConfigFileFromSelector: converts a configuration file selector
1.411 foxr 587: # into a configuration file pathname.
1.472 raeburn 588: # Supports the following file selectors:
589: # hosts, domain, dns_hosts, dns_domain
1.411 foxr 590: #
1.169 foxr 591: #
592: # Parameters:
593: # selector - Configuration file selector.
594: # Returns:
595: # Full path to the file or undef if the selector is invalid.
596: #
597: sub ConfigFileFromSelector {
598: my $selector = shift;
599: my $tablefile;
600:
601: my $tabledir = $perlvar{'lonTabDir'}.'/';
1.472 raeburn 602: if (($selector eq "hosts") || ($selector eq "domain") ||
603: ($selector eq "dns_hosts") || ($selector eq "dns_domain")) {
1.411 foxr 604: $tablefile = $tabledir.$selector.'.tab';
1.169 foxr 605: }
606: return $tablefile;
607: }
1.143 foxr 608: #
1.141 foxr 609: # PushFile: Called to do an administrative push of a file.
610: # - Ensure the file being pushed is one we support.
611: # - Backup the old file to <filename.saved>
612: # - Separate the contents of the new file out from the
613: # rest of the request.
614: # - Write the new file.
615: # Parameter:
616: # Request - The entire user request. This consists of a : separated
617: # string pushfile:tablename:contents.
618: # NOTE: The contents may have :'s in it as well making things a bit
619: # more interesting... but not much.
620: # Returns:
621: # String to send to client ("ok" or "refused" if bad file).
622: #
623: sub PushFile {
624: my $request = shift;
625: my ($command, $filename, $contents) = split(":", $request, 3);
1.412 foxr 626: &Debug("PushFile");
1.141 foxr 627:
628: # At this point in time, pushes for only the following tables are
629: # supported:
630: # hosts.tab ($filename eq host).
631: # domain.tab ($filename eq domain).
1.472 raeburn 632: # dns_hosts.tab ($filename eq dns_host).
633: # dns_domain.tab ($filename eq dns_domain).
1.141 foxr 634: # Construct the destination filename or reject the request.
635: #
636: # lonManage is supposed to ensure this, however this session could be
637: # part of some elaborate spoof that managed somehow to authenticate.
638: #
639:
1.169 foxr 640:
641: my $tablefile = ConfigFileFromSelector($filename);
642: if(! (defined $tablefile)) {
1.141 foxr 643: return "refused";
644: }
1.412 foxr 645:
1.157 foxr 646: # If the file being pushed is the host file, we adjust the entry for ourself so that the
647: # IP will be our current IP as looked up in dns. Note this is only 99% good as it's possible
648: # to conceive of conditions where we don't have a DNS entry locally. This is possible in a
649: # network sense but it doesn't make much sense in a LonCAPA sense so we ignore (for now)
650: # that possibilty.
651:
652: if($filename eq "host") {
653: $contents = AdjustHostContents($contents);
654: }
655:
1.141 foxr 656: # Install the new file:
657:
1.412 foxr 658: &logthis("Installing new $tablefile contents:\n$contents");
1.143 foxr 659: if(!InstallFile($tablefile, $contents)) {
660: &logthis('<font color="red"> Pushfile: unable to install '
1.145 foxr 661: .$tablefile." $! </font>");
1.143 foxr 662: return "error:$!";
1.224 foxr 663: } else {
1.143 foxr 664: &logthis('<font color="green"> Installed new '.$tablefile
1.473 raeburn 665: ." - transaction by: $clientname ($clientip)</font>");
1.472 raeburn 666: my $adminmail = $perlvar{'lonAdmEMail'};
667: my $admindom = &Apache::lonnet::host_domain($perlvar{'lonHostID'});
668: if ($admindom ne '') {
669: my %domconfig =
670: &Apache::lonnet::get_dom('configuration',['contacts'],$admindom);
671: if (ref($domconfig{'contacts'}) eq 'HASH') {
672: if ($domconfig{'contacts'}{'adminemail'} ne '') {
673: $adminmail = $domconfig{'contacts'}{'adminemail'};
674: }
675: }
676: }
677: if ($adminmail =~ /^[^\@]+\@[^\@]+$/) {
678: my $msg = new Mail::Send;
679: $msg->to($adminmail);
680: $msg->subject('LON-CAPA DNS update on '.$perlvar{'lonHostID'});
681: $msg->add('Content-type','text/plain; charset=UTF-8');
682: if (my $fh = $msg->open()) {
683: print $fh 'Update to '.$tablefile.' from Cluster Manager '.
1.473 raeburn 684: "$clientname ($clientip)\n";
1.472 raeburn 685: $fh->close;
686: }
687: }
1.143 foxr 688: }
689:
1.141 foxr 690: # Indicate success:
691:
692: return "ok";
693:
694: }
1.145 foxr 695:
696: #
697: # Called to re-init either lonc or lond.
698: #
699: # Parameters:
700: # request - The full request by the client. This is of the form
701: # reinit:<process>
702: # where <process> is allowed to be either of
703: # lonc or lond
704: #
705: # Returns:
706: # The string to be sent back to the client either:
707: # ok - Everything worked just fine.
708: # error:why - There was a failure and why describes the reason.
709: #
710: #
711: sub ReinitProcess {
712: my $request = shift;
713:
1.146 foxr 714:
715: # separate the request (reinit) from the process identifier and
716: # validate it producing the name of the .pid file for the process.
717: #
718: #
719: my ($junk, $process) = split(":", $request);
1.147 foxr 720: my $processpidfile = $perlvar{'lonDaemons'}.'/logs/';
1.146 foxr 721: if($process eq 'lonc') {
722: $processpidfile = $processpidfile."lonc.pid";
1.147 foxr 723: if (!open(PIDFILE, "< $processpidfile")) {
724: return "error:Open failed for $processpidfile";
725: }
726: my $loncpid = <PIDFILE>;
727: close(PIDFILE);
728: logthis('<font color="red"> Reinitializing lonc pid='.$loncpid
729: ."</font>");
730: kill("USR2", $loncpid);
1.146 foxr 731: } elsif ($process eq 'lond') {
1.147 foxr 732: logthis('<font color="red"> Reinitializing self (lond) </font>');
733: &UpdateHosts; # Lond is us!!
1.146 foxr 734: } else {
735: &logthis('<font color="yellow" Invalid reinit request for '.$process
736: ."</font>");
737: return "error:Invalid process identifier $process";
738: }
1.145 foxr 739: return 'ok';
740: }
1.168 foxr 741: # Validate a line in a configuration file edit script:
742: # Validation includes:
743: # - Ensuring the command is valid.
744: # - Ensuring the command has sufficient parameters
745: # Parameters:
746: # scriptline - A line to validate (\n has been stripped for what it's worth).
1.167 foxr 747: #
1.168 foxr 748: # Return:
749: # 0 - Invalid scriptline.
750: # 1 - Valid scriptline
751: # NOTE:
752: # Only the command syntax is checked, not the executability of the
753: # command.
754: #
755: sub isValidEditCommand {
756: my $scriptline = shift;
757:
758: # Line elements are pipe separated:
759:
760: my ($command, $key, $newline) = split(/\|/, $scriptline);
761: &logthis('<font color="green"> isValideditCommand checking: '.
762: "Command = '$command', Key = '$key', Newline = '$newline' </font>\n");
763:
764: if ($command eq "delete") {
765: #
766: # key with no newline.
767: #
768: if( ($key eq "") || ($newline ne "")) {
769: return 0; # Must have key but no newline.
770: } else {
771: return 1; # Valid syntax.
772: }
1.169 foxr 773: } elsif ($command eq "replace") {
1.168 foxr 774: #
775: # key and newline:
776: #
777: if (($key eq "") || ($newline eq "")) {
778: return 0;
779: } else {
780: return 1;
781: }
1.169 foxr 782: } elsif ($command eq "append") {
783: if (($key ne "") && ($newline eq "")) {
784: return 1;
785: } else {
786: return 0;
787: }
1.168 foxr 788: } else {
789: return 0; # Invalid command.
790: }
791: return 0; # Should not get here!!!
792: }
1.169 foxr 793: #
794: # ApplyEdit - Applies an edit command to a line in a configuration
795: # file. It is the caller's responsiblity to validate the
796: # edit line.
797: # Parameters:
798: # $directive - A single edit directive to apply.
799: # Edit directives are of the form:
800: # append|newline - Appends a new line to the file.
801: # replace|key|newline - Replaces the line with key value 'key'
802: # delete|key - Deletes the line with key value 'key'.
803: # $editor - A config file editor object that contains the
804: # file being edited.
805: #
806: sub ApplyEdit {
1.192 foxr 807:
808: my ($directive, $editor) = @_;
1.169 foxr 809:
810: # Break the directive down into its command and its parameters
811: # (at most two at this point. The meaning of the parameters, if in fact
812: # they exist depends on the command).
813:
814: my ($command, $p1, $p2) = split(/\|/, $directive);
815:
816: if($command eq "append") {
817: $editor->Append($p1); # p1 - key p2 null.
818: } elsif ($command eq "replace") {
819: $editor->ReplaceLine($p1, $p2); # p1 - key p2 = newline.
820: } elsif ($command eq "delete") {
821: $editor->DeleteLine($p1); # p1 - key p2 null.
822: } else { # Should not get here!!!
823: die "Invalid command given to ApplyEdit $command"
824: }
825: }
826: #
827: # AdjustOurHost:
828: # Adjusts a host file stored in a configuration file editor object
829: # for the true IP address of this host. This is necessary for hosts
830: # that live behind a firewall.
831: # Those hosts have a publicly distributed IP of the firewall, but
832: # internally must use their actual IP. We assume that a given
833: # host only has a single IP interface for now.
834: # Formal Parameters:
835: # editor - The configuration file editor to adjust. This
836: # editor is assumed to contain a hosts.tab file.
837: # Strategy:
838: # - Figure out our hostname.
839: # - Lookup the entry for this host.
840: # - Modify the line to contain our IP
841: # - Do a replace for this host.
842: sub AdjustOurHost {
843: my $editor = shift;
844:
845: # figure out who I am.
846:
847: my $myHostName = $perlvar{'lonHostID'}; # LonCAPA hostname.
848:
849: # Get my host file entry.
850:
851: my $ConfigLine = $editor->Find($myHostName);
852: if(! (defined $ConfigLine)) {
853: die "AdjustOurHost - no entry for me in hosts file $myHostName";
854: }
855: # figure out my IP:
856: # Use the config line to get my hostname.
857: # Use gethostbyname to translate that into an IP address.
858: #
1.338 albertel 859: my ($id,$domain,$role,$name,$maxcon,$idleto,$mincon) = split(/:/,$ConfigLine);
1.169 foxr 860: #
861: # Reassemble the config line from the elements in the list.
862: # Note that if the loncnew items were not present before, they will
863: # be now even if they would be empty
864: #
865: my $newConfigLine = $id;
1.338 albertel 866: foreach my $item ($domain, $role, $name, $maxcon, $idleto, $mincon) {
1.169 foxr 867: $newConfigLine .= ":".$item;
868: }
869: # Replace the line:
870:
871: $editor->ReplaceLine($id, $newConfigLine);
872:
873: }
874: #
875: # ReplaceConfigFile:
876: # Replaces a configuration file with the contents of a
877: # configuration file editor object.
878: # This is done by:
879: # - Copying the target file to <filename>.old
880: # - Writing the new file to <filename>.tmp
881: # - Moving <filename.tmp> -> <filename>
882: # This laborious process ensures that the system is never without
883: # a configuration file that's at least valid (even if the contents
884: # may be dated).
885: # Parameters:
886: # filename - Name of the file to modify... this is a full path.
887: # editor - Editor containing the file.
888: #
889: sub ReplaceConfigFile {
1.192 foxr 890:
891: my ($filename, $editor) = @_;
1.168 foxr 892:
1.169 foxr 893: CopyFile ($filename, $filename.".old");
894:
895: my $contents = $editor->Get(); # Get the contents of the file.
896:
897: InstallFile($filename, $contents);
898: }
1.168 foxr 899: #
900: #
901: # Called to edit a configuration table file
1.167 foxr 902: # Parameters:
903: # request - The entire command/request sent by lonc or lonManage
904: # Return:
905: # The reply to send to the client.
1.168 foxr 906: #
1.167 foxr 907: sub EditFile {
908: my $request = shift;
909:
910: # Split the command into it's pieces: edit:filetype:script
911:
1.339 albertel 912: my ($cmd, $filetype, $script) = split(/:/, $request,3); # : in script
1.167 foxr 913:
914: # Check the pre-coditions for success:
915:
1.339 albertel 916: if($cmd != "edit") { # Something is amiss afoot alack.
1.167 foxr 917: return "error:edit request detected, but request != 'edit'\n";
918: }
919: if( ($filetype ne "hosts") &&
920: ($filetype ne "domain")) {
921: return "error:edit requested with invalid file specifier: $filetype \n";
922: }
923:
924: # Split the edit script and check it's validity.
1.168 foxr 925:
926: my @scriptlines = split(/\n/, $script); # one line per element.
927: my $linecount = scalar(@scriptlines);
928: for(my $i = 0; $i < $linecount; $i++) {
929: chomp($scriptlines[$i]);
930: if(!isValidEditCommand($scriptlines[$i])) {
931: return "error:edit with bad script line: '$scriptlines[$i]' \n";
932: }
933: }
1.145 foxr 934:
1.167 foxr 935: # Execute the edit operation.
1.169 foxr 936: # - Create a config file editor for the appropriate file and
937: # - execute each command in the script:
938: #
939: my $configfile = ConfigFileFromSelector($filetype);
940: if (!(defined $configfile)) {
941: return "refused\n";
942: }
943: my $editor = ConfigFileEdit->new($configfile);
1.167 foxr 944:
1.169 foxr 945: for (my $i = 0; $i < $linecount; $i++) {
946: ApplyEdit($scriptlines[$i], $editor);
947: }
948: # If the file is the host file, ensure that our host is
949: # adjusted to have our ip:
950: #
951: if($filetype eq "host") {
952: AdjustOurHost($editor);
953: }
954: # Finally replace the current file with our file.
955: #
956: ReplaceConfigFile($configfile, $editor);
1.167 foxr 957:
958: return "ok\n";
959: }
1.207 foxr 960:
1.255 foxr 961: # read_profile
962: #
963: # Returns a set of specific entries from a user's profile file.
964: # this is a utility function that is used by both get_profile_entry and
965: # get_profile_entry_encrypted.
966: #
967: # Parameters:
968: # udom - Domain in which the user exists.
969: # uname - User's account name (loncapa account)
970: # namespace - The profile namespace to open.
971: # what - A set of & separated queries.
972: # Returns:
973: # If all ok: - The string that needs to be shipped back to the user.
974: # If failure - A string that starts with error: followed by the failure
975: # reason.. note that this probabyl gets shipped back to the
976: # user as well.
977: #
978: sub read_profile {
979: my ($udom, $uname, $namespace, $what) = @_;
980:
981: my $hashref = &tie_user_hash($udom, $uname, $namespace,
982: &GDBM_READER());
983: if ($hashref) {
984: my @queries=split(/\&/,$what);
1.440 raeburn 985: if ($namespace eq 'roles') {
986: @queries = map { &unescape($_); } @queries;
987: }
1.255 foxr 988: my $qresult='';
989:
990: for (my $i=0;$i<=$#queries;$i++) {
991: $qresult.="$hashref->{$queries[$i]}&"; # Presumably failure gives empty string.
992: }
993: $qresult=~s/\&$//; # Remove trailing & from last lookup.
1.311 albertel 994: if (&untie_user_hash($hashref)) {
1.255 foxr 995: return $qresult;
996: } else {
997: return "error: ".($!+0)." untie (GDBM) Failed";
998: }
999: } else {
1000: if ($!+0 == 2) {
1001: return "error:No such file or GDBM reported bad block error";
1002: } else {
1003: return "error: ".($!+0)." tie (GDBM) Failed";
1004: }
1005: }
1006:
1007: }
1.214 foxr 1008: #--------------------- Request Handlers --------------------------------------------
1009: #
1.215 foxr 1010: # By convention each request handler registers itself prior to the sub
1011: # declaration:
1.214 foxr 1012: #
1013:
1.216 foxr 1014: #++
1015: #
1.214 foxr 1016: # Handles ping requests.
1017: # Parameters:
1018: # $cmd - the actual keyword that invoked us.
1019: # $tail - the tail of the request that invoked us.
1020: # $replyfd- File descriptor connected to the client
1021: # Implicit Inputs:
1022: # $currenthostid - Global variable that carries the name of the host we are
1023: # known as.
1024: # Returns:
1025: # 1 - Ok to continue processing.
1026: # 0 - Program should exit.
1027: # Side effects:
1028: # Reply information is sent to the client.
1029: sub ping_handler {
1030: my ($cmd, $tail, $client) = @_;
1031: Debug("$cmd $tail $client .. $currenthostid:");
1032:
1.387 albertel 1033: Reply( $client,\$currenthostid,"$cmd:$tail");
1.214 foxr 1034:
1035: return 1;
1036: }
1037: ®ister_handler("ping", \&ping_handler, 0, 1, 1); # Ping unencoded, client or manager.
1038:
1.216 foxr 1039: #++
1.215 foxr 1040: #
1041: # Handles pong requests. Pong replies with our current host id, and
1042: # the results of a ping sent to us via our lonc.
1043: #
1044: # Parameters:
1045: # $cmd - the actual keyword that invoked us.
1046: # $tail - the tail of the request that invoked us.
1047: # $replyfd- File descriptor connected to the client
1048: # Implicit Inputs:
1049: # $currenthostid - Global variable that carries the name of the host we are
1050: # connected to.
1051: # Returns:
1052: # 1 - Ok to continue processing.
1053: # 0 - Program should exit.
1054: # Side effects:
1055: # Reply information is sent to the client.
1056: sub pong_handler {
1057: my ($cmd, $tail, $replyfd) = @_;
1058:
1.365 albertel 1059: my $reply=&Apache::lonnet::reply("ping",$clientname);
1.215 foxr 1060: &Reply( $replyfd, "$currenthostid:$reply\n", "$cmd:$tail");
1061: return 1;
1062: }
1063: ®ister_handler("pong", \&pong_handler, 0, 1, 1); # Pong unencoded, client or manager
1064:
1.216 foxr 1065: #++
1066: # Called to establish an encrypted session key with the remote client.
1067: # Note that with secure lond, in most cases this function is never
1068: # invoked. Instead, the secure session key is established either
1069: # via a local file that's locked down tight and only lives for a short
1070: # time, or via an ssl tunnel...and is generated from a bunch-o-random
1071: # bits from /dev/urandom, rather than the predictable pattern used by
1072: # by this sub. This sub is only used in the old-style insecure
1073: # key negotiation.
1074: # Parameters:
1075: # $cmd - the actual keyword that invoked us.
1076: # $tail - the tail of the request that invoked us.
1077: # $replyfd- File descriptor connected to the client
1078: # Implicit Inputs:
1079: # $currenthostid - Global variable that carries the name of the host
1080: # known as.
1.448 raeburn 1081: # $clientname - Global variable that carries the name of the host we're connected to.
1.216 foxr 1082: # Returns:
1083: # 1 - Ok to continue processing.
1084: # 0 - Program should exit.
1085: # Implicit Outputs:
1086: # Reply information is sent to the client.
1087: # $cipher is set with a reference to a new IDEA encryption object.
1088: #
1089: sub establish_key_handler {
1090: my ($cmd, $tail, $replyfd) = @_;
1091:
1092: my $buildkey=time.$$.int(rand 100000);
1093: $buildkey=~tr/1-6/A-F/;
1094: $buildkey=int(rand 100000).$buildkey.int(rand 100000);
1095: my $key=$currenthostid.$clientname;
1096: $key=~tr/a-z/A-Z/;
1097: $key=~tr/G-P/0-9/;
1098: $key=~tr/Q-Z/0-9/;
1099: $key=$key.$buildkey.$key.$buildkey.$key.$buildkey;
1100: $key=substr($key,0,32);
1101: my $cipherkey=pack("H32",$key);
1102: $cipher=new IDEA $cipherkey;
1.387 albertel 1103: &Reply($replyfd, \$buildkey, "$cmd:$tail");
1.216 foxr 1104:
1105: return 1;
1106:
1107: }
1108: ®ister_handler("ekey", \&establish_key_handler, 0, 1,1);
1109:
1.217 foxr 1110: # Handler for the load command. Returns the current system load average
1111: # to the requestor.
1112: #
1113: # Parameters:
1114: # $cmd - the actual keyword that invoked us.
1115: # $tail - the tail of the request that invoked us.
1116: # $replyfd- File descriptor connected to the client
1117: # Implicit Inputs:
1118: # $currenthostid - Global variable that carries the name of the host
1119: # known as.
1.448 raeburn 1120: # $clientname - Global variable that carries the name of the host we're connected to.
1.217 foxr 1121: # Returns:
1122: # 1 - Ok to continue processing.
1123: # 0 - Program should exit.
1124: # Side effects:
1125: # Reply information is sent to the client.
1126: sub load_handler {
1127: my ($cmd, $tail, $replyfd) = @_;
1128:
1.463 foxr 1129:
1130:
1.217 foxr 1131: # Get the load average from /proc/loadavg and calculate it as a percentage of
1132: # the allowed load limit as set by the perl global variable lonLoadLim
1133:
1134: my $loadavg;
1135: my $loadfile=IO::File->new('/proc/loadavg');
1136:
1137: $loadavg=<$loadfile>;
1138: $loadavg =~ s/\s.*//g; # Extract the first field only.
1139:
1140: my $loadpercent=100*$loadavg/$perlvar{'lonLoadLim'};
1141:
1.387 albertel 1142: &Reply( $replyfd, \$loadpercent, "$cmd:$tail");
1.217 foxr 1143:
1144: return 1;
1145: }
1.263 albertel 1146: ®ister_handler("load", \&load_handler, 0, 1, 0);
1.217 foxr 1147:
1148: #
1149: # Process the userload request. This sub returns to the client the current
1150: # user load average. It can be invoked either by clients or managers.
1151: #
1152: # Parameters:
1153: # $cmd - the actual keyword that invoked us.
1154: # $tail - the tail of the request that invoked us.
1155: # $replyfd- File descriptor connected to the client
1156: # Implicit Inputs:
1157: # $currenthostid - Global variable that carries the name of the host
1158: # known as.
1.448 raeburn 1159: # $clientname - Global variable that carries the name of the host we're connected to.
1.217 foxr 1160: # Returns:
1161: # 1 - Ok to continue processing.
1162: # 0 - Program should exit
1163: # Implicit inputs:
1164: # whatever the userload() function requires.
1165: # Implicit outputs:
1166: # the reply is written to the client.
1167: #
1168: sub user_load_handler {
1169: my ($cmd, $tail, $replyfd) = @_;
1170:
1.365 albertel 1171: my $userloadpercent=&Apache::lonnet::userload();
1.387 albertel 1172: &Reply($replyfd, \$userloadpercent, "$cmd:$tail");
1.217 foxr 1173:
1174: return 1;
1175: }
1.263 albertel 1176: ®ister_handler("userload", \&user_load_handler, 0, 1, 0);
1.217 foxr 1177:
1.218 foxr 1178: # Process a request for the authorization type of a user:
1179: # (userauth).
1180: #
1181: # Parameters:
1182: # $cmd - the actual keyword that invoked us.
1183: # $tail - the tail of the request that invoked us.
1184: # $replyfd- File descriptor connected to the client
1185: # Returns:
1186: # 1 - Ok to continue processing.
1187: # 0 - Program should exit
1188: # Implicit outputs:
1189: # The user authorization type is written to the client.
1190: #
1191: sub user_authorization_type {
1192: my ($cmd, $tail, $replyfd) = @_;
1193:
1194: my $userinput = "$cmd:$tail";
1195:
1196: # Pull the domain and username out of the command tail.
1.222 foxr 1197: # and call get_auth_type to determine the authentication type.
1.218 foxr 1198:
1199: my ($udom,$uname)=split(/:/,$tail);
1.222 foxr 1200: my $result = &get_auth_type($udom, $uname);
1.218 foxr 1201: if($result eq "nouser") {
1202: &Failure( $replyfd, "unknown_user\n", $userinput);
1203: } else {
1204: #
1.222 foxr 1205: # We only want to pass the second field from get_auth_type
1.218 foxr 1206: # for ^krb.. otherwise we'll be handing out the encrypted
1207: # password for internals e.g.
1208: #
1209: my ($type,$otherinfo) = split(/:/,$result);
1210: if($type =~ /^krb/) {
1211: $type = $result;
1.269 raeburn 1212: } else {
1213: $type .= ':';
1214: }
1.387 albertel 1215: &Reply( $replyfd, \$type, $userinput);
1.218 foxr 1216: }
1217:
1218: return 1;
1219: }
1220: ®ister_handler("currentauth", \&user_authorization_type, 1, 1, 0);
1221:
1222: # Process a request by a manager to push a hosts or domain table
1223: # to us. We pick apart the command and pass it on to the subs
1224: # that already exist to do this.
1225: #
1226: # Parameters:
1227: # $cmd - the actual keyword that invoked us.
1228: # $tail - the tail of the request that invoked us.
1229: # $client - File descriptor connected to the client
1230: # Returns:
1231: # 1 - Ok to continue processing.
1232: # 0 - Program should exit
1233: # Implicit Output:
1234: # a reply is written to the client.
1235: sub push_file_handler {
1236: my ($cmd, $tail, $client) = @_;
1.412 foxr 1237: &Debug("In push file handler");
1.218 foxr 1238: my $userinput = "$cmd:$tail";
1239:
1240: # At this time we only know that the IP of our partner is a valid manager
1241: # the code below is a hook to do further authentication (e.g. to resolve
1242: # spoofing).
1243:
1244: my $cert = &GetCertificate($userinput);
1.412 foxr 1245: if(&ValidManager($cert)) {
1246: &Debug("Valid manager: $client");
1.218 foxr 1247:
1248: # Now presumably we have the bona fides of both the peer host and the
1249: # process making the request.
1250:
1251: my $reply = &PushFile($userinput);
1.387 albertel 1252: &Reply($client, \$reply, $userinput);
1.218 foxr 1253:
1254: } else {
1.412 foxr 1255: &logthis("push_file_handler $client is not valid");
1.218 foxr 1256: &Failure( $client, "refused\n", $userinput);
1257: }
1.219 foxr 1258: return 1;
1.218 foxr 1259: }
1260: ®ister_handler("pushfile", \&push_file_handler, 1, 0, 1);
1261:
1.399 raeburn 1262: # The du_handler routine should be considered obsolete and is retained
1263: # for communication with legacy servers. Please see the du2_handler.
1.243 banghart 1264: #
1.399 raeburn 1265: # du - list the disk usage of a directory recursively.
1.243 banghart 1266: #
1267: # note: stolen code from the ls file handler
1268: # under construction by Rick Banghart
1269: # .
1270: # Parameters:
1271: # $cmd - The command that dispatched us (du).
1272: # $ududir - The directory path to list... I'm not sure what this
1273: # is relative as things like ls:. return e.g.
1274: # no_such_dir.
1275: # $client - Socket open on the client.
1276: # Returns:
1277: # 1 - indicating that the daemon should not disconnect.
1278: # Side Effects:
1279: # The reply is written to $client.
1280: #
1281: sub du_handler {
1282: my ($cmd, $ududir, $client) = @_;
1.339 albertel 1283: ($ududir) = split(/:/,$ududir); # Make 'telnet' testing easier.
1.251 foxr 1284: my $userinput = "$cmd:$ududir";
1285:
1.245 albertel 1286: if ($ududir=~/\.\./ || $ududir!~m|^/home/httpd/|) {
1287: &Failure($client,"refused\n","$cmd:$ududir");
1288: return 1;
1289: }
1.249 foxr 1290: # Since $ududir could have some nasties in it,
1291: # we will require that ududir is a valid
1292: # directory. Just in case someone tries to
1293: # slip us a line like .;(cd /home/httpd rm -rf*)
1294: # etc.
1295: #
1296: if (-d $ududir) {
1.292 albertel 1297: my $total_size=0;
1298: my $code=sub {
1299: if ($_=~/\.\d+\./) { return;}
1300: if ($_=~/\.meta$/) { return;}
1.362 albertel 1301: if (-d $_) { return;}
1.292 albertel 1302: $total_size+=(stat($_))[7];
1303: };
1.295 raeburn 1304: chdir($ududir);
1.292 albertel 1305: find($code,$ududir);
1306: $total_size=int($total_size/1024);
1.387 albertel 1307: &Reply($client,\$total_size,"$cmd:$ududir");
1.249 foxr 1308: } else {
1.251 foxr 1309: &Failure($client, "bad_directory:$ududir\n","$cmd:$ududir");
1.249 foxr 1310: }
1.243 banghart 1311: return 1;
1312: }
1313: ®ister_handler("du", \&du_handler, 0, 1, 0);
1.218 foxr 1314:
1.399 raeburn 1315: # Please also see the du_handler, which is obsoleted by du2.
1316: # du2_handler differs from du_handler in that required path to directory
1317: # provided by &propath() is prepended in the handler instead of on the
1318: # client side.
1.239 foxr 1319: #
1.399 raeburn 1320: # du2 - list the disk usage of a directory recursively.
1321: #
1322: # Parameters:
1323: # $cmd - The command that dispatched us (du).
1324: # $tail - The tail of the request that invoked us.
1325: # $tail is a : separated list of the following:
1326: # - $ududir - directory path to list (before prepending)
1327: # - $getpropath = 1 if &propath() should prepend
1328: # - $uname - username to use for &propath or user dir
1329: # - $udom - domain to use for &propath or user dir
1330: # All are escaped.
1331: # $client - Socket open on the client.
1332: # Returns:
1333: # 1 - indicating that the daemon should not disconnect.
1334: # Side Effects:
1335: # The reply is written to $client.
1336: #
1337:
1338: sub du2_handler {
1339: my ($cmd, $tail, $client) = @_;
1340: my ($ududir,$getpropath,$uname,$udom) = map { &unescape($_) } (split(/:/, $tail));
1341: my $userinput = "$cmd:$tail";
1342: if (($ududir=~/\.\./) || (($ududir!~m|^/home/httpd/|) && (!$getpropath))) {
1343: &Failure($client,"refused\n","$cmd:$tail");
1344: return 1;
1345: }
1346: if ($getpropath) {
1347: if (($uname =~ /^$LONCAPA::match_name$/) && ($udom =~ /^$LONCAPA::match_domain$/)) {
1348: $ududir = &propath($udom,$uname).'/'.$ududir;
1349: } else {
1350: &Failure($client,"refused\n","$cmd:$tail");
1351: return 1;
1352: }
1353: }
1354: # Since $ududir could have some nasties in it,
1355: # we will require that ududir is a valid
1356: # directory. Just in case someone tries to
1357: # slip us a line like .;(cd /home/httpd rm -rf*)
1358: # etc.
1359: #
1360: if (-d $ududir) {
1361: my $total_size=0;
1362: my $code=sub {
1363: if ($_=~/\.\d+\./) { return;}
1364: if ($_=~/\.meta$/) { return;}
1365: if (-d $_) { return;}
1366: $total_size+=(stat($_))[7];
1367: };
1368: chdir($ududir);
1369: find($code,$ududir);
1370: $total_size=int($total_size/1024);
1371: &Reply($client,\$total_size,"$cmd:$ududir");
1372: } else {
1373: &Failure($client, "bad_directory:$ududir\n","$cmd:$tail");
1374: }
1375: return 1;
1376: }
1377: ®ister_handler("du2", \&du2_handler, 0, 1, 0);
1378:
1379: #
1380: # The ls_handler routine should be considered obsolete and is retained
1381: # for communication with legacy servers. Please see the ls3_handler.
1.280 matthew 1382: #
1.239 foxr 1383: # ls - list the contents of a directory. For each file in the
1384: # selected directory the filename followed by the full output of
1385: # the stat function is returned. The returned info for each
1386: # file are separated by ':'. The stat fields are separated by &'s.
1387: # Parameters:
1388: # $cmd - The command that dispatched us (ls).
1389: # $ulsdir - The directory path to list... I'm not sure what this
1390: # is relative as things like ls:. return e.g.
1391: # no_such_dir.
1392: # $client - Socket open on the client.
1393: # Returns:
1394: # 1 - indicating that the daemon should not disconnect.
1395: # Side Effects:
1396: # The reply is written to $client.
1397: #
1398: sub ls_handler {
1.280 matthew 1399: # obsoleted by ls2_handler
1.239 foxr 1400: my ($cmd, $ulsdir, $client) = @_;
1401:
1402: my $userinput = "$cmd:$ulsdir";
1403:
1404: my $obs;
1405: my $rights;
1406: my $ulsout='';
1407: my $ulsfn;
1408: if (-e $ulsdir) {
1409: if(-d $ulsdir) {
1410: if (opendir(LSDIR,$ulsdir)) {
1411: while ($ulsfn=readdir(LSDIR)) {
1.291 albertel 1412: undef($obs);
1413: undef($rights);
1.239 foxr 1414: my @ulsstats=stat($ulsdir.'/'.$ulsfn);
1415: #We do some obsolete checking here
1416: if(-e $ulsdir.'/'.$ulsfn.".meta") {
1417: open(FILE, $ulsdir.'/'.$ulsfn.".meta");
1418: my @obsolete=<FILE>;
1419: foreach my $obsolete (@obsolete) {
1.301 www 1420: if($obsolete =~ m/(<obsolete>)(on|1)/) { $obs = 1; }
1.239 foxr 1421: if($obsolete =~ m|(<copyright>)(default)|) { $rights = 1; }
1422: }
1423: }
1424: $ulsout.=$ulsfn.'&'.join('&',@ulsstats);
1425: if($obs eq '1') { $ulsout.="&1"; }
1426: else { $ulsout.="&0"; }
1427: if($rights eq '1') { $ulsout.="&1:"; }
1428: else { $ulsout.="&0:"; }
1429: }
1430: closedir(LSDIR);
1431: }
1432: } else {
1433: my @ulsstats=stat($ulsdir);
1434: $ulsout.=$ulsfn.'&'.join('&',@ulsstats).':';
1435: }
1436: } else {
1437: $ulsout='no_such_dir';
1438: }
1439: if ($ulsout eq '') { $ulsout='empty'; }
1.387 albertel 1440: &Reply($client, \$ulsout, $userinput); # This supports debug logging.
1.239 foxr 1441:
1442: return 1;
1443:
1444: }
1445: ®ister_handler("ls", \&ls_handler, 0, 1, 0);
1446:
1.399 raeburn 1447: # The ls2_handler routine should be considered obsolete and is retained
1448: # for communication with legacy servers. Please see the ls3_handler.
1449: # Please also see the ls_handler, which was itself obsoleted by ls2.
1.280 matthew 1450: # ls2_handler differs from ls_handler in that it escapes its return
1451: # values before concatenating them together with ':'s.
1452: #
1453: # ls2 - list the contents of a directory. For each file in the
1454: # selected directory the filename followed by the full output of
1455: # the stat function is returned. The returned info for each
1456: # file are separated by ':'. The stat fields are separated by &'s.
1457: # Parameters:
1458: # $cmd - The command that dispatched us (ls).
1459: # $ulsdir - The directory path to list... I'm not sure what this
1460: # is relative as things like ls:. return e.g.
1461: # no_such_dir.
1462: # $client - Socket open on the client.
1463: # Returns:
1464: # 1 - indicating that the daemon should not disconnect.
1465: # Side Effects:
1466: # The reply is written to $client.
1467: #
1468: sub ls2_handler {
1469: my ($cmd, $ulsdir, $client) = @_;
1470:
1471: my $userinput = "$cmd:$ulsdir";
1472:
1473: my $obs;
1474: my $rights;
1475: my $ulsout='';
1476: my $ulsfn;
1477: if (-e $ulsdir) {
1478: if(-d $ulsdir) {
1479: if (opendir(LSDIR,$ulsdir)) {
1480: while ($ulsfn=readdir(LSDIR)) {
1.291 albertel 1481: undef($obs);
1482: undef($rights);
1.280 matthew 1483: my @ulsstats=stat($ulsdir.'/'.$ulsfn);
1484: #We do some obsolete checking here
1485: if(-e $ulsdir.'/'.$ulsfn.".meta") {
1486: open(FILE, $ulsdir.'/'.$ulsfn.".meta");
1487: my @obsolete=<FILE>;
1488: foreach my $obsolete (@obsolete) {
1.301 www 1489: if($obsolete =~ m/(<obsolete>)(on|1)/) { $obs = 1; }
1.280 matthew 1490: if($obsolete =~ m|(<copyright>)(default)|) {
1491: $rights = 1;
1492: }
1493: }
1494: }
1495: my $tmp = $ulsfn.'&'.join('&',@ulsstats);
1496: if ($obs eq '1') { $tmp.="&1"; } else { $tmp.="&0"; }
1497: if ($rights eq '1') { $tmp.="&1"; } else { $tmp.="&0"; }
1498: $ulsout.= &escape($tmp).':';
1499: }
1500: closedir(LSDIR);
1501: }
1502: } else {
1503: my @ulsstats=stat($ulsdir);
1504: $ulsout.=$ulsfn.'&'.join('&',@ulsstats).':';
1505: }
1506: } else {
1507: $ulsout='no_such_dir';
1508: }
1509: if ($ulsout eq '') { $ulsout='empty'; }
1.387 albertel 1510: &Reply($client, \$ulsout, $userinput); # This supports debug logging.
1.280 matthew 1511: return 1;
1512: }
1513: ®ister_handler("ls2", \&ls2_handler, 0, 1, 0);
1.399 raeburn 1514: #
1515: # ls3 - list the contents of a directory. For each file in the
1516: # selected directory the filename followed by the full output of
1517: # the stat function is returned. The returned info for each
1518: # file are separated by ':'. The stat fields are separated by &'s.
1519: # Parameters:
1520: # $cmd - The command that dispatched us (ls).
1521: # $tail - The tail of the request that invoked us.
1522: # $tail is a : separated list of the following:
1523: # - $ulsdir - directory path to list (before prepending)
1524: # - $getpropath = 1 if &propath() should prepend
1525: # - $getuserdir = 1 if path to user dir in lonUsers should
1526: # prepend
1527: # - $alternate_root - path to prepend
1528: # - $uname - username to use for &propath or user dir
1529: # - $udom - domain to use for &propath or user dir
1530: # All of these except $getpropath and &getuserdir are escaped.
1531: # no_such_dir.
1532: # $client - Socket open on the client.
1533: # Returns:
1534: # 1 - indicating that the daemon should not disconnect.
1535: # Side Effects:
1536: # The reply is written to $client.
1537: #
1538:
1539: sub ls3_handler {
1540: my ($cmd, $tail, $client) = @_;
1541: my $userinput = "$cmd:$tail";
1542: my ($ulsdir,$getpropath,$getuserdir,$alternate_root,$uname,$udom) =
1543: split(/:/,$tail);
1544: if (defined($ulsdir)) {
1545: $ulsdir = &unescape($ulsdir);
1546: }
1547: if (defined($alternate_root)) {
1548: $alternate_root = &unescape($alternate_root);
1549: }
1550: if (defined($uname)) {
1551: $uname = &unescape($uname);
1552: }
1553: if (defined($udom)) {
1554: $udom = &unescape($udom);
1555: }
1556:
1557: my $dir_root = $perlvar{'lonDocRoot'};
1558: if ($getpropath) {
1559: if (($uname =~ /^$LONCAPA::match_name$/) && ($udom =~ /^$LONCAPA::match_domain$/)) {
1560: $dir_root = &propath($udom,$uname);
1561: $dir_root =~ s/\/$//;
1562: } else {
1563: &Failure($client,"refused\n","$cmd:$tail");
1564: return 1;
1565: }
1566: } elsif ($getuserdir) {
1567: if (($uname =~ /^$LONCAPA::match_name$/) && ($udom =~ /^$LONCAPA::match_domain$/)) {
1568: my $subdir=$uname.'__';
1569: $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
1570: $dir_root = $Apache::lonnet::perlvar{'lonUsersDir'}
1571: ."/$udom/$subdir/$uname";
1572: } else {
1573: &Failure($client,"refused\n","$cmd:$tail");
1574: return 1;
1575: }
1.400 raeburn 1576: } elsif ($alternate_root ne '') {
1.399 raeburn 1577: $dir_root = $alternate_root;
1578: }
1.408 raeburn 1579: if (($dir_root ne '') && ($dir_root ne '/')) {
1.400 raeburn 1580: if ($ulsdir =~ /^\//) {
1581: $ulsdir = $dir_root.$ulsdir;
1582: } else {
1583: $ulsdir = $dir_root.'/'.$ulsdir;
1584: }
1.399 raeburn 1585: }
1586: my $obs;
1587: my $rights;
1588: my $ulsout='';
1589: my $ulsfn;
1590: if (-e $ulsdir) {
1591: if(-d $ulsdir) {
1592: if (opendir(LSDIR,$ulsdir)) {
1593: while ($ulsfn=readdir(LSDIR)) {
1594: undef($obs);
1595: undef($rights);
1596: my @ulsstats=stat($ulsdir.'/'.$ulsfn);
1597: #We do some obsolete checking here
1598: if(-e $ulsdir.'/'.$ulsfn.".meta") {
1599: open(FILE, $ulsdir.'/'.$ulsfn.".meta");
1600: my @obsolete=<FILE>;
1601: foreach my $obsolete (@obsolete) {
1602: if($obsolete =~ m/(<obsolete>)(on|1)/) { $obs = 1; }
1603: if($obsolete =~ m|(<copyright>)(default)|) {
1604: $rights = 1;
1605: }
1606: }
1607: }
1608: my $tmp = $ulsfn.'&'.join('&',@ulsstats);
1609: if ($obs eq '1') { $tmp.="&1"; } else { $tmp.="&0"; }
1610: if ($rights eq '1') { $tmp.="&1"; } else { $tmp.="&0"; }
1611: $ulsout.= &escape($tmp).':';
1612: }
1613: closedir(LSDIR);
1614: }
1615: } else {
1616: my @ulsstats=stat($ulsdir);
1617: $ulsout.=$ulsfn.'&'.join('&',@ulsstats).':';
1618: }
1619: } else {
1620: $ulsout='no_such_dir';
1.400 raeburn 1621: }
1622: if ($ulsout eq '') { $ulsout='empty'; }
1623: &Reply($client, \$ulsout, $userinput); # This supports debug logging.
1624: return 1;
1.399 raeburn 1625: }
1626: ®ister_handler("ls3", \&ls3_handler, 0, 1, 0);
1.280 matthew 1627:
1.477 raeburn 1628: sub read_lonnet_global {
1629: my ($cmd,$tail,$client) = @_;
1630: my $userinput = "$cmd:$tail";
1631: my $requested = &Apache::lonnet::thaw_unescape($tail);
1632: my $result;
1.480 raeburn 1633: my %packagevars = (
1634: spareid => \%Apache::lonnet::spareid,
1635: perlvar => \%Apache::lonnet::perlvar,
1636: );
1637: my %limit_to = (
1638: perlvar => {
1639: lonOtherAuthen => 1,
1640: lonBalancer => 1,
1641: lonVersion => 1,
1642: lonSysEMail => 1,
1643: lonHostID => 1,
1644: lonRole => 1,
1645: lonDefDomain => 1,
1646: lonLoadLim => 1,
1647: lonUserLoadLim => 1,
1648: }
1649: );
1.477 raeburn 1650: if (ref($requested) eq 'HASH') {
1651: foreach my $what (keys(%{$requested})) {
1652: my $response;
1.480 raeburn 1653: my $items = {};
1654: if (exists($packagevars{$what})) {
1655: if (ref($limit_to{$what}) eq 'HASH') {
1656: foreach my $varname (keys(%{$packagevars{$what}})) {
1657: if ($limit_to{$what}{$varname}) {
1658: $items->{$varname} = $packagevars{$what}{$varname};
1659: }
1660: }
1661: } else {
1662: $items = $packagevars{$what};
1.477 raeburn 1663: }
1.480 raeburn 1664: if ($what eq 'perlvar') {
1665: if (!exists($packagevars{$what}{'lonBalancer'})) {
1666: if ($dist =~ /^(centos|rhes|fedora|scientific)/) {
1667: my $othervarref=LONCAPA::Configuration::read_conf('httpd.conf');
1668: if (ref($othervarref) eq 'HASH') {
1669: $items->{'lonBalancer'} = $othervarref->{'lonBalancer'};
1670: }
1671: }
1672: }
1.477 raeburn 1673: }
1.480 raeburn 1674: $response = &Apache::lonnet::freeze_escape($items);
1.477 raeburn 1675: }
1.478 raeburn 1676: $result .= &escape($what).'='.$response.'&';
1.477 raeburn 1677: }
1678: }
1679: $result =~ s/\&$//;
1680: &Reply($client,\$result,$userinput);
1681: return 1;
1682: }
1683: ®ister_handler("readlonnetglobal", \&read_lonnet_global, 0, 1, 0);
1684:
1.479 raeburn 1685: sub server_devalidatecache_handler {
1686: my ($cmd,$tail,$client) = @_;
1687: my $userinput = "$cmd:$tail";
1.489.2.9 raeburn 1688: my $items = &unescape($tail);
1689: my @cached = split(/\&/,$items);
1690: foreach my $key (@cached) {
1691: if ($key =~ /:/) {
1692: my ($name,$id) = map { &unescape($_); } split(/:/,$key);
1693: &Apache::lonnet::devalidate_cache_new($name,$id);
1694: }
1695: }
1.479 raeburn 1696: my $result = 'ok';
1697: &Reply($client,\$result,$userinput);
1698: return 1;
1699: }
1.481 raeburn 1700: ®ister_handler("devalidatecache", \&server_devalidatecache_handler, 0, 1, 0);
1.479 raeburn 1701:
1.410 raeburn 1702: sub server_timezone_handler {
1703: my ($cmd,$tail,$client) = @_;
1704: my $userinput = "$cmd:$tail";
1705: my $timezone;
1706: my $clockfile = '/etc/sysconfig/clock'; # Fedora/CentOS/SuSE
1707: my $tzfile = '/etc/timezone'; # Debian/Ubuntu
1708: if (-e $clockfile) {
1709: if (open(my $fh,"<$clockfile")) {
1710: while (<$fh>) {
1711: next if (/^[\#\s]/);
1712: if (/^(?:TIME)?ZONE\s*=\s*['"]?\s*([\w\/]+)/) {
1713: $timezone = $1;
1714: last;
1715: }
1716: }
1717: close($fh);
1718: }
1719: } elsif (-e $tzfile) {
1720: if (open(my $fh,"<$tzfile")) {
1721: $timezone = <$fh>;
1722: close($fh);
1723: chomp($timezone);
1724: if ($timezone =~ m{^Etc/(\w+)$}) {
1725: $timezone = $1;
1726: }
1727: }
1728: }
1729: &Reply($client,\$timezone,$userinput); # This supports debug logging.
1730: return 1;
1731: }
1732: ®ister_handler("servertimezone", \&server_timezone_handler, 0, 1, 0);
1733:
1.413 raeburn 1734: sub server_loncaparev_handler {
1735: my ($cmd,$tail,$client) = @_;
1736: my $userinput = "$cmd:$tail";
1737: &Reply($client,\$perlvar{'lonVersion'},$userinput);
1738: return 1;
1739: }
1740: ®ister_handler("serverloncaparev", \&server_loncaparev_handler, 0, 1, 0);
1741:
1.448 raeburn 1742: sub server_homeID_handler {
1743: my ($cmd,$tail,$client) = @_;
1744: my $userinput = "$cmd:$tail";
1745: &Reply($client,\$perlvar{'lonHostID'},$userinput);
1746: return 1;
1747: }
1748: ®ister_handler("serverhomeID", \&server_homeID_handler, 0, 1, 0);
1749:
1.471 raeburn 1750: sub server_distarch_handler {
1751: my ($cmd,$tail,$client) = @_;
1752: my $userinput = "$cmd:$tail";
1753: my $reply = &distro_and_arch();
1754: &Reply($client,\$reply,$userinput);
1755: return 1;
1756: }
1757: ®ister_handler("serverdistarch", \&server_distarch_handler, 0, 1, 0);
1758:
1.218 foxr 1759: # Process a reinit request. Reinit requests that either
1760: # lonc or lond be reinitialized so that an updated
1761: # host.tab or domain.tab can be processed.
1762: #
1763: # Parameters:
1764: # $cmd - the actual keyword that invoked us.
1765: # $tail - the tail of the request that invoked us.
1766: # $client - File descriptor connected to the client
1767: # Returns:
1768: # 1 - Ok to continue processing.
1769: # 0 - Program should exit
1770: # Implicit output:
1771: # a reply is sent to the client.
1772: #
1773: sub reinit_process_handler {
1774: my ($cmd, $tail, $client) = @_;
1775:
1776: my $userinput = "$cmd:$tail";
1777:
1778: my $cert = &GetCertificate($userinput);
1779: if(&ValidManager($cert)) {
1780: chomp($userinput);
1781: my $reply = &ReinitProcess($userinput);
1.387 albertel 1782: &Reply( $client, \$reply, $userinput);
1.218 foxr 1783: } else {
1784: &Failure( $client, "refused\n", $userinput);
1785: }
1786: return 1;
1787: }
1788: ®ister_handler("reinit", \&reinit_process_handler, 1, 0, 1);
1789:
1790: # Process the editing script for a table edit operation.
1791: # the editing operation must be encrypted and requested by
1792: # a manager host.
1793: #
1794: # Parameters:
1795: # $cmd - the actual keyword that invoked us.
1796: # $tail - the tail of the request that invoked us.
1797: # $client - File descriptor connected to the client
1798: # Returns:
1799: # 1 - Ok to continue processing.
1800: # 0 - Program should exit
1801: # Implicit output:
1802: # a reply is sent to the client.
1803: #
1804: sub edit_table_handler {
1805: my ($command, $tail, $client) = @_;
1806:
1807: my $userinput = "$command:$tail";
1808:
1809: my $cert = &GetCertificate($userinput);
1810: if(&ValidManager($cert)) {
1811: my($filetype, $script) = split(/:/, $tail);
1812: if (($filetype eq "hosts") ||
1813: ($filetype eq "domain")) {
1814: if($script ne "") {
1815: &Reply($client, # BUGBUG - EditFile
1816: &EditFile($userinput), # could fail.
1817: $userinput);
1818: } else {
1819: &Failure($client,"refused\n",$userinput);
1820: }
1821: } else {
1822: &Failure($client,"refused\n",$userinput);
1823: }
1824: } else {
1825: &Failure($client,"refused\n",$userinput);
1826: }
1827: return 1;
1828: }
1.263 albertel 1829: ®ister_handler("edit", \&edit_table_handler, 1, 0, 1);
1.218 foxr 1830:
1.220 foxr 1831: #
1832: # Authenticate a user against the LonCAPA authentication
1833: # database. Note that there are several authentication
1834: # possibilities:
1835: # - unix - The user can be authenticated against the unix
1836: # password file.
1837: # - internal - The user can be authenticated against a purely
1838: # internal per user password file.
1839: # - kerberos - The user can be authenticated against either a kerb4 or kerb5
1840: # ticket granting authority.
1841: # - user - The person tailoring LonCAPA can supply a user authentication
1842: # mechanism that is per system.
1843: #
1844: # Parameters:
1845: # $cmd - The command that got us here.
1846: # $tail - Tail of the command (remaining parameters).
1847: # $client - File descriptor connected to client.
1848: # Returns
1849: # 0 - Requested to exit, caller should shut down.
1850: # 1 - Continue processing.
1851: # Implicit inputs:
1852: # The authentication systems describe above have their own forms of implicit
1853: # input into the authentication process that are described above.
1854: #
1855: sub authenticate_handler {
1856: my ($cmd, $tail, $client) = @_;
1857:
1858:
1859: # Regenerate the full input line
1860:
1861: my $userinput = $cmd.":".$tail;
1862:
1863: # udom - User's domain.
1864: # uname - Username.
1865: # upass - User's password.
1.396 raeburn 1866: # checkdefauth - Pass to validate_user() to try authentication
1867: # with default auth type(s) if no user account.
1.447 raeburn 1868: # clientcancheckhost - Passed by clients with functionality in lonauth.pm
1869: # to check if session can be hosted.
1.220 foxr 1870:
1.447 raeburn 1871: my ($udom, $uname, $upass, $checkdefauth, $clientcancheckhost)=split(/:/,$tail);
1.399 raeburn 1872: &Debug(" Authenticate domain = $udom, user = $uname, password = $upass, checkdefauth = $checkdefauth");
1.220 foxr 1873: chomp($upass);
1874: $upass=&unescape($upass);
1875:
1.396 raeburn 1876: my $pwdcorrect = &validate_user($udom,$uname,$upass,$checkdefauth);
1.220 foxr 1877: if($pwdcorrect) {
1.447 raeburn 1878: my $canhost = 1;
1879: unless ($clientcancheckhost) {
1.448 raeburn 1880: my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
1881: my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
1.452 raeburn 1882: my @intdoms;
1883: my $internet_names = &Apache::lonnet::get_internet_names($clientname);
1884: if (ref($internet_names) eq 'ARRAY') {
1885: @intdoms = @{$internet_names};
1886: }
1.448 raeburn 1887: unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
1.447 raeburn 1888: my ($remote,$hosted);
1889: my $remotesession = &get_usersession_config($udom,'remotesession');
1890: if (ref($remotesession) eq 'HASH') {
1891: $remote = $remotesession->{'remote'}
1892: }
1.448 raeburn 1893: my $hostedsession = &get_usersession_config($clienthomedom,'hostedsession');
1.447 raeburn 1894: if (ref($hostedsession) eq 'HASH') {
1895: $hosted = $hostedsession->{'hosted'};
1896: }
1.449 raeburn 1897: my $loncaparev = $clientversion;
1898: if ($loncaparev eq '') {
1899: $loncaparev = $Apache::lonnet::loncaparevs{$clientname};
1900: }
1.448 raeburn 1901: $canhost = &Apache::lonnet::can_host_session($udom,$clientname,
1.449 raeburn 1902: $loncaparev,
1.447 raeburn 1903: $remote,$hosted);
1904: }
1905: }
1906: if ($canhost) {
1907: &Reply( $client, "authorized\n", $userinput);
1908: } else {
1909: &Reply( $client, "not_allowed_to_host\n", $userinput);
1910: }
1.220 foxr 1911: #
1912: # Bad credentials: Failed to authorize
1913: #
1914: } else {
1915: &Failure( $client, "non_authorized\n", $userinput);
1916: }
1917:
1918: return 1;
1919: }
1.263 albertel 1920: ®ister_handler("auth", \&authenticate_handler, 1, 1, 0);
1.214 foxr 1921:
1.222 foxr 1922: #
1923: # Change a user's password. Note that this function is complicated by
1924: # the fact that a user may be authenticated in more than one way:
1925: # At present, we are not able to change the password for all types of
1926: # authentication methods. Only for:
1927: # unix - unix password or shadow passoword style authentication.
1928: # local - Locally written authentication mechanism.
1929: # For now, kerb4 and kerb5 password changes are not supported and result
1930: # in an error.
1931: # FUTURE WORK:
1932: # Support kerberos passwd changes?
1933: # Parameters:
1934: # $cmd - The command that got us here.
1935: # $tail - Tail of the command (remaining parameters).
1936: # $client - File descriptor connected to client.
1937: # Returns
1938: # 0 - Requested to exit, caller should shut down.
1939: # 1 - Continue processing.
1940: # Implicit inputs:
1941: # The authentication systems describe above have their own forms of implicit
1942: # input into the authentication process that are described above.
1943: sub change_password_handler {
1944: my ($cmd, $tail, $client) = @_;
1945:
1946: my $userinput = $cmd.":".$tail; # Reconstruct client's string.
1947:
1948: #
1949: # udom - user's domain.
1950: # uname - Username.
1951: # upass - Current password.
1952: # npass - New password.
1.346 raeburn 1953: # context - Context in which this was called
1954: # (preferences or reset_by_email).
1.428 raeburn 1955: # lonhost - HostID of server where request originated
1.222 foxr 1956:
1.428 raeburn 1957: my ($udom,$uname,$upass,$npass,$context,$lonhost)=split(/:/,$tail);
1.222 foxr 1958:
1959: $upass=&unescape($upass);
1960: $npass=&unescape($npass);
1961: &Debug("Trying to change password for $uname");
1962:
1963: # First require that the user can be authenticated with their
1.346 raeburn 1964: # old password unless context was 'reset_by_email':
1965:
1.428 raeburn 1966: my ($validated,$failure);
1.346 raeburn 1967: if ($context eq 'reset_by_email') {
1.428 raeburn 1968: if ($lonhost eq '') {
1969: $failure = 'invalid_client';
1970: } else {
1971: $validated = 1;
1972: }
1.346 raeburn 1973: } else {
1974: $validated = &validate_user($udom, $uname, $upass);
1975: }
1.222 foxr 1976: if($validated) {
1977: my $realpasswd = &get_auth_type($udom, $uname); # Defined since authd.
1978:
1979: my ($howpwd,$contentpwd)=split(/:/,$realpasswd);
1980: if ($howpwd eq 'internal') {
1981: &Debug("internal auth");
1982: my $salt=time;
1983: $salt=substr($salt,6,2);
1984: my $ncpass=crypt($npass,$salt);
1985: if(&rewrite_password_file($udom, $uname, "internal:$ncpass")) {
1.428 raeburn 1986: my $msg="Result of password change for $uname: pwchange_success";
1987: if ($lonhost) {
1988: $msg .= " - request originated from: $lonhost";
1989: }
1990: &logthis($msg);
1.222 foxr 1991: &Reply($client, "ok\n", $userinput);
1992: } else {
1993: &logthis("Unable to open $uname passwd "
1994: ."to change password");
1995: &Failure( $client, "non_authorized\n",$userinput);
1996: }
1.346 raeburn 1997: } elsif ($howpwd eq 'unix' && $context ne 'reset_by_email') {
1.287 foxr 1998: my $result = &change_unix_password($uname, $npass);
1.222 foxr 1999: &logthis("Result of password change for $uname: ".
1.287 foxr 2000: $result);
1.387 albertel 2001: &Reply($client, \$result, $userinput);
1.222 foxr 2002: } else {
2003: # this just means that the current password mode is not
2004: # one we know how to change (e.g the kerberos auth modes or
2005: # locally written auth handler).
2006: #
2007: &Failure( $client, "auth_mode_error\n", $userinput);
2008: }
2009:
1.224 foxr 2010: } else {
1.428 raeburn 2011: if ($failure eq '') {
2012: $failure = 'non_authorized';
2013: }
2014: &Failure( $client, "$failure\n", $userinput);
1.222 foxr 2015: }
2016:
2017: return 1;
2018: }
1.263 albertel 2019: ®ister_handler("passwd", \&change_password_handler, 1, 1, 0);
1.222 foxr 2020:
1.225 foxr 2021: #
2022: # Create a new user. User in this case means a lon-capa user.
2023: # The user must either already exist in some authentication realm
2024: # like kerberos or the /etc/passwd. If not, a user completely local to
2025: # this loncapa system is created.
2026: #
2027: # Parameters:
2028: # $cmd - The command that got us here.
2029: # $tail - Tail of the command (remaining parameters).
2030: # $client - File descriptor connected to client.
2031: # Returns
2032: # 0 - Requested to exit, caller should shut down.
2033: # 1 - Continue processing.
2034: # Implicit inputs:
2035: # The authentication systems describe above have their own forms of implicit
2036: # input into the authentication process that are described above.
2037: sub add_user_handler {
2038:
2039: my ($cmd, $tail, $client) = @_;
2040:
2041:
2042: my ($udom,$uname,$umode,$npass)=split(/:/,$tail);
2043: my $userinput = $cmd.":".$tail; # Reconstruct the full request line.
2044:
2045: &Debug("cmd =".$cmd." $udom =".$udom." uname=".$uname);
2046:
2047:
2048: if($udom eq $currentdomainid) { # Reject new users for other domains...
2049:
2050: my $oldumask=umask(0077);
2051: chomp($npass);
2052: $npass=&unescape($npass);
2053: my $passfilename = &password_path($udom, $uname);
2054: &Debug("Password file created will be:".$passfilename);
2055: if (-e $passfilename) {
2056: &Failure( $client, "already_exists\n", $userinput);
2057: } else {
2058: my $fperror='';
1.264 albertel 2059: if (!&mkpath($passfilename)) {
2060: $fperror="error: ".($!+0)." mkdir failed while attempting "
2061: ."makeuser";
1.225 foxr 2062: }
2063: unless ($fperror) {
1.483 www 2064: my $result=&make_passwd_file($uname,$udom,$umode,$npass, $passfilename);
1.390 raeburn 2065: &Reply($client,\$result, $userinput); #BUGBUG - could be fail
1.225 foxr 2066: } else {
1.387 albertel 2067: &Failure($client, \$fperror, $userinput);
1.225 foxr 2068: }
2069: }
2070: umask($oldumask);
2071: } else {
2072: &Failure($client, "not_right_domain\n",
2073: $userinput); # Even if we are multihomed.
2074:
2075: }
2076: return 1;
2077:
2078: }
2079: ®ister_handler("makeuser", \&add_user_handler, 1, 1, 0);
2080:
2081: #
2082: # Change the authentication method of a user. Note that this may
2083: # also implicitly change the user's password if, for example, the user is
2084: # joining an existing authentication realm. Known authentication realms at
2085: # this time are:
2086: # internal - Purely internal password file (only loncapa knows this user)
2087: # local - Institutionally written authentication module.
2088: # unix - Unix user (/etc/passwd with or without /etc/shadow).
2089: # kerb4 - kerberos version 4
2090: # kerb5 - kerberos version 5
2091: #
2092: # Parameters:
2093: # $cmd - The command that got us here.
2094: # $tail - Tail of the command (remaining parameters).
2095: # $client - File descriptor connected to client.
2096: # Returns
2097: # 0 - Requested to exit, caller should shut down.
2098: # 1 - Continue processing.
2099: # Implicit inputs:
2100: # The authentication systems describe above have their own forms of implicit
2101: # input into the authentication process that are described above.
1.287 foxr 2102: # NOTE:
2103: # This is also used to change the authentication credential values (e.g. passwd).
2104: #
1.225 foxr 2105: #
2106: sub change_authentication_handler {
2107:
2108: my ($cmd, $tail, $client) = @_;
2109:
2110: my $userinput = "$cmd:$tail"; # Reconstruct user input.
2111:
2112: my ($udom,$uname,$umode,$npass)=split(/:/,$tail);
2113: &Debug("cmd = ".$cmd." domain= ".$udom."uname =".$uname." umode= ".$umode);
2114: if ($udom ne $currentdomainid) {
2115: &Failure( $client, "not_right_domain\n", $client);
2116: } else {
2117:
2118: chomp($npass);
2119:
2120: $npass=&unescape($npass);
1.261 foxr 2121: my $oldauth = &get_auth_type($udom, $uname); # Get old auth info.
1.225 foxr 2122: my $passfilename = &password_path($udom, $uname);
2123: if ($passfilename) { # Not allowed to create a new user!!
1.287 foxr 2124: # If just changing the unix passwd. need to arrange to run
1.489.2.8 raeburn 2125: # passwd since otherwise make_passwd_file will fail as
2126: # creation of unix authenticated users is no longer supported
2127: # except from the command line, when running make_domain_coordinator.pl
1.287 foxr 2128:
2129: if(($oldauth =~/^unix/) && ($umode eq "unix")) {
2130: my $result = &change_unix_password($uname, $npass);
2131: &logthis("Result of password change for $uname: ".$result);
2132: if ($result eq "ok") {
1.390 raeburn 2133: &Reply($client, \$result);
1.288 albertel 2134: } else {
1.387 albertel 2135: &Failure($client, \$result);
1.287 foxr 2136: }
1.288 albertel 2137: } else {
1.483 www 2138: my $result=&make_passwd_file($uname,$udom,$umode,$npass,$passfilename);
1.287 foxr 2139: #
2140: # If the current auth mode is internal, and the old auth mode was
2141: # unix, or krb*, and the user is an author for this domain,
2142: # re-run manage_permissions for that role in order to be able
2143: # to take ownership of the construction space back to www:www
2144: #
1.489.2.8 raeburn 2145:
2146:
1.387 albertel 2147: &Reply($client, \$result, $userinput);
1.261 foxr 2148: }
2149:
2150:
1.225 foxr 2151: } else {
1.251 foxr 2152: &Failure($client, "non_authorized\n", $userinput); # Fail the user now.
1.225 foxr 2153: }
2154: }
2155: return 1;
2156: }
2157: ®ister_handler("changeuserauth", \&change_authentication_handler, 1,1, 0);
2158:
2159: #
2160: # Determines if this is the home server for a user. The home server
2161: # for a user will have his/her lon-capa passwd file. Therefore all we need
2162: # to do is determine if this file exists.
2163: #
2164: # Parameters:
2165: # $cmd - The command that got us here.
2166: # $tail - Tail of the command (remaining parameters).
2167: # $client - File descriptor connected to client.
2168: # Returns
2169: # 0 - Requested to exit, caller should shut down.
2170: # 1 - Continue processing.
2171: # Implicit inputs:
2172: # The authentication systems describe above have their own forms of implicit
2173: # input into the authentication process that are described above.
2174: #
2175: sub is_home_handler {
2176: my ($cmd, $tail, $client) = @_;
2177:
2178: my $userinput = "$cmd:$tail";
2179:
2180: my ($udom,$uname)=split(/:/,$tail);
2181: chomp($uname);
2182: my $passfile = &password_filename($udom, $uname);
2183: if($passfile) {
2184: &Reply( $client, "found\n", $userinput);
2185: } else {
2186: &Failure($client, "not_found\n", $userinput);
2187: }
2188: return 1;
2189: }
2190: ®ister_handler("home", \&is_home_handler, 0,1,0);
2191:
2192: #
1.434 www 2193: # Process an update request for a resource.
2194: # A resource has been modified that we hold a subscription to.
1.225 foxr 2195: # If the resource is not local, then we must update, or at least invalidate our
2196: # cached copy of the resource.
2197: # Parameters:
2198: # $cmd - The command that got us here.
2199: # $tail - Tail of the command (remaining parameters).
2200: # $client - File descriptor connected to client.
2201: # Returns
2202: # 0 - Requested to exit, caller should shut down.
2203: # 1 - Continue processing.
2204: # Implicit inputs:
2205: # The authentication systems describe above have their own forms of implicit
2206: # input into the authentication process that are described above.
2207: #
2208: sub update_resource_handler {
2209:
2210: my ($cmd, $tail, $client) = @_;
2211:
2212: my $userinput = "$cmd:$tail";
2213:
2214: my $fname= $tail; # This allows interactive testing
2215:
2216:
2217: my $ownership=ishome($fname);
2218: if ($ownership eq 'not_owner') {
2219: if (-e $fname) {
1.434 www 2220: # Delete preview file, if exists
2221: unlink("$fname.tmp");
2222: # Get usage stats
1.225 foxr 2223: my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
2224: $atime,$mtime,$ctime,$blksize,$blocks)=stat($fname);
2225: my $now=time;
2226: my $since=$now-$atime;
1.434 www 2227: # If the file has not been used within lonExpire seconds,
2228: # unsubscribe from it and delete local copy
1.225 foxr 2229: if ($since>$perlvar{'lonExpire'}) {
1.365 albertel 2230: my $reply=&Apache::lonnet::reply("unsub:$fname","$clientname");
1.308 albertel 2231: &devalidate_meta_cache($fname);
1.225 foxr 2232: unlink("$fname");
1.334 albertel 2233: unlink("$fname.meta");
1.225 foxr 2234: } else {
1.434 www 2235: # Yes, this is in active use. Get a fresh copy. Since it might be in
2236: # very active use and huge (like a movie), copy it to "in.transfer" filename first.
1.225 foxr 2237: my $transname="$fname.in.transfer";
1.365 albertel 2238: my $remoteurl=&Apache::lonnet::reply("sub:$fname","$clientname");
1.225 foxr 2239: my $response;
1.455 www 2240: # FIXME: cannot replicate files that take more than two minutes to transfer?
2241: # alarm(120);
2242: # FIXME: this should use the LWP mechanism, not internal alarms.
2243: alarm(1200);
1.225 foxr 2244: {
2245: my $ua=new LWP::UserAgent;
2246: my $request=new HTTP::Request('GET',"$remoteurl");
2247: $response=$ua->request($request,$transname);
2248: }
2249: alarm(0);
2250: if ($response->is_error()) {
1.455 www 2251: # FIXME: we should probably clean up here instead of just whine
1.225 foxr 2252: unlink($transname);
2253: my $message=$response->status_line;
2254: &logthis("LWP GET: $message for $fname ($remoteurl)");
2255: } else {
2256: if ($remoteurl!~/\.meta$/) {
1.455 www 2257: # FIXME: isn't there an internal LWP mechanism for this?
1.225 foxr 2258: alarm(120);
2259: {
2260: my $ua=new LWP::UserAgent;
2261: my $mrequest=new HTTP::Request('GET',$remoteurl.'.meta');
2262: my $mresponse=$ua->request($mrequest,$fname.'.meta');
2263: if ($mresponse->is_error()) {
2264: unlink($fname.'.meta');
2265: }
2266: }
2267: alarm(0);
2268: }
1.434 www 2269: # we successfully transfered, copy file over to real name
1.225 foxr 2270: rename($transname,$fname);
1.308 albertel 2271: &devalidate_meta_cache($fname);
1.225 foxr 2272: }
2273: }
2274: &Reply( $client, "ok\n", $userinput);
2275: } else {
2276: &Failure($client, "not_found\n", $userinput);
2277: }
2278: } else {
2279: &Failure($client, "rejected\n", $userinput);
2280: }
2281: return 1;
2282: }
2283: ®ister_handler("update", \&update_resource_handler, 0 ,1, 0);
2284:
1.308 albertel 2285: sub devalidate_meta_cache {
2286: my ($url) = @_;
2287: use Cache::Memcached;
2288: my $memcache = new Cache::Memcached({'servers'=>['127.0.0.1:11211']});
1.365 albertel 2289: $url = &Apache::lonnet::declutter($url);
1.308 albertel 2290: $url =~ s-\.meta$--;
2291: my $id = &escape('meta:'.$url);
2292: $memcache->delete($id);
2293: }
2294:
1.225 foxr 2295: #
1.226 foxr 2296: # Fetch a user file from a remote server to the user's home directory
2297: # userfiles subdir.
1.225 foxr 2298: # Parameters:
2299: # $cmd - The command that got us here.
2300: # $tail - Tail of the command (remaining parameters).
2301: # $client - File descriptor connected to client.
2302: # Returns
2303: # 0 - Requested to exit, caller should shut down.
2304: # 1 - Continue processing.
2305: #
2306: sub fetch_user_file_handler {
2307:
2308: my ($cmd, $tail, $client) = @_;
2309:
2310: my $userinput = "$cmd:$tail";
2311: my $fname = $tail;
1.232 foxr 2312: my ($udom,$uname,$ufile) = ($fname =~ m|^([^/]+)/([^/]+)/(.+)$|);
1.225 foxr 2313: my $udir=&propath($udom,$uname).'/userfiles';
2314: unless (-e $udir) {
2315: mkdir($udir,0770);
2316: }
1.232 foxr 2317: Debug("fetch user file for $fname");
1.225 foxr 2318: if (-e $udir) {
2319: $ufile=~s/^[\.\~]+//;
1.232 foxr 2320:
2321: # IF necessary, create the path right down to the file.
2322: # Note that any regular files in the way of this path are
2323: # wiped out to deal with some earlier folly of mine.
2324:
1.267 raeburn 2325: if (!&mkpath($udir.'/'.$ufile)) {
1.264 albertel 2326: &Failure($client, "unable_to_create\n", $userinput);
1.232 foxr 2327: }
2328:
1.225 foxr 2329: my $destname=$udir.'/'.$ufile;
2330: my $transname=$udir.'/'.$ufile.'.in.transit';
1.476 raeburn 2331: my $clientprotocol=$Apache::lonnet::protocol{$clientname};
2332: $clientprotocol = 'http' if ($clientprotocol ne 'https');
1.486 raeburn 2333: my $clienthost = &Apache::lonnet::hostname($clientname);
2334: my $remoteurl=$clientprotocol.'://'.$clienthost.'/userfiles/'.$fname;
1.225 foxr 2335: my $response;
1.232 foxr 2336: Debug("Remote URL : $remoteurl Transfername $transname Destname: $destname");
1.225 foxr 2337: alarm(120);
2338: {
2339: my $ua=new LWP::UserAgent;
2340: my $request=new HTTP::Request('GET',"$remoteurl");
2341: $response=$ua->request($request,$transname);
2342: }
2343: alarm(0);
2344: if ($response->is_error()) {
2345: unlink($transname);
2346: my $message=$response->status_line;
2347: &logthis("LWP GET: $message for $fname ($remoteurl)");
2348: &Failure($client, "failed\n", $userinput);
2349: } else {
1.232 foxr 2350: Debug("Renaming $transname to $destname");
1.225 foxr 2351: if (!rename($transname,$destname)) {
2352: &logthis("Unable to move $transname to $destname");
2353: unlink($transname);
2354: &Failure($client, "failed\n", $userinput);
2355: } else {
1.489.2.2 raeburn 2356: if ($fname =~ /^default.+\.(page|sequence)$/) {
2357: my ($major,$minor) = split(/\./,$clientversion);
2358: if (($major < 2) || ($major == 2 && $minor < 11)) {
2359: my $now = time;
2360: &Apache::lonnet::do_cache_new('crschange',$udom.'_'.$uname,$now,600);
2361: my $key = &escape('internal.contentchange');
2362: my $what = "$key=$now";
2363: my $hashref = &tie_user_hash($udom,$uname,'environment',
2364: &GDBM_WRCREAT(),"P",$what);
2365: if ($hashref) {
2366: $hashref->{$key}=$now;
2367: if (!&untie_user_hash($hashref)) {
2368: &logthis("error: ".($!+0)." untie (GDBM) failed ".
2369: "when updating internal.contentchange");
2370: }
2371: }
2372: }
2373: }
1.225 foxr 2374: &Reply($client, "ok\n", $userinput);
2375: }
2376: }
2377: } else {
2378: &Failure($client, "not_home\n", $userinput);
2379: }
2380: return 1;
2381: }
2382: ®ister_handler("fetchuserfile", \&fetch_user_file_handler, 0, 1, 0);
2383:
1.226 foxr 2384: #
2385: # Remove a file from a user's home directory userfiles subdirectory.
2386: # Parameters:
2387: # cmd - the Lond request keyword that got us here.
2388: # tail - the part of the command past the keyword.
2389: # client- File descriptor connected with the client.
2390: #
2391: # Returns:
2392: # 1 - Continue processing.
2393: sub remove_user_file_handler {
2394: my ($cmd, $tail, $client) = @_;
2395:
2396: my ($fname) = split(/:/, $tail); # Get rid of any tailing :'s lonc may have sent.
2397:
2398: my ($udom,$uname,$ufile) = ($fname =~ m|^([^/]+)/([^/]+)/(.+)$|);
2399: if ($ufile =~m|/\.\./|) {
2400: # any files paths with /../ in them refuse
2401: # to deal with
2402: &Failure($client, "refused\n", "$cmd:$tail");
2403: } else {
2404: my $udir = &propath($udom,$uname);
2405: if (-e $udir) {
2406: my $file=$udir.'/userfiles/'.$ufile;
2407: if (-e $file) {
1.253 foxr 2408: #
2409: # If the file is a regular file unlink is fine...
2410: # However it's possible the client wants a dir.
2411: # removed, in which case rmdir is more approprate:
2412: #
1.240 banghart 2413: if (-f $file){
1.241 albertel 2414: unlink($file);
2415: } elsif(-d $file) {
2416: rmdir($file);
1.240 banghart 2417: }
1.226 foxr 2418: if (-e $file) {
1.253 foxr 2419: # File is still there after we deleted it ?!?
2420:
1.226 foxr 2421: &Failure($client, "failed\n", "$cmd:$tail");
2422: } else {
2423: &Reply($client, "ok\n", "$cmd:$tail");
2424: }
2425: } else {
2426: &Failure($client, "not_found\n", "$cmd:$tail");
2427: }
2428: } else {
2429: &Failure($client, "not_home\n", "$cmd:$tail");
2430: }
2431: }
2432: return 1;
2433: }
2434: ®ister_handler("removeuserfile", \&remove_user_file_handler, 0,1,0);
2435:
1.236 albertel 2436: #
2437: # make a directory in a user's home directory userfiles subdirectory.
2438: # Parameters:
2439: # cmd - the Lond request keyword that got us here.
2440: # tail - the part of the command past the keyword.
2441: # client- File descriptor connected with the client.
2442: #
2443: # Returns:
2444: # 1 - Continue processing.
2445: sub mkdir_user_file_handler {
2446: my ($cmd, $tail, $client) = @_;
2447:
2448: my ($dir) = split(/:/, $tail); # Get rid of any tailing :'s lonc may have sent.
2449: $dir=&unescape($dir);
2450: my ($udom,$uname,$ufile) = ($dir =~ m|^([^/]+)/([^/]+)/(.+)$|);
2451: if ($ufile =~m|/\.\./|) {
2452: # any files paths with /../ in them refuse
2453: # to deal with
2454: &Failure($client, "refused\n", "$cmd:$tail");
2455: } else {
2456: my $udir = &propath($udom,$uname);
2457: if (-e $udir) {
1.264 albertel 2458: my $newdir=$udir.'/userfiles/'.$ufile.'/';
2459: if (!&mkpath($newdir)) {
2460: &Failure($client, "failed\n", "$cmd:$tail");
1.236 albertel 2461: }
1.264 albertel 2462: &Reply($client, "ok\n", "$cmd:$tail");
1.236 albertel 2463: } else {
2464: &Failure($client, "not_home\n", "$cmd:$tail");
2465: }
2466: }
2467: return 1;
2468: }
2469: ®ister_handler("mkdiruserfile", \&mkdir_user_file_handler, 0,1,0);
2470:
1.237 albertel 2471: #
2472: # rename a file in a user's home directory userfiles subdirectory.
2473: # Parameters:
2474: # cmd - the Lond request keyword that got us here.
2475: # tail - the part of the command past the keyword.
2476: # client- File descriptor connected with the client.
2477: #
2478: # Returns:
2479: # 1 - Continue processing.
2480: sub rename_user_file_handler {
2481: my ($cmd, $tail, $client) = @_;
2482:
2483: my ($udom,$uname,$old,$new) = split(/:/, $tail);
2484: $old=&unescape($old);
2485: $new=&unescape($new);
2486: if ($new =~m|/\.\./| || $old =~m|/\.\./|) {
2487: # any files paths with /../ in them refuse to deal with
2488: &Failure($client, "refused\n", "$cmd:$tail");
2489: } else {
2490: my $udir = &propath($udom,$uname);
2491: if (-e $udir) {
2492: my $oldfile=$udir.'/userfiles/'.$old;
2493: my $newfile=$udir.'/userfiles/'.$new;
2494: if (-e $newfile) {
2495: &Failure($client, "exists\n", "$cmd:$tail");
2496: } elsif (! -e $oldfile) {
2497: &Failure($client, "not_found\n", "$cmd:$tail");
2498: } else {
2499: if (!rename($oldfile,$newfile)) {
2500: &Failure($client, "failed\n", "$cmd:$tail");
2501: } else {
2502: &Reply($client, "ok\n", "$cmd:$tail");
2503: }
2504: }
2505: } else {
2506: &Failure($client, "not_home\n", "$cmd:$tail");
2507: }
2508: }
2509: return 1;
2510: }
2511: ®ister_handler("renameuserfile", \&rename_user_file_handler, 0,1,0);
2512:
1.227 foxr 2513: #
1.382 albertel 2514: # Checks if the specified user has an active session on the server
2515: # return ok if so, not_found if not
2516: #
2517: # Parameters:
2518: # cmd - The request keyword that dispatched to tus.
2519: # tail - The tail of the request (colon separated parameters).
2520: # client - Filehandle open on the client.
2521: # Return:
2522: # 1.
2523: sub user_has_session_handler {
2524: my ($cmd, $tail, $client) = @_;
2525:
2526: my ($udom, $uname) = map { &unescape($_) } (split(/:/, $tail));
2527:
2528: opendir(DIR,$perlvar{'lonIDsDir'});
2529: my $filename;
2530: while ($filename=readdir(DIR)) {
2531: last if ($filename=~/^\Q$uname\E_\d+_\Q$udom\E_/);
2532: }
2533: if ($filename) {
2534: &Reply($client, "ok\n", "$cmd:$tail");
2535: } else {
2536: &Failure($client, "not_found\n", "$cmd:$tail");
2537: }
2538: return 1;
2539:
2540: }
2541: ®ister_handler("userhassession", \&user_has_session_handler, 0,1,0);
2542:
2543: #
1.263 albertel 2544: # Authenticate access to a user file by checking that the token the user's
2545: # passed also exists in their session file
1.227 foxr 2546: #
2547: # Parameters:
2548: # cmd - The request keyword that dispatched to tus.
2549: # tail - The tail of the request (colon separated parameters).
2550: # client - Filehandle open on the client.
2551: # Return:
2552: # 1.
2553: sub token_auth_user_file_handler {
2554: my ($cmd, $tail, $client) = @_;
2555:
2556: my ($fname, $session) = split(/:/, $tail);
2557:
2558: chomp($session);
1.393 raeburn 2559: my $reply="non_auth";
1.343 albertel 2560: my $file = $perlvar{'lonIDsDir'}.'/'.$session.'.id';
2561: if (open(ENVIN,"$file")) {
1.332 albertel 2562: flock(ENVIN,LOCK_SH);
1.343 albertel 2563: tie(my %disk_env,'GDBM_File',"$file",&GDBM_READER(),0640);
2564: if (exists($disk_env{"userfile.$fname"})) {
1.393 raeburn 2565: $reply="ok";
1.343 albertel 2566: } else {
2567: foreach my $envname (keys(%disk_env)) {
2568: if ($envname=~ m|^userfile\.\Q$fname\E|) {
1.393 raeburn 2569: $reply="ok";
1.343 albertel 2570: last;
2571: }
2572: }
1.227 foxr 2573: }
1.343 albertel 2574: untie(%disk_env);
1.227 foxr 2575: close(ENVIN);
1.387 albertel 2576: &Reply($client, \$reply, "$cmd:$tail");
1.227 foxr 2577: } else {
2578: &Failure($client, "invalid_token\n", "$cmd:$tail");
2579: }
2580: return 1;
2581:
2582: }
2583: ®ister_handler("tokenauthuserfile", \&token_auth_user_file_handler, 0,1,0);
1.229 foxr 2584:
2585: #
2586: # Unsubscribe from a resource.
2587: #
2588: # Parameters:
2589: # $cmd - The command that got us here.
2590: # $tail - Tail of the command (remaining parameters).
2591: # $client - File descriptor connected to client.
2592: # Returns
2593: # 0 - Requested to exit, caller should shut down.
2594: # 1 - Continue processing.
2595: #
2596: sub unsubscribe_handler {
2597: my ($cmd, $tail, $client) = @_;
2598:
2599: my $userinput= "$cmd:$tail";
2600:
2601: my ($fname) = split(/:/,$tail); # Split in case there's extrs.
2602:
2603: &Debug("Unsubscribing $fname");
2604: if (-e $fname) {
2605: &Debug("Exists");
2606: &Reply($client, &unsub($fname,$clientip), $userinput);
2607: } else {
2608: &Failure($client, "not_found\n", $userinput);
2609: }
2610: return 1;
2611: }
2612: ®ister_handler("unsub", \&unsubscribe_handler, 0, 1, 0);
1.263 albertel 2613:
1.230 foxr 2614: # Subscribe to a resource
2615: #
2616: # Parameters:
2617: # $cmd - The command that got us here.
2618: # $tail - Tail of the command (remaining parameters).
2619: # $client - File descriptor connected to client.
2620: # Returns
2621: # 0 - Requested to exit, caller should shut down.
2622: # 1 - Continue processing.
2623: #
2624: sub subscribe_handler {
2625: my ($cmd, $tail, $client)= @_;
2626:
2627: my $userinput = "$cmd:$tail";
2628:
2629: &Reply( $client, &subscribe($userinput,$clientip), $userinput);
2630:
2631: return 1;
2632: }
2633: ®ister_handler("sub", \&subscribe_handler, 0, 1, 0);
2634:
2635: #
1.379 albertel 2636: # Determine the latest version of a resource (it looks for the highest
2637: # past version and then returns that +1)
1.230 foxr 2638: #
2639: # Parameters:
2640: # $cmd - The command that got us here.
2641: # $tail - Tail of the command (remaining parameters).
1.379 albertel 2642: # (Should consist of an absolute path to a file)
1.230 foxr 2643: # $client - File descriptor connected to client.
2644: # Returns
2645: # 0 - Requested to exit, caller should shut down.
2646: # 1 - Continue processing.
2647: #
2648: sub current_version_handler {
2649: my ($cmd, $tail, $client) = @_;
2650:
2651: my $userinput= "$cmd:$tail";
2652:
2653: my $fname = $tail;
2654: &Reply( $client, ¤tversion($fname)."\n", $userinput);
2655: return 1;
2656:
2657: }
2658: ®ister_handler("currentversion", \¤t_version_handler, 0, 1, 0);
2659:
2660: # Make an entry in a user's activity log.
2661: #
2662: # Parameters:
2663: # $cmd - The command that got us here.
2664: # $tail - Tail of the command (remaining parameters).
2665: # $client - File descriptor connected to client.
2666: # Returns
2667: # 0 - Requested to exit, caller should shut down.
2668: # 1 - Continue processing.
2669: #
2670: sub activity_log_handler {
2671: my ($cmd, $tail, $client) = @_;
2672:
2673:
2674: my $userinput= "$cmd:$tail";
2675:
2676: my ($udom,$uname,$what)=split(/:/,$tail);
2677: chomp($what);
2678: my $proname=&propath($udom,$uname);
2679: my $now=time;
2680: my $hfh;
2681: if ($hfh=IO::File->new(">>$proname/activity.log")) {
2682: print $hfh "$now:$clientname:$what\n";
2683: &Reply( $client, "ok\n", $userinput);
2684: } else {
2685: &Failure($client, "error: ".($!+0)." IO::File->new Failed "
2686: ."while attempting log\n",
2687: $userinput);
2688: }
2689:
2690: return 1;
2691: }
1.263 albertel 2692: ®ister_handler("log", \&activity_log_handler, 0, 1, 0);
1.230 foxr 2693:
2694: #
2695: # Put a namespace entry in a user profile hash.
2696: # My druthers would be for this to be an encrypted interaction too.
2697: # anything that might be an inadvertent covert channel about either
2698: # user authentication or user personal information....
2699: #
2700: # Parameters:
2701: # $cmd - The command that got us here.
2702: # $tail - Tail of the command (remaining parameters).
2703: # $client - File descriptor connected to client.
2704: # Returns
2705: # 0 - Requested to exit, caller should shut down.
2706: # 1 - Continue processing.
2707: #
2708: sub put_user_profile_entry {
2709: my ($cmd, $tail, $client) = @_;
1.229 foxr 2710:
1.230 foxr 2711: my $userinput = "$cmd:$tail";
2712:
1.242 raeburn 2713: my ($udom,$uname,$namespace,$what) =split(/:/,$tail,4);
1.230 foxr 2714: if ($namespace ne 'roles') {
2715: chomp($what);
2716: my $hashref = &tie_user_hash($udom, $uname, $namespace,
2717: &GDBM_WRCREAT(),"P",$what);
2718: if($hashref) {
2719: my @pairs=split(/\&/,$what);
2720: foreach my $pair (@pairs) {
2721: my ($key,$value)=split(/=/,$pair);
2722: $hashref->{$key}=$value;
2723: }
1.311 albertel 2724: if (&untie_user_hash($hashref)) {
1.230 foxr 2725: &Reply( $client, "ok\n", $userinput);
2726: } else {
2727: &Failure($client, "error: ".($!+0)." untie(GDBM) failed ".
2728: "while attempting put\n",
2729: $userinput);
2730: }
2731: } else {
1.316 albertel 2732: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
1.230 foxr 2733: "while attempting put\n", $userinput);
2734: }
2735: } else {
2736: &Failure( $client, "refused\n", $userinput);
2737: }
2738:
2739: return 1;
2740: }
2741: ®ister_handler("put", \&put_user_profile_entry, 0, 1, 0);
2742:
1.283 albertel 2743: # Put a piece of new data in hash, returns error if entry already exists
2744: # Parameters:
2745: # $cmd - The command that got us here.
2746: # $tail - Tail of the command (remaining parameters).
2747: # $client - File descriptor connected to client.
2748: # Returns
2749: # 0 - Requested to exit, caller should shut down.
2750: # 1 - Continue processing.
2751: #
2752: sub newput_user_profile_entry {
2753: my ($cmd, $tail, $client) = @_;
2754:
2755: my $userinput = "$cmd:$tail";
2756:
2757: my ($udom,$uname,$namespace,$what) =split(/:/,$tail,4);
2758: if ($namespace eq 'roles') {
2759: &Failure( $client, "refused\n", $userinput);
2760: return 1;
2761: }
2762:
2763: chomp($what);
2764:
2765: my $hashref = &tie_user_hash($udom, $uname, $namespace,
2766: &GDBM_WRCREAT(),"N",$what);
2767: if(!$hashref) {
1.316 albertel 2768: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
1.283 albertel 2769: "while attempting put\n", $userinput);
2770: return 1;
2771: }
2772:
2773: my @pairs=split(/\&/,$what);
2774: foreach my $pair (@pairs) {
2775: my ($key,$value)=split(/=/,$pair);
2776: if (exists($hashref->{$key})) {
2777: &Failure($client, "key_exists: ".$key."\n",$userinput);
2778: return 1;
2779: }
2780: }
2781:
2782: foreach my $pair (@pairs) {
2783: my ($key,$value)=split(/=/,$pair);
2784: $hashref->{$key}=$value;
2785: }
2786:
1.311 albertel 2787: if (&untie_user_hash($hashref)) {
1.283 albertel 2788: &Reply( $client, "ok\n", $userinput);
2789: } else {
2790: &Failure($client, "error: ".($!+0)." untie(GDBM) failed ".
2791: "while attempting put\n",
2792: $userinput);
2793: }
2794: return 1;
2795: }
2796: ®ister_handler("newput", \&newput_user_profile_entry, 0, 1, 0);
2797:
1.230 foxr 2798: #
2799: # Increment a profile entry in the user history file.
2800: # The history contains keyword value pairs. In this case,
2801: # The value itself is a pair of numbers. The first, the current value
2802: # the second an increment that this function applies to the current
2803: # value.
2804: #
2805: # Parameters:
2806: # $cmd - The command that got us here.
2807: # $tail - Tail of the command (remaining parameters).
2808: # $client - File descriptor connected to client.
2809: # Returns
2810: # 0 - Requested to exit, caller should shut down.
2811: # 1 - Continue processing.
2812: #
2813: sub increment_user_value_handler {
2814: my ($cmd, $tail, $client) = @_;
2815:
2816: my $userinput = "$cmd:$tail";
2817:
2818: my ($udom,$uname,$namespace,$what) =split(/:/,$tail);
2819: if ($namespace ne 'roles') {
2820: chomp($what);
2821: my $hashref = &tie_user_hash($udom, $uname,
2822: $namespace, &GDBM_WRCREAT(),
2823: "P",$what);
2824: if ($hashref) {
2825: my @pairs=split(/\&/,$what);
2826: foreach my $pair (@pairs) {
2827: my ($key,$value)=split(/=/,$pair);
1.284 raeburn 2828: $value = &unescape($value);
1.230 foxr 2829: # We could check that we have a number...
2830: if (! defined($value) || $value eq '') {
2831: $value = 1;
2832: }
2833: $hashref->{$key}+=$value;
1.284 raeburn 2834: if ($namespace eq 'nohist_resourcetracker') {
2835: if ($hashref->{$key} < 0) {
2836: $hashref->{$key} = 0;
2837: }
2838: }
1.230 foxr 2839: }
1.311 albertel 2840: if (&untie_user_hash($hashref)) {
1.230 foxr 2841: &Reply( $client, "ok\n", $userinput);
2842: } else {
2843: &Failure($client, "error: ".($!+0)." untie(GDBM) failed ".
2844: "while attempting inc\n", $userinput);
2845: }
2846: } else {
2847: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
2848: "while attempting inc\n", $userinput);
2849: }
2850: } else {
2851: &Failure($client, "refused\n", $userinput);
2852: }
2853:
2854: return 1;
2855: }
2856: ®ister_handler("inc", \&increment_user_value_handler, 0, 1, 0);
2857:
2858: #
2859: # Put a new role for a user. Roles are LonCAPA's packaging of permissions.
2860: # Each 'role' a user has implies a set of permissions. Adding a new role
2861: # for a person grants the permissions packaged with that role
2862: # to that user when the role is selected.
2863: #
2864: # Parameters:
2865: # $cmd - The command string (rolesput).
2866: # $tail - The remainder of the request line. For rolesput this
2867: # consists of a colon separated list that contains:
2868: # The domain and user that is granting the role (logged).
2869: # The domain and user that is getting the role.
2870: # The roles being granted as a set of & separated pairs.
2871: # each pair a key value pair.
2872: # $client - File descriptor connected to the client.
2873: # Returns:
2874: # 0 - If the daemon should exit
2875: # 1 - To continue processing.
2876: #
2877: #
2878: sub roles_put_handler {
2879: my ($cmd, $tail, $client) = @_;
2880:
2881: my $userinput = "$cmd:$tail";
2882:
2883: my ( $exedom, $exeuser, $udom, $uname, $what) = split(/:/,$tail);
2884:
2885:
2886: my $namespace='roles';
2887: chomp($what);
2888: my $hashref = &tie_user_hash($udom, $uname, $namespace,
2889: &GDBM_WRCREAT(), "P",
2890: "$exedom:$exeuser:$what");
2891: #
2892: # Log the attempt to set a role. The {}'s here ensure that the file
2893: # handle is open for the minimal amount of time. Since the flush
2894: # is done on close this improves the chances the log will be an un-
2895: # corrupted ordered thing.
2896: if ($hashref) {
1.261 foxr 2897: my $pass_entry = &get_auth_type($udom, $uname);
2898: my ($auth_type,$pwd) = split(/:/, $pass_entry);
2899: $auth_type = $auth_type.":";
1.230 foxr 2900: my @pairs=split(/\&/,$what);
2901: foreach my $pair (@pairs) {
2902: my ($key,$value)=split(/=/,$pair);
2903: &manage_permissions($key, $udom, $uname,
1.260 foxr 2904: $auth_type);
1.230 foxr 2905: $hashref->{$key}=$value;
2906: }
1.311 albertel 2907: if (&untie_user_hash($hashref)) {
1.230 foxr 2908: &Reply($client, "ok\n", $userinput);
2909: } else {
2910: &Failure( $client, "error: ".($!+0)." untie(GDBM) Failed ".
2911: "while attempting rolesput\n", $userinput);
2912: }
2913: } else {
2914: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
2915: "while attempting rolesput\n", $userinput);
2916: }
2917: return 1;
2918: }
2919: ®ister_handler("rolesput", \&roles_put_handler, 1,1,0); # Encoded client only.
2920:
2921: #
1.231 foxr 2922: # Deletes (removes) a role for a user. This is equivalent to removing
2923: # a permissions package associated with the role from the user's profile.
2924: #
2925: # Parameters:
2926: # $cmd - The command (rolesdel)
2927: # $tail - The remainder of the request line. This consists
2928: # of:
2929: # The domain and user requesting the change (logged)
2930: # The domain and user being changed.
2931: # The roles being revoked. These are shipped to us
2932: # as a bunch of & separated role name keywords.
2933: # $client - The file handle open on the client.
2934: # Returns:
2935: # 1 - Continue processing
2936: # 0 - Exit.
2937: #
2938: sub roles_delete_handler {
2939: my ($cmd, $tail, $client) = @_;
2940:
2941: my $userinput = "$cmd:$tail";
2942:
2943: my ($exedom,$exeuser,$udom,$uname,$what)=split(/:/,$tail);
2944: &Debug("cmd = ".$cmd." exedom= ".$exedom."user = ".$exeuser." udom=".$udom.
2945: "what = ".$what);
2946: my $namespace='roles';
2947: chomp($what);
2948: my $hashref = &tie_user_hash($udom, $uname, $namespace,
2949: &GDBM_WRCREAT(), "D",
2950: "$exedom:$exeuser:$what");
2951:
2952: if ($hashref) {
2953: my @rolekeys=split(/\&/,$what);
2954:
2955: foreach my $key (@rolekeys) {
2956: delete $hashref->{$key};
2957: }
1.315 albertel 2958: if (&untie_user_hash($hashref)) {
1.231 foxr 2959: &Reply($client, "ok\n", $userinput);
2960: } else {
2961: &Failure( $client, "error: ".($!+0)." untie(GDBM) Failed ".
2962: "while attempting rolesdel\n", $userinput);
2963: }
2964: } else {
2965: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
2966: "while attempting rolesdel\n", $userinput);
2967: }
2968:
2969: return 1;
2970: }
2971: ®ister_handler("rolesdel", \&roles_delete_handler, 1,1, 0); # Encoded client only
2972:
2973: # Unencrypted get from a user's profile database. See
2974: # GetProfileEntryEncrypted for a version that does end-to-end encryption.
2975: # This function retrieves a keyed item from a specific named database in the
2976: # user's directory.
2977: #
2978: # Parameters:
2979: # $cmd - Command request keyword (get).
2980: # $tail - Tail of the command. This is a colon separated list
2981: # consisting of the domain and username that uniquely
2982: # identifies the profile,
2983: # The 'namespace' which selects the gdbm file to
2984: # do the lookup in,
2985: # & separated list of keys to lookup. Note that
2986: # the values are returned as an & separated list too.
2987: # $client - File descriptor open on the client.
2988: # Returns:
2989: # 1 - Continue processing.
2990: # 0 - Exit.
2991: #
2992: sub get_profile_entry {
2993: my ($cmd, $tail, $client) = @_;
2994:
2995: my $userinput= "$cmd:$tail";
2996:
2997: my ($udom,$uname,$namespace,$what) = split(/:/,$tail);
2998: chomp($what);
1.255 foxr 2999:
1.390 raeburn 3000:
1.255 foxr 3001: my $replystring = read_profile($udom, $uname, $namespace, $what);
3002: my ($first) = split(/:/,$replystring);
3003: if($first ne "error") {
1.387 albertel 3004: &Reply($client, \$replystring, $userinput);
1.231 foxr 3005: } else {
1.255 foxr 3006: &Failure($client, $replystring." while attempting get\n", $userinput);
1.231 foxr 3007: }
3008: return 1;
1.255 foxr 3009:
3010:
1.231 foxr 3011: }
3012: ®ister_handler("get", \&get_profile_entry, 0,1,0);
3013:
3014: #
3015: # Process the encrypted get request. Note that the request is sent
3016: # in clear, but the reply is encrypted. This is a small covert channel:
3017: # information about the sensitive keys is given to the snooper. Just not
3018: # information about the values of the sensitive key. Hmm if I wanted to
3019: # know these I'd snoop for the egets. Get the profile item names from them
3020: # and then issue a get for them since there's no enforcement of the
3021: # requirement of an encrypted get for particular profile items. If I
3022: # were re-doing this, I'd force the request to be encrypted as well as the
3023: # reply. I'd also just enforce encrypted transactions for all gets since
3024: # that would prevent any covert channel snooping.
3025: #
3026: # Parameters:
3027: # $cmd - Command keyword of request (eget).
3028: # $tail - Tail of the command. See GetProfileEntry
# for more information about this.
3029: # $client - File open on the client.
3030: # Returns:
3031: # 1 - Continue processing
3032: # 0 - server should exit.
3033: sub get_profile_entry_encrypted {
3034: my ($cmd, $tail, $client) = @_;
3035:
3036: my $userinput = "$cmd:$tail";
3037:
1.339 albertel 3038: my ($udom,$uname,$namespace,$what) = split(/:/,$tail);
1.231 foxr 3039: chomp($what);
1.255 foxr 3040: my $qresult = read_profile($udom, $uname, $namespace, $what);
3041: my ($first) = split(/:/, $qresult);
3042: if($first ne "error") {
3043:
3044: if ($cipher) {
3045: my $cmdlength=length($qresult);
3046: $qresult.=" ";
3047: my $encqresult='';
3048: for(my $encidx=0;$encidx<=$cmdlength;$encidx+=8) {
3049: $encqresult.= unpack("H16",
3050: $cipher->encrypt(substr($qresult,
3051: $encidx,
3052: 8)));
3053: }
3054: &Reply( $client, "enc:$cmdlength:$encqresult\n", $userinput);
3055: } else {
1.231 foxr 3056: &Failure( $client, "error:no_key\n", $userinput);
3057: }
3058: } else {
1.255 foxr 3059: &Failure($client, "$qresult while attempting eget\n", $userinput);
3060:
1.231 foxr 3061: }
3062:
3063: return 1;
3064: }
1.255 foxr 3065: ®ister_handler("eget", \&get_profile_entry_encrypted, 0, 1, 0);
1.263 albertel 3066:
1.231 foxr 3067: #
3068: # Deletes a key in a user profile database.
3069: #
3070: # Parameters:
3071: # $cmd - Command keyword (del).
3072: # $tail - Command tail. IN this case a colon
3073: # separated list containing:
3074: # The domain and user that identifies uniquely
3075: # the identity of the user.
3076: # The profile namespace (name of the profile
3077: # database file).
3078: # & separated list of keywords to delete.
3079: # $client - File open on client socket.
3080: # Returns:
3081: # 1 - Continue processing
3082: # 0 - Exit server.
3083: #
3084: #
3085: sub delete_profile_entry {
3086: my ($cmd, $tail, $client) = @_;
3087:
3088: my $userinput = "cmd:$tail";
3089:
3090: my ($udom,$uname,$namespace,$what) = split(/:/,$tail);
3091: chomp($what);
3092: my $hashref = &tie_user_hash($udom, $uname, $namespace,
3093: &GDBM_WRCREAT(),
3094: "D",$what);
3095: if ($hashref) {
3096: my @keys=split(/\&/,$what);
3097: foreach my $key (@keys) {
3098: delete($hashref->{$key});
3099: }
1.315 albertel 3100: if (&untie_user_hash($hashref)) {
1.231 foxr 3101: &Reply($client, "ok\n", $userinput);
3102: } else {
3103: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
3104: "while attempting del\n", $userinput);
3105: }
3106: } else {
3107: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
3108: "while attempting del\n", $userinput);
3109: }
3110: return 1;
3111: }
3112: ®ister_handler("del", \&delete_profile_entry, 0, 1, 0);
1.263 albertel 3113:
1.231 foxr 3114: #
3115: # List the set of keys that are defined in a profile database file.
3116: # A successful reply from this will contain an & separated list of
3117: # the keys.
3118: # Parameters:
3119: # $cmd - Command request (keys).
3120: # $tail - Remainder of the request, a colon separated
3121: # list containing domain/user that identifies the
3122: # user being queried, and the database namespace
3123: # (database filename essentially).
3124: # $client - File open on the client.
3125: # Returns:
3126: # 1 - Continue processing.
3127: # 0 - Exit the server.
3128: #
3129: sub get_profile_keys {
3130: my ($cmd, $tail, $client) = @_;
3131:
3132: my $userinput = "$cmd:$tail";
3133:
3134: my ($udom,$uname,$namespace)=split(/:/,$tail);
3135: my $qresult='';
3136: my $hashref = &tie_user_hash($udom, $uname, $namespace,
3137: &GDBM_READER());
3138: if ($hashref) {
3139: foreach my $key (keys %$hashref) {
3140: $qresult.="$key&";
3141: }
1.315 albertel 3142: if (&untie_user_hash($hashref)) {
1.231 foxr 3143: $qresult=~s/\&$//;
1.387 albertel 3144: &Reply($client, \$qresult, $userinput);
1.231 foxr 3145: } else {
3146: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
3147: "while attempting keys\n", $userinput);
3148: }
3149: } else {
3150: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
3151: "while attempting keys\n", $userinput);
3152: }
3153:
3154: return 1;
3155: }
3156: ®ister_handler("keys", \&get_profile_keys, 0, 1, 0);
3157:
3158: #
3159: # Dump the contents of a user profile database.
3160: # Note that this constitutes a very large covert channel too since
3161: # the dump will return sensitive information that is not encrypted.
3162: # The naive security assumption is that the session negotiation ensures
3163: # our client is trusted and I don't believe that's assured at present.
3164: # Sure want badly to go to ssl or tls. Of course if my peer isn't really
3165: # a LonCAPA node they could have negotiated an encryption key too so >sigh<.
3166: #
3167: # Parameters:
3168: # $cmd - The command request keyword (currentdump).
3169: # $tail - Remainder of the request, consisting of a colon
3170: # separated list that has the domain/username and
3171: # the namespace to dump (database file).
3172: # $client - file open on the remote client.
3173: # Returns:
3174: # 1 - Continue processing.
3175: # 0 - Exit the server.
3176: #
3177: sub dump_profile_database {
3178: my ($cmd, $tail, $client) = @_;
3179:
3180: my $userinput = "$cmd:$tail";
3181:
3182: my ($udom,$uname,$namespace) = split(/:/,$tail);
3183: my $hashref = &tie_user_hash($udom, $uname, $namespace,
3184: &GDBM_READER());
3185: if ($hashref) {
3186: # Structure of %data:
3187: # $data{$symb}->{$parameter}=$value;
3188: # $data{$symb}->{'v.'.$parameter}=$version;
3189: # since $parameter will be unescaped, we do not
3190: # have to worry about silly parameter names...
3191:
3192: my $qresult='';
3193: my %data = (); # A hash of anonymous hashes..
3194: while (my ($key,$value) = each(%$hashref)) {
3195: my ($v,$symb,$param) = split(/:/,$key);
3196: next if ($v eq 'version' || $symb eq 'keys');
3197: next if (exists($data{$symb}) &&
3198: exists($data{$symb}->{$param}) &&
3199: $data{$symb}->{'v.'.$param} > $v);
3200: $data{$symb}->{$param}=$value;
3201: $data{$symb}->{'v.'.$param}=$v;
3202: }
1.311 albertel 3203: if (&untie_user_hash($hashref)) {
1.231 foxr 3204: while (my ($symb,$param_hash) = each(%data)) {
3205: while(my ($param,$value) = each (%$param_hash)){
3206: next if ($param =~ /^v\./); # Ignore versions...
3207: #
3208: # Just dump the symb=value pairs separated by &
3209: #
3210: $qresult.=$symb.':'.$param.'='.$value.'&';
3211: }
3212: }
3213: chop($qresult);
1.387 albertel 3214: &Reply($client , \$qresult, $userinput);
1.231 foxr 3215: } else {
3216: &Failure( $client, "error: ".($!+0)." untie(GDBM) Failed ".
3217: "while attempting currentdump\n", $userinput);
3218: }
3219: } else {
3220: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
3221: "while attempting currentdump\n", $userinput);
3222: }
3223:
3224: return 1;
3225: }
3226: ®ister_handler("currentdump", \&dump_profile_database, 0, 1, 0);
3227:
3228: #
3229: # Dump a profile database with an optional regular expression
3230: # to match against the keys. In this dump, no effort is made
3231: # to separate symb from version information. Presumably the
3232: # databases that are dumped by this command are of a different
3233: # structure. Need to look at this and improve the documentation of
3234: # both this and the currentdump handler.
3235: # Parameters:
3236: # $cmd - The command keyword.
3237: # $tail - All of the characters after the $cmd:
3238: # These are expected to be a colon
3239: # separated list containing:
3240: # domain/user - identifying the user.
3241: # namespace - identifying the database.
3242: # regexp - optional regular expression
3243: # that is matched against
3244: # database keywords to do
3245: # selective dumps.
1.488 raeburn 3246: # range - optional range of entries
3247: # e.g., 10-20 would return the
3248: # 10th to 19th items, etc.
1.231 foxr 3249: # $client - Channel open on the client.
3250: # Returns:
3251: # 1 - Continue processing.
3252: # Side effects:
3253: # response is written to $client.
3254: #
3255: sub dump_with_regexp {
3256: my ($cmd, $tail, $client) = @_;
3257:
1.489.2.4 raeburn 3258: my $res = LONCAPA::Lond::dump_with_regexp($tail, $clientversion);
1.231 foxr 3259:
1.489.2.4 raeburn 3260: if ($res =~ /^error:/) {
3261: &Failure($client, \$res, "$cmd:$tail");
1.231 foxr 3262: } else {
1.489.2.4 raeburn 3263: &Reply($client, \$res, "$cmd:$tail");
1.231 foxr 3264: }
3265:
3266: return 1;
3267: }
3268: ®ister_handler("dump", \&dump_with_regexp, 0, 1, 0);
3269:
3270: # Store a set of key=value pairs associated with a versioned name.
3271: #
3272: # Parameters:
3273: # $cmd - Request command keyword.
3274: # $tail - Tail of the request. This is a colon
3275: # separated list containing:
3276: # domain/user - User and authentication domain.
3277: # namespace - Name of the database being modified
3278: # rid - Resource keyword to modify.
3279: # what - new value associated with rid.
3280: #
3281: # $client - Socket open on the client.
3282: #
3283: #
3284: # Returns:
3285: # 1 (keep on processing).
3286: # Side-Effects:
3287: # Writes to the client
3288: sub store_handler {
3289: my ($cmd, $tail, $client) = @_;
3290:
3291: my $userinput = "$cmd:$tail";
3292:
3293: my ($udom,$uname,$namespace,$rid,$what) =split(/:/,$tail);
3294: if ($namespace ne 'roles') {
3295:
3296: chomp($what);
3297: my @pairs=split(/\&/,$what);
3298: my $hashref = &tie_user_hash($udom, $uname, $namespace,
1.268 albertel 3299: &GDBM_WRCREAT(), "S",
1.231 foxr 3300: "$rid:$what");
3301: if ($hashref) {
3302: my $now = time;
3303: my @previouskeys=split(/&/,$hashref->{"keys:$rid"});
3304: my $key;
3305: $hashref->{"version:$rid"}++;
3306: my $version=$hashref->{"version:$rid"};
3307: my $allkeys='';
3308: foreach my $pair (@pairs) {
3309: my ($key,$value)=split(/=/,$pair);
3310: $allkeys.=$key.':';
3311: $hashref->{"$version:$rid:$key"}=$value;
3312: }
3313: $hashref->{"$version:$rid:timestamp"}=$now;
3314: $allkeys.='timestamp';
3315: $hashref->{"$version:keys:$rid"}=$allkeys;
1.311 albertel 3316: if (&untie_user_hash($hashref)) {
1.231 foxr 3317: &Reply($client, "ok\n", $userinput);
3318: } else {
3319: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
3320: "while attempting store\n", $userinput);
3321: }
3322: } else {
3323: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
3324: "while attempting store\n", $userinput);
3325: }
3326: } else {
3327: &Failure($client, "refused\n", $userinput);
3328: }
3329:
3330: return 1;
3331: }
3332: ®ister_handler("store", \&store_handler, 0, 1, 0);
1.263 albertel 3333:
1.323 albertel 3334: # Modify a set of key=value pairs associated with a versioned name.
3335: #
3336: # Parameters:
3337: # $cmd - Request command keyword.
3338: # $tail - Tail of the request. This is a colon
3339: # separated list containing:
3340: # domain/user - User and authentication domain.
3341: # namespace - Name of the database being modified
3342: # rid - Resource keyword to modify.
3343: # v - Version item to modify
3344: # what - new value associated with rid.
3345: #
3346: # $client - Socket open on the client.
3347: #
3348: #
3349: # Returns:
3350: # 1 (keep on processing).
3351: # Side-Effects:
3352: # Writes to the client
3353: sub putstore_handler {
3354: my ($cmd, $tail, $client) = @_;
3355:
3356: my $userinput = "$cmd:$tail";
3357:
3358: my ($udom,$uname,$namespace,$rid,$v,$what) =split(/:/,$tail);
3359: if ($namespace ne 'roles') {
3360:
3361: chomp($what);
3362: my $hashref = &tie_user_hash($udom, $uname, $namespace,
3363: &GDBM_WRCREAT(), "M",
3364: "$rid:$v:$what");
3365: if ($hashref) {
3366: my $now = time;
3367: my %data = &hash_extract($what);
3368: my @allkeys;
3369: while (my($key,$value) = each(%data)) {
3370: push(@allkeys,$key);
3371: $hashref->{"$v:$rid:$key"} = $value;
3372: }
3373: my $allkeys = join(':',@allkeys);
3374: $hashref->{"$v:keys:$rid"}=$allkeys;
3375:
3376: if (&untie_user_hash($hashref)) {
3377: &Reply($client, "ok\n", $userinput);
3378: } else {
3379: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
3380: "while attempting store\n", $userinput);
3381: }
3382: } else {
3383: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
3384: "while attempting store\n", $userinput);
3385: }
3386: } else {
3387: &Failure($client, "refused\n", $userinput);
3388: }
3389:
3390: return 1;
3391: }
3392: ®ister_handler("putstore", \&putstore_handler, 0, 1, 0);
3393:
3394: sub hash_extract {
3395: my ($str)=@_;
3396: my %hash;
3397: foreach my $pair (split(/\&/,$str)) {
3398: my ($key,$value)=split(/=/,$pair);
3399: $hash{$key}=$value;
3400: }
3401: return (%hash);
3402: }
3403: sub hash_to_str {
3404: my ($hash_ref)=@_;
3405: my $str;
3406: foreach my $key (keys(%$hash_ref)) {
3407: $str.=$key.'='.$hash_ref->{$key}.'&';
3408: }
3409: $str=~s/\&$//;
3410: return $str;
3411: }
3412:
1.231 foxr 3413: #
3414: # Dump out all versions of a resource that has key=value pairs associated
3415: # with it for each version. These resources are built up via the store
3416: # command.
3417: #
3418: # Parameters:
3419: # $cmd - Command keyword.
3420: # $tail - Remainder of the request which consists of:
3421: # domain/user - User and auth. domain.
3422: # namespace - name of resource database.
3423: # rid - Resource id.
3424: # $client - socket open on the client.
3425: #
3426: # Returns:
3427: # 1 indicating the caller should not yet exit.
3428: # Side-effects:
3429: # Writes a reply to the client.
3430: # The reply is a string of the following shape:
3431: # version=current&version:keys=k1:k2...&1:k1=v1&1:k2=v2...
3432: # Where the 1 above represents version 1.
3433: # this continues for all pairs of keys in all versions.
3434: #
3435: #
3436: #
3437: #
3438: sub restore_handler {
3439: my ($cmd, $tail, $client) = @_;
3440:
3441: my $userinput = "$cmd:$tail"; # Only used for logging purposes.
1.351 banghart 3442: my ($udom,$uname,$namespace,$rid) = split(/:/,$tail);
1.352 albertel 3443: $namespace=~s/\//\_/g;
1.350 albertel 3444: $namespace = &LONCAPA::clean_username($namespace);
1.349 albertel 3445:
1.231 foxr 3446: chomp($rid);
3447: my $qresult='';
1.309 albertel 3448: my $hashref = &tie_user_hash($udom, $uname, $namespace, &GDBM_READER());
3449: if ($hashref) {
3450: my $version=$hashref->{"version:$rid"};
1.231 foxr 3451: $qresult.="version=$version&";
3452: my $scope;
3453: for ($scope=1;$scope<=$version;$scope++) {
1.309 albertel 3454: my $vkeys=$hashref->{"$scope:keys:$rid"};
1.231 foxr 3455: my @keys=split(/:/,$vkeys);
3456: my $key;
3457: $qresult.="$scope:keys=$vkeys&";
3458: foreach $key (@keys) {
1.309 albertel 3459: $qresult.="$scope:$key=".$hashref->{"$scope:$rid:$key"}."&";
1.231 foxr 3460: }
3461: }
1.311 albertel 3462: if (&untie_user_hash($hashref)) {
1.231 foxr 3463: $qresult=~s/\&$//;
1.387 albertel 3464: &Reply( $client, \$qresult, $userinput);
1.231 foxr 3465: } else {
3466: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
3467: "while attempting restore\n", $userinput);
3468: }
3469: } else {
3470: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
3471: "while attempting restore\n", $userinput);
3472: }
3473:
3474: return 1;
3475:
3476:
3477: }
3478: ®ister_handler("restore", \&restore_handler, 0,1,0);
1.234 foxr 3479:
3480: #
1.324 raeburn 3481: # Add a chat message to a synchronous discussion board.
1.234 foxr 3482: #
3483: # Parameters:
3484: # $cmd - Request keyword.
3485: # $tail - Tail of the command. A colon separated list
3486: # containing:
3487: # cdom - Domain on which the chat board lives
1.324 raeburn 3488: # cnum - Course containing the chat board.
3489: # newpost - Body of the posting.
3490: # group - Optional group, if chat board is only
3491: # accessible in a group within the course
1.234 foxr 3492: # $client - Socket open on the client.
3493: # Returns:
3494: # 1 - Indicating caller should keep on processing.
3495: #
3496: # Side-effects:
3497: # writes a reply to the client.
3498: #
3499: #
3500: sub send_chat_handler {
3501: my ($cmd, $tail, $client) = @_;
3502:
3503:
3504: my $userinput = "$cmd:$tail";
3505:
1.324 raeburn 3506: my ($cdom,$cnum,$newpost,$group)=split(/\:/,$tail);
3507: &chat_add($cdom,$cnum,$newpost,$group);
1.234 foxr 3508: &Reply($client, "ok\n", $userinput);
3509:
3510: return 1;
3511: }
3512: ®ister_handler("chatsend", \&send_chat_handler, 0, 1, 0);
1.263 albertel 3513:
1.234 foxr 3514: #
1.324 raeburn 3515: # Retrieve the set of chat messages from a discussion board.
1.234 foxr 3516: #
3517: # Parameters:
3518: # $cmd - Command keyword that initiated the request.
3519: # $tail - Remainder of the request after the command
3520: # keyword. In this case a colon separated list of
3521: # chat domain - Which discussion board.
3522: # chat id - Discussion thread(?)
3523: # domain/user - Authentication domain and username
3524: # of the requesting person.
1.324 raeburn 3525: # group - Optional course group containing
3526: # the board.
1.234 foxr 3527: # $client - Socket open on the client program.
3528: # Returns:
3529: # 1 - continue processing
3530: # Side effects:
3531: # Response is written to the client.
3532: #
3533: sub retrieve_chat_handler {
3534: my ($cmd, $tail, $client) = @_;
3535:
3536:
3537: my $userinput = "$cmd:$tail";
3538:
1.324 raeburn 3539: my ($cdom,$cnum,$udom,$uname,$group)=split(/\:/,$tail);
1.234 foxr 3540: my $reply='';
1.324 raeburn 3541: foreach (&get_chat($cdom,$cnum,$udom,$uname,$group)) {
1.234 foxr 3542: $reply.=&escape($_).':';
3543: }
3544: $reply=~s/\:$//;
1.387 albertel 3545: &Reply($client, \$reply, $userinput);
1.234 foxr 3546:
3547:
3548: return 1;
3549: }
3550: ®ister_handler("chatretr", \&retrieve_chat_handler, 0, 1, 0);
3551:
3552: #
3553: # Initiate a query of an sql database. SQL query repsonses get put in
3554: # a file for later retrieval. This prevents sql query results from
3555: # bottlenecking the system. Note that with loncnew, perhaps this is
3556: # less of an issue since multiple outstanding requests can be concurrently
3557: # serviced.
3558: #
3559: # Parameters:
3560: # $cmd - COmmand keyword that initiated the request.
3561: # $tail - Remainder of the command after the keyword.
3562: # For this function, this consists of a query and
3563: # 3 arguments that are self-documentingly labelled
3564: # in the original arg1, arg2, arg3.
3565: # $client - Socket open on the client.
3566: # Return:
3567: # 1 - Indicating processing should continue.
3568: # Side-effects:
3569: # a reply is written to $client.
3570: #
3571: sub send_query_handler {
3572: my ($cmd, $tail, $client) = @_;
3573:
3574:
3575: my $userinput = "$cmd:$tail";
3576:
3577: my ($query,$arg1,$arg2,$arg3)=split(/\:/,$tail);
3578: $query=~s/\n*$//g;
3579: &Reply($client, "". &sql_reply("$clientname\&$query".
3580: "\&$arg1"."\&$arg2"."\&$arg3")."\n",
3581: $userinput);
3582:
3583: return 1;
3584: }
3585: ®ister_handler("querysend", \&send_query_handler, 0, 1, 0);
3586:
3587: #
3588: # Add a reply to an sql query. SQL queries are done asyncrhonously.
3589: # The query is submitted via a "querysend" transaction.
3590: # There it is passed on to the lonsql daemon, queued and issued to
3591: # mysql.
3592: # This transaction is invoked when the sql transaction is complete
3593: # it stores the query results in flie and indicates query completion.
3594: # presumably local software then fetches this response... I'm guessing
3595: # the sequence is: lonc does a querysend, we ask lonsql to do it.
3596: # lonsql on completion of the query interacts with the lond of our
3597: # client to do a query reply storing two files:
3598: # - id - The results of the query.
3599: # - id.end - Indicating the transaction completed.
3600: # NOTE: id is a unique id assigned to the query and querysend time.
3601: # Parameters:
3602: # $cmd - Command keyword that initiated this request.
3603: # $tail - Remainder of the tail. In this case that's a colon
3604: # separated list containing the query Id and the
3605: # results of the query.
3606: # $client - Socket open on the client.
3607: # Return:
3608: # 1 - Indicating that we should continue processing.
3609: # Side effects:
3610: # ok written to the client.
3611: #
3612: sub reply_query_handler {
3613: my ($cmd, $tail, $client) = @_;
3614:
3615:
3616: my $userinput = "$cmd:$tail";
3617:
1.339 albertel 3618: my ($id,$reply)=split(/:/,$tail);
1.234 foxr 3619: my $store;
3620: my $execdir=$perlvar{'lonDaemons'};
3621: if ($store=IO::File->new(">$execdir/tmp/$id")) {
3622: $reply=~s/\&/\n/g;
3623: print $store $reply;
3624: close $store;
3625: my $store2=IO::File->new(">$execdir/tmp/$id.end");
3626: print $store2 "done\n";
3627: close $store2;
3628: &Reply($client, "ok\n", $userinput);
3629: } else {
3630: &Failure($client, "error: ".($!+0)
3631: ." IO::File->new Failed ".
3632: "while attempting queryreply\n", $userinput);
3633: }
3634:
3635:
3636: return 1;
3637: }
3638: ®ister_handler("queryreply", \&reply_query_handler, 0, 1, 0);
3639:
3640: #
3641: # Process the courseidput request. Not quite sure what this means
3642: # at the system level sense. It appears a gdbm file in the
3643: # /home/httpd/lonUsers/$domain/nohist_courseids is tied and
3644: # a set of entries made in that database.
3645: #
3646: # Parameters:
3647: # $cmd - The command keyword that initiated this request.
3648: # $tail - Tail of the command. In this case consists of a colon
3649: # separated list contaning the domain to apply this to and
3650: # an ampersand separated list of keyword=value pairs.
1.272 raeburn 3651: # Each value is a colon separated list that includes:
3652: # description, institutional code and course owner.
3653: # For backward compatibility with versions included
3654: # in LON-CAPA 1.1.X (and earlier) and 1.2.X, institutional
3655: # code and/or course owner are preserved from the existing
3656: # record when writing a new record in response to 1.1 or
3657: # 1.2 implementations of lonnet::flushcourselogs().
3658: #
1.234 foxr 3659: # $client - Socket open on the client.
3660: # Returns:
3661: # 1 - indicating that processing should continue
3662: #
3663: # Side effects:
3664: # reply is written to the client.
3665: #
3666: sub put_course_id_handler {
3667: my ($cmd, $tail, $client) = @_;
3668:
3669:
3670: my $userinput = "$cmd:$tail";
3671:
1.266 raeburn 3672: my ($udom, $what) = split(/:/, $tail,2);
1.234 foxr 3673: chomp($what);
3674: my $now=time;
3675: my @pairs=split(/\&/,$what);
3676:
3677: my $hashref = &tie_domain_hash($udom, "nohist_courseids", &GDBM_WRCREAT());
3678: if ($hashref) {
3679: foreach my $pair (@pairs) {
1.271 raeburn 3680: my ($key,$courseinfo) = split(/=/,$pair,2);
3681: $courseinfo =~ s/=/:/g;
1.384 raeburn 3682: if (defined($hashref->{$key})) {
3683: my $value = &Apache::lonnet::thaw_unescape($hashref->{$key});
3684: if (ref($value) eq 'HASH') {
3685: my @items = ('description','inst_code','owner','type');
3686: my @new_items = split(/:/,$courseinfo,-1);
3687: my %storehash;
3688: for (my $i=0; $i<@new_items; $i++) {
1.391 raeburn 3689: $storehash{$items[$i]} = &unescape($new_items[$i]);
1.384 raeburn 3690: }
3691: $hashref->{$key} =
3692: &Apache::lonnet::freeze_escape(\%storehash);
3693: my $unesc_key = &unescape($key);
3694: $hashref->{&escape('lasttime:'.$unesc_key)} = $now;
3695: next;
1.383 raeburn 3696: }
1.384 raeburn 3697: }
3698: my @current_items = split(/:/,$hashref->{$key},-1);
3699: shift(@current_items); # remove description
3700: pop(@current_items); # remove last access
3701: my $numcurrent = scalar(@current_items);
3702: if ($numcurrent > 3) {
3703: $numcurrent = 3;
3704: }
3705: my @new_items = split(/:/,$courseinfo,-1);
3706: my $numnew = scalar(@new_items);
3707: if ($numcurrent > 0) {
3708: if ($numnew <= $numcurrent) { # flushcourselogs() from pre 2.2
3709: for (my $j=$numcurrent-$numnew; $j>=0; $j--) {
3710: $courseinfo .= ':'.$current_items[$numcurrent-$j-1];
1.333 raeburn 3711: }
1.272 raeburn 3712: }
3713: }
1.384 raeburn 3714: $hashref->{$key}=$courseinfo.':'.$now;
1.234 foxr 3715: }
1.311 albertel 3716: if (&untie_domain_hash($hashref)) {
1.253 foxr 3717: &Reply( $client, "ok\n", $userinput);
1.234 foxr 3718: } else {
1.253 foxr 3719: &Failure($client, "error: ".($!+0)
1.234 foxr 3720: ." untie(GDBM) Failed ".
3721: "while attempting courseidput\n", $userinput);
3722: }
3723: } else {
1.253 foxr 3724: &Failure($client, "error: ".($!+0)
1.234 foxr 3725: ." tie(GDBM) Failed ".
3726: "while attempting courseidput\n", $userinput);
3727: }
3728:
3729: return 1;
3730: }
3731: ®ister_handler("courseidput", \&put_course_id_handler, 0, 1, 0);
3732:
1.383 raeburn 3733: sub put_course_id_hash_handler {
3734: my ($cmd, $tail, $client) = @_;
3735: my $userinput = "$cmd:$tail";
1.384 raeburn 3736: my ($udom,$mode,$what) = split(/:/, $tail,3);
1.383 raeburn 3737: chomp($what);
3738: my $now=time;
3739: my @pairs=split(/\&/,$what);
1.384 raeburn 3740: my $hashref = &tie_domain_hash($udom, "nohist_courseids", &GDBM_WRCREAT());
1.383 raeburn 3741: if ($hashref) {
3742: foreach my $pair (@pairs) {
3743: my ($key,$value)=split(/=/,$pair);
1.384 raeburn 3744: my $unesc_key = &unescape($key);
3745: if ($mode ne 'timeonly') {
3746: if (!defined($hashref->{&escape('lasttime:'.$unesc_key)})) {
3747: my $curritems = &Apache::lonnet::thaw_unescape($key);
3748: if (ref($curritems) ne 'HASH') {
3749: my @current_items = split(/:/,$hashref->{$key},-1);
3750: my $lasttime = pop(@current_items);
3751: $hashref->{&escape('lasttime:'.$unesc_key)} = $lasttime;
3752: } else {
3753: $hashref->{&escape('lasttime:'.$unesc_key)} = '';
3754: }
3755: }
3756: $hashref->{$key} = $value;
3757: }
3758: if ($mode ne 'notime') {
3759: $hashref->{&escape('lasttime:'.$unesc_key)} = $now;
3760: }
1.383 raeburn 3761: }
3762: if (&untie_domain_hash($hashref)) {
3763: &Reply($client, "ok\n", $userinput);
3764: } else {
3765: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
3766: "while attempting courseidputhash\n", $userinput);
3767: }
3768: } else {
3769: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
3770: "while attempting courseidputhash\n", $userinput);
3771: }
3772: return 1;
3773: }
3774: ®ister_handler("courseidputhash", \&put_course_id_hash_handler, 0, 1, 0);
3775:
1.234 foxr 3776: # Retrieves the value of a course id resource keyword pattern
3777: # defined since a starting date. Both the starting date and the
3778: # keyword pattern are optional. If the starting date is not supplied it
3779: # is treated as the beginning of time. If the pattern is not found,
3780: # it is treatred as "." matching everything.
3781: #
3782: # Parameters:
3783: # $cmd - Command keyword that resulted in us being dispatched.
3784: # $tail - The remainder of the command that, in this case, consists
3785: # of a colon separated list of:
3786: # domain - The domain in which the course database is
3787: # defined.
3788: # since - Optional parameter describing the minimum
3789: # time of definition(?) of the resources that
3790: # will match the dump.
3791: # description - regular expression that is used to filter
3792: # the dump. Only keywords matching this regexp
3793: # will be used.
1.272 raeburn 3794: # institutional code - optional supplied code to filter
3795: # the dump. Only courses with an institutional code
3796: # that match the supplied code will be returned.
1.336 raeburn 3797: # owner - optional supplied username and domain of owner to
3798: # filter the dump. Only courses for which the course
3799: # owner matches the supplied username and/or domain
3800: # will be returned. Pre-2.2.0 legacy entries from
3801: # nohist_courseiddump will only contain usernames.
1.384 raeburn 3802: # type - optional parameter for selection
1.418 raeburn 3803: # regexp_ok - if 1 or -1 allow the supplied institutional code
3804: # filter to behave as a regular expression:
3805: # 1 will not exclude the course if the instcode matches the RE
3806: # -1 will exclude the course if the instcode matches the RE
1.384 raeburn 3807: # rtn_as_hash - whether to return the information available for
3808: # each matched item as a frozen hash of all
3809: # key, value pairs in the item's hash, or as a
3810: # colon-separated list of (in order) description,
3811: # institutional code, and course owner.
1.404 raeburn 3812: # selfenrollonly - filter by courses allowing self-enrollment
3813: # now or in the future (selfenrollonly = 1).
3814: # catfilter - filter by course category, assigned to a course
3815: # using manually defined categories (i.e., not
1.407 raeburn 3816: # self-cataloging based on on institutional code).
1.404 raeburn 3817: # showhidden - include course in results even if course
1.407 raeburn 3818: # was set to be excluded from course catalog (DC only).
1.404 raeburn 3819: # caller - if set to 'coursecatalog', courses set to be hidden
3820: # from course catalog will be excluded from results (unless
3821: # overridden by "showhidden".
1.427 raeburn 3822: # cloner - escaped username:domain of course cloner (if picking course to
1.419 raeburn 3823: # clone).
3824: # cc_clone_list - escaped comma separated list of courses for which
3825: # course cloner has active CC role (and so can clone
3826: # automatically).
1.427 raeburn 3827: # cloneonly - filter by courses for which cloner has rights to clone.
3828: # createdbefore - include courses for which creation date preceeded this date.
3829: # createdafter - include courses for which creation date followed this date.
3830: # creationcontext - include courses created in specified context
1.404 raeburn 3831: #
1.445 raeburn 3832: # domcloner - flag to indicate if user can create CCs in course's domain.
1.489.2.11 raeburn 3833: # If so, ability to clone course is automatic.
3834: # hasuniquecode - filter by courses for which a six character unique code has
3835: # been set.
1.445 raeburn 3836: #
1.234 foxr 3837: # $client - The socket open on the client.
3838: # Returns:
3839: # 1 - Continue processing.
3840: # Side Effects:
3841: # a reply is written to $client.
3842: sub dump_course_id_handler {
3843: my ($cmd, $tail, $client) = @_;
3844: my $userinput = "$cmd:$tail";
3845:
1.333 raeburn 3846: my ($udom,$since,$description,$instcodefilter,$ownerfilter,$coursefilter,
1.404 raeburn 3847: $typefilter,$regexp_ok,$rtn_as_hash,$selfenrollonly,$catfilter,$showhidden,
1.427 raeburn 3848: $caller,$cloner,$cc_clone_list,$cloneonly,$createdbefore,$createdafter,
1.489.2.11 raeburn 3849: $creationcontext,$domcloner,$hasuniquecode) =split(/:/,$tail);
1.397 raeburn 3850: my $now = time;
1.419 raeburn 3851: my ($cloneruname,$clonerudom,%cc_clone);
1.234 foxr 3852: if (defined($description)) {
3853: $description=&unescape($description);
3854: } else {
3855: $description='.';
3856: }
1.266 raeburn 3857: if (defined($instcodefilter)) {
3858: $instcodefilter=&unescape($instcodefilter);
3859: } else {
3860: $instcodefilter='.';
3861: }
1.336 raeburn 3862: my ($ownerunamefilter,$ownerdomfilter);
1.266 raeburn 3863: if (defined($ownerfilter)) {
3864: $ownerfilter=&unescape($ownerfilter);
1.336 raeburn 3865: if ($ownerfilter ne '.' && defined($ownerfilter)) {
3866: if ($ownerfilter =~ /^([^:]*):([^:]*)$/) {
3867: $ownerunamefilter = $1;
3868: $ownerdomfilter = $2;
3869: } else {
3870: $ownerunamefilter = $ownerfilter;
3871: $ownerdomfilter = '';
3872: }
3873: }
1.266 raeburn 3874: } else {
3875: $ownerfilter='.';
3876: }
1.336 raeburn 3877:
1.282 raeburn 3878: if (defined($coursefilter)) {
3879: $coursefilter=&unescape($coursefilter);
3880: } else {
3881: $coursefilter='.';
3882: }
1.333 raeburn 3883: if (defined($typefilter)) {
3884: $typefilter=&unescape($typefilter);
3885: } else {
3886: $typefilter='.';
3887: }
1.344 raeburn 3888: if (defined($regexp_ok)) {
3889: $regexp_ok=&unescape($regexp_ok);
3890: }
1.401 raeburn 3891: if (defined($catfilter)) {
3892: $catfilter=&unescape($catfilter);
3893: }
1.419 raeburn 3894: if (defined($cloner)) {
3895: $cloner = &unescape($cloner);
3896: ($cloneruname,$clonerudom) = ($cloner =~ /^($LONCAPA::match_username):($LONCAPA::match_domain)$/);
3897: }
3898: if (defined($cc_clone_list)) {
3899: $cc_clone_list = &unescape($cc_clone_list);
3900: my @cc_cloners = split('&',$cc_clone_list);
3901: foreach my $cid (@cc_cloners) {
3902: my ($clonedom,$clonenum) = split(':',$cid);
3903: next if ($clonedom ne $udom);
3904: $cc_clone{$clonedom.'_'.$clonenum} = 1;
3905: }
3906: }
1.431 raeburn 3907: if ($createdbefore ne '') {
1.427 raeburn 3908: $createdbefore = &unescape($createdbefore);
3909: } else {
3910: $createdbefore = 0;
3911: }
1.431 raeburn 3912: if ($createdafter ne '') {
1.427 raeburn 3913: $createdafter = &unescape($createdafter);
3914: } else {
3915: $createdafter = 0;
3916: }
1.431 raeburn 3917: if ($creationcontext ne '') {
1.427 raeburn 3918: $creationcontext = &unescape($creationcontext);
3919: } else {
3920: $creationcontext = '.';
3921: }
1.489.2.11 raeburn 3922: unless ($hasuniquecode) {
3923: $hasuniquecode = '.';
3924: }
1.384 raeburn 3925: my $unpack = 1;
1.485 raeburn 3926: if ($description eq '.' && $instcodefilter eq '.' && $ownerfilter eq '.' &&
1.384 raeburn 3927: $typefilter eq '.') {
3928: $unpack = 0;
3929: }
3930: if (!defined($since)) { $since=0; }
1.234 foxr 3931: my $qresult='';
3932: my $hashref = &tie_domain_hash($udom, "nohist_courseids", &GDBM_WRCREAT());
3933: if ($hashref) {
1.384 raeburn 3934: while (my ($key,$value) = each(%$hashref)) {
1.397 raeburn 3935: my ($unesc_key,$lasttime_key,$lasttime,$is_hash,%val,
1.427 raeburn 3936: %unesc_val,$selfenroll_end,$selfenroll_types,$created,
3937: $context);
1.384 raeburn 3938: $unesc_key = &unescape($key);
3939: if ($unesc_key =~ /^lasttime:/) {
3940: next;
3941: } else {
3942: $lasttime_key = &escape('lasttime:'.$unesc_key);
3943: }
3944: if ($hashref->{$lasttime_key} ne '') {
3945: $lasttime = $hashref->{$lasttime_key};
3946: next if ($lasttime<$since);
3947: }
1.419 raeburn 3948: my ($canclone,$valchange);
1.384 raeburn 3949: my $items = &Apache::lonnet::thaw_unescape($value);
3950: if (ref($items) eq 'HASH') {
1.429 raeburn 3951: if ($hashref->{$lasttime_key} eq '') {
1.430 raeburn 3952: next if ($since > 1);
1.429 raeburn 3953: }
1.384 raeburn 3954: $is_hash = 1;
1.445 raeburn 3955: if ($domcloner) {
3956: $canclone = 1;
3957: } elsif (defined($clonerudom)) {
1.419 raeburn 3958: if ($items->{'cloners'}) {
3959: my @cloneable = split(',',$items->{'cloners'});
3960: if (@cloneable) {
3961: if (grep(/^\*$/,@cloneable)) {
3962: $canclone = 1;
3963: } elsif (grep(/^\*:\Q$clonerudom\E$/,@cloneable)) {
3964: $canclone = 1;
3965: } elsif (grep(/^\Q$cloneruname\E:\Q$clonerudom\E$/,@cloneable)) {
3966: $canclone = 1;
3967: }
3968: }
3969: unless ($canclone) {
3970: if ($cloneruname ne '' && $clonerudom ne '') {
3971: if ($cc_clone{$unesc_key}) {
3972: $canclone = 1;
3973: $items->{'cloners'} .= ','.$cloneruname.':'.
3974: $clonerudom;
3975: $valchange = 1;
3976: }
3977: }
3978: }
3979: } elsif (defined($cloneruname)) {
3980: if ($cc_clone{$unesc_key}) {
3981: $canclone = 1;
3982: $items->{'cloners'} = $cloneruname.':'.$clonerudom;
3983: $valchange = 1;
3984: }
1.437 raeburn 3985: unless ($canclone) {
3986: if ($items->{'owner'} =~ /:/) {
3987: if ($items->{'owner'} eq $cloner) {
3988: $canclone = 1;
3989: }
1.444 raeburn 3990: } elsif ($cloner eq $items->{'owner'}.':'.$udom) {
1.437 raeburn 3991: $canclone = 1;
3992: }
3993: if ($canclone) {
3994: $items->{'cloners'} = $cloneruname.':'.$clonerudom;
3995: $valchange = 1;
3996: }
3997: }
1.419 raeburn 3998: }
3999: }
1.384 raeburn 4000: if ($unpack || !$rtn_as_hash) {
4001: $unesc_val{'descr'} = $items->{'description'};
4002: $unesc_val{'inst_code'} = $items->{'inst_code'};
4003: $unesc_val{'owner'} = $items->{'owner'};
4004: $unesc_val{'type'} = $items->{'type'};
1.419 raeburn 4005: $unesc_val{'cloners'} = $items->{'cloners'};
1.427 raeburn 4006: $unesc_val{'created'} = $items->{'created'};
4007: $unesc_val{'context'} = $items->{'context'};
1.404 raeburn 4008: }
4009: $selfenroll_types = $items->{'selfenroll_types'};
4010: $selfenroll_end = $items->{'selfenroll_end_date'};
1.427 raeburn 4011: $created = $items->{'created'};
4012: $context = $items->{'context'};
1.489.2.11 raeburn 4013: if ($hasuniquecode ne '.') {
4014: next unless ($items->{'uniquecode'});
4015: }
1.404 raeburn 4016: if ($selfenrollonly) {
4017: next if (!$selfenroll_types);
4018: if (($selfenroll_end > 0) && ($selfenroll_end <= $now)) {
4019: next;
1.397 raeburn 4020: }
1.404 raeburn 4021: }
1.427 raeburn 4022: if ($creationcontext ne '.') {
4023: next if (($context ne '') && ($context ne $creationcontext));
4024: }
4025: if ($createdbefore > 0) {
4026: next if (($created eq '') || ($created > $createdbefore));
4027: }
4028: if ($createdafter > 0) {
4029: next if (($created eq '') || ($created <= $createdafter));
4030: }
1.404 raeburn 4031: if ($catfilter ne '') {
1.406 raeburn 4032: next if ($items->{'categories'} eq '');
4033: my @categories = split('&',$items->{'categories'});
1.407 raeburn 4034: next if (@categories == 0);
4035: my @subcats = split('&',$catfilter);
4036: my $matchcat = 0;
4037: foreach my $cat (@categories) {
4038: if (grep(/^\Q$cat\E$/,@subcats)) {
4039: $matchcat = 1;
4040: last;
4041: }
4042: }
4043: next if (!$matchcat);
1.404 raeburn 4044: }
4045: if ($caller eq 'coursecatalog') {
1.405 raeburn 4046: if ($items->{'hidefromcat'} eq 'yes') {
4047: next if !$showhidden;
1.401 raeburn 4048: }
1.384 raeburn 4049: }
1.383 raeburn 4050: } else {
1.401 raeburn 4051: next if ($catfilter ne '');
1.419 raeburn 4052: next if ($selfenrollonly);
1.427 raeburn 4053: next if ($createdbefore || $createdafter);
4054: next if ($creationcontext ne '.');
1.419 raeburn 4055: if ((defined($clonerudom)) && (defined($cloneruname))) {
4056: if ($cc_clone{$unesc_key}) {
4057: $canclone = 1;
4058: $val{'cloners'} = &escape($cloneruname.':'.$clonerudom);
4059: }
4060: }
1.384 raeburn 4061: $is_hash = 0;
1.388 raeburn 4062: my @courseitems = split(/:/,$value);
1.403 raeburn 4063: $lasttime = pop(@courseitems);
1.402 raeburn 4064: if ($hashref->{$lasttime_key} eq '') {
4065: next if ($lasttime<$since);
4066: }
1.384 raeburn 4067: ($val{'descr'},$val{'inst_code'},$val{'owner'},$val{'type'}) = @courseitems;
1.383 raeburn 4068: }
1.419 raeburn 4069: if ($cloneonly) {
4070: next unless ($canclone);
4071: }
1.266 raeburn 4072: my $match = 1;
1.384 raeburn 4073: if ($description ne '.') {
4074: if (!$is_hash) {
4075: $unesc_val{'descr'} = &unescape($val{'descr'});
4076: }
4077: if (eval{$unesc_val{'descr'} !~ /\Q$description\E/i}) {
1.266 raeburn 4078: $match = 0;
1.384 raeburn 4079: }
1.266 raeburn 4080: }
1.384 raeburn 4081: if ($instcodefilter ne '.') {
4082: if (!$is_hash) {
4083: $unesc_val{'inst_code'} = &unescape($val{'inst_code'});
4084: }
1.418 raeburn 4085: if ($regexp_ok == 1) {
1.384 raeburn 4086: if (eval{$unesc_val{'inst_code'} !~ /$instcodefilter/}) {
1.344 raeburn 4087: $match = 0;
4088: }
1.418 raeburn 4089: } elsif ($regexp_ok == -1) {
4090: if (eval{$unesc_val{'inst_code'} =~ /$instcodefilter/}) {
4091: $match = 0;
4092: }
1.344 raeburn 4093: } else {
1.384 raeburn 4094: if (eval{$unesc_val{'inst_code'} !~ /\Q$instcodefilter\E/i}) {
1.344 raeburn 4095: $match = 0;
4096: }
1.266 raeburn 4097: }
1.234 foxr 4098: }
1.384 raeburn 4099: if ($ownerfilter ne '.') {
4100: if (!$is_hash) {
4101: $unesc_val{'owner'} = &unescape($val{'owner'});
4102: }
1.336 raeburn 4103: if (($ownerunamefilter ne '') && ($ownerdomfilter ne '')) {
1.384 raeburn 4104: if ($unesc_val{'owner'} =~ /:/) {
4105: if (eval{$unesc_val{'owner'} !~
4106: /\Q$ownerunamefilter\E:\Q$ownerdomfilter\E$/i}) {
1.336 raeburn 4107: $match = 0;
4108: }
4109: } else {
1.384 raeburn 4110: if (eval{$unesc_val{'owner'} !~ /\Q$ownerunamefilter\E/i}) {
1.336 raeburn 4111: $match = 0;
4112: }
4113: }
4114: } elsif ($ownerunamefilter ne '') {
1.384 raeburn 4115: if ($unesc_val{'owner'} =~ /:/) {
4116: if (eval{$unesc_val{'owner'} !~ /\Q$ownerunamefilter\E:[^:]+$/i}) {
1.336 raeburn 4117: $match = 0;
4118: }
4119: } else {
1.384 raeburn 4120: if (eval{$unesc_val{'owner'} !~ /\Q$ownerunamefilter\E/i}) {
1.336 raeburn 4121: $match = 0;
4122: }
4123: }
4124: } elsif ($ownerdomfilter ne '') {
1.384 raeburn 4125: if ($unesc_val{'owner'} =~ /:/) {
4126: if (eval{$unesc_val{'owner'} !~ /^[^:]+:\Q$ownerdomfilter\E/}) {
1.336 raeburn 4127: $match = 0;
4128: }
4129: } else {
4130: if ($ownerdomfilter ne $udom) {
4131: $match = 0;
4132: }
4133: }
1.266 raeburn 4134: }
4135: }
1.384 raeburn 4136: if ($coursefilter ne '.') {
4137: if (eval{$unesc_key !~ /^$udom(_)\Q$coursefilter\E$/}) {
1.282 raeburn 4138: $match = 0;
4139: }
4140: }
1.384 raeburn 4141: if ($typefilter ne '.') {
4142: if (!$is_hash) {
4143: $unesc_val{'type'} = &unescape($val{'type'});
4144: }
4145: if ($unesc_val{'type'} eq '') {
1.333 raeburn 4146: if ($typefilter ne 'Course') {
4147: $match = 0;
4148: }
1.383 raeburn 4149: } else {
1.384 raeburn 4150: if (eval{$unesc_val{'type'} !~ /^\Q$typefilter\E$/}) {
1.333 raeburn 4151: $match = 0;
4152: }
4153: }
4154: }
1.266 raeburn 4155: if ($match == 1) {
1.384 raeburn 4156: if ($rtn_as_hash) {
4157: if ($is_hash) {
1.419 raeburn 4158: if ($valchange) {
4159: my $newvalue = &Apache::lonnet::freeze_escape($items);
4160: $qresult.=$key.'='.$newvalue.'&';
4161: } else {
4162: $qresult.=$key.'='.$value.'&';
4163: }
1.384 raeburn 4164: } else {
1.388 raeburn 4165: my %rtnhash = ( 'description' => &unescape($val{'descr'}),
4166: 'inst_code' => &unescape($val{'inst_code'}),
4167: 'owner' => &unescape($val{'owner'}),
4168: 'type' => &unescape($val{'type'}),
1.419 raeburn 4169: 'cloners' => &unescape($val{'cloners'}),
1.384 raeburn 4170: );
4171: my $items = &Apache::lonnet::freeze_escape(\%rtnhash);
4172: $qresult.=$key.'='.$items.'&';
4173: }
1.383 raeburn 4174: } else {
1.384 raeburn 4175: if ($is_hash) {
4176: $qresult .= $key.'='.&escape($unesc_val{'descr'}).':'.
4177: &escape($unesc_val{'inst_code'}).':'.
4178: &escape($unesc_val{'owner'}).'&';
4179: } else {
4180: $qresult .= $key.'='.$val{'descr'}.':'.$val{'inst_code'}.
4181: ':'.$val{'owner'}.'&';
4182: }
1.383 raeburn 4183: }
1.266 raeburn 4184: }
1.234 foxr 4185: }
1.311 albertel 4186: if (&untie_domain_hash($hashref)) {
1.234 foxr 4187: chop($qresult);
1.387 albertel 4188: &Reply($client, \$qresult, $userinput);
1.234 foxr 4189: } else {
4190: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4191: "while attempting courseiddump\n", $userinput);
4192: }
4193: } else {
4194: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
4195: "while attempting courseiddump\n", $userinput);
4196: }
4197: return 1;
4198: }
4199: ®ister_handler("courseiddump", \&dump_course_id_handler, 0, 1, 0);
1.238 foxr 4200:
1.438 raeburn 4201: sub course_lastaccess_handler {
4202: my ($cmd, $tail, $client) = @_;
4203: my $userinput = "$cmd:$tail";
4204: my ($cdom,$cnum) = split(':',$tail);
4205: my (%lastaccess,$qresult);
4206: my $hashref = &tie_domain_hash($cdom, "nohist_courseids", &GDBM_WRCREAT());
4207: if ($hashref) {
4208: while (my ($key,$value) = each(%$hashref)) {
4209: my ($unesc_key,$lasttime);
4210: $unesc_key = &unescape($key);
4211: if ($cnum) {
4212: next unless ($unesc_key =~ /\Q$cdom\E_\Q$cnum\E$/);
4213: }
4214: if ($unesc_key =~ /^lasttime:($LONCAPA::match_domain\_$LONCAPA::match_courseid)/) {
4215: $lastaccess{$1} = $value;
4216: } else {
4217: my $items = &Apache::lonnet::thaw_unescape($value);
4218: if (ref($items) eq 'HASH') {
4219: unless ($lastaccess{$unesc_key}) {
4220: $lastaccess{$unesc_key} = '';
4221: }
4222: } else {
4223: my @courseitems = split(':',$value);
4224: $lastaccess{$unesc_key} = pop(@courseitems);
4225: }
4226: }
4227: }
4228: foreach my $cid (sort(keys(%lastaccess))) {
4229: $qresult.=&escape($cid).'='.$lastaccess{$cid}.'&';
4230: }
4231: if (&untie_domain_hash($hashref)) {
4232: if ($qresult) {
4233: chop($qresult);
4234: }
4235: &Reply($client, \$qresult, $userinput);
4236: } else {
4237: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4238: "while attempting lastacourseaccess\n", $userinput);
4239: }
4240: } else {
4241: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
4242: "while attempting lastcourseaccess\n", $userinput);
4243: }
4244: return 1;
4245: }
4246: ®ister_handler("courselastaccess",\&course_lastaccess_handler, 0, 1, 0);
4247:
1.238 foxr 4248: #
1.348 raeburn 4249: # Puts an unencrypted entry in a namespace db file at the domain level
4250: #
4251: # Parameters:
4252: # $cmd - The command that got us here.
4253: # $tail - Tail of the command (remaining parameters).
4254: # $client - File descriptor connected to client.
4255: # Returns
4256: # 0 - Requested to exit, caller should shut down.
4257: # 1 - Continue processing.
4258: # Side effects:
4259: # reply is written to $client.
4260: #
4261: sub put_domain_handler {
4262: my ($cmd,$tail,$client) = @_;
4263:
4264: my $userinput = "$cmd:$tail";
4265:
4266: my ($udom,$namespace,$what) =split(/:/,$tail,3);
4267: chomp($what);
4268: my @pairs=split(/\&/,$what);
4269: my $hashref = &tie_domain_hash($udom, "$namespace", &GDBM_WRCREAT(),
4270: "P", $what);
4271: if ($hashref) {
4272: foreach my $pair (@pairs) {
4273: my ($key,$value)=split(/=/,$pair);
4274: $hashref->{$key}=$value;
4275: }
4276: if (&untie_domain_hash($hashref)) {
4277: &Reply($client, "ok\n", $userinput);
4278: } else {
4279: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4280: "while attempting putdom\n", $userinput);
4281: }
4282: } else {
4283: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
4284: "while attempting putdom\n", $userinput);
4285: }
4286:
4287: return 1;
4288: }
4289: ®ister_handler("putdom", \&put_domain_handler, 0, 1, 0);
4290:
4291: # Unencrypted get from the namespace database file at the domain level.
4292: # This function retrieves a keyed item from a specific named database in the
4293: # domain directory.
4294: #
4295: # Parameters:
4296: # $cmd - Command request keyword (get).
4297: # $tail - Tail of the command. This is a colon separated list
4298: # consisting of the domain and the 'namespace'
4299: # which selects the gdbm file to do the lookup in,
4300: # & separated list of keys to lookup. Note that
4301: # the values are returned as an & separated list too.
4302: # $client - File descriptor open on the client.
4303: # Returns:
4304: # 1 - Continue processing.
4305: # 0 - Exit.
4306: # Side effects:
4307: # reply is written to $client.
4308: #
4309:
4310: sub get_domain_handler {
4311: my ($cmd, $tail, $client) = @_;
4312:
1.461 foxr 4313:
1.348 raeburn 4314: my $userinput = "$client:$tail";
4315:
4316: my ($udom,$namespace,$what)=split(/:/,$tail,3);
4317: chomp($what);
4318: my @queries=split(/\&/,$what);
4319: my $qresult='';
4320: my $hashref = &tie_domain_hash($udom, "$namespace", &GDBM_READER());
4321: if ($hashref) {
4322: for (my $i=0;$i<=$#queries;$i++) {
4323: $qresult.="$hashref->{$queries[$i]}&";
4324: }
4325: if (&untie_domain_hash($hashref)) {
4326: $qresult=~s/\&$//;
1.387 albertel 4327: &Reply($client, \$qresult, $userinput);
1.348 raeburn 4328: } else {
4329: &Failure( $client, "error: ".($!+0)." untie(GDBM) Failed ".
4330: "while attempting getdom\n",$userinput);
4331: }
4332: } else {
4333: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
4334: "while attempting getdom\n",$userinput);
4335: }
4336:
4337: return 1;
4338: }
1.360 raeburn 4339: ®ister_handler("getdom", \&get_domain_handler, 0, 1, 0);
1.348 raeburn 4340:
1.420 raeburn 4341: #
1.238 foxr 4342: # Puts an id to a domains id database.
4343: #
4344: # Parameters:
4345: # $cmd - The command that triggered us.
4346: # $tail - Remainder of the request other than the command. This is a
4347: # colon separated list containing:
4348: # $domain - The domain for which we are writing the id.
4349: # $pairs - The id info to write... this is and & separated list
4350: # of keyword=value.
4351: # $client - Socket open on the client.
4352: # Returns:
4353: # 1 - Continue processing.
4354: # Side effects:
4355: # reply is written to $client.
4356: #
4357: sub put_id_handler {
4358: my ($cmd,$tail,$client) = @_;
4359:
4360:
4361: my $userinput = "$cmd:$tail";
4362:
4363: my ($udom,$what)=split(/:/,$tail);
4364: chomp($what);
4365: my @pairs=split(/\&/,$what);
4366: my $hashref = &tie_domain_hash($udom, "ids", &GDBM_WRCREAT(),
4367: "P", $what);
4368: if ($hashref) {
4369: foreach my $pair (@pairs) {
4370: my ($key,$value)=split(/=/,$pair);
4371: $hashref->{$key}=$value;
4372: }
1.311 albertel 4373: if (&untie_domain_hash($hashref)) {
1.238 foxr 4374: &Reply($client, "ok\n", $userinput);
4375: } else {
4376: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4377: "while attempting idput\n", $userinput);
4378: }
4379: } else {
4380: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
4381: "while attempting idput\n", $userinput);
4382: }
4383:
4384: return 1;
4385: }
1.263 albertel 4386: ®ister_handler("idput", \&put_id_handler, 0, 1, 0);
1.238 foxr 4387:
4388: #
4389: # Retrieves a set of id values from the id database.
4390: # Returns an & separated list of results, one for each requested id to the
4391: # client.
4392: #
4393: # Parameters:
4394: # $cmd - Command keyword that caused us to be dispatched.
4395: # $tail - Tail of the command. Consists of a colon separated:
4396: # domain - the domain whose id table we dump
4397: # ids Consists of an & separated list of
4398: # id keywords whose values will be fetched.
4399: # nonexisting keywords will have an empty value.
4400: # $client - Socket open on the client.
4401: #
4402: # Returns:
4403: # 1 - indicating processing should continue.
4404: # Side effects:
4405: # An & separated list of results is written to $client.
4406: #
4407: sub get_id_handler {
4408: my ($cmd, $tail, $client) = @_;
4409:
4410:
4411: my $userinput = "$client:$tail";
4412:
4413: my ($udom,$what)=split(/:/,$tail);
4414: chomp($what);
4415: my @queries=split(/\&/,$what);
4416: my $qresult='';
4417: my $hashref = &tie_domain_hash($udom, "ids", &GDBM_READER());
4418: if ($hashref) {
4419: for (my $i=0;$i<=$#queries;$i++) {
4420: $qresult.="$hashref->{$queries[$i]}&";
4421: }
1.311 albertel 4422: if (&untie_domain_hash($hashref)) {
1.238 foxr 4423: $qresult=~s/\&$//;
1.387 albertel 4424: &Reply($client, \$qresult, $userinput);
1.238 foxr 4425: } else {
4426: &Failure( $client, "error: ".($!+0)." untie(GDBM) Failed ".
4427: "while attempting idget\n",$userinput);
4428: }
4429: } else {
4430: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
4431: "while attempting idget\n",$userinput);
4432: }
4433:
4434: return 1;
4435: }
1.263 albertel 4436: ®ister_handler("idget", \&get_id_handler, 0, 1, 0);
1.238 foxr 4437:
1.489.2.7 raeburn 4438: # Deletes one or more ids in a domain's id database.
1.489.2.6 raeburn 4439: #
4440: # Parameters:
4441: # $cmd - Command keyword (iddel).
4442: # $tail - Command tail. In this case a colon
4443: # separated list containing:
4444: # The domain for which we are deleting the id(s).
4445: # &-separated list of id(s) to delete.
4446: # $client - File open on client socket.
4447: # Returns:
4448: # 1 - Continue processing
4449: # 0 - Exit server.
4450: #
4451: #
4452:
4453: sub del_id_handler {
4454: my ($cmd,$tail,$client) = @_;
4455:
4456: my $userinput = "$cmd:$tail";
4457:
4458: my ($udom,$what)=split(/:/,$tail);
4459: chomp($what);
4460: my $hashref = &tie_domain_hash($udom, "ids", &GDBM_WRCREAT(),
4461: "D", $what);
4462: if ($hashref) {
4463: my @keys=split(/\&/,$what);
4464: foreach my $key (@keys) {
4465: delete($hashref->{$key});
4466: }
4467: if (&untie_user_hash($hashref)) {
4468: &Reply($client, "ok\n", $userinput);
4469: } else {
4470: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4471: "while attempting iddel\n", $userinput);
4472: }
4473: } else {
4474: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
4475: "while attempting iddel\n", $userinput);
4476: }
4477: return 1;
4478: }
4479: ®ister_handler("iddel", \&del_id_handler, 0, 1, 0);
4480:
1.238 foxr 4481: #
1.299 raeburn 4482: # Puts broadcast e-mail sent by Domain Coordinator in nohist_dcmail database
4483: #
4484: # Parameters
4485: # $cmd - Command keyword that caused us to be dispatched.
4486: # $tail - Tail of the command. Consists of a colon separated:
4487: # domain - the domain whose dcmail we are recording
4488: # email Consists of key=value pair
4489: # where key is unique msgid
4490: # and value is message (in XML)
4491: # $client - Socket open on the client.
4492: #
4493: # Returns:
4494: # 1 - indicating processing should continue.
4495: # Side effects
4496: # reply is written to $client.
4497: #
4498: sub put_dcmail_handler {
4499: my ($cmd,$tail,$client) = @_;
4500: my $userinput = "$cmd:$tail";
1.463 foxr 4501:
4502:
1.299 raeburn 4503: my ($udom,$what)=split(/:/,$tail);
4504: chomp($what);
4505: my $hashref = &tie_domain_hash($udom, "nohist_dcmail", &GDBM_WRCREAT());
4506: if ($hashref) {
4507: my ($key,$value)=split(/=/,$what);
4508: $hashref->{$key}=$value;
4509: }
1.311 albertel 4510: if (&untie_domain_hash($hashref)) {
1.299 raeburn 4511: &Reply($client, "ok\n", $userinput);
4512: } else {
4513: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4514: "while attempting dcmailput\n", $userinput);
4515: }
4516: return 1;
4517: }
4518: ®ister_handler("dcmailput", \&put_dcmail_handler, 0, 1, 0);
4519:
4520: #
4521: # Retrieves broadcast e-mail from nohist_dcmail database
4522: # Returns to client an & separated list of key=value pairs,
4523: # where key is msgid and value is message information.
4524: #
4525: # Parameters
4526: # $cmd - Command keyword that caused us to be dispatched.
4527: # $tail - Tail of the command. Consists of a colon separated:
4528: # domain - the domain whose dcmail table we dump
4529: # startfilter - beginning of time window
4530: # endfilter - end of time window
4531: # sendersfilter - & separated list of username:domain
4532: # for senders to search for.
4533: # $client - Socket open on the client.
4534: #
4535: # Returns:
4536: # 1 - indicating processing should continue.
4537: # Side effects
4538: # reply (& separated list of msgid=messageinfo pairs) is
4539: # written to $client.
4540: #
4541: sub dump_dcmail_handler {
4542: my ($cmd, $tail, $client) = @_;
4543:
4544: my $userinput = "$cmd:$tail";
4545: my ($udom,$startfilter,$endfilter,$sendersfilter) = split(/:/,$tail);
4546: chomp($sendersfilter);
4547: my @senders = ();
4548: if (defined($startfilter)) {
4549: $startfilter=&unescape($startfilter);
4550: } else {
4551: $startfilter='.';
4552: }
4553: if (defined($endfilter)) {
4554: $endfilter=&unescape($endfilter);
4555: } else {
4556: $endfilter='.';
4557: }
4558: if (defined($sendersfilter)) {
4559: $sendersfilter=&unescape($sendersfilter);
1.300 albertel 4560: @senders = map { &unescape($_) } split(/\&/,$sendersfilter);
1.299 raeburn 4561: }
4562:
4563: my $qresult='';
4564: my $hashref = &tie_domain_hash($udom, "nohist_dcmail", &GDBM_WRCREAT());
4565: if ($hashref) {
4566: while (my ($key,$value) = each(%$hashref)) {
4567: my $match = 1;
1.303 albertel 4568: my ($timestamp,$subj,$uname,$udom) =
4569: split(/:/,&unescape(&unescape($key)),5); # yes, twice really
1.299 raeburn 4570: $subj = &unescape($subj);
4571: unless ($startfilter eq '.' || !defined($startfilter)) {
4572: if ($timestamp < $startfilter) {
4573: $match = 0;
4574: }
4575: }
4576: unless ($endfilter eq '.' || !defined($endfilter)) {
4577: if ($timestamp > $endfilter) {
4578: $match = 0;
4579: }
4580: }
4581: unless (@senders < 1) {
4582: unless (grep/^$uname:$udom$/,@senders) {
4583: $match = 0;
4584: }
4585: }
4586: if ($match == 1) {
4587: $qresult.=$key.'='.$value.'&';
4588: }
4589: }
1.311 albertel 4590: if (&untie_domain_hash($hashref)) {
1.299 raeburn 4591: chop($qresult);
1.387 albertel 4592: &Reply($client, \$qresult, $userinput);
1.299 raeburn 4593: } else {
4594: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4595: "while attempting dcmaildump\n", $userinput);
4596: }
4597: } else {
4598: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
4599: "while attempting dcmaildump\n", $userinput);
4600: }
4601: return 1;
4602: }
4603:
4604: ®ister_handler("dcmaildump", \&dump_dcmail_handler, 0, 1, 0);
4605:
4606: #
4607: # Puts domain roles in nohist_domainroles database
4608: #
4609: # Parameters
4610: # $cmd - Command keyword that caused us to be dispatched.
4611: # $tail - Tail of the command. Consists of a colon separated:
4612: # domain - the domain whose roles we are recording
4613: # role - Consists of key=value pair
4614: # where key is unique role
4615: # and value is start/end date information
4616: # $client - Socket open on the client.
4617: #
4618: # Returns:
4619: # 1 - indicating processing should continue.
4620: # Side effects
4621: # reply is written to $client.
4622: #
4623:
4624: sub put_domainroles_handler {
4625: my ($cmd,$tail,$client) = @_;
4626:
4627: my $userinput = "$cmd:$tail";
4628: my ($udom,$what)=split(/:/,$tail);
4629: chomp($what);
4630: my @pairs=split(/\&/,$what);
4631: my $hashref = &tie_domain_hash($udom, "nohist_domainroles", &GDBM_WRCREAT());
4632: if ($hashref) {
4633: foreach my $pair (@pairs) {
4634: my ($key,$value)=split(/=/,$pair);
4635: $hashref->{$key}=$value;
4636: }
1.311 albertel 4637: if (&untie_domain_hash($hashref)) {
1.299 raeburn 4638: &Reply($client, "ok\n", $userinput);
4639: } else {
4640: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4641: "while attempting domroleput\n", $userinput);
4642: }
4643: } else {
4644: &Failure( $client, "error: ".($!+0)." tie(GDBM) Failed ".
4645: "while attempting domroleput\n", $userinput);
4646: }
4647:
4648: return 1;
4649: }
4650:
4651: ®ister_handler("domroleput", \&put_domainroles_handler, 0, 1, 0);
4652:
4653: #
4654: # Retrieves domain roles from nohist_domainroles database
4655: # Returns to client an & separated list of key=value pairs,
4656: # where key is role and value is start and end date information.
4657: #
4658: # Parameters
4659: # $cmd - Command keyword that caused us to be dispatched.
4660: # $tail - Tail of the command. Consists of a colon separated:
4661: # domain - the domain whose domain roles table we dump
4662: # $client - Socket open on the client.
4663: #
4664: # Returns:
4665: # 1 - indicating processing should continue.
4666: # Side effects
4667: # reply (& separated list of role=start/end info pairs) is
4668: # written to $client.
4669: #
4670: sub dump_domainroles_handler {
4671: my ($cmd, $tail, $client) = @_;
4672:
4673: my $userinput = "$cmd:$tail";
4674: my ($udom,$startfilter,$endfilter,$rolesfilter) = split(/:/,$tail);
4675: chomp($rolesfilter);
4676: my @roles = ();
4677: if (defined($startfilter)) {
4678: $startfilter=&unescape($startfilter);
4679: } else {
4680: $startfilter='.';
4681: }
4682: if (defined($endfilter)) {
4683: $endfilter=&unescape($endfilter);
4684: } else {
4685: $endfilter='.';
4686: }
4687: if (defined($rolesfilter)) {
4688: $rolesfilter=&unescape($rolesfilter);
1.300 albertel 4689: @roles = split(/\&/,$rolesfilter);
1.299 raeburn 4690: }
1.421 raeburn 4691:
1.299 raeburn 4692: my $hashref = &tie_domain_hash($udom, "nohist_domainroles", &GDBM_WRCREAT());
4693: if ($hashref) {
4694: my $qresult = '';
4695: while (my ($key,$value) = each(%$hashref)) {
4696: my $match = 1;
1.421 raeburn 4697: my ($end,$start) = split(/:/,&unescape($value));
1.299 raeburn 4698: my ($trole,$uname,$udom,$runame,$rudom,$rsec) = split(/:/,&unescape($key));
1.421 raeburn 4699: unless (@roles < 1) {
4700: unless (grep/^\Q$trole\E$/,@roles) {
4701: $match = 0;
4702: next;
4703: }
4704: }
1.299 raeburn 4705: unless ($startfilter eq '.' || !defined($startfilter)) {
1.415 raeburn 4706: if ((defined($start)) && ($start >= $startfilter)) {
1.299 raeburn 4707: $match = 0;
1.421 raeburn 4708: next;
1.299 raeburn 4709: }
4710: }
4711: unless ($endfilter eq '.' || !defined($endfilter)) {
1.421 raeburn 4712: if ((defined($end)) && (($end > 0) && ($end <= $endfilter))) {
1.299 raeburn 4713: $match = 0;
1.421 raeburn 4714: next;
1.299 raeburn 4715: }
4716: }
4717: if ($match == 1) {
4718: $qresult.=$key.'='.$value.'&';
4719: }
4720: }
1.311 albertel 4721: if (&untie_domain_hash($hashref)) {
1.299 raeburn 4722: chop($qresult);
1.387 albertel 4723: &Reply($client, \$qresult, $userinput);
1.299 raeburn 4724: } else {
4725: &Failure($client, "error: ".($!+0)." untie(GDBM) Failed ".
4726: "while attempting domrolesdump\n", $userinput);
4727: }
4728: } else {
4729: &Failure($client, "error: ".($!+0)." tie(GDBM) Failed ".
4730: "while attempting domrolesdump\n", $userinput);
4731: }
4732: return 1;
4733: }
4734:
4735: ®ister_handler("domrolesdump", \&dump_domainroles_handler, 0, 1, 0);
4736:
4737:
1.238 foxr 4738: # Process the tmpput command I'm not sure what this does.. Seems to
4739: # create a file in the lonDaemons/tmp directory of the form $id.tmp
4740: # where Id is the client's ip concatenated with a sequence number.
4741: # The file will contain some value that is passed in. Is this e.g.
4742: # a login token?
4743: #
4744: # Parameters:
4745: # $cmd - The command that got us dispatched.
4746: # $tail - The remainder of the request following $cmd:
4747: # In this case this will be the contents of the file.
4748: # $client - Socket connected to the client.
4749: # Returns:
4750: # 1 indicating processing can continue.
4751: # Side effects:
4752: # A file is created in the local filesystem.
4753: # A reply is sent to the client.
4754: sub tmp_put_handler {
4755: my ($cmd, $what, $client) = @_;
4756:
4757: my $userinput = "$cmd:$what"; # Reconstruct for logging.
4758:
1.347 raeburn 4759: my ($record,$context) = split(/:/,$what);
4760: if ($context ne '') {
4761: chomp($context);
4762: $context = &unescape($context);
4763: }
4764: my ($id,$store);
1.238 foxr 4765: $tmpsnum++;
1.454 raeburn 4766: if (($context eq 'resetpw') || ($context eq 'createaccount')) {
1.347 raeburn 4767: $id = &md5_hex(&md5_hex(time.{}.rand().$$));
4768: } else {
4769: $id = $$.'_'.$clientip.'_'.$tmpsnum;
4770: }
1.238 foxr 4771: $id=~s/\W/\_/g;
1.347 raeburn 4772: $record=~s/\n//g;
1.238 foxr 4773: my $execdir=$perlvar{'lonDaemons'};
4774: if ($store=IO::File->new(">$execdir/tmp/$id.tmp")) {
1.347 raeburn 4775: print $store $record;
1.238 foxr 4776: close $store;
1.387 albertel 4777: &Reply($client, \$id, $userinput);
1.238 foxr 4778: } else {
4779: &Failure( $client, "error: ".($!+0)."IO::File->new Failed ".
4780: "while attempting tmpput\n", $userinput);
4781: }
4782: return 1;
4783:
4784: }
4785: ®ister_handler("tmpput", \&tmp_put_handler, 0, 1, 0);
1.263 albertel 4786:
1.238 foxr 4787: # Processes the tmpget command. This command returns the contents
4788: # of a temporary resource file(?) created via tmpput.
4789: #
4790: # Paramters:
4791: # $cmd - Command that got us dispatched.
4792: # $id - Tail of the command, contain the id of the resource
4793: # we want to fetch.
4794: # $client - socket open on the client.
4795: # Return:
4796: # 1 - Inidcating processing can continue.
4797: # Side effects:
4798: # A reply is sent to the client.
4799: #
4800: sub tmp_get_handler {
4801: my ($cmd, $id, $client) = @_;
4802:
4803: my $userinput = "$cmd:$id";
4804:
4805:
4806: $id=~s/\W/\_/g;
4807: my $store;
4808: my $execdir=$perlvar{'lonDaemons'};
4809: if ($store=IO::File->new("$execdir/tmp/$id.tmp")) {
4810: my $reply=<$store>;
1.387 albertel 4811: &Reply( $client, \$reply, $userinput);
1.238 foxr 4812: close $store;
4813: } else {
4814: &Failure( $client, "error: ".($!+0)."IO::File->new Failed ".
4815: "while attempting tmpget\n", $userinput);
4816: }
4817:
4818: return 1;
4819: }
4820: ®ister_handler("tmpget", \&tmp_get_handler, 0, 1, 0);
1.263 albertel 4821:
1.238 foxr 4822: #
4823: # Process the tmpdel command. This command deletes a temp resource
4824: # created by the tmpput command.
4825: #
4826: # Parameters:
4827: # $cmd - Command that got us here.
4828: # $id - Id of the temporary resource created.
4829: # $client - socket open on the client process.
4830: #
4831: # Returns:
4832: # 1 - Indicating processing should continue.
4833: # Side Effects:
4834: # A file is deleted
4835: # A reply is sent to the client.
4836: sub tmp_del_handler {
4837: my ($cmd, $id, $client) = @_;
4838:
4839: my $userinput= "$cmd:$id";
4840:
4841: chomp($id);
4842: $id=~s/\W/\_/g;
4843: my $execdir=$perlvar{'lonDaemons'};
4844: if (unlink("$execdir/tmp/$id.tmp")) {
4845: &Reply($client, "ok\n", $userinput);
4846: } else {
4847: &Failure( $client, "error: ".($!+0)."Unlink tmp Failed ".
4848: "while attempting tmpdel\n", $userinput);
4849: }
4850:
4851: return 1;
4852:
4853: }
4854: ®ister_handler("tmpdel", \&tmp_del_handler, 0, 1, 0);
1.263 albertel 4855:
1.238 foxr 4856: #
1.246 foxr 4857: # Processes the setannounce command. This command
4858: # creates a file named announce.txt in the top directory of
4859: # the documentn root and sets its contents. The announce.txt file is
4860: # printed in its entirety at the LonCAPA login page. Note:
4861: # once the announcement.txt fileis created it cannot be deleted.
4862: # However, setting the contents of the file to empty removes the
4863: # announcement from the login page of loncapa so who cares.
4864: #
4865: # Parameters:
4866: # $cmd - The command that got us dispatched.
4867: # $announcement - The text of the announcement.
4868: # $client - Socket open on the client process.
4869: # Retunrns:
4870: # 1 - Indicating request processing should continue
4871: # Side Effects:
4872: # The file {DocRoot}/announcement.txt is created.
4873: # A reply is sent to $client.
4874: #
4875: sub set_announce_handler {
4876: my ($cmd, $announcement, $client) = @_;
4877:
4878: my $userinput = "$cmd:$announcement";
4879:
4880: chomp($announcement);
4881: $announcement=&unescape($announcement);
4882: if (my $store=IO::File->new('>'.$perlvar{'lonDocRoot'}.
4883: '/announcement.txt')) {
4884: print $store $announcement;
4885: close $store;
4886: &Reply($client, "ok\n", $userinput);
4887: } else {
4888: &Failure($client, "error: ".($!+0)."\n", $userinput);
4889: }
4890:
4891: return 1;
4892: }
4893: ®ister_handler("setannounce", \&set_announce_handler, 0, 1, 0);
1.263 albertel 4894:
1.246 foxr 4895: #
4896: # Return the version of the daemon. This can be used to determine
4897: # the compatibility of cross version installations or, alternatively to
4898: # simply know who's out of date and who isn't. Note that the version
4899: # is returned concatenated with the tail.
4900: # Parameters:
4901: # $cmd - the request that dispatched to us.
4902: # $tail - Tail of the request (client's version?).
4903: # $client - Socket open on the client.
4904: #Returns:
4905: # 1 - continue processing requests.
4906: # Side Effects:
4907: # Replies with version to $client.
4908: sub get_version_handler {
4909: my ($cmd, $tail, $client) = @_;
4910:
4911: my $userinput = $cmd.$tail;
4912:
4913: &Reply($client, &version($userinput)."\n", $userinput);
4914:
4915:
4916: return 1;
4917: }
4918: ®ister_handler("version", \&get_version_handler, 0, 1, 0);
1.263 albertel 4919:
1.246 foxr 4920: # Set the current host and domain. This is used to support
4921: # multihomed systems. Each IP of the system, or even separate daemons
4922: # on the same IP can be treated as handling a separate lonCAPA virtual
4923: # machine. This command selects the virtual lonCAPA. The client always
4924: # knows the right one since it is lonc and it is selecting the domain/system
4925: # from the hosts.tab file.
4926: # Parameters:
4927: # $cmd - Command that dispatched us.
4928: # $tail - Tail of the command (domain/host requested).
4929: # $socket - Socket open on the client.
4930: #
4931: # Returns:
4932: # 1 - Indicates the program should continue to process requests.
4933: # Side-effects:
4934: # The default domain/system context is modified for this daemon.
4935: # a reply is sent to the client.
4936: #
4937: sub set_virtual_host_handler {
4938: my ($cmd, $tail, $socket) = @_;
4939:
4940: my $userinput ="$cmd:$tail";
4941:
4942: &Reply($client, &sethost($userinput)."\n", $userinput);
4943:
4944:
4945: return 1;
4946: }
1.247 albertel 4947: ®ister_handler("sethost", \&set_virtual_host_handler, 0, 1, 0);
1.246 foxr 4948:
4949: # Process a request to exit:
4950: # - "bye" is sent to the client.
4951: # - The client socket is shutdown and closed.
4952: # - We indicate to the caller that we should exit.
4953: # Formal Parameters:
4954: # $cmd - The command that got us here.
4955: # $tail - Tail of the command (empty).
4956: # $client - Socket open on the tail.
4957: # Returns:
4958: # 0 - Indicating the program should exit!!
4959: #
4960: sub exit_handler {
4961: my ($cmd, $tail, $client) = @_;
4962:
4963: my $userinput = "$cmd:$tail";
4964:
4965: &logthis("Client $clientip ($clientname) hanging up: $userinput");
4966: &Reply($client, "bye\n", $userinput);
4967: $client->shutdown(2); # shutdown the socket forcibly.
4968: $client->close();
4969:
4970: return 0;
4971: }
1.248 foxr 4972: ®ister_handler("exit", \&exit_handler, 0,1,1);
4973: ®ister_handler("init", \&exit_handler, 0,1,1);
4974: ®ister_handler("quit", \&exit_handler, 0,1,1);
4975:
4976: # Determine if auto-enrollment is enabled.
4977: # Note that the original had what I believe to be a defect.
4978: # The original returned 0 if the requestor was not a registerd client.
4979: # It should return "refused".
4980: # Formal Parameters:
4981: # $cmd - The command that invoked us.
4982: # $tail - The tail of the command (Extra command parameters.
4983: # $client - The socket open on the client that issued the request.
4984: # Returns:
4985: # 1 - Indicating processing should continue.
4986: #
4987: sub enrollment_enabled_handler {
4988: my ($cmd, $tail, $client) = @_;
4989: my $userinput = $cmd.":".$tail; # For logging purposes.
4990:
4991:
1.337 albertel 4992: my ($cdom) = split(/:/, $tail, 2); # Domain we're asking about.
4993:
1.248 foxr 4994: my $outcome = &localenroll::run($cdom);
1.387 albertel 4995: &Reply($client, \$outcome, $userinput);
1.248 foxr 4996:
4997: return 1;
4998: }
4999: ®ister_handler("autorun", \&enrollment_enabled_handler, 0, 1, 0);
5000:
1.417 raeburn 5001: #
1.423 raeburn 5002: # Validate an institutional code used for a LON-CAPA course.
1.417 raeburn 5003: #
5004: # Formal Parameters:
5005: # $cmd - The command request that got us dispatched.
5006: # $tail - The tail of the command. In this case,
5007: # this is a colon separated set of words that will be split
5008: # into:
1.424 raeburn 5009: # $dom - The domain for which the check of
5010: # institutional course code will occur.
5011: #
5012: # $instcode - The institutional code for the course
5013: # being requested, or validated for rights
5014: # to request.
5015: #
5016: # $owner - The course requestor (who will be the
5017: # course owner, in the form username:domain
5018: #
1.417 raeburn 5019: # $client - Socket open on the client.
5020: # Returns:
5021: # 1 - Indicating processing should continue.
5022: #
5023: sub validate_instcode_handler {
5024: my ($cmd, $tail, $client) = @_;
5025: my $userinput = "$cmd:$tail";
1.423 raeburn 5026: my ($dom,$instcode,$owner) = split(/:/, $tail);
1.422 raeburn 5027: $instcode = &unescape($instcode);
5028: $owner = &unescape($owner);
1.489.2.3 raeburn 5029: my ($outcome,$description,$credits) =
1.426 raeburn 5030: &localenroll::validate_instcode($dom,$instcode,$owner);
1.489.2.3 raeburn 5031: my $result = &escape($outcome).'&'.&escape($description).'&'.
5032: &escape($credits);
1.426 raeburn 5033: &Reply($client, \$result, $userinput);
1.417 raeburn 5034:
5035: return 1;
5036: }
5037: ®ister_handler("autovalidateinstcode", \&validate_instcode_handler, 0, 1, 0);
5038:
1.248 foxr 5039: # Get the official sections for which auto-enrollment is possible.
5040: # Since the admin people won't know about 'unofficial sections'
5041: # we cannot auto-enroll on them.
5042: # Formal Parameters:
5043: # $cmd - The command request that got us dispatched here.
5044: # $tail - The remainder of the request. In our case this
5045: # will be split into:
5046: # $coursecode - The course name from the admin point of view.
5047: # $cdom - The course's domain(?).
5048: # $client - Socket open on the client.
5049: # Returns:
5050: # 1 - Indiciting processing should continue.
5051: #
5052: sub get_sections_handler {
5053: my ($cmd, $tail, $client) = @_;
5054: my $userinput = "$cmd:$tail";
5055:
5056: my ($coursecode, $cdom) = split(/:/, $tail);
5057: my @secs = &localenroll::get_sections($coursecode,$cdom);
5058: my $seclist = &escape(join(':',@secs));
5059:
1.387 albertel 5060: &Reply($client, \$seclist, $userinput);
1.248 foxr 5061:
5062:
5063: return 1;
5064: }
5065: ®ister_handler("autogetsections", \&get_sections_handler, 0, 1, 0);
5066:
5067: # Validate the owner of a new course section.
5068: #
5069: # Formal Parameters:
5070: # $cmd - Command that got us dispatched.
5071: # $tail - the remainder of the command. For us this consists of a
5072: # colon separated string containing:
5073: # $inst - Course Id from the institutions point of view.
5074: # $owner - Proposed owner of the course.
5075: # $cdom - Domain of the course (from the institutions
5076: # point of view?)..
5077: # $client - Socket open on the client.
5078: #
5079: # Returns:
5080: # 1 - Processing should continue.
5081: #
5082: sub validate_course_owner_handler {
5083: my ($cmd, $tail, $client) = @_;
5084: my $userinput = "$cmd:$tail";
1.470 raeburn 5085: my ($inst_course_id, $owner, $cdom, $coowners) = split(/:/, $tail);
5086:
1.336 raeburn 5087: $owner = &unescape($owner);
1.470 raeburn 5088: $coowners = &unescape($coowners);
5089: my $outcome = &localenroll::new_course($inst_course_id,$owner,$cdom,$coowners);
1.387 albertel 5090: &Reply($client, \$outcome, $userinput);
1.248 foxr 5091:
5092:
5093:
5094: return 1;
5095: }
5096: ®ister_handler("autonewcourse", \&validate_course_owner_handler, 0, 1, 0);
1.263 albertel 5097:
1.248 foxr 5098: #
5099: # Validate a course section in the official schedule of classes
5100: # from the institutions point of view (part of autoenrollment).
5101: #
5102: # Formal Parameters:
5103: # $cmd - The command request that got us dispatched.
5104: # $tail - The tail of the command. In this case,
5105: # this is a colon separated set of words that will be split
5106: # into:
5107: # $inst_course_id - The course/section id from the
5108: # institutions point of view.
5109: # $cdom - The domain from the institutions
5110: # point of view.
5111: # $client - Socket open on the client.
5112: # Returns:
5113: # 1 - Indicating processing should continue.
5114: #
5115: sub validate_course_section_handler {
5116: my ($cmd, $tail, $client) = @_;
5117: my $userinput = "$cmd:$tail";
5118: my ($inst_course_id, $cdom) = split(/:/, $tail);
5119:
5120: my $outcome=&localenroll::validate_courseID($inst_course_id,$cdom);
1.387 albertel 5121: &Reply($client, \$outcome, $userinput);
1.248 foxr 5122:
5123:
5124: return 1;
5125: }
5126: ®ister_handler("autovalidatecourse", \&validate_course_section_handler, 0, 1, 0);
5127:
5128: #
1.340 raeburn 5129: # Validate course owner's access to enrollment data for specific class section.
5130: #
5131: #
5132: # Formal Parameters:
5133: # $cmd - The command request that got us dispatched.
5134: # $tail - The tail of the command. In this case this is a colon separated
5135: # set of words that will be split into:
5136: # $inst_class - Institutional code for the specific class section
5137: # $courseowner - The escaped username:domain of the course owner
5138: # $cdom - The domain of the course from the institution's
5139: # point of view.
5140: # $client - The socket open on the client.
5141: # Returns:
5142: # 1 - continue processing.
5143: #
5144:
5145: sub validate_class_access_handler {
5146: my ($cmd, $tail, $client) = @_;
5147: my $userinput = "$cmd:$tail";
1.383 raeburn 5148: my ($inst_class,$ownerlist,$cdom) = split(/:/, $tail);
1.392 raeburn 5149: my $owners = &unescape($ownerlist);
1.341 albertel 5150: my $outcome;
5151: eval {
5152: local($SIG{__DIE__})='DEFAULT';
1.392 raeburn 5153: $outcome=&localenroll::check_section($inst_class,$owners,$cdom);
1.341 albertel 5154: };
1.387 albertel 5155: &Reply($client,\$outcome, $userinput);
1.340 raeburn 5156:
5157: return 1;
5158: }
5159: ®ister_handler("autovalidateclass_sec", \&validate_class_access_handler, 0, 1, 0);
5160:
5161: #
5162: # Create a password for a new LON-CAPA user added by auto-enrollment.
5163: # Only used for case where authentication method for new user is localauth
1.248 foxr 5164: #
5165: # Formal Parameters:
5166: # $cmd - The command request that got us dispatched.
5167: # $tail - The tail of the command. In this case this is a colon separated
5168: # set of words that will be split into:
1.340 raeburn 5169: # $authparam - An authentication parameter (localauth parameter).
1.248 foxr 5170: # $cdom - The domain of the course from the institution's
5171: # point of view.
5172: # $client - The socket open on the client.
5173: # Returns:
5174: # 1 - continue processing.
5175: #
5176: sub create_auto_enroll_password_handler {
5177: my ($cmd, $tail, $client) = @_;
5178: my $userinput = "$cmd:$tail";
5179:
5180: my ($authparam, $cdom) = split(/:/, $userinput);
5181:
5182: my ($create_passwd,$authchk);
5183: ($authparam,
5184: $create_passwd,
5185: $authchk) = &localenroll::create_password($authparam,$cdom);
5186:
5187: &Reply($client, &escape($authparam.':'.$create_passwd.':'.$authchk)."\n",
5188: $userinput);
5189:
5190:
5191: return 1;
5192: }
5193: ®ister_handler("autocreatepassword", \&create_auto_enroll_password_handler,
5194: 0, 1, 0);
5195:
5196: # Retrieve and remove temporary files created by/during autoenrollment.
5197: #
5198: # Formal Parameters:
5199: # $cmd - The command that got us dispatched.
5200: # $tail - The tail of the command. In our case this is a colon
5201: # separated list that will be split into:
5202: # $filename - The name of the file to remove.
5203: # The filename is given as a path relative to
5204: # the LonCAPA temp file directory.
5205: # $client - Socket open on the client.
5206: #
5207: # Returns:
5208: # 1 - Continue processing.
5209: sub retrieve_auto_file_handler {
5210: my ($cmd, $tail, $client) = @_;
5211: my $userinput = "cmd:$tail";
5212:
5213: my ($filename) = split(/:/, $tail);
5214:
5215: my $source = $perlvar{'lonDaemons'}.'/tmp/'.$filename;
5216: if ( (-e $source) && ($filename ne '') ) {
5217: my $reply = '';
5218: if (open(my $fh,$source)) {
5219: while (<$fh>) {
5220: chomp($_);
5221: $_ =~ s/^\s+//g;
5222: $_ =~ s/\s+$//g;
5223: $reply .= $_;
5224: }
5225: close($fh);
5226: &Reply($client, &escape($reply)."\n", $userinput);
5227:
5228: # Does this have to be uncommented??!? (RF).
5229: #
5230: # unlink($source);
5231: } else {
5232: &Failure($client, "error\n", $userinput);
5233: }
5234: } else {
5235: &Failure($client, "error\n", $userinput);
5236: }
5237:
5238:
5239: return 1;
5240: }
5241: ®ister_handler("autoretrieve", \&retrieve_auto_file_handler, 0,1,0);
5242:
1.423 raeburn 5243: sub crsreq_checks_handler {
5244: my ($cmd, $tail, $client) = @_;
5245: my $userinput = "$cmd:$tail";
5246: my $dom = $tail;
5247: my $result;
1.489.2.12 raeburn 5248: my @reqtypes = ('official','unofficial','community','textbook');
1.423 raeburn 5249: eval {
5250: local($SIG{__DIE__})='DEFAULT';
5251: my %validations;
1.424 raeburn 5252: my $response = &localenroll::crsreq_checks($dom,\@reqtypes,
5253: \%validations);
1.423 raeburn 5254: if ($response eq 'ok') {
5255: foreach my $key (keys(%validations)) {
5256: $result .= &escape($key).'='.&Apache::lonnet::freeze_escape($validations{$key}).'&';
5257: }
5258: $result =~ s/\&$//;
5259: } else {
5260: $result = 'error';
5261: }
5262: };
5263: if (!$@) {
5264: &Reply($client, \$result, $userinput);
5265: } else {
5266: &Failure($client,"unknown_cmd\n",$userinput);
5267: }
5268: return 1;
5269: }
5270: ®ister_handler("autocrsreqchecks", \&crsreq_checks_handler, 0, 1, 0);
5271:
5272: sub validate_crsreq_handler {
5273: my ($cmd, $tail, $client) = @_;
5274: my $userinput = "$cmd:$tail";
1.489.2.13 raeburn 5275: my ($dom,$owner,$crstype,$inststatuslist,$instcode,$instseclist,$customdata) = split(/:/, $tail);
1.423 raeburn 5276: $instcode = &unescape($instcode);
5277: $owner = &unescape($owner);
5278: $crstype = &unescape($crstype);
5279: $inststatuslist = &unescape($inststatuslist);
5280: $instcode = &unescape($instcode);
5281: $instseclist = &unescape($instseclist);
1.489.2.13 raeburn 5282: my $custominfo = &Apache::lonnet::thaw_unescape($customdata);
1.423 raeburn 5283: my $outcome;
5284: eval {
5285: local($SIG{__DIE__})='DEFAULT';
5286: $outcome = &localenroll::validate_crsreq($dom,$owner,$crstype,
5287: $inststatuslist,$instcode,
1.489.2.13 raeburn 5288: $instseclist,$custominfo);
1.423 raeburn 5289: };
5290: if (!$@) {
5291: &Reply($client, \$outcome, $userinput);
5292: } else {
5293: &Failure($client,"unknown_cmd\n",$userinput);
5294: }
5295: return 1;
5296: }
5297: ®ister_handler("autocrsreqvalidation", \&validate_crsreq_handler, 0, 1, 0);
5298:
1.489.2.11 raeburn 5299: sub crsreq_update_handler {
5300: my ($cmd, $tail, $client) = @_;
5301: my $userinput = "$cmd:$tail";
1.489.2.14! raeburn 5302: my ($cdom,$cnum,$crstype,$action,$ownername,$ownerdomain,$fullname,$title,$code,
! 5303: $accessstart,$accessend,$infohashref) =
1.489.2.11 raeburn 5304: split(/:/, $tail);
5305: $crstype = &unescape($crstype);
5306: $action = &unescape($action);
5307: $ownername = &unescape($ownername);
5308: $ownerdomain = &unescape($ownerdomain);
5309: $fullname = &unescape($fullname);
5310: $title = &unescape($title);
5311: $code = &unescape($code);
1.489.2.14! raeburn 5312: $accessstart = &unescape($accessstart);
! 5313: $accessend = &unescape($accessend);
1.489.2.11 raeburn 5314: my $incoming = &Apache::lonnet::thaw_unescape($infohashref);
5315: my ($result,$outcome);
5316: eval {
5317: local($SIG{__DIE__})='DEFAULT';
5318: my %rtnhash;
5319: $outcome = &localenroll::crsreq_updates($cdom,$cnum,$crstype,$action,
5320: $ownername,$ownerdomain,$fullname,
1.489.2.14! raeburn 5321: $title,$code,$accessstart,$accessend,
! 5322: $incoming,\%rtnhash);
1.489.2.11 raeburn 5323: if ($outcome eq 'ok') {
5324: my @posskeys = qw(createdweb createdmsg queuedweb queuedmsg formitems reviewweb);
5325: foreach my $key (keys(%rtnhash)) {
5326: if (grep(/^\Q$key\E/,@posskeys)) {
5327: $result .= &escape($key).'='.&Apache::lonnet::freeze_escape($rtnhash{$key}).'&';
5328: }
5329: }
5330: $result =~ s/\&$//;
5331: }
5332: };
5333: if (!$@) {
5334: if ($outcome eq 'ok') {
5335: &Reply($client, \$result, $userinput);
5336: } else {
5337: &Reply($client, "format_error\n", $userinput);
5338: }
5339: } else {
5340: &Failure($client,"unknown_cmd\n",$userinput);
5341: }
5342: return 1;
5343: }
5344: ®ister_handler("autocrsrequpdate", \&crsreq_update_handler, 0, 1, 0);
5345:
1.248 foxr 5346: #
5347: # Read and retrieve institutional code format (for support form).
5348: # Formal Parameters:
5349: # $cmd - Command that dispatched us.
5350: # $tail - Tail of the command. In this case it conatins
5351: # the course domain and the coursename.
5352: # $client - Socket open on the client.
5353: # Returns:
5354: # 1 - Continue processing.
5355: #
5356: sub get_institutional_code_format_handler {
5357: my ($cmd, $tail, $client) = @_;
5358: my $userinput = "$cmd:$tail";
5359:
5360: my $reply;
5361: my($cdom,$course) = split(/:/,$tail);
5362: my @pairs = split/\&/,$course;
5363: my %instcodes = ();
5364: my %codes = ();
5365: my @codetitles = ();
5366: my %cat_titles = ();
5367: my %cat_order = ();
5368: foreach (@pairs) {
5369: my ($key,$value) = split/=/,$_;
5370: $instcodes{&unescape($key)} = &unescape($value);
5371: }
5372: my $formatreply = &localenroll::instcode_format($cdom,
5373: \%instcodes,
5374: \%codes,
5375: \@codetitles,
5376: \%cat_titles,
5377: \%cat_order);
5378: if ($formatreply eq 'ok') {
1.365 albertel 5379: my $codes_str = &Apache::lonnet::hash2str(%codes);
5380: my $codetitles_str = &Apache::lonnet::array2str(@codetitles);
5381: my $cat_titles_str = &Apache::lonnet::hash2str(%cat_titles);
5382: my $cat_order_str = &Apache::lonnet::hash2str(%cat_order);
1.248 foxr 5383: &Reply($client,
5384: $codes_str.':'.$codetitles_str.':'.$cat_titles_str.':'
5385: .$cat_order_str."\n",
5386: $userinput);
5387: } else {
5388: # this else branch added by RF since if not ok, lonc will
5389: # hang waiting on reply until timeout.
5390: #
5391: &Reply($client, "format_error\n", $userinput);
5392: }
5393:
5394: return 1;
5395: }
1.265 albertel 5396: ®ister_handler("autoinstcodeformat",
5397: \&get_institutional_code_format_handler,0,1,0);
1.246 foxr 5398:
1.345 raeburn 5399: sub get_institutional_defaults_handler {
5400: my ($cmd, $tail, $client) = @_;
5401: my $userinput = "$cmd:$tail";
5402:
5403: my $dom = $tail;
5404: my %defaults_hash;
5405: my @code_order;
5406: my $outcome;
5407: eval {
5408: local($SIG{__DIE__})='DEFAULT';
5409: $outcome = &localenroll::instcode_defaults($dom,\%defaults_hash,
5410: \@code_order);
5411: };
5412: if (!$@) {
5413: if ($outcome eq 'ok') {
5414: my $result='';
5415: while (my ($key,$value) = each(%defaults_hash)) {
5416: $result.=&escape($key).'='.&escape($value).'&';
5417: }
5418: $result .= 'code_order='.&escape(join('&',@code_order));
1.387 albertel 5419: &Reply($client,\$result,$userinput);
1.345 raeburn 5420: } else {
5421: &Reply($client,"error\n", $userinput);
5422: }
5423: } else {
5424: &Failure($client,"unknown_cmd\n",$userinput);
5425: }
5426: }
5427: ®ister_handler("autoinstcodedefaults",
5428: \&get_institutional_defaults_handler,0,1,0);
5429:
1.416 raeburn 5430: sub get_possible_instcodes_handler {
5431: my ($cmd, $tail, $client) = @_;
5432: my $userinput = "$cmd:$tail";
5433:
5434: my $reply;
5435: my $cdom = $tail;
1.417 raeburn 5436: my (@codetitles,%cat_titles,%cat_order,@code_order);
1.416 raeburn 5437: my $formatreply = &localenroll::possible_instcodes($cdom,
5438: \@codetitles,
5439: \%cat_titles,
1.417 raeburn 5440: \%cat_order,
5441: \@code_order);
1.416 raeburn 5442: if ($formatreply eq 'ok') {
5443: my $result = join('&',map {&escape($_);} (@codetitles)).':';
1.417 raeburn 5444: $result .= join('&',map {&escape($_);} (@code_order)).':';
1.416 raeburn 5445: foreach my $key (keys(%cat_titles)) {
5446: $result .= &escape($key).'='.&Apache::lonnet::freeze_escape($cat_titles{$key}).'&';
5447: }
5448: $result =~ s/\&$//;
5449: $result .= ':';
5450: foreach my $key (keys(%cat_order)) {
5451: $result .= &escape($key).'='.&Apache::lonnet::freeze_escape($cat_order{$key}).'&';
5452: }
5453: $result =~ s/\&$//;
5454: &Reply($client,\$result,$userinput);
5455: } else {
5456: &Reply($client, "format_error\n", $userinput);
5457: }
5458: return 1;
5459: }
5460: ®ister_handler("autopossibleinstcodes",
5461: \&get_possible_instcodes_handler,0,1,0);
5462:
1.381 raeburn 5463: sub get_institutional_user_rules {
5464: my ($cmd, $tail, $client) = @_;
5465: my $userinput = "$cmd:$tail";
5466: my $dom = &unescape($tail);
5467: my (%rules_hash,@rules_order);
5468: my $outcome;
5469: eval {
5470: local($SIG{__DIE__})='DEFAULT';
5471: $outcome = &localenroll::username_rules($dom,\%rules_hash,\@rules_order);
5472: };
5473: if (!$@) {
5474: if ($outcome eq 'ok') {
5475: my $result;
5476: foreach my $key (keys(%rules_hash)) {
5477: $result .= &escape($key).'='.&Apache::lonnet::freeze_escape($rules_hash{$key}).'&';
5478: }
5479: $result =~ s/\&$//;
5480: $result .= ':';
5481: if (@rules_order > 0) {
5482: foreach my $item (@rules_order) {
5483: $result .= &escape($item).'&';
5484: }
5485: }
5486: $result =~ s/\&$//;
1.387 albertel 5487: &Reply($client,\$result,$userinput);
1.381 raeburn 5488: } else {
5489: &Reply($client,"error\n", $userinput);
5490: }
5491: } else {
5492: &Failure($client,"unknown_cmd\n",$userinput);
5493: }
5494: }
5495: ®ister_handler("instuserrules",\&get_institutional_user_rules,0,1,0);
5496:
1.389 raeburn 5497: sub get_institutional_id_rules {
5498: my ($cmd, $tail, $client) = @_;
5499: my $userinput = "$cmd:$tail";
5500: my $dom = &unescape($tail);
5501: my (%rules_hash,@rules_order);
5502: my $outcome;
5503: eval {
5504: local($SIG{__DIE__})='DEFAULT';
5505: $outcome = &localenroll::id_rules($dom,\%rules_hash,\@rules_order);
5506: };
5507: if (!$@) {
5508: if ($outcome eq 'ok') {
5509: my $result;
5510: foreach my $key (keys(%rules_hash)) {
5511: $result .= &escape($key).'='.&Apache::lonnet::freeze_escape($rules_hash{$key}).'&';
5512: }
5513: $result =~ s/\&$//;
5514: $result .= ':';
5515: if (@rules_order > 0) {
5516: foreach my $item (@rules_order) {
5517: $result .= &escape($item).'&';
5518: }
5519: }
5520: $result =~ s/\&$//;
5521: &Reply($client,\$result,$userinput);
5522: } else {
5523: &Reply($client,"error\n", $userinput);
5524: }
5525: } else {
5526: &Failure($client,"unknown_cmd\n",$userinput);
5527: }
5528: }
5529: ®ister_handler("instidrules",\&get_institutional_id_rules,0,1,0);
5530:
1.397 raeburn 5531: sub get_institutional_selfcreate_rules {
1.396 raeburn 5532: my ($cmd, $tail, $client) = @_;
5533: my $userinput = "$cmd:$tail";
5534: my $dom = &unescape($tail);
5535: my (%rules_hash,@rules_order);
5536: my $outcome;
5537: eval {
5538: local($SIG{__DIE__})='DEFAULT';
1.397 raeburn 5539: $outcome = &localenroll::selfcreate_rules($dom,\%rules_hash,\@rules_order);
1.396 raeburn 5540: };
5541: if (!$@) {
5542: if ($outcome eq 'ok') {
5543: my $result;
5544: foreach my $key (keys(%rules_hash)) {
5545: $result .= &escape($key).'='.&Apache::lonnet::freeze_escape($rules_hash{$key}).'&';
5546: }
5547: $result =~ s/\&$//;
5548: $result .= ':';
5549: if (@rules_order > 0) {
5550: foreach my $item (@rules_order) {
5551: $result .= &escape($item).'&';
5552: }
5553: }
5554: $result =~ s/\&$//;
5555: &Reply($client,\$result,$userinput);
5556: } else {
5557: &Reply($client,"error\n", $userinput);
5558: }
5559: } else {
5560: &Failure($client,"unknown_cmd\n",$userinput);
5561: }
5562: }
1.397 raeburn 5563: ®ister_handler("instemailrules",\&get_institutional_selfcreate_rules,0,1,0);
1.396 raeburn 5564:
1.381 raeburn 5565:
5566: sub institutional_username_check {
5567: my ($cmd, $tail, $client) = @_;
5568: my $userinput = "$cmd:$tail";
5569: my %rulecheck;
5570: my $outcome;
5571: my ($udom,$uname,@rules) = split(/:/,$tail);
5572: $udom = &unescape($udom);
5573: $uname = &unescape($uname);
5574: @rules = map {&unescape($_);} (@rules);
5575: eval {
5576: local($SIG{__DIE__})='DEFAULT';
5577: $outcome = &localenroll::username_check($udom,$uname,\@rules,\%rulecheck);
5578: };
5579: if (!$@) {
5580: if ($outcome eq 'ok') {
5581: my $result='';
5582: foreach my $key (keys(%rulecheck)) {
5583: $result.=&escape($key).'='.&Apache::lonnet::freeze_escape($rulecheck{$key}).'&';
5584: }
1.387 albertel 5585: &Reply($client,\$result,$userinput);
1.381 raeburn 5586: } else {
5587: &Reply($client,"error\n", $userinput);
5588: }
5589: } else {
5590: &Failure($client,"unknown_cmd\n",$userinput);
5591: }
5592: }
5593: ®ister_handler("instrulecheck",\&institutional_username_check,0,1,0);
5594:
1.389 raeburn 5595: sub institutional_id_check {
5596: my ($cmd, $tail, $client) = @_;
5597: my $userinput = "$cmd:$tail";
5598: my %rulecheck;
5599: my $outcome;
5600: my ($udom,$id,@rules) = split(/:/,$tail);
5601: $udom = &unescape($udom);
5602: $id = &unescape($id);
5603: @rules = map {&unescape($_);} (@rules);
5604: eval {
5605: local($SIG{__DIE__})='DEFAULT';
5606: $outcome = &localenroll::id_check($udom,$id,\@rules,\%rulecheck);
5607: };
5608: if (!$@) {
5609: if ($outcome eq 'ok') {
5610: my $result='';
5611: foreach my $key (keys(%rulecheck)) {
5612: $result.=&escape($key).'='.&Apache::lonnet::freeze_escape($rulecheck{$key}).'&';
5613: }
5614: &Reply($client,\$result,$userinput);
5615: } else {
5616: &Reply($client,"error\n", $userinput);
5617: }
5618: } else {
5619: &Failure($client,"unknown_cmd\n",$userinput);
5620: }
5621: }
5622: ®ister_handler("instidrulecheck",\&institutional_id_check,0,1,0);
1.345 raeburn 5623:
1.397 raeburn 5624: sub institutional_selfcreate_check {
1.396 raeburn 5625: my ($cmd, $tail, $client) = @_;
5626: my $userinput = "$cmd:$tail";
5627: my %rulecheck;
5628: my $outcome;
5629: my ($udom,$email,@rules) = split(/:/,$tail);
5630: $udom = &unescape($udom);
5631: $email = &unescape($email);
5632: @rules = map {&unescape($_);} (@rules);
5633: eval {
5634: local($SIG{__DIE__})='DEFAULT';
1.397 raeburn 5635: $outcome = &localenroll::selfcreate_check($udom,$email,\@rules,\%rulecheck);
1.396 raeburn 5636: };
5637: if (!$@) {
5638: if ($outcome eq 'ok') {
5639: my $result='';
5640: foreach my $key (keys(%rulecheck)) {
5641: $result.=&escape($key).'='.&Apache::lonnet::freeze_escape($rulecheck{$key}).'&';
5642: }
5643: &Reply($client,\$result,$userinput);
5644: } else {
5645: &Reply($client,"error\n", $userinput);
5646: }
5647: } else {
5648: &Failure($client,"unknown_cmd\n",$userinput);
5649: }
5650: }
1.397 raeburn 5651: ®ister_handler("instselfcreatecheck",\&institutional_selfcreate_check,0,1,0);
1.396 raeburn 5652:
1.317 raeburn 5653: # Get domain specific conditions for import of student photographs to a course
5654: #
5655: # Retrieves information from photo_permission subroutine in localenroll.
5656: # Returns outcome (ok) if no processing errors, and whether course owner is
5657: # required to accept conditions of use (yes/no).
5658: #
5659: #
5660: sub photo_permission_handler {
5661: my ($cmd, $tail, $client) = @_;
5662: my $userinput = "$cmd:$tail";
5663: my $cdom = $tail;
5664: my ($perm_reqd,$conditions);
1.320 albertel 5665: my $outcome;
5666: eval {
5667: local($SIG{__DIE__})='DEFAULT';
5668: $outcome = &localenroll::photo_permission($cdom,\$perm_reqd,
5669: \$conditions);
5670: };
5671: if (!$@) {
5672: &Reply($client, &escape($outcome.':'.$perm_reqd.':'. $conditions)."\n",
5673: $userinput);
5674: } else {
5675: &Failure($client,"unknown_cmd\n",$userinput);
5676: }
5677: return 1;
1.317 raeburn 5678: }
5679: ®ister_handler("autophotopermission",\&photo_permission_handler,0,1,0);
5680:
5681: #
5682: # Checks if student photo is available for a user in the domain, in the user's
5683: # directory (in /userfiles/internal/studentphoto.jpg).
5684: # Uses localstudentphoto:fetch() to ensure there is an up to date copy of
5685: # the student's photo.
5686:
5687: sub photo_check_handler {
5688: my ($cmd, $tail, $client) = @_;
5689: my $userinput = "$cmd:$tail";
5690: my ($udom,$uname,$pid) = split(/:/,$tail);
5691: $udom = &unescape($udom);
5692: $uname = &unescape($uname);
5693: $pid = &unescape($pid);
5694: my $path=&propath($udom,$uname).'/userfiles/internal/';
5695: if (!-e $path) {
5696: &mkpath($path);
5697: }
5698: my $response;
5699: my $result = &localstudentphoto::fetch($udom,$uname,$pid,\$response);
5700: $result .= ':'.$response;
5701: &Reply($client, &escape($result)."\n",$userinput);
1.320 albertel 5702: return 1;
1.317 raeburn 5703: }
5704: ®ister_handler("autophotocheck",\&photo_check_handler,0,1,0);
5705:
5706: #
5707: # Retrieve information from localenroll about whether to provide a button
5708: # for users who have enbled import of student photos to initiate an
5709: # update of photo files for registered students. Also include
5710: # comment to display alongside button.
5711:
5712: sub photo_choice_handler {
5713: my ($cmd, $tail, $client) = @_;
5714: my $userinput = "$cmd:$tail";
5715: my $cdom = &unescape($tail);
1.320 albertel 5716: my ($update,$comment);
5717: eval {
5718: local($SIG{__DIE__})='DEFAULT';
5719: ($update,$comment) = &localenroll::manager_photo_update($cdom);
5720: };
5721: if (!$@) {
5722: &Reply($client,&escape($update).':'.&escape($comment)."\n",$userinput);
5723: } else {
5724: &Failure($client,"unknown_cmd\n",$userinput);
5725: }
5726: return 1;
1.317 raeburn 5727: }
5728: ®ister_handler("autophotochoice",\&photo_choice_handler,0,1,0);
5729:
1.265 albertel 5730: #
5731: # Gets a student's photo to exist (in the correct image type) in the user's
5732: # directory.
5733: # Formal Parameters:
5734: # $cmd - The command request that got us dispatched.
5735: # $tail - A colon separated set of words that will be split into:
5736: # $domain - student's domain
5737: # $uname - student username
5738: # $type - image type desired
5739: # $client - The socket open on the client.
5740: # Returns:
5741: # 1 - continue processing.
1.317 raeburn 5742:
1.265 albertel 5743: sub student_photo_handler {
5744: my ($cmd, $tail, $client) = @_;
1.317 raeburn 5745: my ($domain,$uname,$ext,$type) = split(/:/, $tail);
1.265 albertel 5746:
1.317 raeburn 5747: my $path=&propath($domain,$uname). '/userfiles/internal/';
5748: my $filename = 'studentphoto.'.$ext;
5749: if ($type eq 'thumbnail') {
5750: $filename = 'studentphoto_tn.'.$ext;
5751: }
5752: if (-e $path.$filename) {
1.265 albertel 5753: &Reply($client,"ok\n","$cmd:$tail");
5754: return 1;
5755: }
5756: &mkpath($path);
1.317 raeburn 5757: my $file;
5758: if ($type eq 'thumbnail') {
1.320 albertel 5759: eval {
5760: local($SIG{__DIE__})='DEFAULT';
5761: $file=&localstudentphoto::fetch_thumbnail($domain,$uname);
5762: };
1.317 raeburn 5763: } else {
5764: $file=&localstudentphoto::fetch($domain,$uname);
5765: }
1.265 albertel 5766: if (!$file) {
5767: &Failure($client,"unavailable\n","$cmd:$tail");
5768: return 1;
5769: }
1.317 raeburn 5770: if (!-e $path.$filename) { &convert_photo($file,$path.$filename); }
5771: if (-e $path.$filename) {
1.265 albertel 5772: &Reply($client,"ok\n","$cmd:$tail");
5773: return 1;
5774: }
5775: &Failure($client,"unable_to_convert\n","$cmd:$tail");
5776: return 1;
5777: }
5778: ®ister_handler("studentphoto", \&student_photo_handler, 0, 1, 0);
1.246 foxr 5779:
1.361 raeburn 5780: sub inst_usertypes_handler {
5781: my ($cmd, $domain, $client) = @_;
5782: my $res;
5783: my $userinput = $cmd.":".$domain; # For logging purposes.
1.370 albertel 5784: my (%typeshash,@order,$result);
5785: eval {
5786: local($SIG{__DIE__})='DEFAULT';
5787: $result=&localenroll::inst_usertypes($domain,\%typeshash,\@order);
5788: };
5789: if ($result eq 'ok') {
1.361 raeburn 5790: if (keys(%typeshash) > 0) {
5791: foreach my $key (keys(%typeshash)) {
5792: $res.=&escape($key).'='.&escape($typeshash{$key}).'&';
5793: }
5794: }
5795: $res=~s/\&$//;
5796: $res .= ':';
5797: if (@order > 0) {
5798: foreach my $item (@order) {
5799: $res .= &escape($item).'&';
5800: }
5801: }
5802: $res=~s/\&$//;
5803: }
1.387 albertel 5804: &Reply($client, \$res, $userinput);
1.361 raeburn 5805: return 1;
5806: }
5807: ®ister_handler("inst_usertypes", \&inst_usertypes_handler, 0, 1, 0);
5808:
1.264 albertel 5809: # mkpath makes all directories for a file, expects an absolute path with a
5810: # file or a trailing / if just a dir is passed
5811: # returns 1 on success 0 on failure
5812: sub mkpath {
5813: my ($file)=@_;
5814: my @parts=split(/\//,$file,-1);
5815: my $now=$parts[0].'/'.$parts[1].'/'.$parts[2];
5816: for (my $i=3;$i<= ($#parts-1);$i++) {
1.265 albertel 5817: $now.='/'.$parts[$i];
1.264 albertel 5818: if (!-e $now) {
5819: if (!mkdir($now,0770)) { return 0; }
5820: }
5821: }
5822: return 1;
5823: }
5824:
1.207 foxr 5825: #---------------------------------------------------------------
5826: #
5827: # Getting, decoding and dispatching requests:
5828: #
5829: #
5830: # Get a Request:
5831: # Gets a Request message from the client. The transaction
5832: # is defined as a 'line' of text. We remove the new line
5833: # from the text line.
1.226 foxr 5834: #
1.211 albertel 5835: sub get_request {
1.207 foxr 5836: my $input = <$client>;
5837: chomp($input);
1.226 foxr 5838:
1.234 foxr 5839: &Debug("get_request: Request = $input\n");
1.207 foxr 5840:
5841: &status('Processing '.$clientname.':'.$input);
5842:
5843: return $input;
5844: }
1.212 foxr 5845: #---------------------------------------------------------------
5846: #
5847: # Process a request. This sub should shrink as each action
5848: # gets farmed out into a separat sub that is registered
5849: # with the dispatch hash.
5850: #
5851: # Parameters:
5852: # user_input - The request received from the client (lonc).
5853: # Returns:
5854: # true to keep processing, false if caller should exit.
5855: #
5856: sub process_request {
5857: my ($userinput) = @_; # Easier for now to break style than to
5858: # fix all the userinput -> user_input.
5859: my $wasenc = 0; # True if request was encrypted.
5860: # ------------------------------------------------------------ See if encrypted
1.322 albertel 5861: # for command
5862: # sethost:<server>
5863: # <command>:<args>
5864: # we just send it to the processor
5865: # for
5866: # sethost:<server>:<command>:<args>
5867: # we do the implict set host and then do the command
5868: if ($userinput =~ /^sethost:/) {
5869: (my $cmd,my $newid,$userinput) = split(':',$userinput,3);
5870: if (defined($userinput)) {
5871: &sethost("$cmd:$newid");
5872: } else {
5873: $userinput = "$cmd:$newid";
5874: }
5875: }
5876:
1.212 foxr 5877: if ($userinput =~ /^enc/) {
5878: $userinput = decipher($userinput);
5879: $wasenc=1;
5880: if(!$userinput) { # Cipher not defined.
1.251 foxr 5881: &Failure($client, "error: Encrypted data without negotated key\n");
1.212 foxr 5882: return 0;
5883: }
5884: }
5885: Debug("process_request: $userinput\n");
5886:
1.213 foxr 5887: #
5888: # The 'correct way' to add a command to lond is now to
5889: # write a sub to execute it and Add it to the command dispatch
5890: # hash via a call to register_handler.. The comments to that
5891: # sub should give you enough to go on to show how to do this
5892: # along with the examples that are building up as this code
5893: # is getting refactored. Until all branches of the
5894: # if/elseif monster below have been factored out into
5895: # separate procesor subs, if the dispatch hash is missing
5896: # the command keyword, we will fall through to the remainder
5897: # of the if/else chain below in order to keep this thing in
5898: # working order throughout the transmogrification.
5899:
5900: my ($command, $tail) = split(/:/, $userinput, 2);
5901: chomp($command);
5902: chomp($tail);
5903: $tail =~ s/(\r)//; # This helps people debugging with e.g. telnet.
1.214 foxr 5904: $command =~ s/(\r)//; # And this too for parameterless commands.
5905: if(!$tail) {
5906: $tail =""; # defined but blank.
5907: }
1.213 foxr 5908:
5909: &Debug("Command received: $command, encoded = $wasenc");
5910:
5911: if(defined $Dispatcher{$command}) {
5912:
5913: my $dispatch_info = $Dispatcher{$command};
5914: my $handler = $$dispatch_info[0];
5915: my $need_encode = $$dispatch_info[1];
5916: my $client_types = $$dispatch_info[2];
5917: Debug("Matched dispatch hash: mustencode: $need_encode "
5918: ."ClientType $client_types");
5919:
5920: # Validate the request:
5921:
5922: my $ok = 1;
5923: my $requesterprivs = 0;
5924: if(&isClient()) {
5925: $requesterprivs |= $CLIENT_OK;
5926: }
5927: if(&isManager()) {
5928: $requesterprivs |= $MANAGER_OK;
5929: }
5930: if($need_encode && (!$wasenc)) {
5931: Debug("Must encode but wasn't: $need_encode $wasenc");
5932: $ok = 0;
5933: }
5934: if(($client_types & $requesterprivs) == 0) {
5935: Debug("Client not privileged to do this operation");
5936: $ok = 0;
5937: }
5938:
5939: if($ok) {
5940: Debug("Dispatching to handler $command $tail");
5941: my $keep_going = &$handler($command, $tail, $client);
5942: return $keep_going;
5943: } else {
5944: Debug("Refusing to dispatch because client did not match requirements");
5945: Failure($client, "refused\n", $userinput);
5946: return 1;
5947: }
5948:
5949: }
5950:
1.262 foxr 5951: print $client "unknown_cmd\n";
1.212 foxr 5952: # -------------------------------------------------------------------- complete
5953: Debug("process_request - returning 1");
5954: return 1;
5955: }
1.207 foxr 5956: #
5957: # Decipher encoded traffic
5958: # Parameters:
5959: # input - Encoded data.
5960: # Returns:
5961: # Decoded data or undef if encryption key was not yet negotiated.
5962: # Implicit input:
5963: # cipher - This global holds the negotiated encryption key.
5964: #
1.211 albertel 5965: sub decipher {
1.207 foxr 5966: my ($input) = @_;
5967: my $output = '';
1.212 foxr 5968:
5969:
1.207 foxr 5970: if($cipher) {
5971: my($enc, $enclength, $encinput) = split(/:/, $input);
5972: for(my $encidx = 0; $encidx < length($encinput); $encidx += 16) {
5973: $output .=
5974: $cipher->decrypt(pack("H16", substr($encinput, $encidx, 16)));
5975: }
5976: return substr($output, 0, $enclength);
5977: } else {
5978: return undef;
5979: }
5980: }
5981:
5982: #
5983: # Register a command processor. This function is invoked to register a sub
5984: # to process a request. Once registered, the ProcessRequest sub can automatically
5985: # dispatch requests to an appropriate sub, and do the top level validity checking
5986: # as well:
5987: # - Is the keyword recognized.
5988: # - Is the proper client type attempting the request.
5989: # - Is the request encrypted if it has to be.
5990: # Parameters:
5991: # $request_name - Name of the request being registered.
5992: # This is the command request that will match
5993: # against the hash keywords to lookup the information
5994: # associated with the dispatch information.
5995: # $procedure - Reference to a sub to call to process the request.
5996: # All subs get called as follows:
5997: # Procedure($cmd, $tail, $replyfd, $key)
5998: # $cmd - the actual keyword that invoked us.
5999: # $tail - the tail of the request that invoked us.
6000: # $replyfd- File descriptor connected to the client
6001: # $must_encode - True if the request must be encoded to be good.
6002: # $client_ok - True if it's ok for a client to request this.
6003: # $manager_ok - True if it's ok for a manager to request this.
6004: # Side effects:
6005: # - On success, the Dispatcher hash has an entry added for the key $RequestName
6006: # - On failure, the program will die as it's a bad internal bug to try to
6007: # register a duplicate command handler.
6008: #
1.211 albertel 6009: sub register_handler {
1.212 foxr 6010: my ($request_name,$procedure,$must_encode, $client_ok,$manager_ok) = @_;
1.207 foxr 6011:
6012: # Don't allow duplication#
6013:
6014: if (defined $Dispatcher{$request_name}) {
6015: die "Attempting to define a duplicate request handler for $request_name\n";
6016: }
6017: # Build the client type mask:
6018:
6019: my $client_type_mask = 0;
6020: if($client_ok) {
6021: $client_type_mask |= $CLIENT_OK;
6022: }
6023: if($manager_ok) {
6024: $client_type_mask |= $MANAGER_OK;
6025: }
6026:
6027: # Enter the hash:
6028:
6029: my @entry = ($procedure, $must_encode, $client_type_mask);
6030:
6031: $Dispatcher{$request_name} = \@entry;
6032:
6033: }
6034:
6035:
6036: #------------------------------------------------------------------
6037:
6038:
6039:
6040:
1.141 foxr 6041: #
1.96 foxr 6042: # Convert an error return code from lcpasswd to a string value.
6043: #
6044: sub lcpasswdstrerror {
6045: my $ErrorCode = shift;
1.97 foxr 6046: if(($ErrorCode < 0) || ($ErrorCode > $lastpwderror)) {
1.96 foxr 6047: return "lcpasswd Unrecognized error return value ".$ErrorCode;
6048: } else {
1.98 foxr 6049: return $passwderrors[$ErrorCode];
1.96 foxr 6050: }
6051: }
6052:
1.23 harris41 6053: # grabs exception and records it to log before exiting
6054: sub catchexception {
1.27 albertel 6055: my ($error)=@_;
1.25 www 6056: $SIG{'QUIT'}='DEFAULT';
6057: $SIG{__DIE__}='DEFAULT';
1.165 albertel 6058: &status("Catching exception");
1.190 albertel 6059: &logthis("<font color='red'>CRITICAL: "
1.373 albertel 6060: ."ABNORMAL EXIT. Child $$ for server ".$perlvar{'lonHostID'}." died through "
1.27 albertel 6061: ."a crash with this error msg->[$error]</font>");
1.57 www 6062: &logthis('Famous last words: '.$status.' - '.$lastlog);
1.27 albertel 6063: if ($client) { print $client "error: $error\n"; }
1.59 www 6064: $server->close();
1.27 albertel 6065: die($error);
1.23 harris41 6066: }
1.63 www 6067: sub timeout {
1.165 albertel 6068: &status("Handling Timeout");
1.190 albertel 6069: &logthis("<font color='red'>CRITICAL: TIME OUT ".$$."</font>");
1.63 www 6070: &catchexception('Timeout');
6071: }
1.22 harris41 6072: # -------------------------------- Set signal handlers to record abnormal exits
6073:
1.226 foxr 6074:
1.22 harris41 6075: $SIG{'QUIT'}=\&catchexception;
6076: $SIG{__DIE__}=\&catchexception;
6077:
1.81 matthew 6078: # ---------------------------------- Read loncapa_apache.conf and loncapa.conf
1.95 harris41 6079: &status("Read loncapa.conf and loncapa_apache.conf");
6080: my $perlvarref=LONCAPA::Configuration::read_conf('loncapa.conf');
1.141 foxr 6081: %perlvar=%{$perlvarref};
1.80 harris41 6082: undef $perlvarref;
1.19 www 6083:
1.35 harris41 6084: # ----------------------------- Make sure this process is running from user=www
6085: my $wwwid=getpwnam('www');
6086: if ($wwwid!=$<) {
1.134 albertel 6087: my $emailto="$perlvar{'lonAdmEMail'},$perlvar{'lonSysEMail'}";
6088: my $subj="LON: $currenthostid User ID mismatch";
1.37 harris41 6089: system("echo 'User ID mismatch. lond must be run as user www.' |\
1.35 harris41 6090: mailto $emailto -s '$subj' > /dev/null");
6091: exit 1;
6092: }
6093:
1.19 www 6094: # --------------------------------------------- Check if other instance running
6095:
6096: my $pidfile="$perlvar{'lonDaemons'}/logs/lond.pid";
6097:
6098: if (-e $pidfile) {
6099: my $lfh=IO::File->new("$pidfile");
6100: my $pide=<$lfh>;
6101: chomp($pide);
1.29 harris41 6102: if (kill 0 => $pide) { die "already running"; }
1.19 www 6103: }
1.1 albertel 6104:
6105: # ------------------------------------------------------------- Read hosts file
6106:
6107:
6108:
6109: # establish SERVER socket, bind and listen.
6110: $server = IO::Socket::INET->new(LocalPort => $perlvar{'londPort'},
6111: Type => SOCK_STREAM,
6112: Proto => 'tcp',
1.469 foxr 6113: ReuseAddr => 1,
1.1 albertel 6114: Listen => 10 )
1.29 harris41 6115: or die "making socket: $@\n";
1.1 albertel 6116:
6117: # --------------------------------------------------------- Do global variables
6118:
6119: # global variables
6120:
1.134 albertel 6121: my %children = (); # keys are current child process IDs
1.1 albertel 6122:
6123: sub REAPER { # takes care of dead children
6124: $SIG{CHLD} = \&REAPER;
1.165 albertel 6125: &status("Handling child death");
1.178 foxr 6126: my $pid;
6127: do {
6128: $pid = waitpid(-1,&WNOHANG());
6129: if (defined($children{$pid})) {
6130: &logthis("Child $pid died");
6131: delete($children{$pid});
1.183 albertel 6132: } elsif ($pid > 0) {
1.178 foxr 6133: &logthis("Unknown Child $pid died");
6134: }
6135: } while ( $pid > 0 );
6136: foreach my $child (keys(%children)) {
6137: $pid = waitpid($child,&WNOHANG());
6138: if ($pid > 0) {
6139: &logthis("Child $child - $pid looks like we missed it's death");
6140: delete($children{$pid});
6141: }
1.176 albertel 6142: }
1.165 albertel 6143: &status("Finished Handling child death");
1.1 albertel 6144: }
6145:
6146: sub HUNTSMAN { # signal handler for SIGINT
1.165 albertel 6147: &status("Killing children (INT)");
1.1 albertel 6148: local($SIG{CHLD}) = 'IGNORE'; # we're going to kill our children
6149: kill 'INT' => keys %children;
1.59 www 6150: &logthis("Free socket: ".shutdown($server,2)); # free up socket
1.1 albertel 6151: my $execdir=$perlvar{'lonDaemons'};
6152: unlink("$execdir/logs/lond.pid");
1.190 albertel 6153: &logthis("<font color='red'>CRITICAL: Shutting down</font>");
1.165 albertel 6154: &status("Done killing children");
1.1 albertel 6155: exit; # clean up with dignity
6156: }
6157:
6158: sub HUPSMAN { # signal handler for SIGHUP
6159: local($SIG{CHLD}) = 'IGNORE'; # we're going to kill our children
1.165 albertel 6160: &status("Killing children for restart (HUP)");
1.1 albertel 6161: kill 'INT' => keys %children;
1.59 www 6162: &logthis("Free socket: ".shutdown($server,2)); # free up socket
1.190 albertel 6163: &logthis("<font color='red'>CRITICAL: Restarting</font>");
1.134 albertel 6164: my $execdir=$perlvar{'lonDaemons'};
1.30 harris41 6165: unlink("$execdir/logs/lond.pid");
1.165 albertel 6166: &status("Restarting self (HUP)");
1.1 albertel 6167: exec("$execdir/lond"); # here we go again
6168: }
6169:
1.144 foxr 6170: #
1.148 foxr 6171: # Reload the Apache daemon's state.
1.150 foxr 6172: # This is done by invoking /home/httpd/perl/apachereload
6173: # a setuid perl script that can be root for us to do this job.
1.148 foxr 6174: #
6175: sub ReloadApache {
1.473 raeburn 6176: # --------------------------- Handle case of another apachereload process (locking)
1.474 raeburn 6177: if (&LONCAPA::try_to_lock('/tmp/lock_apachereload')) {
6178: my $execdir = $perlvar{'lonDaemons'};
6179: my $script = $execdir."/apachereload";
6180: system($script);
6181: unlink('/tmp/lock_apachereload'); # Remove the lock file.
6182: }
1.148 foxr 6183: }
6184:
6185: #
1.144 foxr 6186: # Called in response to a USR2 signal.
6187: # - Reread hosts.tab
6188: # - All children connected to hosts that were removed from hosts.tab
6189: # are killed via SIGINT
6190: # - All children connected to previously existing hosts are sent SIGUSR1
6191: # - Our internal hosts hash is updated to reflect the new contents of
6192: # hosts.tab causing connections from hosts added to hosts.tab to
6193: # now be honored.
6194: #
6195: sub UpdateHosts {
1.165 albertel 6196: &status("Reload hosts.tab");
1.147 foxr 6197: logthis('<font color="blue"> Updating connections </font>');
1.148 foxr 6198: #
6199: # The %children hash has the set of IP's we currently have children
6200: # on. These need to be matched against records in the hosts.tab
6201: # Any ip's no longer in the table get killed off they correspond to
6202: # either dropped or changed hosts. Note that the re-read of the table
6203: # will take care of new and changed hosts as connections come into being.
6204:
1.371 albertel 6205: &Apache::lonnet::reset_hosts_info();
1.148 foxr 6206:
1.368 albertel 6207: foreach my $child (keys(%children)) {
1.148 foxr 6208: my $childip = $children{$child};
1.374 albertel 6209: if ($childip ne '127.0.0.1'
6210: && !defined(&Apache::lonnet::get_hosts_from_ip($childip))) {
1.149 foxr 6211: logthis('<font color="blue"> UpdateHosts killing child '
6212: ." $child for ip $childip </font>");
1.148 foxr 6213: kill('INT', $child);
1.149 foxr 6214: } else {
6215: logthis('<font color="green"> keeping child for ip '
6216: ." $childip (pid=$child) </font>");
1.148 foxr 6217: }
6218: }
6219: ReloadApache;
1.165 albertel 6220: &status("Finished reloading hosts.tab");
1.144 foxr 6221: }
6222:
1.148 foxr 6223:
1.57 www 6224: sub checkchildren {
1.165 albertel 6225: &status("Checking on the children (sending signals)");
1.57 www 6226: &initnewstatus();
6227: &logstatus();
6228: &logthis('Going to check on the children');
1.134 albertel 6229: my $docdir=$perlvar{'lonDocRoot'};
1.61 harris41 6230: foreach (sort keys %children) {
1.221 albertel 6231: #sleep 1;
1.57 www 6232: unless (kill 'USR1' => $_) {
6233: &logthis ('Child '.$_.' is dead');
6234: &logstatus($$.' is dead');
1.221 albertel 6235: delete($children{$_});
1.57 www 6236: }
1.61 harris41 6237: }
1.63 www 6238: sleep 5;
1.212 foxr 6239: $SIG{ALRM} = sub { Debug("timeout");
6240: die "timeout"; };
1.113 albertel 6241: $SIG{__DIE__} = 'DEFAULT';
1.165 albertel 6242: &status("Checking on the children (waiting for reports)");
1.63 www 6243: foreach (sort keys %children) {
6244: unless (-e "$docdir/lon-status/londchld/$_.txt") {
1.113 albertel 6245: eval {
6246: alarm(300);
1.63 www 6247: &logthis('Child '.$_.' did not respond');
1.67 albertel 6248: kill 9 => $_;
1.131 albertel 6249: #$emailto="$perlvar{'lonAdmEMail'},$perlvar{'lonSysEMail'}";
6250: #$subj="LON: $currenthostid killed lond process $_";
6251: #my $result=`echo 'Killed lond process $_.' | mailto $emailto -s '$subj' > /dev/null`;
6252: #$execdir=$perlvar{'lonDaemons'};
6253: #$result=`/bin/cp $execdir/logs/lond.log $execdir/logs/lond.log.$_`;
1.221 albertel 6254: delete($children{$_});
1.113 albertel 6255: alarm(0);
6256: }
1.63 www 6257: }
6258: }
1.113 albertel 6259: $SIG{ALRM} = 'DEFAULT';
1.155 albertel 6260: $SIG{__DIE__} = \&catchexception;
1.165 albertel 6261: &status("Finished checking children");
1.221 albertel 6262: &logthis('Finished Checking children');
1.57 www 6263: }
6264:
1.1 albertel 6265: # --------------------------------------------------------------------- Logging
6266:
6267: sub logthis {
6268: my $message=shift;
6269: my $execdir=$perlvar{'lonDaemons'};
6270: my $fh=IO::File->new(">>$execdir/logs/lond.log");
6271: my $now=time;
6272: my $local=localtime($now);
1.58 www 6273: $lastlog=$local.': '.$message;
1.1 albertel 6274: print $fh "$local ($$): $message\n";
6275: }
6276:
1.77 foxr 6277: # ------------------------- Conditional log if $DEBUG true.
6278: sub Debug {
6279: my $message = shift;
6280: if($DEBUG) {
6281: &logthis($message);
6282: }
6283: }
1.161 foxr 6284:
6285: #
6286: # Sub to do replies to client.. this gives a hook for some
6287: # debug tracing too:
6288: # Parameters:
6289: # fd - File open on client.
6290: # reply - Text to send to client.
6291: # request - Original request from client.
6292: #
6293: sub Reply {
1.192 foxr 6294: my ($fd, $reply, $request) = @_;
1.387 albertel 6295: if (ref($reply)) {
6296: print $fd $$reply;
6297: print $fd "\n";
6298: if ($DEBUG) { Debug("Request was $request Reply was $$reply"); }
6299: } else {
6300: print $fd $reply;
6301: if ($DEBUG) { Debug("Request was $request Reply was $reply"); }
6302: }
1.212 foxr 6303: $Transactions++;
6304: }
6305:
6306:
6307: #
6308: # Sub to report a failure.
6309: # This function:
6310: # - Increments the failure statistic counters.
6311: # - Invokes Reply to send the error message to the client.
6312: # Parameters:
6313: # fd - File descriptor open on the client
6314: # reply - Reply text to emit.
6315: # request - The original request message (used by Reply
6316: # to debug if that's enabled.
6317: # Implicit outputs:
6318: # $Failures- The number of failures is incremented.
6319: # Reply (invoked here) sends a message to the
6320: # client:
6321: #
6322: sub Failure {
6323: my $fd = shift;
6324: my $reply = shift;
6325: my $request = shift;
6326:
6327: $Failures++;
6328: Reply($fd, $reply, $request); # That's simple eh?
1.161 foxr 6329: }
1.57 www 6330: # ------------------------------------------------------------------ Log status
6331:
6332: sub logstatus {
1.178 foxr 6333: &status("Doing logging");
6334: my $docdir=$perlvar{'lonDocRoot'};
6335: {
6336: my $fh=IO::File->new(">$docdir/lon-status/londchld/$$.txt");
1.200 matthew 6337: print $fh $status."\n".$lastlog."\n".time."\n$keymode";
1.178 foxr 6338: $fh->close();
6339: }
1.221 albertel 6340: &status("Finished $$.txt");
6341: {
6342: open(LOG,">>$docdir/lon-status/londstatus.txt");
6343: flock(LOG,LOCK_EX);
6344: print LOG $$."\t".$clientname."\t".$currenthostid."\t"
6345: .$status."\t".$lastlog."\t $keymode\n";
1.275 albertel 6346: flock(LOG,LOCK_UN);
1.221 albertel 6347: close(LOG);
6348: }
1.178 foxr 6349: &status("Finished logging");
1.57 www 6350: }
6351:
6352: sub initnewstatus {
6353: my $docdir=$perlvar{'lonDocRoot'};
6354: my $fh=IO::File->new(">$docdir/lon-status/londstatus.txt");
1.460 foxr 6355: my $now=time();
1.57 www 6356: my $local=localtime($now);
6357: print $fh "LOND status $local - parent $$\n\n";
1.64 www 6358: opendir(DIR,"$docdir/lon-status/londchld");
1.134 albertel 6359: while (my $filename=readdir(DIR)) {
1.64 www 6360: unlink("$docdir/lon-status/londchld/$filename");
6361: }
6362: closedir(DIR);
1.57 www 6363: }
6364:
6365: # -------------------------------------------------------------- Status setting
6366:
6367: sub status {
6368: my $what=shift;
6369: my $now=time;
6370: my $local=localtime($now);
1.178 foxr 6371: $status=$local.': '.$what;
6372: $0='lond: '.$what.' '.$local;
1.57 www 6373: }
1.11 www 6374:
1.13 www 6375: # -------------------------------------------------------------- Talk to lonsql
6376:
1.234 foxr 6377: sub sql_reply {
1.12 harris41 6378: my ($cmd)=@_;
1.234 foxr 6379: my $answer=&sub_sql_reply($cmd);
6380: if ($answer eq 'con_lost') { $answer=&sub_sql_reply($cmd); }
1.12 harris41 6381: return $answer;
6382: }
6383:
1.234 foxr 6384: sub sub_sql_reply {
1.12 harris41 6385: my ($cmd)=@_;
6386: my $unixsock="mysqlsock";
6387: my $peerfile="$perlvar{'lonSockDir'}/$unixsock";
6388: my $sclient=IO::Socket::UNIX->new(Peer =>"$peerfile",
6389: Type => SOCK_STREAM,
6390: Timeout => 10)
6391: or return "con_lost";
1.319 www 6392: print $sclient "$cmd:$currentdomainid\n";
1.12 harris41 6393: my $answer=<$sclient>;
6394: chomp($answer);
6395: if (!$answer) { $answer="con_lost"; }
6396: return $answer;
6397: }
6398:
1.1 albertel 6399: # --------------------------------------- Is this the home server of an author?
1.11 www 6400:
1.1 albertel 6401: sub ishome {
6402: my $author=shift;
6403: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
6404: my ($udom,$uname)=split(/\//,$author);
6405: my $proname=propath($udom,$uname);
6406: if (-e $proname) {
6407: return 'owner';
6408: } else {
6409: return 'not_owner';
6410: }
6411: }
6412:
6413: # ======================================================= Continue main program
6414: # ---------------------------------------------------- Fork once and dissociate
6415:
1.134 albertel 6416: my $fpid=fork;
1.1 albertel 6417: exit if $fpid;
1.29 harris41 6418: die "Couldn't fork: $!" unless defined ($fpid);
1.1 albertel 6419:
1.29 harris41 6420: POSIX::setsid() or die "Can't start new session: $!";
1.1 albertel 6421:
6422: # ------------------------------------------------------- Write our PID on disk
6423:
1.134 albertel 6424: my $execdir=$perlvar{'lonDaemons'};
1.1 albertel 6425: open (PIDSAVE,">$execdir/logs/lond.pid");
6426: print PIDSAVE "$$\n";
6427: close(PIDSAVE);
1.190 albertel 6428: &logthis("<font color='red'>CRITICAL: ---------- Starting ----------</font>");
1.57 www 6429: &status('Starting');
1.1 albertel 6430:
1.106 foxr 6431:
1.1 albertel 6432:
6433: # ----------------------------------------------------- Install signal handlers
6434:
1.57 www 6435:
1.1 albertel 6436: $SIG{CHLD} = \&REAPER;
6437: $SIG{INT} = $SIG{TERM} = \&HUNTSMAN;
6438: $SIG{HUP} = \&HUPSMAN;
1.57 www 6439: $SIG{USR1} = \&checkchildren;
1.144 foxr 6440: $SIG{USR2} = \&UpdateHosts;
1.106 foxr 6441:
1.148 foxr 6442: # Read the host hashes:
1.368 albertel 6443: &Apache::lonnet::load_hosts_tab();
1.447 raeburn 6444: my %iphost = &Apache::lonnet::get_iphost(1);
1.106 foxr 6445:
1.480 raeburn 6446: $dist=`$perlvar{'lonDaemons'}/distprobe`;
1.286 albertel 6447:
1.471 raeburn 6448: my $arch = `uname -i`;
1.475 raeburn 6449: chomp($arch);
1.471 raeburn 6450: if ($arch eq 'unknown') {
6451: $arch = `uname -m`;
1.475 raeburn 6452: chomp($arch);
1.471 raeburn 6453: }
6454:
1.106 foxr 6455: # --------------------------------------------------------------
6456: # Accept connections. When a connection comes in, it is validated
6457: # and if good, a child process is created to process transactions
6458: # along the connection.
6459:
1.1 albertel 6460: while (1) {
1.165 albertel 6461: &status('Starting accept');
1.106 foxr 6462: $client = $server->accept() or next;
1.165 albertel 6463: &status('Accepted '.$client.' off to spawn');
1.386 albertel 6464: make_new_child($client);
1.165 albertel 6465: &status('Finished spawning');
1.1 albertel 6466: }
6467:
1.212 foxr 6468: sub make_new_child {
6469: my $pid;
6470: # my $cipher; # Now global
6471: my $sigset;
1.178 foxr 6472:
1.212 foxr 6473: $client = shift;
6474: &status('Starting new child '.$client);
6475: &logthis('<font color="green"> Attempting to start child ('.$client.
6476: ")</font>");
6477: # block signal for fork
6478: $sigset = POSIX::SigSet->new(SIGINT);
6479: sigprocmask(SIG_BLOCK, $sigset)
6480: or die "Can't block SIGINT for fork: $!\n";
1.178 foxr 6481:
1.212 foxr 6482: die "fork: $!" unless defined ($pid = fork);
1.178 foxr 6483:
1.212 foxr 6484: $client->sockopt(SO_KEEPALIVE, 1); # Enable monitoring of
6485: # connection liveness.
1.178 foxr 6486:
1.212 foxr 6487: #
6488: # Figure out who we're talking to so we can record the peer in
6489: # the pid hash.
6490: #
6491: my $caller = getpeername($client);
6492: my ($port,$iaddr);
6493: if (defined($caller) && length($caller) > 0) {
6494: ($port,$iaddr)=unpack_sockaddr_in($caller);
6495: } else {
6496: &logthis("Unable to determine who caller was, getpeername returned nothing");
6497: }
6498: if (defined($iaddr)) {
6499: $clientip = inet_ntoa($iaddr);
6500: Debug("Connected with $clientip");
6501: } else {
6502: &logthis("Unable to determine clientip");
6503: $clientip='Unavailable';
6504: }
6505:
6506: if ($pid) {
6507: # Parent records the child's birth and returns.
6508: sigprocmask(SIG_UNBLOCK, $sigset)
6509: or die "Can't unblock SIGINT for fork: $!\n";
6510: $children{$pid} = $clientip;
6511: &status('Started child '.$pid);
1.462 foxr 6512: close($client);
1.212 foxr 6513: return;
6514: } else {
6515: # Child can *not* return from this subroutine.
6516: $SIG{INT} = 'DEFAULT'; # make SIGINT kill us as it did before
6517: $SIG{CHLD} = 'DEFAULT'; #make this default so that pwauth returns
6518: #don't get intercepted
6519: $SIG{USR1}= \&logstatus;
6520: $SIG{ALRM}= \&timeout;
1.468 foxr 6521: #
6522: # Block sigpipe as it gets thrownon socket disconnect and we want to
6523: # deal with that as a read faiure instead.
6524: #
6525: my $blockset = POSIX::SigSet->new(SIGPIPE);
6526: sigprocmask(SIG_BLOCK, $blockset);
6527:
1.212 foxr 6528: $lastlog='Forked ';
6529: $status='Forked';
1.178 foxr 6530:
1.212 foxr 6531: # unblock signals
6532: sigprocmask(SIG_UNBLOCK, $sigset)
6533: or die "Can't unblock SIGINT for fork: $!\n";
1.178 foxr 6534:
1.212 foxr 6535: # my $tmpsnum=0; # Now global
6536: #---------------------------------------------------- kerberos 5 initialization
6537: &Authen::Krb5::init_context();
1.359 raeburn 6538: unless (($dist eq 'fedora5') || ($dist eq 'fedora4') ||
1.489.2.2 raeburn 6539: ($dist eq 'fedora6') || ($dist eq 'suse9.3') ||
1.489.2.10 raeburn 6540: ($dist eq 'suse12.2') || ($dist eq 'suse12.3') ||
6541: ($dist eq 'suse13.1')) {
1.286 albertel 6542: &Authen::Krb5::init_ets();
6543: }
1.209 albertel 6544:
1.212 foxr 6545: &status('Accepted connection');
6546: # =============================================================================
6547: # do something with the connection
6548: # -----------------------------------------------------------------------------
6549: # see if we know client and 'check' for spoof IP by ineffective challenge
1.178 foxr 6550:
1.278 albertel 6551: my $outsideip=$clientip;
6552: if ($clientip eq '127.0.0.1') {
1.368 albertel 6553: $outsideip=&Apache::lonnet::get_host_ip($perlvar{'lonHostID'});
1.278 albertel 6554: }
1.412 foxr 6555: &ReadManagerTable();
1.368 albertel 6556: my $clientrec=defined(&Apache::lonnet::get_hosts_from_ip($outsideip));
1.278 albertel 6557: my $ismanager=($managers{$outsideip} ne undef);
1.432 raeburn 6558: $clientname = "[unknown]";
1.212 foxr 6559: if($clientrec) { # Establish client type.
6560: $ConnectionType = "client";
1.368 albertel 6561: $clientname = (&Apache::lonnet::get_hosts_from_ip($outsideip))[-1];
1.212 foxr 6562: if($ismanager) {
6563: $ConnectionType = "both";
6564: }
6565: } else {
6566: $ConnectionType = "manager";
1.278 albertel 6567: $clientname = $managers{$outsideip};
1.212 foxr 6568: }
6569: my $clientok;
1.178 foxr 6570:
1.212 foxr 6571: if ($clientrec || $ismanager) {
6572: &status("Waiting for init from $clientip $clientname");
6573: &logthis('<font color="yellow">INFO: Connection, '.
6574: $clientip.
6575: " ($clientname) connection type = $ConnectionType </font>" );
6576: &status("Connecting $clientip ($clientname))");
6577: my $remotereq=<$client>;
6578: chomp($remotereq);
6579: Debug("Got init: $remotereq");
1.337 albertel 6580:
1.212 foxr 6581: if ($remotereq =~ /^init/) {
6582: &sethost("sethost:$perlvar{'lonHostID'}");
6583: #
6584: # If the remote is attempting a local init... give that a try:
6585: #
1.432 raeburn 6586: (my $i, my $inittype, $clientversion) = split(/:/, $remotereq);
1.489.2.4 raeburn 6587: # For LON-CAPA 2.9, the client session will have sent its LON-CAPA
6588: # version when initiating the connection. For LON-CAPA 2.8 and older,
6589: # the version is retrieved from the global %loncaparevs in lonnet.pm.
6590: # $clientversion contains path to keyfile if $inittype eq 'local'
6591: # it's overridden below in this case
6592: $clientversion ||= $Apache::lonnet::loncaparevs{$clientname};
1.209 albertel 6593:
1.212 foxr 6594: # If the connection type is ssl, but I didn't get my
6595: # certificate files yet, then I'll drop back to
6596: # insecure (if allowed).
6597:
6598: if($inittype eq "ssl") {
6599: my ($ca, $cert) = lonssl::CertificateFile;
6600: my $kfile = lonssl::KeyFile;
6601: if((!$ca) ||
6602: (!$cert) ||
6603: (!$kfile)) {
6604: $inittype = ""; # This forces insecure attempt.
6605: &logthis("<font color=\"blue\"> Certificates not "
6606: ."installed -- trying insecure auth</font>");
1.224 foxr 6607: } else { # SSL certificates are in place so
1.212 foxr 6608: } # Leave the inittype alone.
6609: }
6610:
6611: if($inittype eq "local") {
1.432 raeburn 6612: $clientversion = $perlvar{'lonVersion'};
1.212 foxr 6613: my $key = LocalConnection($client, $remotereq);
6614: if($key) {
6615: Debug("Got local key $key");
6616: $clientok = 1;
6617: my $cipherkey = pack("H32", $key);
6618: $cipher = new IDEA($cipherkey);
6619: print $client "ok:local\n";
1.442 www 6620: &logthis('<font color="green">'
1.212 foxr 6621: . "Successful local authentication </font>");
6622: $keymode = "local"
1.178 foxr 6623: } else {
1.212 foxr 6624: Debug("Failed to get local key");
6625: $clientok = 0;
6626: shutdown($client, 3);
6627: close $client;
1.178 foxr 6628: }
1.212 foxr 6629: } elsif ($inittype eq "ssl") {
6630: my $key = SSLConnection($client);
6631: if ($key) {
6632: $clientok = 1;
6633: my $cipherkey = pack("H32", $key);
6634: $cipher = new IDEA($cipherkey);
6635: &logthis('<font color="green">'
6636: ."Successfull ssl authentication with $clientname </font>");
6637: $keymode = "ssl";
6638:
1.178 foxr 6639: } else {
1.212 foxr 6640: $clientok = 0;
6641: close $client;
1.178 foxr 6642: }
1.212 foxr 6643:
6644: } else {
6645: my $ok = InsecureConnection($client);
6646: if($ok) {
6647: $clientok = 1;
6648: &logthis('<font color="green">'
6649: ."Successful insecure authentication with $clientname </font>");
6650: print $client "ok\n";
6651: $keymode = "insecure";
1.178 foxr 6652: } else {
1.212 foxr 6653: &logthis('<font color="yellow">'
6654: ."Attempted insecure connection disallowed </font>");
6655: close $client;
6656: $clientok = 0;
1.178 foxr 6657:
6658: }
6659: }
1.212 foxr 6660: } else {
6661: &logthis(
6662: "<font color='blue'>WARNING: "
6663: ."$clientip failed to initialize: >$remotereq< </font>");
6664: &status('No init '.$clientip);
6665: }
6666:
6667: } else {
6668: &logthis(
6669: "<font color='blue'>WARNING: Unknown client $clientip</font>");
6670: &status('Hung up on '.$clientip);
6671: }
6672:
6673: if ($clientok) {
6674: # ---------------- New known client connecting, could mean machine online again
1.368 albertel 6675: if (&Apache::lonnet::get_host_ip($currenthostid) ne $clientip
1.367 albertel 6676: && $clientip ne '127.0.0.1') {
1.375 albertel 6677: &Apache::lonnet::reconlonc($clientname);
1.212 foxr 6678: }
6679: &logthis("<font color='green'>Established connection: $clientname</font>");
6680: &status('Will listen to '.$clientname);
6681: # ------------------------------------------------------------ Process requests
6682: my $keep_going = 1;
6683: my $user_input;
1.448 raeburn 6684: my $clienthost = &Apache::lonnet::hostname($clientname);
6685: my $clientserverhomeID = &Apache::lonnet::get_server_homeID($clienthost);
6686: $clienthomedom = &Apache::lonnet::host_domain($clientserverhomeID);
1.212 foxr 6687: while(($user_input = get_request) && $keep_going) {
6688: alarm(120);
6689: Debug("Main: Got $user_input\n");
6690: $keep_going = &process_request($user_input);
1.178 foxr 6691: alarm(0);
1.212 foxr 6692: &status('Listening to '.$clientname." ($keymode)");
1.161 foxr 6693: }
1.212 foxr 6694:
1.59 www 6695: # --------------------------------------------- client unknown or fishy, refuse
1.212 foxr 6696: } else {
1.161 foxr 6697: print $client "refused\n";
6698: $client->close();
1.190 albertel 6699: &logthis("<font color='blue'>WARNING: "
1.161 foxr 6700: ."Rejected client $clientip, closing connection</font>");
6701: }
1.212 foxr 6702: }
1.161 foxr 6703:
1.1 albertel 6704: # =============================================================================
1.161 foxr 6705:
1.190 albertel 6706: &logthis("<font color='red'>CRITICAL: "
1.161 foxr 6707: ."Disconnect from $clientip ($clientname)</font>");
6708:
6709:
6710: # this exit is VERY important, otherwise the child will become
6711: # a producer of more and more children, forking yourself into
6712: # process death.
6713: exit;
1.106 foxr 6714:
1.78 foxr 6715: }
1.261 foxr 6716: #
6717: # Determine if a user is an author for the indicated domain.
6718: #
6719: # Parameters:
6720: # domain - domain to check in .
6721: # user - Name of user to check.
6722: #
6723: # Return:
6724: # 1 - User is an author for domain.
6725: # 0 - User is not an author for domain.
6726: sub is_author {
6727: my ($domain, $user) = @_;
6728:
6729: &Debug("is_author: $user @ $domain");
6730:
6731: my $hashref = &tie_user_hash($domain, $user, "roles",
6732: &GDBM_READER());
6733:
6734: # Author role should show up as a key /domain/_au
1.78 foxr 6735:
1.321 albertel 6736: my $value;
1.487 foxr 6737: if ($hashref) {
1.78 foxr 6738:
1.487 foxr 6739: my $key = "/$domain/_au";
6740: if (defined($hashref)) {
6741: $value = $hashref->{$key};
6742: if(!untie_user_hash($hashref)) {
6743: return 'error: ' . ($!+0)." untie (GDBM) Failed";
6744: }
6745: }
6746:
6747: if(defined($value)) {
6748: &Debug("$user @ $domain is an author");
6749: }
6750: } else {
6751: return 'error: '.($!+0)." tie (GDBM) Failed";
1.261 foxr 6752: }
6753:
6754: return defined($value);
6755: }
1.78 foxr 6756: #
6757: # Checks to see if the input roleput request was to set
1.482 www 6758: # an author role. If so, creates construction space
1.78 foxr 6759: # Parameters:
6760: # request - The request sent to the rolesput subchunk.
6761: # We're looking for /domain/_au
6762: # domain - The domain in which the user is having roles doctored.
6763: # user - Name of the user for which the role is being put.
6764: # authtype - The authentication type associated with the user.
6765: #
1.289 albertel 6766: sub manage_permissions {
1.192 foxr 6767: my ($request, $domain, $user, $authtype) = @_;
1.78 foxr 6768: # See if the request is of the form /$domain/_au
1.289 albertel 6769: if($request =~ /^(\/\Q$domain\E\/_au)$/) { # It's an author rolesput...
1.484 raeburn 6770: my $path=$perlvar{'lonDocRoot'}."/priv/$domain";
1.482 www 6771: unless (-e $path) {
6772: mkdir($path);
6773: }
6774: unless (-e $path.'/'.$user) {
6775: mkdir($path.'/'.$user);
6776: }
1.78 foxr 6777: }
6778: }
1.222 foxr 6779:
6780:
6781: #
6782: # Return the full path of a user password file, whether it exists or not.
6783: # Parameters:
6784: # domain - Domain in which the password file lives.
6785: # user - name of the user.
6786: # Returns:
6787: # Full passwd path:
6788: #
6789: sub password_path {
6790: my ($domain, $user) = @_;
1.264 albertel 6791: return &propath($domain, $user).'/passwd';
1.222 foxr 6792: }
6793:
6794: # Password Filename
6795: # Returns the path to a passwd file given domain and user... only if
6796: # it exists.
6797: # Parameters:
6798: # domain - Domain in which to search.
6799: # user - username.
6800: # Returns:
6801: # - If the password file exists returns its path.
6802: # - If the password file does not exist, returns undefined.
6803: #
6804: sub password_filename {
6805: my ($domain, $user) = @_;
6806:
6807: Debug ("PasswordFilename called: dom = $domain user = $user");
6808:
6809: my $path = &password_path($domain, $user);
6810: Debug("PasswordFilename got path: $path");
6811: if(-e $path) {
6812: return $path;
6813: } else {
6814: return undef;
6815: }
6816: }
6817:
6818: #
6819: # Rewrite the contents of the user's passwd file.
6820: # Parameters:
6821: # domain - domain of the user.
6822: # name - User's name.
6823: # contents - New contents of the file.
6824: # Returns:
6825: # 0 - Failed.
6826: # 1 - Success.
6827: #
6828: sub rewrite_password_file {
6829: my ($domain, $user, $contents) = @_;
6830:
6831: my $file = &password_filename($domain, $user);
6832: if (defined $file) {
6833: my $pf = IO::File->new(">$file");
6834: if($pf) {
6835: print $pf "$contents\n";
6836: return 1;
6837: } else {
6838: return 0;
6839: }
6840: } else {
6841: return 0;
6842: }
6843:
6844: }
6845:
1.78 foxr 6846: #
1.222 foxr 6847: # get_auth_type - Determines the authorization type of a user in a domain.
1.78 foxr 6848:
6849: # Returns the authorization type or nouser if there is no such user.
6850: #
1.436 raeburn 6851: sub get_auth_type {
1.192 foxr 6852: my ($domain, $user) = @_;
1.78 foxr 6853:
1.222 foxr 6854: Debug("get_auth_type( $domain, $user ) \n");
1.78 foxr 6855: my $proname = &propath($domain, $user);
6856: my $passwdfile = "$proname/passwd";
6857: if( -e $passwdfile ) {
6858: my $pf = IO::File->new($passwdfile);
6859: my $realpassword = <$pf>;
6860: chomp($realpassword);
1.79 foxr 6861: Debug("Password info = $realpassword\n");
1.78 foxr 6862: my ($authtype, $contentpwd) = split(/:/, $realpassword);
1.79 foxr 6863: Debug("Authtype = $authtype, content = $contentpwd\n");
1.259 raeburn 6864: return "$authtype:$contentpwd";
1.224 foxr 6865: } else {
1.79 foxr 6866: Debug("Returning nouser");
1.78 foxr 6867: return "nouser";
6868: }
1.1 albertel 6869: }
6870:
1.220 foxr 6871: #
6872: # Validate a user given their domain, name and password. This utility
6873: # function is used by both AuthenticateHandler and ChangePasswordHandler
6874: # to validate the login credentials of a user.
6875: # Parameters:
6876: # $domain - The domain being logged into (this is required due to
6877: # the capability for multihomed systems.
6878: # $user - The name of the user being validated.
6879: # $password - The user's propoposed password.
6880: #
6881: # Returns:
6882: # 1 - The domain,user,pasword triplet corresponds to a valid
6883: # user.
6884: # 0 - The domain,user,password triplet is not a valid user.
6885: #
6886: sub validate_user {
1.396 raeburn 6887: my ($domain, $user, $password, $checkdefauth) = @_;
1.220 foxr 6888:
6889: # Why negative ~pi you may well ask? Well this function is about
6890: # authentication, and therefore very important to get right.
6891: # I've initialized the flag that determines whether or not I've
6892: # validated correctly to a value it's not supposed to get.
6893: # At the end of this function. I'll ensure that it's not still that
6894: # value so we don't just wind up returning some accidental value
6895: # as a result of executing an unforseen code path that
1.249 foxr 6896: # did not set $validated. At the end of valid execution paths,
6897: # validated shoule be 1 for success or 0 for failuer.
1.220 foxr 6898:
6899: my $validated = -3.14159;
6900:
6901: # How we authenticate is determined by the type of authentication
6902: # the user has been assigned. If the authentication type is
6903: # "nouser", the user does not exist so we will return 0.
6904:
1.222 foxr 6905: my $contents = &get_auth_type($domain, $user);
1.220 foxr 6906: my ($howpwd, $contentpwd) = split(/:/, $contents);
6907:
6908: my $null = pack("C",0); # Used by kerberos auth types.
6909:
1.395 raeburn 6910: if ($howpwd eq 'nouser') {
1.396 raeburn 6911: if ($checkdefauth) {
6912: my %domdefaults = &Apache::lonnet::get_domain_defaults($domain);
6913: if ($domdefaults{'auth_def'} eq 'localauth') {
6914: $howpwd = $domdefaults{'auth_def'};
6915: $contentpwd = $domdefaults{'auth_arg_def'};
6916: } elsif ((($domdefaults{'auth_def'} eq 'krb4') ||
6917: ($domdefaults{'auth_def'} eq 'krb5')) &&
6918: ($domdefaults{'auth_arg_def'} ne '')) {
6919: $howpwd = $domdefaults{'auth_def'};
6920: $contentpwd = $domdefaults{'auth_arg_def'};
6921: }
1.395 raeburn 6922: }
6923: }
1.220 foxr 6924: if ($howpwd ne 'nouser') {
6925: if($howpwd eq "internal") { # Encrypted is in local password file.
6926: $validated = (crypt($password, $contentpwd) eq $contentpwd);
6927: }
6928: elsif ($howpwd eq "unix") { # User is a normal unix user.
6929: $contentpwd = (getpwnam($user))[1];
6930: if($contentpwd) {
6931: if($contentpwd eq 'x') { # Shadow password file...
6932: my $pwauth_path = "/usr/local/sbin/pwauth";
6933: open PWAUTH, "|$pwauth_path" or
6934: die "Cannot invoke authentication";
6935: print PWAUTH "$user\n$password\n";
6936: close PWAUTH;
6937: $validated = ! $?;
6938:
6939: } else { # Passwords in /etc/passwd.
6940: $validated = (crypt($password,
6941: $contentpwd) eq $contentpwd);
6942: }
6943: } else {
6944: $validated = 0;
6945: }
1.439 raeburn 6946: } elsif ($howpwd eq "krb4") { # user is in kerberos 4 auth. domain.
6947: my $checkwithkrb5 = 0;
6948: if ($dist =~/^fedora(\d+)$/) {
6949: if ($1 > 11) {
6950: $checkwithkrb5 = 1;
6951: }
6952: } elsif ($dist =~ /^suse([\d.]+)$/) {
6953: if ($1 > 11.1) {
6954: $checkwithkrb5 = 1;
6955: }
6956: }
6957: if ($checkwithkrb5) {
6958: $validated = &krb5_authen($password,$null,$user,$contentpwd);
6959: } else {
6960: $validated = &krb4_authen($password,$null,$user,$contentpwd);
6961: }
1.224 foxr 6962: } elsif ($howpwd eq "krb5") { # User is in kerberos 5 auth. domain.
1.439 raeburn 6963: $validated = &krb5_authen($password,$null,$user,$contentpwd);
1.224 foxr 6964: } elsif ($howpwd eq "localauth") {
1.220 foxr 6965: # Authenticate via installation specific authentcation method:
6966: $validated = &localauth::localauth($user,
6967: $password,
1.353 albertel 6968: $contentpwd,
6969: $domain);
1.358 albertel 6970: if ($validated < 0) {
1.357 albertel 6971: &logthis("localauth for $contentpwd $user:$domain returned a $validated");
6972: $validated = 0;
6973: }
1.224 foxr 6974: } else { # Unrecognized auth is also bad.
1.220 foxr 6975: $validated = 0;
6976: }
6977: } else {
6978: $validated = 0;
6979: }
6980: #
6981: # $validated has the correct stat of the authentication:
6982: #
6983:
6984: unless ($validated != -3.14159) {
1.249 foxr 6985: # I >really really< want to know if this happens.
6986: # since it indicates that user authentication is badly
6987: # broken in some code path.
6988: #
6989: die "ValidateUser - failed to set the value of validated $domain, $user $password";
1.220 foxr 6990: }
6991: return $validated;
6992: }
6993:
1.439 raeburn 6994: sub krb4_authen {
6995: my ($password,$null,$user,$contentpwd) = @_;
6996: my $validated = 0;
6997: if (!($password =~ /$null/) ) { # Null password not allowed.
6998: eval {
6999: require Authen::Krb4;
7000: };
7001: if (!$@) {
7002: my $k4error = &Authen::Krb4::get_pw_in_tkt($user,
7003: "",
7004: $contentpwd,,
7005: 'krbtgt',
7006: $contentpwd,
7007: 1,
7008: $password);
7009: if(!$k4error) {
7010: $validated = 1;
7011: } else {
7012: $validated = 0;
7013: &logthis('krb4: '.$user.', '.$contentpwd.', '.
7014: &Authen::Krb4::get_err_txt($Authen::Krb4::error));
7015: }
7016: } else {
7017: $validated = krb5_authen($password,$null,$user,$contentpwd);
7018: }
7019: }
7020: return $validated;
7021: }
7022:
7023: sub krb5_authen {
7024: my ($password,$null,$user,$contentpwd) = @_;
7025: my $validated = 0;
7026: if(!($password =~ /$null/)) { # Null password not allowed.
7027: my $krbclient = &Authen::Krb5::parse_name($user.'@'
7028: .$contentpwd);
7029: my $krbservice = "krbtgt/".$contentpwd."\@".$contentpwd;
7030: my $krbserver = &Authen::Krb5::parse_name($krbservice);
7031: my $credentials= &Authen::Krb5::cc_default();
7032: $credentials->initialize(&Authen::Krb5::parse_name($user.'@'
7033: .$contentpwd));
7034: my $krbreturn;
7035: if (exists(&Authen::Krb5::get_init_creds_password)) {
7036: $krbreturn =
7037: &Authen::Krb5::get_init_creds_password($krbclient,$password,
7038: $krbservice);
7039: $validated = (ref($krbreturn) eq 'Authen::Krb5::Creds');
7040: } else {
7041: $krbreturn =
7042: &Authen::Krb5::get_in_tkt_with_password($krbclient,$krbserver,
7043: $password,$credentials);
7044: $validated = ($krbreturn == 1);
7045: }
7046: if (!$validated) {
7047: &logthis('krb5: '.$user.', '.$contentpwd.', '.
7048: &Authen::Krb5::error());
7049: }
7050: }
7051: return $validated;
7052: }
1.220 foxr 7053:
1.84 albertel 7054: sub addline {
7055: my ($fname,$hostid,$ip,$newline)=@_;
7056: my $contents;
7057: my $found=0;
1.355 albertel 7058: my $expr='^'.quotemeta($hostid).':'.quotemeta($ip).':';
1.134 albertel 7059: my $sh;
1.84 albertel 7060: if ($sh=IO::File->new("$fname.subscription")) {
7061: while (my $subline=<$sh>) {
7062: if ($subline !~ /$expr/) {$contents.= $subline;} else {$found=1;}
7063: }
7064: $sh->close();
7065: }
7066: $sh=IO::File->new(">$fname.subscription");
7067: if ($contents) { print $sh $contents; }
7068: if ($newline) { print $sh $newline; }
7069: $sh->close();
7070: return $found;
1.86 www 7071: }
7072:
1.234 foxr 7073: sub get_chat {
1.324 raeburn 7074: my ($cdom,$cname,$udom,$uname,$group)=@_;
1.310 albertel 7075:
1.87 www 7076: my @entries=();
1.324 raeburn 7077: my $namespace = 'nohist_chatroom';
7078: my $namespace_inroom = 'nohist_inchatroom';
1.335 albertel 7079: if ($group ne '') {
1.324 raeburn 7080: $namespace .= '_'.$group;
7081: $namespace_inroom .= '_'.$group;
7082: }
7083: my $hashref = &tie_user_hash($cdom, $cname, $namespace,
1.310 albertel 7084: &GDBM_READER());
7085: if ($hashref) {
7086: @entries=map { $_.':'.$hashref->{$_} } sort(keys(%$hashref));
1.311 albertel 7087: &untie_user_hash($hashref);
1.123 www 7088: }
1.124 www 7089: my @participants=();
1.134 albertel 7090: my $cutoff=time-60;
1.324 raeburn 7091: $hashref = &tie_user_hash($cdom, $cname, $namespace_inroom,
1.310 albertel 7092: &GDBM_WRCREAT());
7093: if ($hashref) {
7094: $hashref->{$uname.':'.$udom}=time;
7095: foreach my $user (sort(keys(%$hashref))) {
7096: if ($hashref->{$user}>$cutoff) {
7097: push(@participants, 'active_participant:'.$user);
1.123 www 7098: }
7099: }
1.311 albertel 7100: &untie_user_hash($hashref);
1.86 www 7101: }
1.124 www 7102: return (@participants,@entries);
1.86 www 7103: }
7104:
1.234 foxr 7105: sub chat_add {
1.324 raeburn 7106: my ($cdom,$cname,$newchat,$group)=@_;
1.88 albertel 7107: my @entries=();
1.142 www 7108: my $time=time;
1.324 raeburn 7109: my $namespace = 'nohist_chatroom';
7110: my $logfile = 'chatroom.log';
1.335 albertel 7111: if ($group ne '') {
1.324 raeburn 7112: $namespace .= '_'.$group;
7113: $logfile = 'chatroom_'.$group.'.log';
7114: }
7115: my $hashref = &tie_user_hash($cdom, $cname, $namespace,
1.310 albertel 7116: &GDBM_WRCREAT());
7117: if ($hashref) {
7118: @entries=map { $_.':'.$hashref->{$_} } sort(keys(%$hashref));
1.88 albertel 7119: my ($lastid)=($entries[$#entries]=~/^(\w+)\:/);
7120: my ($thentime,$idnum)=split(/\_/,$lastid);
7121: my $newid=$time.'_000000';
7122: if ($thentime==$time) {
7123: $idnum=~s/^0+//;
7124: $idnum++;
7125: $idnum=substr('000000'.$idnum,-6,6);
7126: $newid=$time.'_'.$idnum;
7127: }
1.310 albertel 7128: $hashref->{$newid}=$newchat;
1.88 albertel 7129: my $expired=$time-3600;
1.310 albertel 7130: foreach my $comment (keys(%$hashref)) {
7131: my ($thistime) = ($comment=~/(\d+)\_/);
1.88 albertel 7132: if ($thistime<$expired) {
1.310 albertel 7133: delete $hashref->{$comment};
1.88 albertel 7134: }
7135: }
1.310 albertel 7136: {
7137: my $proname=&propath($cdom,$cname);
1.324 raeburn 7138: if (open(CHATLOG,">>$proname/$logfile")) {
1.310 albertel 7139: print CHATLOG ("$time:".&unescape($newchat)."\n");
7140: }
7141: close(CHATLOG);
1.142 www 7142: }
1.311 albertel 7143: &untie_user_hash($hashref);
1.86 www 7144: }
1.84 albertel 7145: }
7146:
7147: sub unsub {
7148: my ($fname,$clientip)=@_;
7149: my $result;
1.188 foxr 7150: my $unsubs = 0; # Number of successful unsubscribes:
7151:
7152:
7153: # An old way subscriptions were handled was to have a
7154: # subscription marker file:
7155:
7156: Debug("Attempting unlink of $fname.$clientname");
1.161 foxr 7157: if (unlink("$fname.$clientname")) {
1.188 foxr 7158: $unsubs++; # Successful unsub via marker file.
7159: }
7160:
7161: # The more modern way to do it is to have a subscription list
7162: # file:
7163:
1.84 albertel 7164: if (-e "$fname.subscription") {
1.161 foxr 7165: my $found=&addline($fname,$clientname,$clientip,'');
1.188 foxr 7166: if ($found) {
7167: $unsubs++;
7168: }
7169: }
7170:
7171: # If either or both of these mechanisms succeeded in unsubscribing a
7172: # resource we can return ok:
7173:
7174: if($unsubs) {
7175: $result = "ok\n";
1.84 albertel 7176: } else {
1.188 foxr 7177: $result = "not_subscribed\n";
1.84 albertel 7178: }
1.188 foxr 7179:
1.84 albertel 7180: return $result;
7181: }
7182:
1.101 www 7183: sub currentversion {
7184: my $fname=shift;
7185: my $version=-1;
7186: my $ulsdir='';
7187: if ($fname=~/^(.+)\/[^\/]+$/) {
7188: $ulsdir=$1;
7189: }
1.114 albertel 7190: my ($fnamere1,$fnamere2);
7191: # remove version if already specified
1.101 www 7192: $fname=~s/\.\d+\.(\w+(?:\.meta)*)$/\.$1/;
1.114 albertel 7193: # get the bits that go before and after the version number
7194: if ( $fname=~/^(.*\.)(\w+(?:\.meta)*)$/ ) {
7195: $fnamere1=$1;
7196: $fnamere2='.'.$2;
7197: }
1.101 www 7198: if (-e $fname) { $version=1; }
7199: if (-e $ulsdir) {
1.134 albertel 7200: if(-d $ulsdir) {
7201: if (opendir(LSDIR,$ulsdir)) {
7202: my $ulsfn;
7203: while ($ulsfn=readdir(LSDIR)) {
1.101 www 7204: # see if this is a regular file (ignore links produced earlier)
1.134 albertel 7205: my $thisfile=$ulsdir.'/'.$ulsfn;
7206: unless (-l $thisfile) {
1.160 www 7207: if ($thisfile=~/\Q$fnamere1\E(\d+)\Q$fnamere2\E$/) {
1.134 albertel 7208: if ($1>$version) { $version=$1; }
7209: }
7210: }
7211: }
7212: closedir(LSDIR);
7213: $version++;
7214: }
7215: }
7216: }
7217: return $version;
1.101 www 7218: }
7219:
7220: sub thisversion {
7221: my $fname=shift;
7222: my $version=-1;
7223: if ($fname=~/\.(\d+)\.\w+(?:\.meta)*$/) {
7224: $version=$1;
7225: }
7226: return $version;
7227: }
7228:
1.84 albertel 7229: sub subscribe {
7230: my ($userinput,$clientip)=@_;
7231: my $result;
1.293 albertel 7232: my ($cmd,$fname)=split(/:/,$userinput,2);
1.84 albertel 7233: my $ownership=&ishome($fname);
7234: if ($ownership eq 'owner') {
1.101 www 7235: # explitly asking for the current version?
7236: unless (-e $fname) {
7237: my $currentversion=¤tversion($fname);
7238: if (&thisversion($fname)==$currentversion) {
7239: if ($fname=~/^(.+)\.\d+\.(\w+(?:\.meta)*)$/) {
7240: my $root=$1;
7241: my $extension=$2;
7242: symlink($root.'.'.$extension,
7243: $root.'.'.$currentversion.'.'.$extension);
1.102 www 7244: unless ($extension=~/\.meta$/) {
7245: symlink($root.'.'.$extension.'.meta',
7246: $root.'.'.$currentversion.'.'.$extension.'.meta');
7247: }
1.101 www 7248: }
7249: }
7250: }
1.84 albertel 7251: if (-e $fname) {
7252: if (-d $fname) {
7253: $result="directory\n";
7254: } else {
1.161 foxr 7255: if (-e "$fname.$clientname") {&unsub($fname,$clientip);}
1.134 albertel 7256: my $now=time;
1.161 foxr 7257: my $found=&addline($fname,$clientname,$clientip,
7258: "$clientname:$clientip:$now\n");
1.84 albertel 7259: if ($found) { $result="$fname\n"; }
7260: # if they were subscribed to only meta data, delete that
7261: # subscription, when you subscribe to a file you also get
7262: # the metadata
7263: unless ($fname=~/\.meta$/) { &unsub("$fname.meta",$clientip); }
7264: $fname=~s/\/home\/httpd\/html\/res/raw/;
1.476 raeburn 7265: my $protocol = $Apache::lonnet::protocol{$perlvar{'lonHostID'}};
7266: $protocol = 'http' if ($protocol ne 'https');
7267: $fname=$protocol.'://'.&Apache::lonnet::hostname($perlvar{'lonHostID'})."/".$fname;
1.84 albertel 7268: $result="$fname\n";
7269: }
7270: } else {
7271: $result="not_found\n";
7272: }
7273: } else {
7274: $result="rejected\n";
7275: }
7276: return $result;
7277: }
1.287 foxr 7278: # Change the passwd of a unix user. The caller must have
7279: # first verified that the user is a loncapa user.
7280: #
7281: # Parameters:
7282: # user - Unix user name to change.
7283: # pass - New password for the user.
7284: # Returns:
7285: # ok - if success
7286: # other - Some meaningfule error message string.
7287: # NOTE:
7288: # invokes a setuid script to change the passwd.
7289: sub change_unix_password {
7290: my ($user, $pass) = @_;
7291:
7292: &Debug("change_unix_password");
7293: my $execdir=$perlvar{'lonDaemons'};
7294: &Debug("Opening lcpasswd pipeline");
7295: my $pf = IO::File->new("|$execdir/lcpasswd > "
7296: ."$perlvar{'lonDaemons'}"
7297: ."/logs/lcpasswd.log");
7298: print $pf "$user\n$pass\n$pass\n";
7299: close $pf;
7300: my $err = $?;
7301: return ($err < @passwderrors) ? $passwderrors[$err] :
7302: "pwchange_falure - unknown error";
7303:
7304:
7305: }
7306:
1.91 albertel 7307:
7308: sub make_passwd_file {
1.483 www 7309: my ($uname,$udom,$umode,$npass,$passfilename)=@_;
1.390 raeburn 7310: my $result="ok";
1.91 albertel 7311: if ($umode eq 'krb4' or $umode eq 'krb5') {
7312: {
7313: my $pf = IO::File->new(">$passfilename");
1.261 foxr 7314: if ($pf) {
7315: print $pf "$umode:$npass\n";
7316: } else {
7317: $result = "pass_file_failed_error";
7318: }
1.91 albertel 7319: }
7320: } elsif ($umode eq 'internal') {
7321: my $salt=time;
7322: $salt=substr($salt,6,2);
7323: my $ncpass=crypt($npass,$salt);
7324: {
7325: &Debug("Creating internal auth");
7326: my $pf = IO::File->new(">$passfilename");
1.261 foxr 7327: if($pf) {
7328: print $pf "internal:$ncpass\n";
7329: } else {
7330: $result = "pass_file_failed_error";
7331: }
1.91 albertel 7332: }
7333: } elsif ($umode eq 'localauth') {
7334: {
7335: my $pf = IO::File->new(">$passfilename");
1.261 foxr 7336: if($pf) {
7337: print $pf "localauth:$npass\n";
7338: } else {
7339: $result = "pass_file_failed_error";
7340: }
1.91 albertel 7341: }
7342: } elsif ($umode eq 'unix') {
1.489.2.8 raeburn 7343: &logthis(">>>Attempt to create unix account blocked -- unix auth not available for new users.");
7344: $result="no_new_unix_accounts";
1.91 albertel 7345: } elsif ($umode eq 'none') {
7346: {
1.223 foxr 7347: my $pf = IO::File->new("> $passfilename");
1.261 foxr 7348: if($pf) {
7349: print $pf "none:\n";
7350: } else {
7351: $result = "pass_file_failed_error";
7352: }
1.91 albertel 7353: }
7354: } else {
1.390 raeburn 7355: $result="auth_mode_error";
1.91 albertel 7356: }
7357: return $result;
1.121 albertel 7358: }
7359:
1.265 albertel 7360: sub convert_photo {
7361: my ($start,$dest)=@_;
7362: system("convert $start $dest");
7363: }
7364:
1.121 albertel 7365: sub sethost {
7366: my ($remotereq) = @_;
7367: my (undef,$hostid)=split(/:/,$remotereq);
1.322 albertel 7368: # ignore sethost if we are already correct
7369: if ($hostid eq $currenthostid) {
7370: return 'ok';
7371: }
7372:
1.121 albertel 7373: if (!defined($hostid)) { $hostid=$perlvar{'lonHostID'}; }
1.368 albertel 7374: if (&Apache::lonnet::get_host_ip($perlvar{'lonHostID'})
7375: eq &Apache::lonnet::get_host_ip($hostid)) {
1.200 matthew 7376: $currenthostid =$hostid;
1.369 albertel 7377: $currentdomainid=&Apache::lonnet::host_domain($hostid);
1.443 www 7378: # &logthis("Setting hostid to $hostid, and domain to $currentdomainid");
1.121 albertel 7379: } else {
7380: &logthis("Requested host id $hostid not an alias of ".
7381: $perlvar{'lonHostID'}." refusing connection");
7382: return 'unable_to_set';
7383: }
7384: return 'ok';
7385: }
7386:
7387: sub version {
7388: my ($userinput)=@_;
7389: $remoteVERSION=(split(/:/,$userinput))[1];
7390: return "version:$VERSION";
1.127 albertel 7391: }
1.178 foxr 7392:
1.447 raeburn 7393: sub get_usersession_config {
7394: my ($dom,$name) = @_;
7395: my ($usersessionconf,$cached)=&Apache::lonnet::is_cached_new($name,$dom);
7396: if (defined($cached)) {
7397: return $usersessionconf;
7398: } else {
7399: my %domconfig = &Apache::lonnet::get_dom('configuration',['usersessions'],$dom);
7400: if (ref($domconfig{'usersessions'}) eq 'HASH') {
7401: &Apache::lonnet::do_cache_new($name,$dom,$domconfig{'usersessions'},3600);
7402: return $domconfig{'usersessions'};
7403: }
7404: }
7405: return;
7406: }
1.200 matthew 7407:
1.450 raeburn 7408:
1.471 raeburn 7409: sub distro_and_arch {
7410: return $dist.':'.$arch;
7411: }
7412:
1.61 harris41 7413: # ----------------------------------- POD (plain old documentation, CPAN style)
7414:
7415: =head1 NAME
7416:
7417: lond - "LON Daemon" Server (port "LOND" 5663)
7418:
7419: =head1 SYNOPSIS
7420:
1.74 harris41 7421: Usage: B<lond>
7422:
7423: Should only be run as user=www. This is a command-line script which
7424: is invoked by B<loncron>. There is no expectation that a typical user
7425: will manually start B<lond> from the command-line. (In other words,
7426: DO NOT START B<lond> YOURSELF.)
1.61 harris41 7427:
7428: =head1 DESCRIPTION
7429:
1.74 harris41 7430: There are two characteristics associated with the running of B<lond>,
7431: PROCESS MANAGEMENT (starting, stopping, handling child processes)
7432: and SERVER-SIDE ACTIVITIES (password authentication, user creation,
7433: subscriptions, etc). These are described in two large
7434: sections below.
7435:
7436: B<PROCESS MANAGEMENT>
7437:
1.61 harris41 7438: Preforker - server who forks first. Runs as a daemon. HUPs.
7439: Uses IDEA encryption
7440:
1.74 harris41 7441: B<lond> forks off children processes that correspond to the other servers
7442: in the network. Management of these processes can be done at the
7443: parent process level or the child process level.
7444:
7445: B<logs/lond.log> is the location of log messages.
7446:
7447: The process management is now explained in terms of linux shell commands,
7448: subroutines internal to this code, and signal assignments:
7449:
7450: =over 4
7451:
7452: =item *
7453:
7454: PID is stored in B<logs/lond.pid>
7455:
7456: This is the process id number of the parent B<lond> process.
7457:
7458: =item *
7459:
7460: SIGTERM and SIGINT
7461:
7462: Parent signal assignment:
7463: $SIG{INT} = $SIG{TERM} = \&HUNTSMAN;
7464:
7465: Child signal assignment:
7466: $SIG{INT} = 'DEFAULT'; (and SIGTERM is DEFAULT also)
7467: (The child dies and a SIGALRM is sent to parent, awaking parent from slumber
7468: to restart a new child.)
7469:
7470: Command-line invocations:
7471: B<kill> B<-s> SIGTERM I<PID>
7472: B<kill> B<-s> SIGINT I<PID>
7473:
7474: Subroutine B<HUNTSMAN>:
7475: This is only invoked for the B<lond> parent I<PID>.
7476: This kills all the children, and then the parent.
7477: The B<lonc.pid> file is cleared.
7478:
7479: =item *
7480:
7481: SIGHUP
7482:
7483: Current bug:
7484: This signal can only be processed the first time
7485: on the parent process. Subsequent SIGHUP signals
7486: have no effect.
7487:
7488: Parent signal assignment:
7489: $SIG{HUP} = \&HUPSMAN;
7490:
7491: Child signal assignment:
7492: none (nothing happens)
7493:
7494: Command-line invocations:
7495: B<kill> B<-s> SIGHUP I<PID>
7496:
7497: Subroutine B<HUPSMAN>:
7498: This is only invoked for the B<lond> parent I<PID>,
7499: This kills all the children, and then the parent.
7500: The B<lond.pid> file is cleared.
7501:
7502: =item *
7503:
7504: SIGUSR1
7505:
7506: Parent signal assignment:
7507: $SIG{USR1} = \&USRMAN;
7508:
7509: Child signal assignment:
7510: $SIG{USR1}= \&logstatus;
7511:
7512: Command-line invocations:
7513: B<kill> B<-s> SIGUSR1 I<PID>
7514:
7515: Subroutine B<USRMAN>:
7516: When invoked for the B<lond> parent I<PID>,
7517: SIGUSR1 is sent to all the children, and the status of
7518: each connection is logged.
1.144 foxr 7519:
7520: =item *
7521:
7522: SIGUSR2
7523:
7524: Parent Signal assignment:
7525: $SIG{USR2} = \&UpdateHosts
7526:
7527: Child signal assignment:
7528: NONE
7529:
1.74 harris41 7530:
7531: =item *
7532:
7533: SIGCHLD
7534:
7535: Parent signal assignment:
7536: $SIG{CHLD} = \&REAPER;
7537:
7538: Child signal assignment:
7539: none
7540:
7541: Command-line invocations:
7542: B<kill> B<-s> SIGCHLD I<PID>
7543:
7544: Subroutine B<REAPER>:
7545: This is only invoked for the B<lond> parent I<PID>.
7546: Information pertaining to the child is removed.
7547: The socket port is cleaned up.
7548:
7549: =back
7550:
7551: B<SERVER-SIDE ACTIVITIES>
7552:
7553: Server-side information can be accepted in an encrypted or non-encrypted
7554: method.
7555:
7556: =over 4
7557:
7558: =item ping
7559:
7560: Query a client in the hosts.tab table; "Are you there?"
7561:
7562: =item pong
7563:
7564: Respond to a ping query.
7565:
7566: =item ekey
7567:
7568: Read in encrypted key, make cipher. Respond with a buildkey.
7569:
7570: =item load
7571:
7572: Respond with CPU load based on a computation upon /proc/loadavg.
7573:
7574: =item currentauth
7575:
7576: Reply with current authentication information (only over an
7577: encrypted channel).
7578:
7579: =item auth
7580:
7581: Only over an encrypted channel, reply as to whether a user's
7582: authentication information can be validated.
7583:
7584: =item passwd
7585:
7586: Allow for a password to be set.
7587:
7588: =item makeuser
7589:
7590: Make a user.
7591:
7592: =item passwd
7593:
7594: Allow for authentication mechanism and password to be changed.
7595:
7596: =item home
1.61 harris41 7597:
1.74 harris41 7598: Respond to a question "are you the home for a given user?"
7599:
7600: =item update
7601:
7602: Update contents of a subscribed resource.
7603:
7604: =item unsubscribe
7605:
7606: The server is unsubscribing from a resource.
7607:
7608: =item subscribe
7609:
7610: The server is subscribing to a resource.
7611:
7612: =item log
7613:
7614: Place in B<logs/lond.log>
7615:
7616: =item put
7617:
7618: stores hash in namespace
7619:
1.489.2.2 raeburn 7620: =item rolesput
1.74 harris41 7621:
7622: put a role into a user's environment
7623:
7624: =item get
7625:
7626: returns hash with keys from array
7627: reference filled in from namespace
7628:
7629: =item eget
7630:
7631: returns hash with keys from array
7632: reference filled in from namesp (encrypts the return communication)
7633:
7634: =item rolesget
7635:
7636: get a role from a user's environment
7637:
7638: =item del
7639:
7640: deletes keys out of array from namespace
7641:
7642: =item keys
7643:
7644: returns namespace keys
7645:
7646: =item dump
7647:
7648: dumps the complete (or key matching regexp) namespace into a hash
7649:
7650: =item store
7651:
7652: stores hash permanently
7653: for this url; hashref needs to be given and should be a \%hashname; the
7654: remaining args aren't required and if they aren't passed or are '' they will
7655: be derived from the ENV
7656:
7657: =item restore
7658:
7659: returns a hash for a given url
7660:
7661: =item querysend
7662:
7663: Tells client about the lonsql process that has been launched in response
7664: to a sent query.
7665:
7666: =item queryreply
7667:
7668: Accept information from lonsql and make appropriate storage in temporary
7669: file space.
7670:
7671: =item idput
7672:
7673: Defines usernames as corresponding to IDs. (These "IDs" are unique identifiers
7674: for each student, defined perhaps by the institutional Registrar.)
7675:
7676: =item idget
7677:
7678: Returns usernames corresponding to IDs. (These "IDs" are unique identifiers
7679: for each student, defined perhaps by the institutional Registrar.)
7680:
7681: =item tmpput
7682:
7683: Accept and store information in temporary space.
7684:
7685: =item tmpget
7686:
7687: Send along temporarily stored information.
7688:
7689: =item ls
7690:
7691: List part of a user's directory.
7692:
1.135 foxr 7693: =item pushtable
7694:
7695: Pushes a file in /home/httpd/lonTab directory. Currently limited to:
7696: hosts.tab and domain.tab. The old file is copied to *.tab.backup but
7697: must be restored manually in case of a problem with the new table file.
7698: pushtable requires that the request be encrypted and validated via
7699: ValidateManager. The form of the command is:
7700: enc:pushtable tablename <tablecontents> \n
7701: where pushtable, tablename and <tablecontents> will be encrypted, but \n is a
7702: cleartext newline.
7703:
1.74 harris41 7704: =item Hanging up (exit or init)
7705:
7706: What to do when a client tells the server that they (the client)
7707: are leaving the network.
7708:
7709: =item unknown command
7710:
7711: If B<lond> is sent an unknown command (not in the list above),
7712: it replys to the client "unknown_cmd".
1.135 foxr 7713:
1.74 harris41 7714:
7715: =item UNKNOWN CLIENT
7716:
7717: If the anti-spoofing algorithm cannot verify the client,
7718: the client is rejected (with a "refused" message sent
7719: to the client, and the connection is closed.
7720:
7721: =back
1.61 harris41 7722:
7723: =head1 PREREQUISITES
7724:
7725: IO::Socket
7726: IO::File
7727: Apache::File
7728: POSIX
7729: Crypt::IDEA
7730: LWP::UserAgent()
7731: GDBM_File
7732: Authen::Krb4
1.91 albertel 7733: Authen::Krb5
1.61 harris41 7734:
7735: =head1 COREQUISITES
7736:
7737: =head1 OSNAMES
7738:
7739: linux
7740:
7741: =head1 SCRIPT CATEGORIES
7742:
7743: Server/Process
7744:
7745: =cut
1.409 foxr 7746:
7747:
7748: =pod
7749:
7750: =head1 LOG MESSAGES
7751:
7752: The messages below can be emitted in the lond log. This log is located
7753: in ~httpd/perl/logs/lond.log Many log messages have HTML encapsulation
7754: to provide coloring if examined from inside a web page. Some do not.
7755: Where color is used, the colors are; Red for sometihhng to get excited
7756: about and to follow up on. Yellow for something to keep an eye on to
7757: be sure it does not get worse, Green,and Blue for informational items.
7758:
7759: In the discussions below, sometimes reference is made to ~httpd
7760: when describing file locations. There isn't really an httpd
7761: user, however there is an httpd directory that gets installed in the
7762: place that user home directories go. On linux, this is usually
7763: (always?) /home/httpd.
7764:
7765:
7766: Some messages are colorless. These are usually (not always)
7767: Green/Blue color level messages.
7768:
7769: =over 2
7770:
7771: =item (Red) LocalConnection rejecting non local: <ip> ne 127.0.0.1
7772:
7773: A local connection negotiation was attempted by
7774: a host whose IP address was not 127.0.0.1.
7775: The socket is closed and the child will exit.
7776: lond has three ways to establish an encyrption
7777: key with a client:
7778:
7779: =over 2
7780:
7781: =item local
7782:
7783: The key is written and read from a file.
7784: This is only valid for connections from localhost.
7785:
7786: =item insecure
7787:
7788: The key is generated by the server and
7789: transmitted to the client.
7790:
7791: =item ssl (secure)
7792:
7793: An ssl connection is negotiated with the client,
7794: the key is generated by the server and sent to the
7795: client across this ssl connection before the
7796: ssl connectionis terminated and clear text
7797: transmission resumes.
7798:
7799: =back
7800:
7801: =item (Red) LocalConnection: caller is insane! init = <init> and type = <type>
7802:
7803: The client is local but has not sent an initialization
7804: string that is the literal "init:local" The connection
7805: is closed and the child exits.
7806:
7807: =item Red CRITICAL Can't get key file <error>
7808:
7809: SSL key negotiation is being attempted but the call to
7810: lonssl::KeyFile failed. This usually means that the
7811: configuration file is not correctly defining or protecting
7812: the directories/files lonCertificateDirectory or
7813: lonnetPrivateKey
7814: <error> is a string that describes the reason that
7815: the key file could not be located.
7816:
7817: =item (Red) CRITICAL Can't get certificates <error>
7818:
7819: SSL key negotiation failed because we were not able to retrives our certificate
7820: or the CA's certificate in the call to lonssl::CertificateFile
7821: <error> is the textual reason this failed. Usual reasons:
7822:
7823: =over 2
7824:
7825: =item Apache config file for loncapa incorrect:
7826:
7827: one of the variables
7828: lonCertificateDirectory, lonnetCertificateAuthority, or lonnetCertificate
7829: undefined or incorrect
7830:
7831: =item Permission error:
7832:
7833: The directory pointed to by lonCertificateDirectory is not readable by lond
7834:
7835: =item Permission error:
7836:
7837: Files in the directory pointed to by lonCertificateDirectory are not readable by lond.
7838:
7839: =item Installation error:
7840:
7841: Either the certificate authority file or the certificate have not
7842: been installed in lonCertificateDirectory.
7843:
7844: =item (Red) CRITICAL SSL Socket promotion failed: <err>
7845:
7846: The promotion of the connection from plaintext to SSL failed
7847: <err> is the reason for the failure. There are two
7848: system calls involved in the promotion (one of which failed),
7849: a dup to produce
7850: a second fd on the raw socket over which the encrypted data
7851: will flow and IO::SOcket::SSL->new_from_fd which creates
7852: the SSL connection on the duped fd.
7853:
7854: =item (Blue) WARNING client did not respond to challenge
7855:
7856: This occurs on an insecure (non SSL) connection negotiation request.
7857: lond generates some number from the time, the PID and sends it to
7858: the client. The client must respond by echoing this information back.
7859: If the client does not do so, that's a violation of the challenge
7860: protocols and the connection will be failed.
7861:
7862: =item (Red) No manager table. Nobody can manage!!
7863:
7864: lond has the concept of privileged hosts that
7865: can perform remote management function such
7866: as update the hosts.tab. The manager hosts
7867: are described in the
7868: ~httpd/lonTabs/managers.tab file.
7869: this message is logged if this file is missing.
7870:
7871:
7872: =item (Green) Registering manager <dnsname> as <cluster_name> with <ipaddress>
7873:
7874: Reports the successful parse and registration
7875: of a specific manager.
7876:
7877: =item Green existing host <clustername:dnsname>
7878:
7879: The manager host is already defined in the hosts.tab
7880: the information in that table, rather than the info in the
7881: manager table will be used to determine the manager's ip.
7882:
7883: =item (Red) Unable to craete <filename>
7884:
7885: lond has been asked to create new versions of an administrative
7886: file (by a manager). When this is done, the new file is created
7887: in a temp file and then renamed into place so that there are always
7888: usable administrative files, even if the update fails. This failure
7889: message means that the temp file could not be created.
7890: The update is abandoned, and the old file is available for use.
7891:
7892: =item (Green) CopyFile from <oldname> to <newname> failed
7893:
7894: In an update of administrative files, the copy of the existing file to a
7895: backup file failed. The installation of the new file may still succeed,
7896: but there will not be a back up file to rever to (this should probably
7897: be yellow).
7898:
7899: =item (Green) Pushfile: backed up <oldname> to <newname>
7900:
7901: See above, the backup of the old administrative file succeeded.
7902:
7903: =item (Red) Pushfile: Unable to install <filename> <reason>
7904:
7905: The new administrative file could not be installed. In this case,
7906: the old administrative file is still in use.
7907:
7908: =item (Green) Installed new < filename>.
7909:
7910: The new administrative file was successfullly installed.
7911:
7912: =item (Red) Reinitializing lond pid=<pid>
7913:
7914: The lonc child process <pid> will be sent a USR2
7915: signal.
7916:
7917: =item (Red) Reinitializing self
7918:
7919: We've been asked to re-read our administrative files,and
7920: are doing so.
7921:
7922: =item (Yellow) error:Invalid process identifier <ident>
7923:
7924: A reinit command was received, but the target part of the
7925: command was not valid. It must be either
7926: 'lond' or 'lonc' but was <ident>
7927:
7928: =item (Green) isValideditCommand checking: Command = <command> Key = <key> newline = <newline>
7929:
7930: Checking to see if lond has been handed a valid edit
7931: command. It is possible the edit command is not valid
7932: in that case there are no log messages to indicate that.
7933:
7934: =item Result of password change for <username> pwchange_success
7935:
7936: The password for <username> was
7937: successfully changed.
7938:
7939: =item Unable to open <user> passwd to change password
7940:
7941: Could not rewrite the
7942: internal password file for a user
7943:
7944: =item Result of password change for <user> : <result>
7945:
7946: A unix password change for <user> was attempted
7947: and the pipe returned <result>
7948:
7949: =item LWP GET: <message> for <fname> (<remoteurl>)
7950:
7951: The lightweight process fetch for a resource failed
7952: with <message> the local filename that should
7953: have existed/been created was <fname> the
7954: corresponding URI: <remoteurl> This is emitted in several
7955: places.
7956:
7957: =item Unable to move <transname> to <destname>
7958:
7959: From fetch_user_file_handler - the user file was replicated but could not
7960: be mv'd to its final location.
7961:
7962: =item Looking for <domain> <username>
7963:
7964: From user_has_session_handler - This should be a Debug call instead
7965: it indicates lond is about to check whether the specified user has a
7966: session active on the specified domain on the local host.
7967:
7968: =item Client <ip> (<name>) hanging up: <input>
7969:
7970: lond has been asked to exit by its client. The <ip> and <name> identify the
7971: client systemand <input> is the full exit command sent to the server.
7972:
7973: =item Red CRITICAL: ABNORMAL EXIT. child <pid> for server <hostname> died through a crass with this error->[<message>].
7974:
7975: A lond child terminated. NOte that this termination can also occur when the
7976: child receives the QUIT or DIE signals. <pid> is the process id of the child,
7977: <hostname> the host lond is working for, and <message> the reason the child died
7978: to the best of our ability to get it (I would guess that any numeric value
7979: represents and errno value). This is immediately followed by
7980:
7981: =item Famous last words: Catching exception - <log>
7982:
7983: Where log is some recent information about the state of the child.
7984:
7985: =item Red CRITICAL: TIME OUT <pid>
7986:
7987: Some timeout occured for server <pid>. THis is normally a timeout on an LWP
7988: doing an HTTP::GET.
7989:
7990: =item child <pid> died
7991:
7992: The reaper caught a SIGCHILD for the lond child process <pid>
7993: This should be modified to also display the IP of the dying child
7994: $children{$pid}
7995:
7996: =item Unknown child 0 died
7997: A child died but the wait for it returned a pid of zero which really should not
7998: ever happen.
7999:
8000: =item Child <which> - <pid> looks like we missed it's death
8001:
8002: When a sigchild is received, the reaper process checks all children to see if they are
8003: alive. If children are dying quite quickly, the lack of signal queuing can mean
8004: that a signal hearalds the death of more than one child. If so this message indicates
8005: which other one died. <which> is the ip of a dead child
8006:
8007: =item Free socket: <shutdownretval>
8008:
8009: The HUNTSMAN sub was called due to a SIGINT in a child process. The socket is being shutdown.
8010: for whatever reason, <shutdownretval> is printed but in fact shutdown() is not documented
8011: to return anything. This is followed by:
8012:
8013: =item Red CRITICAL: Shutting down
8014:
8015: Just prior to exit.
8016:
8017: =item Free socket: <shutdownretval>
8018:
8019: The HUPSMAN sub was called due to a SIGHUP. all children get killsed, and lond execs itself.
8020: This is followed by:
8021:
8022: =item (Red) CRITICAL: Restarting
8023:
8024: lond is about to exec itself to restart.
8025:
8026: =item (Blue) Updating connections
8027:
8028: (In response to a USR2). All the children (except the one for localhost)
8029: are about to be killed, the hosts tab reread, and Apache reloaded via apachereload.
8030:
8031: =item (Blue) UpdateHosts killing child <pid> for ip <ip>
8032:
8033: Due to USR2 as above.
8034:
8035: =item (Green) keeping child for ip <ip> (pid = <pid>)
8036:
8037: In response to USR2 as above, the child indicated is not being restarted because
8038: it's assumed that we'll always need a child for the localhost.
8039:
8040:
8041: =item Going to check on the children
8042:
8043: Parent is about to check on the health of the child processes.
8044: Note that this is in response to a USR1 sent to the parent lond.
8045: there may be one or more of the next two messages:
8046:
8047: =item <pid> is dead
8048:
8049: A child that we have in our child hash as alive has evidently died.
8050:
8051: =item Child <pid> did not respond
8052:
8053: In the health check the child <pid> did not update/produce a pid_.txt
8054: file when sent it's USR1 signal. That process is killed with a 9 signal, as it's
8055: assumed to be hung in some un-fixable way.
8056:
8057: =item Finished checking children
8058:
8059: Master processs's USR1 processing is cojmplete.
8060:
8061: =item (Red) CRITICAL: ------- Starting ------
8062:
8063: (There are more '-'s on either side). Lond has forked itself off to
8064: form a new session and is about to start actual initialization.
8065:
8066: =item (Green) Attempting to start child (<client>)
8067:
8068: Started a new child process for <client>. Client is IO::Socket object
8069: connected to the child. This was as a result of a TCP/IP connection from a client.
8070:
8071: =item Unable to determine who caller was, getpeername returned nothing
8072:
8073: In child process initialization. either getpeername returned undef or
8074: a zero sized object was returned. Processing continues, but in my opinion,
8075: this should be cause for the child to exit.
8076:
8077: =item Unable to determine clientip
8078:
8079: In child process initialization. The peer address from getpeername was not defined.
8080: The client address is stored as "Unavailable" and processing continues.
8081:
8082: =item (Yellow) INFO: Connection <ip> <name> connection type = <type>
8083:
8084: In child initialization. A good connectionw as received from <ip>.
8085:
8086: =over 2
8087:
8088: =item <name>
8089:
8090: is the name of the client from hosts.tab.
8091:
8092: =item <type>
8093:
8094: Is the connection type which is either
8095:
8096: =over 2
8097:
8098: =item manager
8099:
8100: The connection is from a manager node, not in hosts.tab
8101:
8102: =item client
8103:
8104: the connection is from a non-manager in the hosts.tab
8105:
8106: =item both
8107:
8108: The connection is from a manager in the hosts.tab.
8109:
8110: =back
8111:
8112: =back
8113:
8114: =item (Blue) Certificates not installed -- trying insecure auth
8115:
8116: One of the certificate file, key file or
8117: certificate authority file could not be found for a client attempting
8118: SSL connection intiation. COnnection will be attemptied in in-secure mode.
8119: (this would be a system with an up to date lond that has not gotten a
8120: certificate from us).
8121:
8122: =item (Green) Successful local authentication
8123:
8124: A local connection successfully negotiated the encryption key.
8125: In this case the IDEA key is in a file (that is hopefully well protected).
8126:
8127: =item (Green) Successful ssl authentication with <client>
8128:
8129: The client (<client> is the peer's name in hosts.tab), has successfully
8130: negotiated an SSL connection with this child process.
8131:
8132: =item (Green) Successful insecure authentication with <client>
8133:
8134:
8135: The client has successfully negotiated an insecure connection withthe child process.
8136:
8137: =item (Yellow) Attempted insecure connection disallowed
8138:
8139: The client attempted and failed to successfully negotiate a successful insecure
8140: connection. This can happen either because the variable londAllowInsecure is false
8141: or undefined, or becuse the child did not successfully echo back the challenge
8142: string.
8143:
8144:
8145: =back
8146:
1.441 raeburn 8147: =back
8148:
1.409 foxr 8149:
8150: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>