/usr/share/perl5/Net/LDAP/Control.pm is in libnet-ldap-perl 1:0.5800-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | # Copyright (c) 1999-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
package Net::LDAP::Control;
use strict;
use Net::LDAP::Constant qw(
LDAP_CONTROL_SORTREQUEST
LDAP_CONTROL_SORTRESULT
LDAP_CONTROL_VLVREQUEST
LDAP_CONTROL_VLVRESPONSE
LDAP_CONTROL_PAGED
LDAP_CONTROL_PROXYAUTHORIZATION
LDAP_CONTROL_MANAGEDSAIT
LDAP_CONTROL_PERSISTENTSEARCH
LDAP_CONTROL_ENTRYCHANGE
LDAP_CONTROL_MATCHEDVALUES
LDAP_CONTROL_PASSWORDPOLICY
LDAP_CONTROL_PREREAD
LDAP_CONTROL_POSTREAD
LDAP_CONTROL_SYNC
LDAP_CONTROL_SYNC_STATE
LDAP_CONTROL_SYNC_DONE
LDAP_CONTROL_ASSERTION
LDAP_CONTROL_RELAX
);
our $VERSION = '0.15';
my %Pkg2Type = (
'Net::LDAP::Control::Sort' => LDAP_CONTROL_SORTREQUEST,
'Net::LDAP::Control::SortResult' => LDAP_CONTROL_SORTRESULT,
'Net::LDAP::Control::VLV' => LDAP_CONTROL_VLVREQUEST,
'Net::LDAP::Control::VLVResponse' => LDAP_CONTROL_VLVRESPONSE,
'Net::LDAP::Control::Paged' => LDAP_CONTROL_PAGED,
'Net::LDAP::Control::ProxyAuth' => LDAP_CONTROL_PROXYAUTHORIZATION,
'Net::LDAP::Control::ManageDsaIT' => LDAP_CONTROL_MANAGEDSAIT,
'Net::LDAP::Control::PersistentSearch' => LDAP_CONTROL_PERSISTENTSEARCH,
'Net::LDAP::Control::EntryChange' => LDAP_CONTROL_ENTRYCHANGE,
'Net::LDAP::Control::MatchedValues' => LDAP_CONTROL_MATCHEDVALUES,
'Net::LDAP::Control::PasswordPolicy' => LDAP_CONTROL_PASSWORDPOLICY,
'Net::LDAP::Control::PreRead' => LDAP_CONTROL_PREREAD,
'Net::LDAP::Control::PostRead' => LDAP_CONTROL_POSTREAD,
'Net::LDAP::Control::SyncRequest' => LDAP_CONTROL_SYNC,
'Net::LDAP::Control::SyncState' => LDAP_CONTROL_SYNC_STATE,
'Net::LDAP::Control::SyncDone' => LDAP_CONTROL_SYNC_DONE,
'Net::LDAP::Control::Assertion' => LDAP_CONTROL_ASSERTION,
'Net::LDAP::Control::Relax' => LDAP_CONTROL_RELAX,
#
#LDAP_CONTROL_PWEXPIRED
#LDAP_CONTROL_PWEXPIRING
#
#LDAP_CONTROL_REFERRALS
);
my %Type2Pkg = reverse %Pkg2Type;
sub register {
my($class, $oid) = @_;
require Carp and Carp::croak("$oid is already registered to $Type2Pkg{$oid}")
if exists $Type2Pkg{$oid} and $Type2Pkg{$oid} ne $class;
require Carp and Carp::croak("$class is already registered to $Pkg2Type{$class}")
if exists $Pkg2Type{$class} and $Pkg2Type{$class} ne $oid;
$Type2Pkg{$oid} = $class;
$Pkg2Type{$class} = $oid;
}
sub new {
my $self = shift;
my $pkg = ref($self) || $self;
my $oid = (@_ & 1) ? shift : undef;
my %args = @_;
$args{type} ||= $oid || $Pkg2Type{$pkg} || '';
unless ($args{type} =~ /^\d+(?:\.\d+)+$/) {
$args{error} = 'Invalid OID';
return bless \%args;
}
if ($pkg eq __PACKAGE__ and exists $Type2Pkg{$args{type}}) {
$pkg = $Type2Pkg{$args{type}};
eval "require $pkg" or die $@;
}
delete $args{error};
bless(\%args, $pkg)->init;
}
sub from_asn {
my $self = shift;
my $asn = shift;
my $class = ref($self) || $self;
if ($class eq __PACKAGE__ and exists $Type2Pkg{$asn->{type}}) {
$class = $Type2Pkg{$asn->{type}};
eval "require $class" or die $@;
}
delete $asn->{error};
bless($asn, $class)->init;
}
sub to_asn {
my $self = shift;
$self->value; # Ensure value is there
delete $self->{critical} unless $self->{critical};
$self;
}
sub critical {
my $self = shift;
$self->{critical} = shift if @_;
$self->{critical} || 0;
}
sub value {
my $self = shift;
$self->{value} = shift if @_;
$self->{value} || undef
}
sub type { shift->{type} }
sub valid { ! exists shift->{error} }
sub error { shift->{error} }
sub init { shift }
1;
__END__
=head1 NAME
Net::LDAP::Control - LDAPv3 control object base class
=head1 SYNOPSIS
use Net::LDAP::Control;
use Net::LDAP::Constant qw( LDAP_CONTROL_MATCHEDVALS );
$ctrl = Net::LDAP::Control->new(
type => "1.2.3.4",
value => "help",
critical => 0
);
$mesg = $ldap->search( @args, control => [ $ctrl ]);
$ctrl = Net::LDAP::Control->new( type => LDAP_CONTROL_MATCHEDVALS );
=head1 DESCRIPTION
C<Net::LDAP::Control> is a base-class for LDAPv3 control objects.
=cut
##
## Need more blurb in here about controls
##
=head1 CONSTRUCTORS
=over 4
=item new ( ARGS )
ARGS is a list of name/value pairs, valid arguments are:
=over 4
=item critical
A Boolean value, if TRUE and the control is unrecognized by the server or
is inappropriate for the requested operation then the server will return
an error and the operation will not be performed.
If FALSE and the control is unrecognized by the server or
is inappropriate for the requested operation then the server will ignore
the control and perform the requested operation as if the control was
not given.
If absent, FALSE is assumed.
=item type
A dotted-decimal representation of an OBJECT IDENTIFIER which
uniquely identifies the control. This prevents conflicts between
control names.
This may be omitted if the constructor is being called on a sub-class of
Net::LDAP::Control which has registered to be associated with an OID.
If the constructor is being called on the Net::LDAP::Control
package, then this argument must be given. If the given OID has been
registered by a package, then the returned object will be of the type
registered to handle that OID.
=item value
Optional information associated with the control. Its format is specific
to the particular control.
=back
=item from_asn ( ASN )
ASN is a HASH reference, normally extracted from a PDU. It will contain
a C<type> element and optionally C<critical> and C<value> elements. On
return ASN will be blessed into a package. If C<type> is a registered
OID, then ASN will be blessed into the registered package, if not then ASN
will be blessed into Net::LDAP::Control.
This constructor is used internally by Net::LDAP and assumes that HASH
passed contains a valid control. It should be used with B<caution>.
=back
=head1 METHODS
In addition to the methods listed below, each of the named parameters
to C<new> is also available as a method. C<type> will return the OID of
the control object. C<value> and C<critical> are set/get methods and will
return the current value for each attribute if called without arguments,
but may also be called with arguments to set new values.
=over 4
=item error ()
If there has been an error returns a description of the error, otherwise it will
return C<undef>
=item init ()
C<init> will be called as the last step in both constructors. What it does will depend
on the sub-class. It must always return the object.
=item register ( OID )
C<register> is provided for sub-class implementors. It should be called as a class method
on a sub-class of Net::LDAP::Control with the OID that the class will handle. Net::LDAP::Control
will remember this class and OID pair and use it in the following
situations.
=over 4
=item *
C<new> is called as a class method on the Net::LDAP::Control package and OID is passed
as the type. The returned object will be blessed into the package that registered
the OID.
=item *
C<new> is called as a class method on a registered package and the C<type> is not
specified. The C<type> will be set to the OID registered by that package.
=item *
C<from_asn> is called to construct an object from ASN. The returned object will be
blessed into the package which was registered to handle the OID in the ASN.
=back
=item ( to_asn )
Returns a structure suitable for passing to Convert::ASN1 for
encoding. This method will be called by L<Net::LDAP> when the
control is used.
The base class implementation of this method will call the C<value> method
without arguments to allow a sub-class to encode it's value. Sub-classes
should not need to override this method.
=item valid ()
Returns true if the object is valid and can be encoded. The default implementation
for this method is to return TRUE if there is no error, but sub-classes may override that.
=back
=head1 SEE ALSO
L<Net::LDAP>
L<Net::LDAP::Control::Assertion>
L<Net::LDAP::Control::EntryChange>
L<Net::LDAP::Control::ManageDsaIT>
L<Net::LDAP::Control::MatchedValues>
L<Net::LDAP::Control::Paged>
L<Net::LDAP::Control::PasswordPolicy>
L<Net::LDAP::Control::PersistentSearch>
L<Net::LDAP::Control::PostRead>
L<Net::LDAP::Control::PreRead>
L<Net::LDAP::Control::ProxyAuth>
L<Net::LDAP::Control::Sort>
L<Net::LDAP::Control::SortResult>
L<Net::LDAP::Control::SyncDone>
L<Net::LDAP::Control::SyncRequest>
L<Net::LDAP::Control::SyncState>
L<Net::LDAP::Control::VLV>
L<Net::LDAP::Control::VLVResponse>
=head1 AUTHOR
Graham Barr E<lt>gbarr@pobox.comE<gt>
Please report any bugs, or post any suggestions, to the perl-ldap mailing list
E<lt>perl-ldap@perl.orgE<gt>
=head1 COPYRIGHT
Copyright (c) 1999-2004 Graham Barr. All rights reserved. This program is
free software; you can redistribute it and/or modify it under the same
terms as Perl itself.
=cut
|