Class: Net::LdapPdu
- Inherits:
-
Object
- Object
- Net::LdapPdu
- Defined in:
- lib/net/ldap/pdu.rb
Constant Summary collapse
- BindRequest =
0
- BindResult =
1
- UnbindRequest =
2
- SearchRequest =
3
- SearchReturnedData =
4
- SearchResult =
5
- ModifyResponse =
7
- AddResponse =
9
- DeleteResponse =
11
- ModifyRDNResponse =
13
- SearchResultReferral =
19
- ExtendedRequest =
23
- ExtendedResponse =
24
Instance Attribute Summary collapse
-
#app_tag ⇒ Object
readonly
Returns the value of attribute app_tag.
-
#bind_parameters ⇒ Object
readonly
Returns the value of attribute bind_parameters.
-
#msg_id ⇒ Object
readonly
Returns the value of attribute msg_id.
-
#search_attributes ⇒ Object
readonly
Returns the value of attribute search_attributes.
-
#search_dn ⇒ Object
readonly
Returns the value of attribute search_dn.
-
#search_entry ⇒ Object
readonly
Returns the value of attribute search_entry.
-
#search_parameters ⇒ Object
readonly
Returns the value of attribute search_parameters.
-
#search_referrals ⇒ Object
readonly
Returns the value of attribute search_referrals.
Instance Method Summary collapse
-
#initialize(ber_object) ⇒ LdapPdu
constructor
An LDAP PDU always looks like a BerSequence with at least two elements: an integer (message-id number), and an application-specific sequence.
-
#parse_bind_request(sequence) ⇒ Object
(provisional, must document).
-
#parse_ldap_search_request(sequence) ⇒ Object
(provisional, must document).
-
#parse_search_referral(uris) ⇒ Object
A search referral is a sequence of one or more LDAP URIs.
-
#parse_search_return(sequence) ⇒ Object
Definition from RFC 1777 (we’re handling application-4 here).
-
#parse_unbind_request(sequence) ⇒ Object
(provisional, must document) UnbindRequest has no content so this is a no-op.
-
#result ⇒ Object
Returns a hash which (usually) defines the members :resultCode, :errorMessage, and :matchedDN.
-
#result_code(code = :resultCode) ⇒ Object
This returns an LDAP result code taken from the PDU, but it will be nil if there wasn’t a result code.
-
#result_controls ⇒ Object
Return RFC-2251 Controls if any.
-
#result_server_sasl_creds ⇒ Object
Return serverSaslCreds, which are only present in BindResponse packets.
Constructor Details
#initialize(ber_object) ⇒ LdapPdu
An LDAP PDU always looks like a BerSequence with at least two elements: an integer (message-id number), and an application-specific sequence. Some LDAPv3 packets also include an optional third element, which is a sequence of “controls” (See RFC 2251, section 4.1.12). The application-specific tag in the sequence tells us what kind of packet it is, and each kind has its own format, defined in RFC-1777. Observe that many clients (such as ldapsearch) do not necessarily enforce the expected application tags on received protocol packets. This implementation does interpret the RFC strictly in this regard, and it remains to be seen whether there are servers out there that will not work well with our approach.
Added a controls-processor to SearchResult. Didn’t add it everywhere because it just feels like it will need to be refactored.
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 |
# File 'lib/net/ldap/pdu.rb', line 72 def initialize ber_object begin @msg_id = ber_object[0].to_i # Modified 25Nov06. We want to "un-decorate" the ber-identifier # of the incoming packet. Originally we did this by subtracting 0x60, # which ASSUMES the identifier is a constructed app-specific value. # But at least one value (UnbindRequest) is app-specific primitive. # So it makes more sense just to grab the bottom five bits. #@app_tag = ber_object[1].ber_identifier - 0x60 @app_tag = ber_object[1].ber_identifier & 31 @ldap_controls = [] rescue # any error becomes a data-format error raise LdapPduError.new( "ldap-pdu format error" ) end case @app_tag when BindResult parse_bind_response ber_object[1] when SearchReturnedData parse_search_return ber_object[1] when SearchResultReferral parse_search_referral ber_object[1] when SearchResult parse_ldap_result ber_object[1] parse_controls(ber_object[2]) if ber_object[2] when ModifyResponse parse_ldap_result ber_object[1] when AddResponse parse_ldap_result ber_object[1] when DeleteResponse parse_ldap_result ber_object[1] when ModifyRDNResponse parse_ldap_result ber_object[1] when SearchRequest parse_ldap_search_request ber_object[1] when BindRequest parse_bind_request ber_object[1] when UnbindRequest parse_unbind_request ber_object[1] when ExtendedResponse parse_ldap_result ber_object[1] else raise LdapPduError.new( "unknown pdu-type: #{@app_tag}" ) end end |
Instance Attribute Details
#app_tag ⇒ Object (readonly)
Returns the value of attribute app_tag.
47 48 49 |
# File 'lib/net/ldap/pdu.rb', line 47 def app_tag @app_tag end |
#bind_parameters ⇒ Object (readonly)
Returns the value of attribute bind_parameters.
50 51 52 |
# File 'lib/net/ldap/pdu.rb', line 50 def bind_parameters @bind_parameters end |
#msg_id ⇒ Object (readonly)
Returns the value of attribute msg_id.
47 48 49 |
# File 'lib/net/ldap/pdu.rb', line 47 def msg_id @msg_id end |
#search_attributes ⇒ Object (readonly)
Returns the value of attribute search_attributes.
48 49 50 |
# File 'lib/net/ldap/pdu.rb', line 48 def search_attributes @search_attributes end |
#search_dn ⇒ Object (readonly)
Returns the value of attribute search_dn.
48 49 50 |
# File 'lib/net/ldap/pdu.rb', line 48 def search_dn @search_dn end |
#search_entry ⇒ Object (readonly)
Returns the value of attribute search_entry.
48 49 50 |
# File 'lib/net/ldap/pdu.rb', line 48 def search_entry @search_entry end |
#search_parameters ⇒ Object (readonly)
Returns the value of attribute search_parameters.
50 51 52 |
# File 'lib/net/ldap/pdu.rb', line 50 def search_parameters @search_parameters end |
#search_referrals ⇒ Object (readonly)
Returns the value of attribute search_referrals.
49 50 51 |
# File 'lib/net/ldap/pdu.rb', line 49 def search_referrals @search_referrals end |
Instance Method Details
#parse_bind_request(sequence) ⇒ Object
(provisional, must document)
245 246 247 248 249 250 251 |
# File 'lib/net/ldap/pdu.rb', line 245 def parse_bind_request sequence s = OpenStruct.new s.version, s.name, s.authentication = sequence @bind_parameters = s end |
#parse_ldap_search_request(sequence) ⇒ Object
(provisional, must document)
231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/net/ldap/pdu.rb', line 231 def parse_ldap_search_request sequence s = OpenStruct.new s.base_object, s.scope, s.deref_aliases, s.size_limit, s.time_limit, s.types_only, s.filter, s.attributes = sequence @search_parameters = s end |
#parse_search_referral(uris) ⇒ Object
A search referral is a sequence of one or more LDAP URIs. Any number of search-referral replies can be returned by the server, interspersed with normal replies in any order. Until I can think of a better way to do this, we’ll return the referrals as an array. It’ll be up to higher-level handlers to expose something reasonable to the client.
205 206 207 |
# File 'lib/net/ldap/pdu.rb', line 205 def parse_search_referral uris @search_referrals = uris end |
#parse_search_return(sequence) ⇒ Object
Definition from RFC 1777 (we’re handling application-4 here)
Search Response ::=
CHOICE {
entry [APPLICATION 4] SEQUENCE {
objectName LDAPDN,
attributes SEQUENCE OF SEQUENCE {
AttributeType,
SET OF AttributeValue
}
},
resultCode [APPLICATION 5] LDAPResult
}
We concoct a search response that is a hash of the returned attribute values. NOW OBSERVE CAREFULLY: WE ARE DOWNCASING THE RETURNED ATTRIBUTE NAMES. This is to make them more predictable for user programs, but it may not be a good idea. Maybe this should be configurable. ALTERNATE IMPLEMENTATION: In addition to @search_dn and @search_attributes, we also return @search_entry, which is an LDAP::Entry object. If that works out well, then we’ll remove the first two.
Provisionally removed obsolete search_attributes and search_dn, 04May06.
192 193 194 195 196 197 198 |
# File 'lib/net/ldap/pdu.rb', line 192 def parse_search_return sequence sequence.length >= 2 or raise LdapPduError @search_entry = LDAP::Entry.new( sequence[0] ) sequence[1].each {|seq| @search_entry[seq[0]] = seq[1] } end |
#parse_unbind_request(sequence) ⇒ Object
(provisional, must document) UnbindRequest has no content so this is a no-op.
255 256 |
# File 'lib/net/ldap/pdu.rb', line 255 def parse_unbind_request sequence end |
#result ⇒ Object
Returns a hash which (usually) defines the members :resultCode, :errorMessage, and :matchedDN. These values come directly from an LDAP response packet returned by the remote peer. See #result_code for a sugaring.
123 124 125 |
# File 'lib/net/ldap/pdu.rb', line 123 def result @ldap_result || {} end |
#result_code(code = :resultCode) ⇒ Object
This returns an LDAP result code taken from the PDU, but it will be nil if there wasn’t a result code. That can easily happen depending on the type of packet.
131 132 133 |
# File 'lib/net/ldap/pdu.rb', line 131 def result_code code = :resultCode @ldap_result and @ldap_result[code] end |
#result_controls ⇒ Object
Return RFC-2251 Controls if any. Messy. Does this functionality belong somewhere else?
137 138 139 |
# File 'lib/net/ldap/pdu.rb', line 137 def result_controls @ldap_controls end |
#result_server_sasl_creds ⇒ Object
Return serverSaslCreds, which are only present in BindResponse packets. Messy. Does this functionality belong somewhere else? We ought to refactor the accessors of this class before they get any kludgier.
144 145 146 |
# File 'lib/net/ldap/pdu.rb', line 144 def result_server_sasl_creds @ldap_result && @ldap_result[:serverSaslCreds] end |