Diff for /loncom/Lond.pm between versions 1.8.2.2 and 1.11

version 1.8.2.2, 2021/02/10 15:08:14 version 1.11, 2018/08/09 14:04:30
Line 37  use lib '/home/httpd/lib/perl/'; Line 37  use lib '/home/httpd/lib/perl/';
 use LONCAPA;  use LONCAPA;
 use Apache::lonnet;  use Apache::lonnet;
 use GDBM_File;  use GDBM_File;
   use Crypt::OpenSSL::X509;
   
   
 sub dump_with_regexp {  sub dump_with_regexp {
Line 811  sub is_course { Line 812  sub is_course {
     return $iscourse;      return $iscourse;
 }  }
   
 sub get_dom {  sub server_certs {
     my ($userinput) = @_;      my ($perlvar) = @_;
     my ($cmd,$udom,$namespace,$what) =split(/:/,$userinput,4);      my %pemfiles = (
     my $hashref = &tie_domain_hash($udom,$namespace,&GDBM_READER()) or                       key      => 'lonnetPrivateKey',
         return "error: ".($!+0)." tie(GDBM) Failed while attempting $cmd";                       host     => 'lonnetCertificate',
     my $qresult='';                       hostname => 'lonnetHostnameCertificate',
     if (ref($hashref)) {                       ca       => 'lonnetCertificateAuthority',
         chomp($what);                     );
         my @queries=split(/\&/,$what);      my (%md5hash,%info);
         for (my $i=0;$i<=$#queries;$i++) {      if (ref($perlvar) eq 'HASH') {
             $qresult.="$hashref->{$queries[$i]}&";          my $certsdir = $perlvar->{'lonCertificateDirectory'};
           if (-d $certsdir) {
               foreach my $key (keys(%pemfiles)) {
                   if ($perlvar->{$pemfiles{$key}}) {
                       my $file = $certsdir.'/'.$perlvar->{$pemfiles{$key}};
                       if (-e $file) {
                           if ($key eq 'key') {
                               if (open(PIPE,"openssl rsa -noout -in $file -check |")) {
                                   my $check = <PIPE>;
                                   close(PIPE);
                                   chomp($check);
                                   $info{$key}{'status'} = $check;
                               }
                               if (open(PIPE,"openssl rsa -noout -modulus -in $file | openssl md5 |")) {
                                   $md5hash{$key} = <PIPE>;
                                   close(PIPE);
                               }
                           } else {
                               if ($key eq 'ca') {
                                   if (open(PIPE,"openssl verify -CAfile $file $file |")) {
                                       my $check = <PIPE>;
                                       close(PIPE);
                                       chomp($check);
                                       if ($check eq "$file: OK") {
                                           $info{$key}{'status'} = 'ok';
                                       } else {
                                           $check =~ s/^\Q$file\E\:?\s*//;
                                           $info{$key}{'status'} = $check;
                                       }
                                   }
                               } else {
                                   if (open(PIPE,"openssl x509 -noout -modulus -in $file | openssl md5 |")) {
                                       $md5hash{$key} = <PIPE>;
                                       close(PIPE);
                                   }
                               }
                               my $x509 = Crypt::OpenSSL::X509->new_from_file($file);
                               my @items = split(/,\s+/,$x509->subject());
                               foreach my $item (@items) {
                                   my ($name,$value) = split(/=/,$item);
                                   if ($name eq 'CN') {
                                       $info{$key}{'cn'} = $value;
                                   }
                               }
                               $info{$key}{'start'} = $x509->notBefore();
                               $info{$key}{'end'} = $x509->notAfter();
                               $info{$key}{'alg'} = $x509->sig_alg_name();
                               $info{$key}{'size'} = $x509->bit_length();
                               $info{$key}{'email'} = $x509->email();
                           }
                       }
                   }
               }
         }          }
         $qresult=~s/\&$//;  
     }      }
     &untie_user_hash($hashref) or      foreach my $key ('host','hostname') {
         return "error: ".($!+0)." untie(GDBM) Failed while attempting $cmd";          if ($md5hash{$key}) {
     return $qresult;              if ($md5hash{$key} eq $md5hash{'key'}) {
                   $info{$key}{'status'} = 'ok';
               } elsif ($info{'key'}{'status'} =~ /ok/) {
                   $info{$key}{'status'} = 'otherkey';
               } else {
                   $info{$key}{'status'} = 'nokey';
               }
           }
       }
       my $result;
       foreach my $key (keys(%info)) {
           $result .= &escape($key).'='.&Apache::lonnet::freeze_escape($info{$key}).'&';
       }
       $result =~ s/\&$//;
       return $result;
 }  }
   
 1;  1;
Line 952  courseID -- for the course for which the Line 1018  courseID -- for the course for which the
 The contents of the inner hash, for that single item in the outer hash  The contents of the inner hash, for that single item in the outer hash
 are returned (and cached in memcache for 10 minutes).  are returned (and cached in memcache for 10 minutes).
   
 =item get_dom ( $userinput )  
   
 get_dom() will retrieve domain configuration information from a GDBM file  
 in /home/httpd/lonUsers/$dom on the primary library server in a domain.  
 The single argument passed is the string: $cmd:$udom:$namespace:$what  
 where $cmd is the command historically passed to lond - i.e., getdom  
 or egetdom, $udom is the domain, $namespace is the name of the GDBM file  
 (encconfig or configuration), and $what is a string containing names of  
 items to retrieve from the db file (each item name is escaped and separated  
 from the next item name with an ampersand). The return value is either:  
 error: followed by an error message, or a string containing the value (escaped)  
 for each item, again separated from the next item with an ampersand.  
   
 =back  =back
   

Removed from v.1.8.2.2  
changed lines
  Added in v.1.11


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