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