/[virtual-ldap]/bin/ldap-rewrite.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /bin/ldap-rewrite.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 10 by dpavlin, Sun Mar 15 19:48:21 2009 UTC revision 18 by dpavlin, Sun Mar 15 22:00:24 2009 UTC
# Line 9  use warnings; Line 9  use warnings;
9    
10  use IO::Select;  use IO::Select;
11  use IO::Socket;  use IO::Socket;
12    use IO::Socket::SSL;
13  use warnings;  use warnings;
14  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
15  use Convert::ASN1 qw(asn_read);  use Convert::ASN1 qw(asn_read);
# Line 17  our $VERSION = '0.2'; Line 18  our $VERSION = '0.2';
18  use fields qw(socket target);  use fields qw(socket target);
19  use YAML qw/LoadFile/;  use YAML qw/LoadFile/;
20    
21    my $config = {
22            yaml_dir => './yaml/',
23            listen => 'localhost:1389',
24            upstream_ldap => 'ldap.ffzg.hr',
25            upstream_ssl => 1,
26            overlay_prefix => 'ffzg-',
27    
28    };
29    
30    if ( ! -d $config->{yaml_dir} ) {
31            warn "DISABLE ", $config->{yaml_dir}," data overlay";
32    }
33    
34    warn "# config = ",dump( $config );
35    
36  sub handle {  sub handle {
37          my $clientsocket=shift;          my $clientsocket=shift;
38          my $serversocket=shift;          my $serversocket=shift;
# Line 76  if(0) { Line 92  if(0) {
92                  } @{ $response->{protocolOp}->{searchResEntry}->{attributes} };                  } @{ $response->{protocolOp}->{searchResEntry}->{attributes} };
93  }  }
94    
95                  my $path = "yaml/$uid.yaml";                  my $path = $config->{yaml_dir} . "$uid.yaml";
96                  if ( -e $path ) {                  if ( -e $path ) {
97                          my $data = LoadFile($path);                          my $data = LoadFile($path);
98                          warn "# yaml = ",dump($data);                          warn "# yaml = ",dump($data);
# Line 89  if(0) { Line 105  if(0) {
105                                  my @vals = split(/\s*#\s*/, $vals);                                  my @vals = split(/\s*#\s*/, $vals);
106    
107                                  push @{ $response->{protocolOp}->{searchResEntry}->{attributes} },                                  push @{ $response->{protocolOp}->{searchResEntry}->{attributes} },
108                                          { type => "ffzg-$type", vals => [ @vals ] };                                          { type => $config->{overlay_prefix} . $type, vals => [ @vals ] };
109                          }                          }
110                  }                  }
111    
# Line 134  my $listenersock = IO::Socket::INET->new Line 150  my $listenersock = IO::Socket::INET->new
150          Listen => 5,          Listen => 5,
151          Proto => 'tcp',          Proto => 'tcp',
152          Reuse => 1,          Reuse => 1,
153          LocalPort => 1389          LocalAddr => $config->{listen},
154  );  );
155    
156    
157  my $targetsock = new IO::Socket::INET (  my $targetsock = $config->{upstream_ssl}
158          Proto => 'tcp',          ? IO::Socket::INET->new(
159          PeerAddr => 'ldap.ffzg.hr',                  Proto => 'tcp',
160          PeerPort => 389,                  PeerAddr => $config->{upstream_ldap},
161  );                  PeerPort => 389,
162            )
163            : IO::Socket::SSL->new( $config->{upstream_ldap} . ':ldaps')
164            ;
165    
166  run_proxy($listenersock,$targetsock);  run_proxy($listenersock,$targetsock);
167    

Legend:
Removed from v.10  
changed lines
  Added in v.18

  ViewVC Help
Powered by ViewVC 1.1.26