emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ldap.el Problem and Solution


From: Noah Lavine
Subject: Re: ldap.el Problem and Solution
Date: Wed, 24 Oct 2012 14:58:50 -0400

Replying to myself, I found out that the "version:" header is actually
required by RFC 2849, which defines LDIF (the LDAP Data Interchange
Format). So trying to change my 'ldapsearch' program to omit it is
definitely not the right approach here.

The solution I posted earlier would work, but to be even more careful,
the parser could throw an error if it saw "version: " followed by an
integer greater than 1, because it doesn't know how to parse that.
However, that seems very unlikely, given that this RFC has lasted
since the year 2000 without revisions.

Thanks,
Noah Lavine

On Wed, Oct 24, 2012 at 10:48 AM, Noah Lavine <address@hidden> wrote:
> Hello,
>
> I recently hit a problem in which ldap-search (in ldap.el) would
> return a list of records where the first record would always be nil.
> As far as I can tell, the rest of the list was correct; it just had an
> extra nil in the beginning.
>
> After some debugging, I think the issue is that my ldapsearch program
> (from OpenLDAP) doesn't quite use the output format ldap.el expects.
> The expected format is
>
> dn: ..........
> <attribute>: <value>
> <attribute>: <value>
> .... more attributes here ......
>
> This is the ldif format, which seems to be standardized. But
> tragically, my ldapsearch program prints a header, which makes the
> results look like this:
>
> version: 1
>
> dn: .........
> <attribute>: <value>
> .... more attributes .....
>
> This confuses the ldap.el parsing. I can tell this is the problem
> because when I step through in the debugger, the "dn" variable is set
> to "version: 1", instead of the obviously correct value. Then when it
> attempts to parse its results it finds an empty record, and so pushes
> 'nil onto its results list, which is what causes the problem.
>
> The solution is to insert this after line 579 of ldap.el:
>
> (if (looking-at "version:")
>     (forward-line 1))
>
> I have tested this, and it seems to work for me.
>
> The other option is to make the ldapsearch program not print its
> version header, but looking at its man page, I don't see a way to do
> that.
>
> If this solution doesn't seem good, I am happy to try a different
> approach, but it seems like the easiest solution to me. I have already
> signed copyright papers, although for a change as small as this they
> might not even be needed.
>
> Thanks,
> Noah Lavine



reply via email to

[Prev in Thread] Current Thread [Next in Thread]