Diff for /loncom/lonssl.pm between versions 1.8 and 1.9

version 1.8, 2004/06/17 09:27:38 version 1.9, 2004/06/17 10:15:46
Line 52  my $perlvar;   #  this refers to the apa Line 52  my $perlvar;   #  this refers to the apa
   
 my $pathsep = "/"; # We're on unix after all.  my $pathsep = "/"; # We're on unix after all.
   
   my $DEBUG = 0; # Set to non zero to enable debug output.
   
   
 # Initialization code:  # Initialization code:
   
Line 61  $perlvar = LONCAPA::Configuration::read_ Line 63  $perlvar = LONCAPA::Configuration::read_
 my $lasterror="";  my $lasterror="";
   
   
   
 sub LastError {  sub LastError {
     return $lasterror;      return $lasterror;
 }  }
   
   sub Debug {
       my $msg  = shift;
       if ($DEBUG) {
    print STDERR $msg;
       }
   }
   
 #-------------------------------------------------------------------------  #-------------------------------------------------------------------------
 # Name SetFdBlocking -   # Name SetFdBlocking - 
 #      Turn blocking mode on on the file handle.  This is required for  #      Turn blocking mode on on the file handle.  This is required for
Line 76  sub LastError { Line 86  sub LastError {
 #      prior flag settings.  #      prior flag settings.
 #  #
 sub SetFdBlocking {  sub SetFdBlocking {
     print STDERR "SetFdBlocking called \n";      Debug("SetFdBlocking called \n");
     my $Handle = shift;      my $Handle = shift;
   
   
   
     my $flags  = fcntl($Handle, F_GETFL, 0);      my $flags  = fcntl($Handle, F_GETFL, 0);
     if(!$flags) {      if(!$flags) {
  print STDERR "SetBLocking fcntl get faild $!\n";   Debug("SetBLocking fcntl get faild $!\n");
     }      }
     my $newflags  = $flags & (~ O_NONBLOCK); # Turn off O_NONBLOCK...      my $newflags  = $flags & (~ O_NONBLOCK); # Turn off O_NONBLOCK...
     if(!fcntl($Handle, F_SETFL, $newflags)) {      if(!fcntl($Handle, F_SETFL, $newflags)) {
  print STDERR "Can't set non block mode  $!\n";   Debug("Can't set non block mode  $!\n");
     }      }
     return $flags;      return $flags;
 }  }
Line 119  sub PromoteClientSocket { Line 129  sub PromoteClientSocket {
  $KeyFile)          = @_;   $KeyFile)          = @_;
           
           
     print STDERR "Client promotion using key: $KeyFile, Cert: $MyCert, CA: $CACert\n";      Debug("Client promotion using key: $KeyFile, Cert: $MyCert, CA: $CACert\n");
   
     # To create the ssl socket we need to duplicate the existing      # To create the ssl socket we need to duplicate the existing
     # socket.  Otherwise closing the ssl socket will close the plaintext socket      # socket.  Otherwise closing the ssl socket will close the plaintext socket
Line 129  sub PromoteClientSocket { Line 139  sub PromoteClientSocket {
   
     my $oldflags = SetFdBlocking($PlaintextSocket);      my $oldflags = SetFdBlocking($PlaintextSocket);
     my $dupfno   = fcntl($PlaintextSocket, F_DUPFD, 0);      my $dupfno   = fcntl($PlaintextSocket, F_DUPFD, 0);
     print STDERR "Client promotion got dup = $dupfno\n";      Debug("Client promotion got dup = $dupfno\n");
   
           
     my $client = IO::Socket::SSL->new_from_fd($dupfno,      my $client = IO::Socket::SSL->new_from_fd($dupfno,
Line 176  sub PromoteServerSocket { Line 186  sub PromoteServerSocket {
     # socket.  Otherwise closing the ssl socket will close the plaintext socket      # socket.  Otherwise closing the ssl socket will close the plaintext socket
     # too:      # too:
   
     print STDERR "Server promotion: Key = $KeyFile, Cert $MyCert CA $CACert\n";      Debug("Server promotion: Key = $KeyFile, Cert $MyCert CA $CACert\n");
     
     my $oldflags = SetFdBlocking($PlaintextSocket);      my $oldflags = SetFdBlocking($PlaintextSocket);
     my $dupfno   = fcntl($PlaintextSocket, F_DUPFD, 0);      my $dupfno   = fcntl($PlaintextSocket, F_DUPFD, 0);
     if (!$dupfno) {      if (!$dupfno) {
  print STDERR "dup failed: $!\n";   Debug("dup failed: $!\n");
     }      }
     print STDERR " Fileno = $dupfno\n";      Debug(" Fileno = $dupfno\n");
     my $client = IO::Socket::SSL->new_from_fd($dupfno,      my $client = IO::Socket::SSL->new_from_fd($dupfno,
       SSL_server    => 1, # Server role.        SSL_server    => 1, # Server role.
       SSL_user_cert => 1,        SSL_user_cert => 1,

Removed from v.1.8  
changed lines
  Added in v.1.9


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