/[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 19 by dpavlin, Mon Mar 16 09:46:47 2009 UTC revision 73 by dpavlin, Tue Feb 23 00:11:35 2010 UTC
# Line 3  Line 3 
3  # This program is free software; you can redistribute it and/or  # This program is free software; you can redistribute it and/or
4  # modify it under the same terms as Perl itself.  # modify it under the same terms as Perl itself.
5    
6    # It's modified by Dobrica Pavlinusic <dpavlin@rot13.org> to include following:
7    #
8    # * rewrite LDAP bind request cn: username@domain.com -> uid=username,dc=domain,dc=com
9    # * rewrite search responses:
10    # ** expand key:value pairs from hrEduPersonUniqueNumber into hrEduPersonUniqueNumber_key
11    # ** augment response with yaml/dn.yaml data (for external data import)
12    
13  use strict;  use strict;
14  use warnings;  use warnings;
# Line 14  use warnings; Line 20  use warnings;
20  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
21  use Convert::ASN1 qw(asn_read);  use Convert::ASN1 qw(asn_read);
22  use Net::LDAP::ASN qw(LDAPRequest LDAPResponse);  use Net::LDAP::ASN qw(LDAPRequest LDAPResponse);
23  our $VERSION = '0.2';  our $VERSION = '0.3';
24  use fields qw(socket target);  use fields qw(socket target);
25  use YAML qw/LoadFile/;  use YAML qw/LoadFile/;
26    
27    my $debug = 0;
28    
29  my $config = {  my $config = {
30          yaml_dir => './yaml/',          yaml_dir => './yaml/',
31          listen => 'localhost:1389',          listen => shift @ARGV || 'localhost:1389',
32          upstream_ldap => 'ldap.ffzg.hr',          upstream_ldap => 'ldap.ffzg.hr',
33          upstream_ssl => 1,          upstream_ssl => 1,
34          overlay_prefix => 'ffzg-',          overlay_prefix => 'ffzg-',
35    #       log_file => 'log/ldap-rewrite.log',
36    
37  };  };
38    
39    my $log_fh;
40    
41    sub log {
42            return unless $config->{log_file};
43    
44            if ( ! $log_fh ) {
45                    open($log_fh, '>>', $config->{log_file}) || die "can't open ", $config->{log_file},": $!";
46                    print $log_fh "# " . time;
47            }
48            $log_fh->autoflush(1);
49            print $log_fh join("\n", @_),"\n";
50    }
51    
52    BEGIN {
53            $SIG{'__WARN__'} = sub { warn @_; main::log(@_); }
54    }
55    
56    
57  if ( ! -d $config->{yaml_dir} ) {  if ( ! -d $config->{yaml_dir} ) {
58          warn "DISABLE ", $config->{yaml_dir}," data overlay";          warn "DISABLE ", $config->{yaml_dir}," data overlay";
59  }  }
# Line 39  sub handle { Line 66  sub handle {
66    
67          # read from client          # read from client
68          asn_read($clientsocket, my $reqpdu);          asn_read($clientsocket, my $reqpdu);
69          log_request($reqpdu);          if ( ! $reqpdu ) {
70                    warn "client closed connection\n";
71          return 1 unless $reqpdu;                  return 0;
72            }
73            $reqpdu = log_request($reqpdu);
74    
75          # send to server          # send to server
76          print $serversocket $reqpdu or die "Could not send PDU to server\n ";          print $serversocket $reqpdu or die "Could not send PDU to server\n ";
# Line 50  sub handle { Line 79  sub handle {
79          my $ready;          my $ready;
80          my $sel = IO::Select->new($serversocket);          my $sel = IO::Select->new($serversocket);
81          for( $ready = 1 ; $ready ; $ready = $sel->can_read(0)) {          for( $ready = 1 ; $ready ; $ready = $sel->can_read(0)) {
82                  asn_read($serversocket, my $respdu) or return 1;                  asn_read($serversocket, my $respdu);
83                    if ( ! $respdu ) {
84                            warn "server closed connection\n";
85                            return 0;
86                    }
87                  $respdu = log_response($respdu);                  $respdu = log_response($respdu);
88                  # and send the result to the client                  # and send the result to the client
89                  print $clientsocket $respdu;                  print $clientsocket $respdu || return 0;
90          }          }
91    
92          return 0;          return 1;
93  }  }
94    
95    
96  sub log_request {  sub log_request {
97          my $pdu=shift;          my $pdu=shift;
98    
99          print '-' x 80,"\n";          die "empty pdu" unless $pdu;
100          print "Request ASN 1:\n";  
101          Convert::ASN1::asn_hexdump(\*STDOUT,$pdu);  #       print '-' x 80,"\n";
102          print "Request Perl:\n";  #       print "Request ASN 1:\n";
103    #       Convert::ASN1::asn_hexdump(\*STDOUT,$pdu);
104    #       print "Request Perl:\n";
105          my $request = $LDAPRequest->decode($pdu);          my $request = $LDAPRequest->decode($pdu);
106          print dump($request);          warn "## request = ",dump($request);
107    
108            if ( defined $request->{bindRequest} ) {
109                    if ( $request->{bindRequest}->{name} =~ m{@} ) {
110                            my $old = $request->{bindRequest}->{name};
111                            $request->{bindRequest}->{name} =~ s/[@\.]/,dc=/g;
112                            $request->{bindRequest}->{name} =~ s/^/uid=/;
113                            warn "rewrite bind cn $old -> ", $request->{bindRequest}->{name};
114                            Convert::ASN1::asn_hexdump(\*STDOUT,$pdu) if $debug;
115                            $pdu = $LDAPRequest->encode($request);
116                            Convert::ASN1::asn_hexdump(\*STDOUT,$pdu) if $debug;
117                    }
118            }
119    
120            return $pdu;
121  }  }
122    
123  sub log_response {  sub log_response {
124          my $pdu=shift;          my $pdu=shift;
125            die "empty pdu" unless $pdu;
126    
127          print '-' x 80,"\n";  #       print '-' x 80,"\n";
128          print "Response ASN 1:\n";  #       print "Response ASN 1:\n";
129          Convert::ASN1::asn_hexdump(\*STDOUT,$pdu);  #       Convert::ASN1::asn_hexdump(\*STDOUT,$pdu);
130          print "Response Perl:\n";  #       print "Response Perl:\n";
131          my $response = $LDAPResponse->decode($pdu);          my $response = $LDAPResponse->decode($pdu);
132    
133          if ( defined $response->{protocolOp}->{searchResEntry} ) {          if ( defined $response->{protocolOp}->{searchResEntry} ) {
134                  my $uid = $response->{protocolOp}->{searchResEntry}->{objectName};                  my $uid = $response->{protocolOp}->{searchResEntry}->{objectName};
135                  warn "## SEARCH $uid";                  warn "## objectName $uid";
136    
137                  my @attrs;                  my @attrs;
138    
# Line 108  sub log_response { Line 158  sub log_response {
158                          foreach my $type ( keys %$data ) {                          foreach my $type ( keys %$data ) {
159    
160                                  my $vals = $data->{$type};                                  my $vals = $data->{$type};
                                 $vals =~ s{#\s*$}{};  
                                   
                                 my @vals = split(/\s*#\s*/, $vals);  
161    
162                                  push @{ $response->{protocolOp}->{searchResEntry}->{attributes} },                                  push @{ $response->{protocolOp}->{searchResEntry}->{attributes} }, {
163                                          { type => $config->{overlay_prefix} . $type, vals => [ @vals ] };                                          type => $config->{overlay_prefix} . $type,
164                                            vals => ref($vals) eq 'ARRAY' ? $vals : [ $vals ],
165                                    };
166                          }                          }
167                  }                  }
168    
169                  $pdu = $LDAPResponse->encode($response);                  $pdu = $LDAPResponse->encode($response);
170          }          }
171    
172          print dump($response);          warn "## response = ", dump($response);
173    
174          return $pdu;          return $pdu;
175  }  }
176    
 sub run_proxy {  
         my $listenersock = shift;  
         my $targetsock=shift;  
   
         die "Could not create listener socket: $!\n" unless $listenersock;  
         die "Could not create connection to server: $!\n" unless $targetsock;  
   
         my $sel = IO::Select->new($listenersock);  
         my %Handlers;  
         while (my @ready = $sel->can_read) {  
                 foreach my $fh (@ready) {  
                         if ($fh == $listenersock) {  
                                 # let's create a new socket  
                                 my $psock = $listenersock->accept;  
                                 $sel->add($psock);  
                         } else {  
                                 my $result = handle($fh,$targetsock);  
                                 if ($result) {  
                                         # we have finished with the socket  
                                         $sel->remove($fh);  
                                         $fh->close;  
                                         delete $Handlers{*$fh};  
                                 }  
                         }  
                 }  
         }  
 }  
   
177    
178  my $listenersock = IO::Socket::INET->new(  my $listenersock = IO::Socket::INET->new(
179          Listen => 5,          Listen => 5,
180          Proto => 'tcp',          Proto => 'tcp',
181          Reuse => 1,          Reuse => 1,
182          LocalAddr => $config->{listen},          LocalAddr => $config->{listen},
183  );  ) || die "can't open listen socket: $!";
184    
185    our $server_sock;
186    
187  my $targetsock = $config->{upstream_ssl}  sub connect_to_server {
188          ? IO::Socket::INET->new(          my $sock;
189                  Proto => 'tcp',          if ( $config->{upstream_ssl} ) {
190                  PeerAddr => $config->{upstream_ldap},                  $sock = IO::Socket::SSL->new( $config->{upstream_ldap} . ':ldaps' );
191                  PeerPort => 389,          } else {
192          )                  $sock = IO::Socket::INET->new(
193          : IO::Socket::SSL->new( $config->{upstream_ldap} . ':ldaps')                          Proto => 'tcp',
194          ;                          PeerAddr => $config->{upstream_ldap},
195                            PeerPort => 389,
196                    );
197            }
198            die "can't open ", $config->{upstream_ldap}, " $!\n" unless $sock;
199            warn "## connected to ", $sock->peerhost, ":", $sock->peerport, "\n";
200            return $sock;
201    }
202    
203  run_proxy($listenersock,$targetsock);  my $sel = IO::Select->new($listenersock);
204    while (my @ready = $sel->can_read) {
205            foreach my $fh (@ready) {
206                    if ($fh == $listenersock) {
207                            # let's create a new socket
208                            my $psock = $listenersock->accept;
209                            $sel->add($psock);
210                            warn "## add $psock " . time;
211                    } else {
212                            $server_sock->{$fh} ||= connect_to_server;
213                            if ( ! handle($fh,$server_sock->{$fh}) ) {
214                                    warn "## remove $fh " . time;
215                                    $sel->remove($server_sock->{$fh});
216                                    $server_sock->{$fh}->close;
217                                    delete $server_sock->{$fh};
218                                    # we have finished with the socket
219                                    $sel->remove($fh);
220                                    $fh->close;
221                            }
222                    }
223            }
224    }
225    
226  1;  1;

Legend:
Removed from v.19  
changed lines
  Added in v.73

  ViewVC Help
Powered by ViewVC 1.1.26