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