LDAP class: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 88: Line 88:
<ul>
<ul>
<li>RFC 1777
<li>RFC 1777
<p>
The best place for detailed information about LDAP is
The best place for detailed information about LDAP is
Internet RFC 1777 (http://www.ietf.org/rfc/rfc1777.txt),
Internet RFC 1777 (http://www.ietf.org/rfc/rfc1777.txt),
which specifies the protocol.
which specifies the protocol.
An excerpt follows:
An excerpt follows:</p>
<p>
"The protocol described in this document is designed to provide access
"The protocol described in this document is designed to provide access
to the X.500 Directory while not incurring the resource requirements
to the X.500 Directory while not incurring the resource requirements
of the Directory Access Protocol (DAP).
of the Directory Access Protocol (DAP).
This protocol is specifically
This protocol is specifically targeted at simple management applications and browser applications
targeted at simple management applications and browser applications
that provide simple read/write interactive access to the X.500
that provide simple read/write interactive access to the X.500
Directory, and is intended to be a complement to the DAP itself."
Directory, and is intended to be a complement to the DAP itself."
</p>
<li>RFC 2256
<li>RFC 2256
<p>
This RFC (http://www.ietf.org/rfc/rfc2256.txt), provides a
This RFC (http://www.ietf.org/rfc/rfc2256.txt), provides a
summary of the attribute types and object classes defined
summary of the attribute types and object classes defined
for use by LDAP/X.500 directory clients.
for use by LDAP/X.500 directory clients.
Although the attribute types implemented by an LDAP server are
Although the attribute types implemented by an LDAP server are
server-specific, many of the standard types are typically used.
server-specific, many of the standard types are typically used.</p>
 
<li>RFC 2849
<li>RFC 2849
<p>
This RFC (http://www.ietf.org/rfc/rfc2849.txt) specifies the
This RFC (http://www.ietf.org/rfc/rfc2849.txt) specifies the
format of a directory entry that is returned by the LDAP server.
format of a directory entry that is returned by the LDAP server.</p>
<p>
The LDAP Data Interchange Format (LDIF)
The LDAP Data Interchange Format (LDIF)
&ldquo;consists of a series of records separated by line separators.
"consists of a series of records separated by line separators.
A record consists of a sequence of lines describing a directory entry,
A record consists of a sequence of lines describing a directory entry,
or a sequence of lines describing a set of changes to a directory
or a sequence of lines describing a set of changes to a directory entry.
entry.
An LDIF file specifies a set of directory entries, or a set
An LDIF file specifies a set of directory entries, or a set
of changes to be applied to directory entries, but not both.&rdquo;
of changes to be applied to directory entries, but not both."</p>
<p>
The <var>LDAP</var> class reformats LDAP server responses in an XML document,
The <var>LDAP</var> class reformats LDAP server responses in an XML document,
as described in [[#Working with returned values|"Working with returned values"]].
as described in [[#Working with returned values|"Working with returned values"]].
This <var class="product">Janus</var> XML formatting does '''not'''
This <var class="product">Janus</var> XML formatting does '''not'''
follow the &ldquo;DSML&rdquo; model described in
follow the "DSML" model described in http://www.worldspot.com/dsmlgw-xml-rpc/DSMLGateway.html.</p>
http://www.worldspot.com/dsmlgw-xml-rpc/DSMLGateway.html.
 
<li>RFC 1960
<li>RFC 1960
<p>
This RFC (http://www.ietf.org/rfc/rfc1960.txt)
This RFC (http://www.ietf.org/rfc/rfc1960.txt)
provides a grammar that can be used to do arbitrary
provides a grammar that can be used to do arbitrary LDAP queries.
LDAP queries.
This grammar is '''not''' currently supported by the <var>LDAP</var> class.</p>
This grammar is '''not''' currently supported by the <var>LDAP</var> class.
</ul>
</ul>
==Using the LDAP class==
==Using the LDAP class==
The <var>LDAP</var> class makes the information in LDAP directories
The <var>LDAP</var> class makes the information in LDAP directories
more easily accessible by removing LDAP protocol concerns from
more easily accessible by removing LDAP protocol concerns from the programmer.
the programmer.
To retrieve data from an LDAP server, applications must:
To retrieve data from an LDAP server, applications must:
<ol>
<ol>
<li>Define a <var class="product">Janus</var> <var>CLSOCK</var> port.
<li>Define a <var class="product">Janus</var> <var>CLSOCK</var> port.
<ul>
<ul>
<li>Use the <var>[[JANUS DEFINE]]</var> command to
<li>Use the <var>[[JANUS DEFINE]]</var> command to:
 
<ul>
<ul>
<li>Create a TCP/IP port for your <var class="product">Model 204</var> LDAP client application.
<li>Create a TCP/IP port for your <var class="product">Model 204</var> LDAP client application.
<li>Indicate the remote LDAP server identifier and port number
<li>Indicate the remote LDAP server identifier and port number
(or a pattern that allows the specific server to be specified
(or a pattern that allows the specific server to be specified by an <var>LDAP</var> class method).
by an <var>LDAP</var> class method).
<li>Set a timeout value for the LDAP connections.
<li>Set a timeout value for the LDAP connections.
</ul>
</ul>
<li>Use the
 
<var>[[JANUS NAMESERVER]]</var> command to let you reference remote hosts by name
<li>Use the <var>[[JANUS NAMESERVER]]</var> command to let you reference remote hosts by name
rather than IP address.
rather than IP address.
<li>Use a <var>[[JANUS CLSOCK]]</var> command to specify access rules for your port.
<li>Use a <var>[[JANUS CLSOCK]]</var> command to specify access rules for your port.
<li>Use the <var>[[JANUS START]]</var> command to start your port.
<li>Use the <var>[[JANUS START]]</var> command to start your port.
</ul>
</ul>
<li>Bind a connection and log in to an LDAP server.
<li>Bind a connection and log in to an LDAP server.
<p>
In your <var class="product">User Language</var> request, a single <var>[[Bind (LDAP function)|Bind]]</var> method statement
In your <var class="product">User Language</var> request, a single <var>[[Bind (LDAP function)|Bind]]</var> method statement
performs these actions.
performs these actions.</p>
 
<li>Send a search query to the LDAP server.
<li>Send a search query to the LDAP server.
<p>
Use one of the multiple <var>Find</var> methods, which provide a variety of search filters.
Use one of the multiple <var>Find</var> methods, which provide a variety of search filters.
See [[#Using the Find methods|"Using the Find methods"]].
See [[#Using the Find methods|"Using the Find methods"]].</p>
<li>Optionally, extract particular data from the returned value.
 
See [[#Working with returned values|"Working with returned values"]].
<li>Optionally, extract particular data from the returned value. See [[#Working with returned values|"Working with returned values"]].
 
<li>End your session when ready.
<li>End your session when ready.
<p>
The <var>[[Unbind (LDAP function)|Unbind]]</var> method
The <var>[[Unbind (LDAP function)|Unbind]]</var> method logs off the LDAP user, and it deactivates the connection.</p>
logs off the LDAP user, and it deactivates the connection.
</ol>
</ol>
===Working with returned values===
===Working with returned values===
The directory information returned from an
The directory information returned from an
LDAP server in response to a <var class="product">Janus</var> <var>LDAP</var> <var>Find</var> call
LDAP server in response to a <var class="product">Janus</var> <var>LDAP</var> <var>Find</var> call
is stored in a <var class="product">Janus</var> system <var>XmlDoc</var> object.
is stored in a <var class="product">Janus</var> system <var>XmlDoc</var> object.
This object
This object contains exactly the data strings sent from the server, in whatever case.
contains exactly the data strings sent from the server,
in whatever case.
   
   
The XML structure of such an <var>XmlDoc</var> is shown in this sample fragment,
The XML structure of such an <var>XmlDoc</var> is shown in this sample fragment,
whose features are described after the example:
whose features are described after the example:
<p class="code">   <result>
<p class="code"><result>
      <entry objectName="cn: Sildar, John R, id=X479, c=US">
  <entry objectName="cn: Sildar, John R, id=X479, c=US">
          <cn>
      <cn>
              <value>Sildar, John R</value>
          <value>Sildar, John R</value>
          </cn>
      </cn>
          <sn>
      <sn>
              <value>Sildar</value>
          <value>Sildar</value>
          </sn>
      </sn>
      </entry>
  </entry>
    </result>
</result>
</p>
</p>
<ul>
<ul>
<li>The top element is named <code>result</code>.
<li>The top element is named <code>result</code>.
If no matches were found,
If no matches were found, only an empty result element (<code><result/></code>) is present.
only an empty result element (<code><result/></code>) is present.
 
<li>The <code>result</code> element has zero or more <code>entry</code> children.
<li>The <code>result</code> element has zero or more <code>entry</code> children.
<li>Each <code>entry</code> element has one or more child elements, each named
<li>Each <code>entry</code> element has one or more child elements, each named
for the LDAP attribute type whose returned data it contains.
for the LDAP attribute type whose returned data it contains.
(for example, <code>cn</code>, <code>sn</code>, <code>telephonenumber</code>).
(for example, <code>cn</code>, <code>sn</code>, <code>telephonenumber</code>).
<li>Each attribute-type element has zero or more <code>value</code> child elements
<li>Each attribute-type element has zero or more <code>value</code> child elements
that contain that LDAP attribute's value(s).
that contain that LDAP attribute's value(s).
If the Find call specified an <code>AttributesOnly=True</code> argument,
If the <var>Find</var> call specified an <code>AttributesOnly=True</code> argument,
any <code>value</code> children are not displayed.
any <code>value</code> children are not displayed.
<li>The <code>entry</code> element in this example has an (XML) attribute
<li>The <code>entry</code> element in this example has an (XML) attribute
named <code>objectName</code> that contains identifying information for the entry
named <code>objectName</code> that contains identifying information for the entry
Line 215: Line 223:
the LDAP attribute names themselves are the <var>XmlDoc</var> element names.
the LDAP attribute names themselves are the <var>XmlDoc</var> element names.
One consequence of this is that you can use <var class="product">Janus SOAP</var> [[XmlDoc API]] method
One consequence of this is that you can use <var class="product">Janus SOAP</var> [[XmlDoc API]] method
calls with relatively simple XPath-expression arguments to extract particular
calls with relatively simple XPath-expression arguments to extract particular "fields" from a returned value.
&ldquo;fields&rdquo; from a returned value.
   
   
For example, to extract the first value of attribute <code>sn</code> in the
For example, to extract the first value of attribute <code>sn</code> in the
first found entry in the returned <var>XmlDoc</var> <code>%doc</code>, you can use the
first found entry in the returned <var>XmlDoc</var> <code>%doc</code>, you can use the
<var>[[Value (XmlDoc/XmlNode property)|Value]]</var> property with a straightforward [[XmlDoc API#The XmlNode and XmlNodelist classes, and XPath|XPath]] argument:
<var>[[Value (XmlDoc/XmlNode property)|Value]]</var> property with a straightforward [[XmlDoc API#The XmlNode and XmlNodelist classes, and XPath|XPath]] argument:
<p class="code"> Print %doc:Value('result/entry/sn/value')
<p class="code">Print %doc:Value('result/entry/sn/value')
</p>
</p>
   
   
Or, alternatively:
Or, alternatively:
<p class="code"> %entry = %doc:selectSingleNode('/result/entry')
<p class="code">%entry = %doc:selectSingleNode('/result/entry')
Print %doc:Value('sn')
Print %doc:Value('sn')
</p>
</p>
For more information about selecting nodes from an <var>XmlDoc</var>,
For more information about selecting nodes from an <var>XmlDoc</var>,
Line 233: Line 240:
To return the first value of <code>sn</code> in the second found entry,
To return the first value of <code>sn</code> in the second found entry,
in a case where multiple entries were found, you can use:
in a case where multiple entries were found, you can use:
<p class="code"> Print doc:Value('result/entry[2]/sn/value')
<p class="code">Print doc:Value('result/entry[2]/sn/value')
</p>
</p>
   
   
And to return the first value of <code>sn</code> in the third (or greater)
And to return the first value of <code>sn</code> in the third (or greater)
found entry:
found entry:
<p class="code"> Print doc:Value('result/entry[position()>=3]/sn/value')
<p class="code">Print doc:Value('result/entry[position()>=3]/sn/value')
</p>
</p>


Line 255: Line 262:
connection to the server host.
connection to the server host.
The <var>LDAP</var> object instance remains available for reuse.
The <var>LDAP</var> object instance remains available for reuse.
If no further references to it exist, it gets discarded automatically
If no further references to it exist, it gets discarded automatically ("implicitly").
(&ldquo;implicitly&rdquo;).
You can also use the generic (<var>Object</var> class) <var>[[Object variables#Discarding objects|Discard]]</var> method to discard an <var>LDAP</var> object:
You can also use
<p class="code">%ldapObject:Discard
the generic (<var>Object</var> class) <var>[[Object variables#Discarding objects|Discard]]</var> method to discard an <var>LDAP</var> object:
<p class="code"> %ldapObject:Discard
</p>
</p>
   
   
The <var>Discard</var> method does not set the
The <var>Discard</var> method does not set the <var>[[ErrorNumber (LDAP function)|ErrorNumber]]</var>
<var>[[ErrorNumber (LDAP function)|ErrorNumber]]</var>
and <var>[[ErrorText (LDAP function)|ErrorText]]</var> properties.
and <var>[[ErrorText (LDAP function)|ErrorText]]</var> properties.


Line 287: Line 291:
The Janus <var>LDAP</var> class implements many of these filters with the
The Janus <var>LDAP</var> class implements many of these filters with the
following Find methods:
following Find methods:
<p class="code">[[FindEQ (LDAP function)|FindEQ]]
<p class="code"><var>[[FindEQ (LDAP function)|FindEQ]]</var>
[[FindStringInCommonName (LDAP function)|FindStringInCommonName]]
<var>[[FindStringInCommonName (LDAP function)|FindStringInCommonName]]</var>
[[FindGE (LDAP function)|FindGE]]
<var>[[FindGE (LDAP function)|FindGE]]</var>
[[FindLE (LDAP function)|FindLE]]
<var>[[FindLE (LDAP function)|FindLE]]</var>
[[FindApprox (LDAP function)|FindApprox]]
<var>[[FindApprox (LDAP function)|FindApprox]]</var>
</p>
</p>
   
   
The LDAP Internet RFC 1960 specifies a syntax for a string representation
The LDAP Internet RFC 1960 specifies a syntax for a string representation
of these filters, but Janus <var>LDAP</var> does '''not''' have an implementation
of these filters, but Janus <var>LDAP</var> does '''''not''''' have an implementation
of such a syntax.
of such a syntax.
   
   
Line 309: Line 313:
The following are true for all the Find methods:
The following are true for all the Find methods:
<ul>
<ul>
<li>The LDAP server's resolution of a search query
<li>The LDAP server's resolution of a search query (its "matching rules")
(its "matching rules")
is implementation-specific, varies with the attribute type,
is implementation-specific, varies with the attribute type,
and is affected by what the directory database uses for
and is affected by what the directory database uses for
search keys, indices, search algorithms, and so on.
search keys, indices, search algorithms, and so on.
<li>The scope of the search requested by the Janus client is hard-coded
<li>The scope of the search requested by the Janus client is hard-coded
to be "whole subtree," that is, all the levels of attribute=value pairs
to be "whole subtree," that is, all the levels of attribute=value pairs
(nodes) in the directory tree.
(nodes) in the directory tree.
<li>By default, <var class="product">Model 204</var> uppercases the search string characters you specify
<li>By default, <var class="product">Model 204</var> uppercases the search string characters you specify
before it sends them to the LDAP server.
before it sends them to the LDAP server.
You can use the <var class="product">Model 204</var> <var>*LOWER</var> command to turn off the default uppercasing.
You can use the <var class="product">Model 204</var> <var>*LOWER</var> command to turn off the default uppercasing.
<li>It is LDAP server-specific whether you must precede special characters
<li>It is LDAP server-specific whether you must precede special characters
in your search string
in your search string with an escape character to locate directory values that
with an escape character to locate directory values that
include those special characters, and the character to use as an
include those special characters, and the character to use as an
escape character is also server-specific.
escape character is also server-specific.
   
   
This said, the
This said, the asterisk (<tt>*</tt>), left-parenthesis ('''<tt>(</tt>'''),
asterisk (<tt>*</tt>), left-parenthesis ('''<tt>(</tt>'''),
right-parenthesis ('''<tt>)</tt>'''), and backslash (<tt>\</tt>)
right-parenthesis ('''<tt>)</tt>'''), and backslash (<tt>\</tt>)
characters often require escaping, and
characters often require escaping, and
Line 337: Line 341:
Whether wildcard characters, typically asterisk (<tt>*</tt>) and question mark (<tt>?</tt>),
Whether wildcard characters, typically asterisk (<tt>*</tt>) and question mark (<tt>?</tt>),
are respected by a server search engine is server-specific.
are respected by a server search engine is server-specific.
A search for the surname <code>?aldo*</code> may return the names Baldock
A search for the surname <code>?aldo*</code> may return the names Baldock and Baldona, or it may return an empty result.
and Baldona, or it may return an empty result.
 
<li>You cannot limit the amount of the server data returned nor, say, the
<li>You cannot limit the amount of the server data returned nor, say, the
number of entries returned, although LDAP servers will enforce their own limits.
number of entries returned, although LDAP servers will enforce their own limits.
For requests sent to the server, the Janus <var>LDAP</var> client buffers
For requests sent to the server, the Janus <var>LDAP</var> client buffers
allow for several hundred bytes for any particular substring
allow for several hundred bytes for any particular substring (for example, the text in an attribute value)
(for example, the text in an attribute value)
and a total of 6144 bytes for any single message.
and a total of 6144 bytes for any single message.
<li>To limit the length of time of a search, you set the <var>[[TIMEOUT]]</var>
<li>To limit the length of time of a search, you set the <var>[[TIMEOUT]]</var>
parameter value on the <var>[[JANUS DEFINE]]</var> command for the Janus port
parameter value on the <var>[[JANUS DEFINE]]</var> command for the Janus port
used for connections to the LDAP server.
used for connections to the LDAP server.
<li>The <var>LDAP</var> Find methods store the found entries in an <var>XmlDoc</var> object
<li>The <var>LDAP</var> Find methods store the found entries in an <var>XmlDoc</var> object
output argument,
output argument,
and they return an optional status value with information about the success
and they return an optional status value with information about the success
of the search.
of the search.
<li>A search that returns no matches is '''not''' considered an error.
<li>A search that returns no matches is '''not''' considered an error.
Your returned <var>XmlDoc</var> contains a single empty element: <code><result/></code>.
Your returned <var>XmlDoc</var> contains a single empty element: <code><result/></code>.
<li>The <var>LDAP</var> Find methods also have options that let you:
<li>The <var>LDAP</var> Find methods also have options that let you:
<ul>
<ul>
<li>Restrict the information reported for each entry to just the attribute
<li>Restrict the information reported for each entry to just the attribute
Line 367: Line 375:
<ol>
<ol>
<li>Defines a <var class="product">Janus</var> port for an LDAP client.
<li>Defines a <var class="product">Janus</var> port for an LDAP client.
<li>Creates an <var>LDAP</var> object, then connects to an LDAP server.
<li>Creates an <var>LDAP</var> object, then connects to an LDAP server.
<li>Performs an equality search using a traditional
 
attribute type (<code>sn</code>)
<li>Performs an equality search using a traditional attribute type (<code>sn</code>)
to return the names of the attribute types implemented by this LDAP server.
to return the names of the attribute types implemented by this LDAP server.
This informs the user for the next step.
This informs the user for the next step.
<li>In a repeating loop, prompts the user for
 
an attribute type and search value, performs an equality search with the
<li>In a repeating loop, prompts the user for an attribute type and search value, performs an equality search with the
user-specified values, then searches the
user-specified values, then searches the
returned <var>XmlDoc</var> for the value of a particular attribute.
returned <var>XmlDoc</var> for the value of a particular attribute.
<li>Disconnects from the LDAP server.
<li>Disconnects from the LDAP server.
</ol>
</ol>
<p class="code"> UTABLE LPDLST 8000
 
*
<p class="code">UTABLE LPDLST 8000
JANUS NAMESERVER 198.142.144.8 43
&#42;
JANUS DRAIN LDSOCK1
JANUS NAMESERVER 198.142.144.8 43
JANUS FORCE LDSOCK1
JANUS DRAIN LDSOCK1
JANUS DELETE LDSOCK1
JANUS FORCE LDSOCK1
JANUS DEFINE LDSOCK1 * CLSOCK 5 TIMEOUT 180 MASTER REMOTE * *
JANUS DELETE LDSOCK1
JANUS START LDSOCK1
JANUS DEFINE LDSOCK1 * CLSOCK 5 TIMEOUT 180 MASTER REMOTE * *
JANUS STATUS
JANUS START LDSOCK1
*
JANUS STATUS
Begin
&#42;
  %ld Object Ldap
Begin
  %doc Object XmlDoc Auto New
  %ld Object Ldap
  %status float
  %doc Object XmlDoc Auto New
  %Attrib string len 255
  %status float
  %SearchString string len 255
  %Attrib string len 255
  %PortNumber float
  %SearchString string len 255
  %val is longstring
  %PortNumber float
***************
  %val is longstring
  %ld = New
&#42;**************
  %status = %ld:Bind(JanusPort='LDSOCK1',      -
  %ld = New
                LDAPServer='ldap.college.edu')
  %status = %ld:Bind(JanusPort='LDSOCK1',      -
  If %status then
              LDAPServer='ldap.college.edu')
      Print 'Bad status from Ldap:Bind: ' %status
  If %status then
      Print '  LDERRNO: ' %ld:ErrorNumber
    Print 'Bad status from Ldap:Bind: ' %status
      Print '  LDERRMS: <' %ld:ErrorText '>'
    Print '  LDERRNO: ' %ld:ErrorNumber
      Stop
    Print '  LDERRMS: <' %ld:ErrorText '>'
  End If
    Stop
***************
  End If
  Print 'AttributesOnly result: '
&#42;**************
  %status = %ld:FindEQ('sn', 'Sildar', %doc,    -
  Print 'AttributesOnly result: '
                        AttributesOnly=True)
  %status = %ld:FindEQ('sn', 'Sildar', %doc,    -
  If %status then
                        AttributesOnly=True)
      Print 'Bad status from Ldap:FindOP: ' %status
  If %status then
      Print '  LDERRNO: ' %ld:ErrorNumber
    Print 'Bad status from Ldap:FindOP: ' %status
      Print '  LDERRMS: <' %ld:ErrorText '>'
    Print '  LDERRNO: ' %ld:ErrorNumber
      Stop
    Print '  LDERRMS: <' %ld:ErrorText '>'
  End If
    Stop
  %doc:Print
  End If
* Must clear XmlDoc
  %doc:Print
  %doc = New
&#42; Must clear XmlDoc
***************
  %doc = New
* Ask user for attrib and value for FindEQ test
&#42;**************
* Either string empty breaks out of the loop
&#42; Ask user for attrib and value for FindEQ test
  Repeat Forever
&#42; Either string empty breaks out of the loop
      %Attrib = $READ ('What attribute for an EQ search?')
  Repeat Forever
      If (%Attrib EQ '') then
    %Attrib = $READ ('What attribute for an EQ search?')
        Loop End
      If (%Attrib EQ '') then
      End If
        Loop End
      %SearchString = $READ ('What value?')
      End If
      If (%SearchString EQ '') then
      %SearchString = $READ ('What value?')
        Loop End
      If (%SearchString EQ '') then
      End If
        Loop End
    Print 'Searching for <' %Attrib ' EQ ' %SearchString '>'
      End If
    %status = %ld:FindEQ(%Attrib, %SearchString, %doc)
    Print 'Searching for <' %Attrib ' EQ ' %SearchString '>'
      If %status then
    %status = %ld:FindEQ(%Attrib, %SearchString, %doc)
          Print 'Bad status from Ldap:FindEQ: ' %status
      If %status then
          Print '  LDERRNO: ' %ld:ErrorNumber
        Print 'Bad status from Ldap:FindEQ: ' %status
          Print '  LDERRMS: <' %ld:ErrorText '>'
        Print '  LDERRNO: ' %ld:ErrorNumber
          Stop
        Print '  LDERRMS: <' %ld:ErrorText '>'
      End If
        Stop
    %doc:Print
      End If
* Print the email address
    %doc:Print
    %val = %doc:Value('result/entry/mail/value')
&#42; Print the email address
    Print 'found value is ' %val
    %val = %doc:Value('result/entry/mail/value')
    %doc = New
    Print 'found value is ' %val
  End Repeat
    %doc = New
***************
  End Repeat
    %status = %ld:Unbind
&#42;**************
      If %status then
    %status = %ld:Unbind
          Print 'Bad status from Ldap:Unbind: ' %status
      If %status then
          Print '  LDERRNO: ' %ld:ErrorNumber
        Print 'Bad status from Ldap:Unbind: ' %status
          Print '  LDERRMS: <' %ld:ErrorText '>'
        Print '  LDERRNO: ' %ld:ErrorNumber
      End If
        Print '  LDERRMS: <' %ld:ErrorText '>'
End
      End If
End
</p>
</p>



Revision as of 21:42, 13 November 2012

The LDAP class simplifies public searches of an organization's LDAP (Lightweight Directory Access Protocol) directory. The LDAP class is a high level, object oriented interface to client sockets that lets you write a User Language LDAP request without knowledge of socket level programming or the format of LDAP requests and responses.

The LDAP class methods allow a User Language program to act as an LDAP client to access and retrieve directory information through an LDAP server. The LDAP server may be running on any platform to which the LDAP client online can make a TCP/IP connection.

You use JANUS commands (DEFINE, START, NAMESERVER) to define and start a TCP/IP CLSOCK port for the LDAP client to use.

Note: To use LDAP class objects, you must have licensed Janus Sockets and Janus SOAP. The Sirius object-oriented alternative to $functions is designed for Janus SOAP applications only, and information about using Sirius objects is provided in "Janus SOAP User Language Interface".

Feature summary

The LDAP class provides the following capabilities:

  • Read access to X.500 and LDAP v2 directory services.
  • One-step connection and login to an LDAP server (with user ID and password passing as well as also anonymous logins).
  • Multiple search filters, each in a separate method.
  • Text-only retrieval: all returned data is automatically converted from ASCII to EBCDIC. UTF-8 encoding is not supported.
  • Automatic deserializing of returned data into XML in an XmlDoc object.
  • A limit of approximately 1300 bytes to the data sent in or returned from a single query of the server.
  • Optional retrieval of only the directory entry attribute names, that is, the names without the corresponding attribute values.
  • Optional SSL (Secure Sockets Layer) data transmission.

The following LDAP features are not currently supported by the LDAP class:

  • Kerberos user logins.
  • Modifying, deleting, or adding directory content.
  • Full compliance with LDAP v3 (for example, UTF-8 is not supported)
  • Arbitrary, user-constructed search queries (RFC 1960 syntax featuring boolean operators is not supported).
  • Restart of aborted transfers.
  • Limiting the quantity of the server data returned or the number of entries returned.

LDAP overview

A directory is a repository for the storage and retrieval of information, and LDAP (Lightweight Directory Access Protocol) is a vendor- and platform-independent standard for accessing computerized directories. LDAP is a subset of X.500, a more complex enterprise directory system. LDAP, like X.500, is both an information model (with namespace) and a protocol for querying and manipulating directory data. Unlike X.500, LDAP is designed to run directly over the TCP/IP stack, and it has a smaller set of query and update functions.

An LDAP directory server runs on a host computer on the Internet, and it provides directory access to client programs that understand the LDAP protocol and can log into the server and look up information. The information is stored in units known as entries. For example, all the data for a particular person is typically contained in a single entry.

Entries are used to store attributes, each of which has an associated type and one or more values. An entry for a person may have a firstname attribute type whose value is Byron, for example. The type determines the attribute's syntax, which defines what kind of information is allowed in the values. The entries are arranged in a tree structure.

LDAP servers index all the data in their entries, and filters are used to select a matching entry or group of entries. A filter specifies attribute types, assertion values, and matching criteria. The LDAP model also defines operations for adding, removing, or changing entries in the directory.

For more information about the LDAP protocol, hear are some relevant Internet RFCs:

  • RFC 1777

    The best place for detailed information about LDAP is Internet RFC 1777 (http://www.ietf.org/rfc/rfc1777.txt), which specifies the protocol. An excerpt follows:

    "The protocol described in this document is designed to provide access to the X.500 Directory while not incurring the resource requirements of the Directory Access Protocol (DAP). This protocol is specifically targeted at simple management applications and browser applications that provide simple read/write interactive access to the X.500 Directory, and is intended to be a complement to the DAP itself."

  • RFC 2256

    This RFC (http://www.ietf.org/rfc/rfc2256.txt), provides a summary of the attribute types and object classes defined for use by LDAP/X.500 directory clients. Although the attribute types implemented by an LDAP server are server-specific, many of the standard types are typically used.

  • RFC 2849

    This RFC (http://www.ietf.org/rfc/rfc2849.txt) specifies the format of a directory entry that is returned by the LDAP server.

    The LDAP Data Interchange Format (LDIF) "consists of a series of records separated by line separators. A record consists of a sequence of lines describing a directory entry, or a sequence of lines describing a set of changes to a directory entry. An LDIF file specifies a set of directory entries, or a set of changes to be applied to directory entries, but not both."

    The LDAP class reformats LDAP server responses in an XML document, as described in "Working with returned values". This Janus XML formatting does not follow the "DSML" model described in http://www.worldspot.com/dsmlgw-xml-rpc/DSMLGateway.html.

  • RFC 1960

    This RFC (http://www.ietf.org/rfc/rfc1960.txt) provides a grammar that can be used to do arbitrary LDAP queries. This grammar is not currently supported by the LDAP class.

Using the LDAP class

The LDAP class makes the information in LDAP directories more easily accessible by removing LDAP protocol concerns from the programmer. To retrieve data from an LDAP server, applications must:

  1. Define a Janus CLSOCK port.
    • Use the JANUS DEFINE command to:
      • Create a TCP/IP port for your Model 204 LDAP client application.
      • Indicate the remote LDAP server identifier and port number (or a pattern that allows the specific server to be specified by an LDAP class method).
      • Set a timeout value for the LDAP connections.
    • Use the JANUS NAMESERVER command to let you reference remote hosts by name rather than IP address.
    • Use a JANUS CLSOCK command to specify access rules for your port.
    • Use the JANUS START command to start your port.
  2. Bind a connection and log in to an LDAP server.

    In your User Language request, a single Bind method statement performs these actions.

  3. Send a search query to the LDAP server.

    Use one of the multiple Find methods, which provide a variety of search filters. See "Using the Find methods".

  4. Optionally, extract particular data from the returned value. See "Working with returned values".
  5. End your session when ready.

    The Unbind method logs off the LDAP user, and it deactivates the connection.

Working with returned values

The directory information returned from an LDAP server in response to a Janus LDAP Find call is stored in a Janus system XmlDoc object. This object contains exactly the data strings sent from the server, in whatever case.

The XML structure of such an XmlDoc is shown in this sample fragment, whose features are described after the example:

<result> <entry objectName="cn: Sildar, John R, id=X479, c=US"> <cn> <value>Sildar, John R</value> </cn> <sn> <value>Sildar</value> </sn> </entry> </result>

  • The top element is named result. If no matches were found, only an empty result element (<result/>) is present.
  • The result element has zero or more entry children.
  • Each entry element has one or more child elements, each named for the LDAP attribute type whose returned data it contains. (for example, cn, sn, telephonenumber).
  • Each attribute-type element has zero or more value child elements that contain that LDAP attribute's value(s). If the Find call specified an AttributesOnly=True argument, any value children are not displayed.
  • The entry element in this example has an (XML) attribute named objectName that contains identifying information for the entry (this is the LDAP Distinguished Name field for the entry).


Using XPath to search returned values

In the XmlDoc returned from an LDAP query, the LDAP attribute names themselves are the XmlDoc element names. One consequence of this is that you can use Janus SOAP XmlDoc API method calls with relatively simple XPath-expression arguments to extract particular "fields" from a returned value.

For example, to extract the first value of attribute sn in the first found entry in the returned XmlDoc %doc, you can use the Value property with a straightforward XPath argument:

Print %doc:Value('result/entry/sn/value')

Or, alternatively:

%entry = %doc:selectSingleNode('/result/entry') Print %doc:Value('sn')

For more information about selecting nodes from an XmlDoc, see SelectSingleNode.

To return the first value of sn in the second found entry, in a case where multiple entries were found, you can use:

Print doc:Value('result/entry[2]/sn/value')

And to return the first value of sn in the third (or greater) found entry:

Print doc:Value('result/entry[position()>=3]/sn/value')

Instantiating and discarding LDAP objects

The LDAP class has no explicit constructor or destructor methods. To create or discard an LDAP object instance, you use the system New and Discard methods that are available to all Janus classes.

The New Constructor allocates and initializes storage for a new LDAP object instance. It takes no arguments. A separate method (Bind) establishes a connection to an LDAP server.

When an LDAP client no longer wants to query the LDAP server, the LDAP Unbind method unauthenticates the LDAP user and severs the connection to the server host. The LDAP object instance remains available for reuse. If no further references to it exist, it gets discarded automatically ("implicitly"). You can also use the generic (Object class) Discard method to discard an LDAP object:

%ldapObject:Discard

The Discard method does not set the ErrorNumber and ErrorText properties.

Using the Find methods

In the LDAP Internet RFC 1777, a filter "defines the conditions that must be fulfilled in order for the search to match a given entry." The RFC specifies the variety of search filters shown below:

Filter ::= CHOICE { and [0] SET OF Filter, or [1] SET OF Filter, not [2] Filter, equalityMatch [3] AttributeValueAssertion, substrings [4] SubstringFilter, greaterOrEqual [5] AttributeValueAssertion, lessOrEqual [6] AttributeValueAssertion, present [7] AttributeType, approxMatch [8] AttributeValueAssertion }

The Janus LDAP class implements many of these filters with the following Find methods:

FindEQ FindStringInCommonName FindGE FindLE FindApprox

The LDAP Internet RFC 1960 specifies a syntax for a string representation of these filters, but Janus LDAP does not have an implementation of such a syntax.

With one exception, the Janus LDAP Find methods have the same arguments and differ only in how the search strings that they provide are interpreted by the LDAP server. Many of the individual Find method descriptions in the following sections therefore avoid repetition by pointing to the representative and probably most commonly used methods: FindEQ (an equality search of the attribute type you specify) and FindStringInCommonName (a search of the cn attribute type for the substring you specify).

The following are true for all the Find methods:

  • The LDAP server's resolution of a search query (its "matching rules") is implementation-specific, varies with the attribute type, and is affected by what the directory database uses for search keys, indices, search algorithms, and so on.
  • The scope of the search requested by the Janus client is hard-coded to be "whole subtree," that is, all the levels of attribute=value pairs (nodes) in the directory tree.
  • By default, Model 204 uppercases the search string characters you specify before it sends them to the LDAP server. You can use the Model 204 *LOWER command to turn off the default uppercasing.
  • It is LDAP server-specific whether you must precede special characters in your search string with an escape character to locate directory values that include those special characters, and the character to use as an escape character is also server-specific. This said, the asterisk (*), left-parenthesis ((), right-parenthesis ()), and backslash (\) characters often require escaping, and a backslash is often the escape character. Escaping the question mark character (?) and other special characters, like equal sign (=), angle brackets (< >), tilde (~), and quotation marks (", '), is often optional. Whether wildcard characters, typically asterisk (*) and question mark (?), are respected by a server search engine is server-specific. A search for the surname ?aldo* may return the names Baldock and Baldona, or it may return an empty result.
  • You cannot limit the amount of the server data returned nor, say, the number of entries returned, although LDAP servers will enforce their own limits. For requests sent to the server, the Janus LDAP client buffers allow for several hundred bytes for any particular substring (for example, the text in an attribute value) and a total of 6144 bytes for any single message.
  • To limit the length of time of a search, you set the TIMEOUT parameter value on the JANUS DEFINE command for the Janus port used for connections to the LDAP server.
  • The LDAP Find methods store the found entries in an XmlDoc object output argument, and they return an optional status value with information about the success of the search.
  • A search that returns no matches is not considered an error. Your returned XmlDoc contains a single empty element: <result/>.
  • The LDAP Find methods also have options that let you:
    • Restrict the information reported for each entry to just the attribute types you list
    • Retrieve only the names of the entry attribute types themselves

LDAP class example

The procedure below, which exercises many of the LDAP methods, does the following:

  1. Defines a Janus port for an LDAP client.
  2. Creates an LDAP object, then connects to an LDAP server.
  3. Performs an equality search using a traditional attribute type (sn) to return the names of the attribute types implemented by this LDAP server. This informs the user for the next step.
  4. In a repeating loop, prompts the user for an attribute type and search value, performs an equality search with the user-specified values, then searches the returned XmlDoc for the value of a particular attribute.
  5. Disconnects from the LDAP server.

UTABLE LPDLST 8000 * JANUS NAMESERVER 198.142.144.8 43 JANUS DRAIN LDSOCK1 JANUS FORCE LDSOCK1 JANUS DELETE LDSOCK1 JANUS DEFINE LDSOCK1 * CLSOCK 5 TIMEOUT 180 MASTER REMOTE * * JANUS START LDSOCK1 JANUS STATUS * Begin %ld Object Ldap %doc Object XmlDoc Auto New %status float %Attrib string len 255 %SearchString string len 255 %PortNumber float %val is longstring *************** %ld = New %status = %ld:Bind(JanusPort='LDSOCK1', - LDAPServer='ldap.college.edu') If %status then Print 'Bad status from Ldap:Bind: ' %status Print ' LDERRNO: ' %ld:ErrorNumber Print ' LDERRMS: <' %ld:ErrorText '>' Stop End If *************** Print 'AttributesOnly result: ' %status = %ld:FindEQ('sn', 'Sildar', %doc, - AttributesOnly=True) If %status then Print 'Bad status from Ldap:FindOP: ' %status Print ' LDERRNO: ' %ld:ErrorNumber Print ' LDERRMS: <' %ld:ErrorText '>' Stop End If %doc:Print * Must clear XmlDoc %doc = New *************** * Ask user for attrib and value for FindEQ test * Either string empty breaks out of the loop Repeat Forever %Attrib = $READ ('What attribute for an EQ search?') If (%Attrib EQ ) then Loop End End If %SearchString = $READ ('What value?') If (%SearchString EQ ) then Loop End End If Print 'Searching for <' %Attrib ' EQ ' %SearchString '>' %status = %ld:FindEQ(%Attrib, %SearchString, %doc) If %status then Print 'Bad status from Ldap:FindEQ: ' %status Print ' LDERRNO: ' %ld:ErrorNumber Print ' LDERRMS: <' %ld:ErrorText '>' Stop End If %doc:Print * Print the email address %val = %doc:Value('result/entry/mail/value') Print 'found value is ' %val %doc = New End Repeat *************** %status = %ld:Unbind If %status then Print 'Bad status from Ldap:Unbind: ' %status Print ' LDERRNO: ' %ld:ErrorNumber Print ' LDERRMS: <' %ld:ErrorText '>' End If End

List of LDAP methods

The "List of LDAP methods" contains a complete list of the class methods.