1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
# This is a sample Perl module for the OpenLDAP server slapd.
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2024 The OpenLDAP Foundation.
## Portions Copyright 1999 John C. Quillan.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted only as authorized by the OpenLDAP
## Public License.
##
## A copy of this license is available in the file LICENSE in the
## top-level directory of the distribution or, alternatively, at
## <http://www.OpenLDAP.org/license.html>.
# Usage: Add something like this to slapd.conf:
#
# database perl
# suffix "o=AnyOrg,c=US"
# perlModulePath /directory/containing/this/module
# perlModule SampleLDAP
#
# See the slapd-perl(5) manual page for details.
#
# This demo module keeps an in-memory hash {"DN" => "LDIF entry", ...}
# built in sub add{} & co. The data is lost when slapd shuts down.
package SampleLDAP;
use strict;
use warnings;
use POSIX;
$SampleLDAP::VERSION = '1.01';
sub new {
my $class = shift;
my $this = {};
bless $this, $class;
print {*STDERR} "Here in new\n";
print {*STDERR} 'Posix Var ' . BUFSIZ . ' and ' . FILENAME_MAX . "\n";
return $this;
}
sub init {
return 0;
}
sub search {
my $this = shift;
my ( $base, $scope, $deref, $sizeLim, $timeLim, $filterStr, $attrOnly,
@attrs )
= @_;
print {*STDERR} "====$filterStr====\n";
$filterStr =~ s/\(|\)//gm;
$filterStr =~ s/=/: /m;
my @match_dn = ();
for my $dn ( keys %{$this} ) {
if ( $this->{$dn} =~ /$filterStr/imx ) {
push @match_dn, $dn;
last if ( scalar @match_dn == $sizeLim );
}
}
my @match_entries = ();
for my $dn (@match_dn) {
push @match_entries, $this->{$dn};
}
return ( 0, @match_entries );
}
sub compare {
my $this = shift;
my ( $dn, $avaStr ) = @_;
my $rc = 5; # LDAP_COMPARE_FALSE
$avaStr =~ s/=/: /m;
if ( $this->{$dn} =~ /$avaStr/im ) {
$rc = 6; # LDAP_COMPARE_TRUE
}
return $rc;
}
sub modify {
my $this = shift;
my ( $dn, @list ) = @_;
while ( @list > 0 ) {
my $action = shift @list;
my $key = shift @list;
my $value = shift @list;
if ( $action eq 'ADD' ) {
$this->{$dn} .= "$key: $value\n";
}
elsif ( $action eq 'DELETE' ) {
$this->{$dn} =~ s/^$key:\s*$value\n//im;
}
elsif ( $action eq 'REPLACE' ) {
$this->{$dn} =~ s/$key: .*$/$key: $value/im;
}
}
return 0;
}
sub add {
my $this = shift;
my ($entryStr) = @_;
my ($dn) = ( $entryStr =~ /dn:\s(.*)$/m );
#
# This needs to be here until a normalized dn is
# passed to this routine.
#
$dn = uc $dn;
$dn =~ s/\s*//gm;
$this->{$dn} = $entryStr;
return 0;
}
sub modrdn {
my $this = shift;
my ( $dn, $newdn, $delFlag ) = @_;
$this->{$newdn} = $this->{$dn};
if ($delFlag) {
delete $this->{$dn};
}
return 0;
}
sub delete {
my $this = shift;
my ($dn) = @_;
print {*STDERR} "XXXXXX $dn XXXXXXX\n";
delete $this->{$dn};
return 0;
}
sub config {
my $this = shift;
my (@args) = @_;
local $, = ' - ';
print {*STDERR} @args;
print {*STDERR} "\n";
return 0;
}
1;
|