]> git.sur5r.net Git - openldap/blob - libraries/libldap/getdn.c
6e584019bcce6667fd2686386cf6152c833f1536
[openldap] / libraries / libldap / getdn.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2006 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1994 Regents of the University of Michigan.
16  * All rights reserved.
17  */
18
19 #include "portable.h"
20
21 #include <stdio.h>
22
23 #include <ac/stdlib.h>
24 #include <ac/socket.h>
25 #include <ac/string.h>
26 #include <ac/time.h>
27
28 #include "ldap-int.h"
29 #include "ldap_schema.h"
30
31 /* extension to UFN that turns trailing "dc=value" rdns in DNS style,
32  * e.g. "ou=People,dc=openldap,dc=org" => "People, openldap.org" */
33 #define DC_IN_UFN
34
35 /* parsing/printing routines */
36 static int str2strval( const char *str, ber_len_t stoplen, struct berval *val, 
37                 const char **next, unsigned flags, int *retFlags, void *ctx );
38 static int DCE2strval( const char *str, struct berval *val, 
39                 const char **next, unsigned flags, void *ctx );
40 static int IA52strval( const char *str, struct berval *val, 
41                 const char **next, unsigned flags, void *ctx );
42 static int quotedIA52strval( const char *str, struct berval *val, 
43                 const char **next, unsigned flags, void *ctx );
44 static int hexstr2binval( const char *str, struct berval *val, 
45                 const char **next, unsigned flags, void *ctx );
46 static int hexstr2bin( const char *str, char *c );
47 static int byte2hexpair( const char *val, char *pair );
48 static int binval2hexstr( struct berval *val, char *str );
49 static int strval2strlen( struct berval *val, unsigned flags, 
50                 ber_len_t *len );
51 static int strval2str( struct berval *val, char *str, unsigned flags, 
52                 ber_len_t *len );
53 static int strval2IA5strlen( struct berval *val, unsigned flags,
54                 ber_len_t *len );
55 static int strval2IA5str( struct berval *val, char *str, unsigned flags, 
56                 ber_len_t *len );
57 static int strval2DCEstrlen( struct berval *val, unsigned flags,
58                 ber_len_t *len );
59 static int strval2DCEstr( struct berval *val, char *str, unsigned flags, 
60                 ber_len_t *len );
61 static int strval2ADstrlen( struct berval *val, unsigned flags,
62                 ber_len_t *len );
63 static int strval2ADstr( struct berval *val, char *str, unsigned flags, 
64                 ber_len_t *len );
65 static int dn2domain( LDAPDN dn, struct berval *bv, int pos, int *iRDN );
66
67 /* AVA helpers */
68 static LDAPAVA * ldapava_new(
69         const struct berval *attr, const struct berval *val, unsigned flags, void *ctx );
70
71 /* Higher level helpers */
72 static int rdn2strlen( LDAPRDN rdn, unsigned flags, ber_len_t *len,
73                 int ( *s2l )( struct berval *, unsigned, ber_len_t * ) );
74 static int rdn2str( LDAPRDN rdn, char *str, unsigned flags, ber_len_t *len,
75                 int ( *s2s )( struct berval *, char *, unsigned, ber_len_t * ));
76 static int rdn2UFNstrlen( LDAPRDN rdn, unsigned flags, ber_len_t *len  );
77 static int rdn2UFNstr( LDAPRDN rdn, char *str, unsigned flags, ber_len_t *len );
78 static int rdn2DCEstrlen( LDAPRDN rdn, unsigned flags, ber_len_t *len );
79 static int rdn2DCEstr( LDAPRDN rdn, char *str, unsigned flag, ber_len_t *len, int first );
80 static int rdn2ADstrlen( LDAPRDN rdn, unsigned flags, ber_len_t *len );
81 static int rdn2ADstr( LDAPRDN rdn, char *str, unsigned flags, ber_len_t *len, int first );
82
83 /*
84  * RFC 1823 ldap_get_dn
85  */
86 char *
87 ldap_get_dn( LDAP *ld, LDAPMessage *entry )
88 {
89         char            *dn;
90         BerElement      tmp;
91
92         Debug( LDAP_DEBUG_TRACE, "ldap_get_dn\n", 0, 0, 0 );
93
94         assert( ld != NULL );
95         assert( LDAP_VALID(ld) );
96         assert( entry != NULL );
97
98         tmp = *entry->lm_ber;   /* struct copy */
99         if ( ber_scanf( &tmp, "{a" /*}*/, &dn ) == LBER_ERROR ) {
100                 ld->ld_errno = LDAP_DECODING_ERROR;
101                 return( NULL );
102         }
103
104         return( dn );
105 }
106
107 int
108 ldap_get_dn_ber( LDAP *ld, LDAPMessage *entry, BerElement **berout,
109         BerValue *dn )
110 {
111         BerElement      tmp, *ber;
112         ber_len_t       len = 0;
113         int rc = LDAP_SUCCESS;
114
115         Debug( LDAP_DEBUG_TRACE, "ldap_get_dn_ber\n", 0, 0, 0 );
116
117         assert( ld != NULL );
118         assert( LDAP_VALID(ld) );
119         assert( entry != NULL );
120         assert( dn != NULL );
121
122         dn->bv_val = NULL;
123         dn->bv_len = 0;
124
125         if ( berout ) {
126                 *berout = NULL;
127                 ber = ldap_alloc_ber_with_options( ld );
128                 if( ber == NULL ) {
129                         return LDAP_NO_MEMORY;
130                 }
131                 *berout = ber;
132         } else {
133                 ber = &tmp;
134         }
135                 
136         *ber = *entry->lm_ber;  /* struct copy */
137         if ( ber_scanf( ber, "{ml{" /*}*/, dn, &len ) == LBER_ERROR ) {
138                 rc = ld->ld_errno = LDAP_DECODING_ERROR;
139         }
140         if ( rc == LDAP_SUCCESS ) {
141                 /* set the length to avoid overrun */
142                 rc = ber_set_option( ber, LBER_OPT_REMAINING_BYTES, &len );
143                 if( rc != LBER_OPT_SUCCESS ) {
144                         rc = ld->ld_errno = LDAP_LOCAL_ERROR;
145                 }
146         }
147         if ( rc != LDAP_SUCCESS && berout ) {
148                 ber_free( ber, 0 );
149                 *berout = NULL;
150         }
151         return rc;
152 }
153
154 /*
155  * RFC 1823 ldap_dn2ufn
156  */
157 char *
158 ldap_dn2ufn( LDAP_CONST char *dn )
159 {
160         char    *out = NULL;
161
162         Debug( LDAP_DEBUG_TRACE, "ldap_dn2ufn\n", 0, 0, 0 );
163
164         ( void )ldap_dn_normalize( dn, LDAP_DN_FORMAT_LDAP, 
165                 &out, LDAP_DN_FORMAT_UFN );
166         
167         return( out );
168 }
169
170 /*
171  * RFC 1823 ldap_explode_dn
172  */
173 char **
174 ldap_explode_dn( LDAP_CONST char *dn, int notypes )
175 {
176         LDAPDN  tmpDN;
177         char    **values = NULL;
178         int     iRDN;
179         unsigned flag = notypes ? LDAP_DN_FORMAT_UFN : LDAP_DN_FORMAT_LDAPV3;
180         
181         Debug( LDAP_DEBUG_TRACE, "ldap_explode_dn\n", 0, 0, 0 );
182
183         if ( ldap_str2dn( dn, &tmpDN, LDAP_DN_FORMAT_LDAP ) 
184                         != LDAP_SUCCESS ) {
185                 return NULL;
186         }
187
188         if( tmpDN == NULL ) {
189                 values = LDAP_MALLOC( sizeof( char * ) );
190                 if( values == NULL ) return NULL;
191
192                 values[0] = NULL;
193                 return values;
194         }
195
196         for ( iRDN = 0; tmpDN[ iRDN ]; iRDN++ );
197
198         values = LDAP_MALLOC( sizeof( char * ) * ( 1 + iRDN ) );
199         if ( values == NULL ) {
200                 ldap_dnfree( tmpDN );
201                 return NULL;
202         }
203
204         for ( iRDN = 0; tmpDN[ iRDN ]; iRDN++ ) {
205                 ldap_rdn2str( tmpDN[ iRDN ], &values[ iRDN ], flag );
206         }
207         ldap_dnfree( tmpDN );
208         values[ iRDN ] = NULL;
209
210         return values;
211 }
212
213 char **
214 ldap_explode_rdn( LDAP_CONST char *rdn, int notypes )
215 {
216         LDAPRDN         tmpRDN;
217         char            **values = NULL;
218         const char      *p;
219         int             iAVA;
220         
221         Debug( LDAP_DEBUG_TRACE, "ldap_explode_rdn\n", 0, 0, 0 );
222
223         /*
224          * we only parse the first rdn
225          * FIXME: we prefer efficiency over checking if the _ENTIRE_
226          * dn can be parsed
227          */
228         if ( ldap_str2rdn( rdn, &tmpRDN, (char **) &p, LDAP_DN_FORMAT_LDAP ) 
229                         != LDAP_SUCCESS ) {
230                 return( NULL );
231         }
232
233         for ( iAVA = 0; tmpRDN[ iAVA ]; iAVA++ ) ;
234         values = LDAP_MALLOC( sizeof( char * ) * ( 1 + iAVA ) );
235         if ( values == NULL ) {
236                 ldap_rdnfree( tmpRDN );
237                 return( NULL );
238         }
239
240         for ( iAVA = 0; tmpRDN[ iAVA ]; iAVA++ ) {
241                 ber_len_t       l = 0, vl, al = 0;
242                 char            *str;
243                 LDAPAVA         *ava = tmpRDN[ iAVA ];
244                 
245                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
246                         vl = 1 + 2 * ava->la_value.bv_len;
247
248                 } else {
249                         if ( strval2strlen( &ava->la_value, 
250                                                 ava->la_flags, &vl ) ) {
251                                 goto error_return;
252                         }
253                 }
254                 
255                 if ( !notypes ) {
256                         al = ava->la_attr.bv_len;
257                         l = vl + ava->la_attr.bv_len + 1;
258
259                         str = LDAP_MALLOC( l + 1 );
260                         AC_MEMCPY( str, ava->la_attr.bv_val, 
261                                         ava->la_attr.bv_len );
262                         str[ al++ ] = '=';
263
264                 } else {
265                         l = vl;
266                         str = LDAP_MALLOC( l + 1 );
267                 }
268                 
269                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
270                         str[ al++ ] = '#';
271                         if ( binval2hexstr( &ava->la_value, &str[ al ] ) ) {
272                                 goto error_return;
273                         }
274
275                 } else {
276                         if ( strval2str( &ava->la_value, &str[ al ], 
277                                         ava->la_flags, &vl ) ) {
278                                 goto error_return;
279                         }
280                 }
281
282                 str[ l ] = '\0';
283                 values[ iAVA ] = str;
284         }
285         values[ iAVA ] = NULL;
286
287         ldap_rdnfree( tmpRDN );
288
289         return( values );
290
291 error_return:;
292         LBER_VFREE( values );
293         ldap_rdnfree( tmpRDN );
294         return( NULL );
295 }
296
297 char *
298 ldap_dn2dcedn( LDAP_CONST char *dn )
299 {
300         char    *out = NULL;
301
302         Debug( LDAP_DEBUG_TRACE, "ldap_dn2dcedn\n", 0, 0, 0 );
303
304         ( void )ldap_dn_normalize( dn, LDAP_DN_FORMAT_LDAP, 
305                                    &out, LDAP_DN_FORMAT_DCE );
306
307         return( out );
308 }
309
310 char *
311 ldap_dcedn2dn( LDAP_CONST char *dce )
312 {
313         char    *out = NULL;
314
315         Debug( LDAP_DEBUG_TRACE, "ldap_dcedn2dn\n", 0, 0, 0 );
316
317         ( void )ldap_dn_normalize( dce, LDAP_DN_FORMAT_DCE, &out, LDAP_DN_FORMAT_LDAPV3 );
318
319         return( out );
320 }
321
322 char *
323 ldap_dn2ad_canonical( LDAP_CONST char *dn )
324 {
325         char    *out = NULL;
326
327         Debug( LDAP_DEBUG_TRACE, "ldap_dn2ad_canonical\n", 0, 0, 0 );
328
329         ( void )ldap_dn_normalize( dn, LDAP_DN_FORMAT_LDAP, 
330                        &out, LDAP_DN_FORMAT_AD_CANONICAL );
331
332         return( out );
333 }
334
335 /*
336  * function that changes the string representation of dnin
337  * from ( fin & LDAP_DN_FORMAT_MASK ) to ( fout & LDAP_DN_FORMAT_MASK )
338  * 
339  * fin can be one of:
340  *      LDAP_DN_FORMAT_LDAP             (RFC 4514 and ldapbis liberal, 
341  *                                      plus some RFC 1779)
342  *      LDAP_DN_FORMAT_LDAPV3   (RFC 4514 and ldapbis)
343  *      LDAP_DN_FORMAT_LDAPV2   (RFC 1779)
344  *      LDAP_DN_FORMAT_DCE              (?)
345  *
346  * fout can be any of the above except
347  *      LDAP_DN_FORMAT_LDAP
348  * plus:
349  *      LDAP_DN_FORMAT_UFN              (RFC 1781, partial and with extensions)
350  *      LDAP_DN_FORMAT_AD_CANONICAL     (?)
351  */
352 int
353 ldap_dn_normalize( LDAP_CONST char *dnin,
354         unsigned fin, char **dnout, unsigned fout )
355 {
356         int     rc;
357         LDAPDN  tmpDN = NULL;
358
359         Debug( LDAP_DEBUG_TRACE, "ldap_dn_normalize\n", 0, 0, 0 );
360
361         assert( dnout != NULL );
362
363         *dnout = NULL;
364
365         if ( dnin == NULL ) {
366                 return( LDAP_SUCCESS );
367         }
368
369         rc = ldap_str2dn( dnin , &tmpDN, fin );
370         if ( rc != LDAP_SUCCESS ) {
371                 return( rc );
372         }
373
374         rc = ldap_dn2str( tmpDN, dnout, fout );
375
376         ldap_dnfree( tmpDN );
377
378         return( rc );
379 }
380
381 /* States */
382 #define B4AVA                   0x0000
383
384 /* #define      B4ATTRTYPE              0x0001 */
385 #define B4OIDATTRTYPE           0x0002
386 #define B4STRINGATTRTYPE        0x0003
387
388 #define B4AVAEQUALS             0x0100
389 #define B4AVASEP                0x0200
390 #define B4RDNSEP                0x0300
391 #define GOTAVA                  0x0400
392
393 #define B4ATTRVALUE             0x0010
394 #define B4STRINGVALUE           0x0020
395 #define B4IA5VALUEQUOTED        0x0030
396 #define B4IA5VALUE              0x0040
397 #define B4BINARYVALUE           0x0050
398
399 /*
400  * Helpers (mostly from slap.h)
401  * c is assumed to Unicode in an ASCII compatible format (UTF-8)
402  * Macros assume "C" Locale (ASCII)
403  */
404 #define LDAP_DN_ASCII_SPACE(c) \
405         ( (c) == ' ' || (c) == '\t' || (c) == '\n' || (c) == '\r' )
406 #define LDAP_DN_ASCII_LOWER(c)          LDAP_LOWER(c)
407 #define LDAP_DN_ASCII_UPPER(c)          LDAP_UPPER(c)
408 #define LDAP_DN_ASCII_ALPHA(c)          LDAP_ALPHA(c)
409
410 #define LDAP_DN_ASCII_DIGIT(c)          LDAP_DIGIT(c)
411 #define LDAP_DN_ASCII_LCASE_HEXALPHA(c) LDAP_HEXLOWER(c)
412 #define LDAP_DN_ASCII_UCASE_HEXALPHA(c) LDAP_HEXUPPER(c)
413 #define LDAP_DN_ASCII_HEXDIGIT(c)       LDAP_HEX(c)
414 #define LDAP_DN_ASCII_ALNUM(c)          LDAP_ALNUM(c)
415 #define LDAP_DN_ASCII_PRINTABLE(c)      ( (c) >= ' ' && (c) <= '~' )
416
417 /* attribute type */
418 #define LDAP_DN_OID_LEADCHAR(c)         LDAP_DIGIT(c)
419 #define LDAP_DN_DESC_LEADCHAR(c)        LDAP_ALPHA(c)
420 #define LDAP_DN_DESC_CHAR(c)            LDAP_LDH(c)
421 #define LDAP_DN_LANG_SEP(c)             ( (c) == ';' )
422 #define LDAP_DN_ATTRDESC_CHAR(c) \
423         ( LDAP_DN_DESC_CHAR(c) || LDAP_DN_LANG_SEP(c) )
424
425 /* special symbols */
426 #define LDAP_DN_AVA_EQUALS(c)           ( (c) == '=' )
427 #define LDAP_DN_AVA_SEP(c)              ( (c) == '+' )
428 #define LDAP_DN_RDN_SEP(c)              ( (c) == ',' )
429 #define LDAP_DN_RDN_SEP_V2(c)           ( LDAP_DN_RDN_SEP(c) || (c) == ';' )
430 #define LDAP_DN_OCTOTHORPE(c)           ( (c) == '#' )
431 #define LDAP_DN_QUOTES(c)               ( (c) == '\"' )
432 #define LDAP_DN_ESCAPE(c)               ( (c) == '\\' )
433 #define LDAP_DN_VALUE_END(c) \
434         ( LDAP_DN_RDN_SEP(c) || LDAP_DN_AVA_SEP(c) )
435
436 /* NOTE: according to draft-ietf-ldapbis-dn, '=' can be escaped
437  * and treated as special, i.e. escaped both as "\<hexpair>" and
438  * as "\=", but it is treated as a regular char, i.e. it can also 
439  * appear as '='.
440  *
441  * As such, in 2.2 we used to allow reading unescaped '=',
442  * but we always produced escaped '\3D'; this changes 
443  * since 2.3, if compatibility issues do not arise */
444 #define LDAP_DN_NE(c) \
445         ( LDAP_DN_RDN_SEP_V2(c) || LDAP_DN_AVA_SEP(c) \
446           || LDAP_DN_QUOTES(c) \
447           || (c) == '<' || (c) == '>' )
448 #define LDAP_DN_MAYESCAPE(c) \
449         ( LDAP_DN_ESCAPE(c) || LDAP_DN_NE(c) \
450           || LDAP_DN_AVA_EQUALS(c) \
451           || LDAP_DN_ASCII_SPACE(c) || LDAP_DN_OCTOTHORPE(c) )
452 #define LDAP_DN_SHOULDESCAPE(c)         ( LDAP_DN_AVA_EQUALS(c) )
453
454 #define LDAP_DN_NEEDESCAPE(c) \
455         ( LDAP_DN_ESCAPE(c) || LDAP_DN_NE(c) )
456 #define LDAP_DN_NEEDESCAPE_LEAD(c)      LDAP_DN_MAYESCAPE(c)
457 #define LDAP_DN_NEEDESCAPE_TRAIL(c) \
458         ( LDAP_DN_ASCII_SPACE(c) || LDAP_DN_NEEDESCAPE(c) )
459 #define LDAP_DN_WILLESCAPE_CHAR(c) \
460         ( LDAP_DN_RDN_SEP(c) || LDAP_DN_AVA_SEP(c) || LDAP_DN_ESCAPE(c) )
461 #define LDAP_DN_IS_PRETTY(f)            ( (f) & LDAP_DN_PRETTY )
462 #define LDAP_DN_WILLESCAPE_HEX(f, c) \
463         ( ( !LDAP_DN_IS_PRETTY( f ) ) && LDAP_DN_WILLESCAPE_CHAR(c) )
464
465 /* LDAPv2 */
466 #define LDAP_DN_VALUE_END_V2(c) \
467         ( LDAP_DN_RDN_SEP_V2(c) || LDAP_DN_AVA_SEP(c) )
468 /* RFC 1779 */
469 #define LDAP_DN_V2_SPECIAL(c) \
470           ( LDAP_DN_RDN_SEP_V2(c) || LDAP_DN_AVA_EQUALS(c) \
471             || LDAP_DN_AVA_SEP(c) || (c) == '<' || (c) == '>' \
472             || LDAP_DN_OCTOTHORPE(c) )
473 #define LDAP_DN_V2_PAIR(c) \
474           ( LDAP_DN_V2_SPECIAL(c) || LDAP_DN_ESCAPE(c) || LDAP_DN_QUOTES(c) )
475
476 /*
477  * DCE (mostly from Luke Howard and IBM implementation for AIX)
478  *
479  * From: "Application Development Guide - Directory Services" (FIXME: add link?)
480  * Here escapes and valid chars for GDS are considered; as soon as more
481  * specific info is found, the macros will be updated.
482  *
483  * Chars:       'a'-'z', 'A'-'Z', '0'-'9', 
484  *              '.', ':', ',', ''', '+', '-', '=', '(', ')', '?', '/', ' '.
485  *
486  * Metachars:   '/', ',', '=', '\'.
487  *
488  * the '\' is used to escape other metachars.
489  *
490  * Assertion:           '='
491  * RDN separator:       '/'
492  * AVA separator:       ','
493  * 
494  * Attribute types must start with alphabetic chars and can contain 
495  * alphabetic chars and digits (FIXME: no '-'?). OIDs are allowed.
496  */
497 #define LDAP_DN_RDN_SEP_DCE(c)          ( (c) == '/' )
498 #define LDAP_DN_AVA_SEP_DCE(c)          ( (c) == ',' )
499 #define LDAP_DN_ESCAPE_DCE(c)           ( LDAP_DN_ESCAPE(c) )
500 #define LDAP_DN_VALUE_END_DCE(c) \
501         ( LDAP_DN_RDN_SEP_DCE(c) || LDAP_DN_AVA_SEP_DCE(c) )
502 #define LDAP_DN_NEEDESCAPE_DCE(c) \
503         ( LDAP_DN_VALUE_END_DCE(c) || LDAP_DN_AVA_EQUALS(c) )
504
505 /* AD Canonical */
506 #define LDAP_DN_RDN_SEP_AD(c)           ( (c) == '/' )
507 #define LDAP_DN_ESCAPE_AD(c)            ( LDAP_DN_ESCAPE(c) )
508 #define LDAP_DN_AVA_SEP_AD(c)           ( (c) == ',' )  /* assume same as DCE */
509 #define LDAP_DN_VALUE_END_AD(c) \
510         ( LDAP_DN_RDN_SEP_AD(c) || LDAP_DN_AVA_SEP_AD(c) )
511 #define LDAP_DN_NEEDESCAPE_AD(c) \
512         ( LDAP_DN_VALUE_END_AD(c) || LDAP_DN_AVA_EQUALS(c) )
513
514 /* generics */
515 #define LDAP_DN_HEXPAIR(s) \
516         ( LDAP_DN_ASCII_HEXDIGIT((s)[0]) && LDAP_DN_ASCII_HEXDIGIT((s)[1]) )
517 /* better look at the AttributeDescription? */
518
519 /* FIXME: no composite rdn or non-"dc" types, right?
520  * (what about "dc" in OID form?) */
521 /* FIXME: we do not allow binary values in domain, right? */
522 /* NOTE: use this macro only when ABSOLUTELY SURE rdn IS VALID! */
523 /* NOTE: don't use strcasecmp() as it is locale specific! */
524 #define LDAP_DC_ATTR    "dc"
525 #define LDAP_DC_ATTRU   "DC"
526 #define LDAP_DN_IS_RDN_DC( r ) \
527         ( (r) && (r)[0] && !(r)[1] \
528           && ((r)[0]->la_flags & LDAP_AVA_STRING) \
529           && ((r)[0]->la_attr.bv_len == 2) \
530           && (((r)[0]->la_attr.bv_val[0] == LDAP_DC_ATTR[0]) \
531                 || ((r)[0]->la_attr.bv_val[0] == LDAP_DC_ATTRU[0])) \
532           && (((r)[0]->la_attr.bv_val[1] == LDAP_DC_ATTR[1]) \
533                 || ((r)[0]->la_attr.bv_val[1] == LDAP_DC_ATTRU[1])))
534
535 /* Composite rules */
536 #define LDAP_DN_ALLOW_ONE_SPACE(f) \
537         ( LDAP_DN_LDAPV2(f) \
538           || !( (f) & LDAP_DN_P_NOSPACEAFTERRDN ) )
539 #define LDAP_DN_ALLOW_SPACES(f) \
540         ( LDAP_DN_LDAPV2(f) \
541           || !( (f) & ( LDAP_DN_P_NOLEADTRAILSPACES | LDAP_DN_P_NOSPACEAFTERRDN ) ) )
542 #define LDAP_DN_LDAP(f) \
543         ( ( (f) & LDAP_DN_FORMAT_MASK ) == LDAP_DN_FORMAT_LDAP )
544 #define LDAP_DN_LDAPV3(f) \
545         ( ( (f) & LDAP_DN_FORMAT_MASK ) == LDAP_DN_FORMAT_LDAPV3 )
546 #define LDAP_DN_LDAPV2(f) \
547         ( ( (f) & LDAP_DN_FORMAT_MASK ) == LDAP_DN_FORMAT_LDAPV2 )
548 #define LDAP_DN_DCE(f) \
549         ( ( (f) & LDAP_DN_FORMAT_MASK ) == LDAP_DN_FORMAT_DCE )
550 #define LDAP_DN_UFN(f) \
551         ( ( (f) & LDAP_DN_FORMAT_MASK ) == LDAP_DN_FORMAT_UFN )
552 #define LDAP_DN_ADC(f) \
553         ( ( (f) & LDAP_DN_FORMAT_MASK ) == LDAP_DN_FORMAT_AD_CANONICAL )
554 #define LDAP_DN_FORMAT(f)               ( (f) & LDAP_DN_FORMAT_MASK )
555
556 /*
557  * LDAPAVA helpers (will become part of the API for operations 
558  * on structural representations of DNs).
559  */
560 static LDAPAVA *
561 ldapava_new( const struct berval *attr, const struct berval *val, 
562                 unsigned flags, void *ctx )
563 {
564         LDAPAVA *ava;
565
566         assert( attr != NULL );
567         assert( val != NULL );
568
569         ava = LDAP_MALLOCX( sizeof( LDAPAVA ) + attr->bv_len + 1, ctx );
570
571         if ( ava ) {
572                 ava->la_attr.bv_len = attr->bv_len;
573                 ava->la_attr.bv_val = (char *)(ava+1);
574                 AC_MEMCPY( ava->la_attr.bv_val, attr->bv_val, attr->bv_len );
575                 ava->la_attr.bv_val[attr->bv_len] = '\0';
576
577                 ava->la_value = *val;
578                 ava->la_flags = flags | LDAP_AVA_FREE_VALUE;
579
580                 ava->la_private = NULL;
581         }
582
583         return( ava );
584 }
585
586 void
587 ldapava_free( LDAPAVA *ava, void *ctx )
588 {
589         assert( ava != NULL );
590
591 #if 0
592         /* ava's private must be freed by caller
593          * (at present let's skip this check because la_private
594          * basically holds static data) */
595         assert( ava->la_private == NULL );
596 #endif
597
598         if (ava->la_flags & LDAP_AVA_FREE_VALUE)
599                 LDAP_FREEX( ava->la_value.bv_val, ctx );
600
601         LDAP_FREEX( ava, ctx );
602 }
603
604 void
605 ldap_rdnfree( LDAPRDN rdn )
606 {
607         ldap_rdnfree_x( rdn, NULL );
608 }
609
610 void
611 ldap_rdnfree_x( LDAPRDN rdn, void *ctx )
612 {
613         int iAVA;
614         
615         if ( rdn == NULL ) {
616                 return;
617         }
618
619         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
620                 ldapava_free( rdn[ iAVA ], ctx );
621         }
622
623         LDAP_FREEX( rdn, ctx );
624 }
625
626 void
627 ldap_dnfree( LDAPDN dn )
628 {
629         ldap_dnfree_x( dn, NULL );
630 }
631
632 void
633 ldap_dnfree_x( LDAPDN dn, void *ctx )
634 {
635         int iRDN;
636         
637         if ( dn == NULL ) {
638                 return;
639         }
640
641         for ( iRDN = 0; dn[ iRDN ]; iRDN++ ) {
642                 ldap_rdnfree_x( dn[ iRDN ], ctx );
643         }
644
645         LDAP_FREEX( dn, ctx );
646 }
647
648 /*
649  * Converts a string representation of a DN (in LDAPv3, LDAPv2 or DCE)
650  * into a structural representation of the DN, by separating attribute
651  * types and values encoded in the more appropriate form, which is
652  * string or OID for attribute types and binary form of the BER encoded
653  * value or Unicode string. Formats different from LDAPv3 are parsed
654  * according to their own rules and turned into the more appropriate
655  * form according to LDAPv3.
656  *
657  * NOTE: I realize the code is getting spaghettish; it is rather
658  * experimental and will hopefully turn into something more simple
659  * and readable as soon as it works as expected.
660  */
661
662 /*
663  * Default sizes of AVA and RDN static working arrays; if required
664  * the are dynamically resized.  The values can be tuned in case
665  * of special requirements (e.g. very deep DN trees or high number 
666  * of AVAs per RDN).
667  */
668 #define TMP_AVA_SLOTS   8
669 #define TMP_RDN_SLOTS   32
670
671 int
672 ldap_str2dn( LDAP_CONST char *str, LDAPDN *dn, unsigned flags )
673 {
674         struct berval   bv;
675
676         assert( str != NULL );
677
678         bv.bv_len = strlen( str );
679         bv.bv_val = (char *) str;
680         
681         return ldap_bv2dn_x( &bv, dn, flags, NULL );
682 }
683
684 int
685 ldap_bv2dn( struct berval *bv, LDAPDN *dn, unsigned flags )
686 {
687         return ldap_bv2dn_x( bv, dn, flags, NULL );
688 }
689
690 int
691 ldap_bv2dn_x( struct berval *bvin, LDAPDN *dn, unsigned flags, void *ctx )
692 {
693         const char      *p;
694         int             rc = LDAP_DECODING_ERROR;
695         int             nrdns = 0;
696
697         LDAPDN          newDN = NULL;
698         LDAPRDN         newRDN = NULL, tmpDN_[TMP_RDN_SLOTS], *tmpDN = tmpDN_;
699         int             num_slots = TMP_RDN_SLOTS;
700         char            *str, *end;
701         struct berval   bvtmp, *bv = &bvtmp;
702         
703         assert( bvin != NULL );
704         assert( bvin->bv_val != NULL );
705         assert( dn != NULL );
706
707         *bv = *bvin;
708         str = bv->bv_val;
709         end = str + bv->bv_len;
710
711         Debug( LDAP_DEBUG_ARGS, "=> ldap_bv2dn(%s,%u)\n", str, flags, 0 );
712
713         *dn = NULL;
714
715         switch ( LDAP_DN_FORMAT( flags ) ) {
716         case LDAP_DN_FORMAT_LDAP:
717         case LDAP_DN_FORMAT_LDAPV3:
718         case LDAP_DN_FORMAT_DCE:
719                 break;
720
721                 /* allow DN enclosed in brackets */
722         case LDAP_DN_FORMAT_LDAPV2:
723                 if ( str[0] == '<' ) {
724                         if ( bv->bv_len < 2 || end[ -1 ] != '>' ) {
725                                 rc = LDAP_DECODING_ERROR;
726                                 goto parsing_error;
727                         }
728                         bv->bv_val++;
729                         bv->bv_len -= 2;
730                         str++;
731                         end--;
732                 }
733                 break;
734
735         /* unsupported in str2dn */
736         case LDAP_DN_FORMAT_UFN:
737         case LDAP_DN_FORMAT_AD_CANONICAL:
738                 return LDAP_PARAM_ERROR;
739
740         case LDAP_DN_FORMAT_LBER:
741         default:
742                 return LDAP_PARAM_ERROR;
743         }
744
745         if ( bv->bv_len == 0 ) {
746                 return LDAP_SUCCESS;
747         }
748
749         if( memchr( bv->bv_val, '\0', bv->bv_len ) != NULL ) {
750                 /* value must have embedded NULs */
751                 return LDAP_DECODING_ERROR;
752         }
753
754         p = str;
755         if ( LDAP_DN_DCE( flags ) ) {
756                 
757                 /* 
758                  * (from Luke Howard: thnx) A RDN separator is required
759                  * at the beginning of an (absolute) DN.
760                  */
761                 if ( !LDAP_DN_RDN_SEP_DCE( p[ 0 ] ) ) {
762                         goto parsing_error;
763                 }
764                 p++;
765
766         /*
767          * actually we do not want to accept by default the DCE form,
768          * we do not want to auto-detect it
769          */
770 #if 0
771         } else if ( LDAP_DN_LDAP( flags ) ) {
772                 /*
773                  * if dn starts with '/' let's make it a DCE dn
774                  */
775                 if ( LDAP_DN_RDN_SEP_DCE( p[ 0 ] ) ) {
776                         flags |= LDAP_DN_FORMAT_DCE;
777                         p++;
778                 }
779 #endif
780         }
781
782         for ( ; p < end; p++ ) {
783                 int             err;
784                 struct berval   tmpbv;
785                 tmpbv.bv_len = bv->bv_len - ( p - str );
786                 tmpbv.bv_val = (char *)p;
787                 
788                 err = ldap_bv2rdn_x( &tmpbv, &newRDN, (char **) &p, flags,ctx);
789                 if ( err != LDAP_SUCCESS ) {
790                         goto parsing_error;
791                 }
792
793                 /* 
794                  * We expect a rdn separator
795                  */
796                 if ( p < end && p[ 0 ] ) {
797                         switch ( LDAP_DN_FORMAT( flags ) ) {
798                         case LDAP_DN_FORMAT_LDAPV3:
799                                 if ( !LDAP_DN_RDN_SEP( p[ 0 ] ) ) {
800                                         rc = LDAP_DECODING_ERROR;
801                                         goto parsing_error;
802                                 }
803                                 break;
804         
805                         case LDAP_DN_FORMAT_LDAP:
806                         case LDAP_DN_FORMAT_LDAPV2:
807                                 if ( !LDAP_DN_RDN_SEP_V2( p[ 0 ] ) ) {
808                                         rc = LDAP_DECODING_ERROR;
809                                         goto parsing_error;
810                                 }
811                                 break;
812         
813                         case LDAP_DN_FORMAT_DCE:
814                                 if ( !LDAP_DN_RDN_SEP_DCE( p[ 0 ] ) ) {
815                                         rc = LDAP_DECODING_ERROR;
816                                         goto parsing_error;
817                                 }
818                                 break;
819                         }
820                 }
821
822
823                 tmpDN[nrdns++] = newRDN;
824                 newRDN = NULL;
825
826                 /*
827                  * make the static RDN array dynamically rescalable
828                  */
829                 if ( nrdns == num_slots ) {
830                         LDAPRDN *tmp;
831
832                         if ( tmpDN == tmpDN_ ) {
833                                 tmp = LDAP_MALLOCX( num_slots * 2 * sizeof( LDAPRDN * ), ctx );
834                                 if ( tmp == NULL ) {
835                                         rc = LDAP_NO_MEMORY;
836                                         goto parsing_error;
837                                 }
838                                 AC_MEMCPY( tmp, tmpDN, num_slots * sizeof( LDAPRDN * ) );
839
840                         } else {
841                                 tmp = LDAP_REALLOCX( tmpDN, num_slots * 2 * sizeof( LDAPRDN * ), ctx );
842                                 if ( tmp == NULL ) {
843                                         rc = LDAP_NO_MEMORY;
844                                         goto parsing_error;
845                                 }
846                         }
847
848                         tmpDN = tmp;
849                         num_slots *= 2;
850                 }
851                                 
852                 if ( p >= end || p[ 0 ] == '\0' ) {
853                         /* 
854                          * the DN is over, phew
855                          */
856                         newDN = (LDAPDN)LDAP_MALLOCX( sizeof(LDAPRDN *) * (nrdns+1), ctx );
857                         if ( newDN == NULL ) {
858                                 rc = LDAP_NO_MEMORY;
859                                 goto parsing_error;
860                         } else {
861                                 int i;
862
863                                 if ( LDAP_DN_DCE( flags ) ) {
864                                         /* add in reversed order */
865                                         for ( i=0; i<nrdns; i++ )
866                                                 newDN[i] = tmpDN[nrdns-1-i];
867                                 } else {
868                                         for ( i=0; i<nrdns; i++ )
869                                                 newDN[i] = tmpDN[i];
870                                 }
871                                 newDN[nrdns] = NULL;
872                                 rc = LDAP_SUCCESS;
873                         }
874                         goto return_result;
875                 }
876         }
877         
878 parsing_error:;
879         if ( newRDN ) {
880                 ldap_rdnfree_x( newRDN, ctx );
881         }
882
883         for ( nrdns-- ;nrdns >= 0; nrdns-- ) {
884                 ldap_rdnfree_x( tmpDN[nrdns], ctx );
885         }
886
887 return_result:;
888
889         if ( tmpDN != tmpDN_ ) {
890                 LDAP_FREEX( tmpDN, ctx );
891         }
892
893         Debug( LDAP_DEBUG_ARGS, "<= ldap_bv2dn(%s)=%d %s\n", str, rc,
894                         rc ? ldap_err2string( rc ) : "" );
895         *dn = newDN;
896         
897         return( rc );
898 }
899
900 /*
901  * ldap_str2rdn
902  *
903  * Parses a relative DN according to flags up to a rdn separator 
904  * or to the end of str.
905  * Returns the rdn and a pointer to the string continuation, which
906  * corresponds to the rdn separator or to '\0' in case the string is over.
907  */
908 int
909 ldap_str2rdn( LDAP_CONST char *str, LDAPRDN *rdn,
910         char **n_in, unsigned flags )
911 {
912         struct berval   bv;
913
914         assert( str != NULL );
915         assert( str[ 0 ] != '\0' );     /* FIXME: is this required? */
916
917         bv.bv_len = strlen( str );
918         bv.bv_val = (char *) str;
919
920         return ldap_bv2rdn_x( &bv, rdn, n_in, flags, NULL );
921 }
922
923 int
924 ldap_bv2rdn( struct berval *bv, LDAPRDN *rdn,
925         char **n_in, unsigned flags )
926 {
927         return ldap_bv2rdn_x( bv, rdn, n_in, flags, NULL );
928 }
929
930 int
931 ldap_bv2rdn_x( struct berval *bv, LDAPRDN *rdn,
932         char **n_in, unsigned flags, void *ctx )
933 {
934         const char      **n = (const char **) n_in;
935         const char      *p;
936         int             navas = 0;
937         int             state = B4AVA;
938         int             rc = LDAP_DECODING_ERROR;
939         int             attrTypeEncoding = LDAP_AVA_STRING, 
940                         attrValueEncoding = LDAP_AVA_STRING;
941
942         struct berval   attrType = BER_BVNULL;
943         struct berval   attrValue = BER_BVNULL;
944
945         LDAPRDN         newRDN = NULL;
946         LDAPAVA         *tmpRDN_[TMP_AVA_SLOTS], **tmpRDN = tmpRDN_;
947         int             num_slots = TMP_AVA_SLOTS;
948
949         char            *str;
950         ber_len_t       stoplen;
951         
952         assert( bv != NULL );
953         assert( bv->bv_len != 0 );
954         assert( bv->bv_val != NULL );
955         assert( rdn || flags & LDAP_DN_SKIP );
956         assert( n != NULL );
957
958         str = bv->bv_val;
959         stoplen = bv->bv_len;
960
961         if ( rdn ) {
962                 *rdn = NULL;
963         }
964         *n = NULL;
965
966         switch ( LDAP_DN_FORMAT( flags ) ) {
967         case LDAP_DN_FORMAT_LDAP:
968         case LDAP_DN_FORMAT_LDAPV3:
969         case LDAP_DN_FORMAT_LDAPV2:
970         case LDAP_DN_FORMAT_DCE:
971                 break;
972
973         /* unsupported in str2dn */
974         case LDAP_DN_FORMAT_UFN:
975         case LDAP_DN_FORMAT_AD_CANONICAL:
976                 return LDAP_PARAM_ERROR;
977
978         case LDAP_DN_FORMAT_LBER:
979         default:
980                 return LDAP_PARAM_ERROR;
981         }
982
983         if ( bv->bv_len == 0 ) {
984                 return LDAP_SUCCESS;
985
986         }
987
988         if( memchr( bv->bv_val, '\0', bv->bv_len ) != NULL ) {
989                 /* value must have embedded NULs */
990                 return LDAP_DECODING_ERROR;
991         }
992
993         p = str;
994         for ( ; p[ 0 ] || state == GOTAVA; ) {
995                 
996                 /*
997                  * The parser in principle advances one token a time,
998                  * or toggles state if preferable.
999                  */
1000                 switch (state) {
1001
1002                 /*
1003                  * an AttributeType can be encoded as:
1004                  * - its string representation; in detail, implementations
1005                  *   MUST recognize AttributeType string type names listed 
1006                  *   in Section 3 of RFC 4514, and MAY recognize other names.
1007                  * - its numeric OID (a dotted decimal string)
1008                  */
1009                 case B4AVA:
1010                         if ( LDAP_DN_ASCII_SPACE( p[ 0 ] ) ) {
1011                                 if ( !LDAP_DN_ALLOW_ONE_SPACE( flags ) ) {
1012                                         /* error */
1013                                         goto parsing_error;
1014                                 }
1015                                 p++;
1016                         }
1017
1018                         if ( LDAP_DN_ASCII_SPACE( p[ 0 ] ) ) {
1019                                 if ( !LDAP_DN_ALLOW_SPACES( flags ) ) {
1020                                         /* error */
1021                                         goto parsing_error;
1022                                 }
1023
1024                                 /* whitespace is allowed (and trimmed) */
1025                                 p++;
1026                                 while ( p[ 0 ] && LDAP_DN_ASCII_SPACE( p[ 0 ] ) ) {
1027                                         p++;
1028                                 }
1029
1030                                 if ( !p[ 0 ] ) {
1031                                         /* error: we expected an AVA */
1032                                         goto parsing_error;
1033                                 }
1034                         }
1035
1036                         /* oid */
1037                         if ( LDAP_DN_OID_LEADCHAR( p[ 0 ] ) ) {
1038                                 state = B4OIDATTRTYPE;
1039                                 break;
1040                         }
1041                         
1042                         /* else must be alpha */
1043                         if ( !LDAP_DN_DESC_LEADCHAR( p[ 0 ] ) ) {
1044                                 goto parsing_error;
1045                         }
1046                         
1047                         /* LDAPv2 "oid." prefix */
1048                         if ( LDAP_DN_LDAPV2( flags ) ) {
1049                                 /*
1050                                  * to be overly pedantic, we only accept
1051                                  * "OID." or "oid."
1052                                  */
1053                                 if ( flags & LDAP_DN_PEDANTIC ) {
1054                                         if ( !strncmp( p, "OID.", 4 )
1055                                                 || !strncmp( p, "oid.", 4 ) ) {
1056                                                 p += 4;
1057                                                 state = B4OIDATTRTYPE;
1058                                                 break;
1059                                         }
1060                                 } else {
1061                                        if ( !strncasecmp( p, "oid.", 4 ) ) {
1062                                                p += 4;
1063                                                state = B4OIDATTRTYPE;
1064                                                break;
1065                                        }
1066                                 }
1067                         }
1068
1069                         state = B4STRINGATTRTYPE;
1070                         break;
1071                 
1072                 case B4OIDATTRTYPE: {
1073                         int             err = LDAP_SUCCESS;
1074                         
1075                         attrType.bv_val = ldap_int_parse_numericoid( &p, &err,
1076                                 LDAP_SCHEMA_SKIP);
1077
1078                         if ( err != LDAP_SUCCESS ) {
1079                                 goto parsing_error;
1080                         }
1081                         attrType.bv_len = p - attrType.bv_val;
1082
1083                         attrTypeEncoding = LDAP_AVA_BINARY;
1084
1085                         state = B4AVAEQUALS;
1086                         break;
1087                 }
1088
1089                 case B4STRINGATTRTYPE: {
1090                         const char      *startPos, *endPos = NULL;
1091                         ber_len_t       len;
1092                         
1093                         /* 
1094                          * the starting char has been found to be
1095                          * a LDAP_DN_DESC_LEADCHAR so we don't re-check it
1096                          * FIXME: DCE attr types seem to have a more
1097                          * restrictive syntax (no '-' ...) 
1098                          */
1099                         for ( startPos = p++; p[ 0 ]; p++ ) {
1100                                 if ( LDAP_DN_DESC_CHAR( p[ 0 ] ) ) {
1101                                         continue;
1102                                 }
1103
1104                                 if ( LDAP_DN_LANG_SEP( p[ 0 ] ) ) {
1105                                         
1106                                         /*
1107                                          * RFC 4514 explicitly does not allow attribute
1108                                          * description options, such as language tags.
1109                                          */
1110                                         if ( flags & LDAP_DN_PEDANTIC ) {
1111                                                 goto parsing_error;
1112                                         }
1113
1114                                         /*
1115                                          * we trim ';' and following lang 
1116                                          * and so from attribute types
1117                                          */
1118                                         endPos = p;
1119                                         for ( ; LDAP_DN_ATTRDESC_CHAR( p[ 0 ] )
1120                                                         || LDAP_DN_LANG_SEP( p[ 0 ] ); p++ ) {
1121                                                 /* no op */ ;
1122                                         }
1123                                         break;
1124                                 }
1125                                 break;
1126                         }
1127
1128                         len = ( endPos ? endPos : p ) - startPos;
1129                         if ( len == 0 ) {
1130                                 goto parsing_error;
1131                         }
1132                         
1133                         attrTypeEncoding = LDAP_AVA_STRING;
1134
1135                         /*
1136                          * here we need to decide whether to use it as is 
1137                          * or turn it in OID form; as a consequence, we
1138                          * need to decide whether to binary encode the value
1139                          */
1140                         
1141                         state = B4AVAEQUALS;
1142
1143                         if ( flags & LDAP_DN_SKIP ) {
1144                                 break;
1145                         }
1146
1147                         attrType.bv_val = (char *)startPos;
1148                         attrType.bv_len = len;
1149
1150                         break;
1151                 }
1152                                 
1153                 case B4AVAEQUALS:
1154                         /* spaces may not be allowed */
1155                         if ( LDAP_DN_ASCII_SPACE( p[ 0 ] ) ) {
1156                                 if ( !LDAP_DN_ALLOW_SPACES( flags ) ) {
1157                                         goto parsing_error;
1158                                 }
1159                         
1160                                 /* trim spaces */
1161                                 for ( p++; LDAP_DN_ASCII_SPACE( p[ 0 ] ); p++ ) {
1162                                         /* no op */
1163                                 }
1164                         }
1165
1166                         /* need equal sign */
1167                         if ( !LDAP_DN_AVA_EQUALS( p[ 0 ] ) ) {
1168                                 goto parsing_error;
1169                         }
1170                         p++;
1171
1172                         /* spaces may not be allowed */
1173                         if ( LDAP_DN_ASCII_SPACE( p[ 0 ] ) ) {
1174                                 if ( !LDAP_DN_ALLOW_SPACES( flags ) ) {
1175                                         goto parsing_error;
1176                                 }
1177
1178                                 /* trim spaces */
1179                                 for ( p++; LDAP_DN_ASCII_SPACE( p[ 0 ] ); p++ ) {
1180                                         /* no op */
1181                                 }
1182                         }
1183
1184                         /*
1185                          * octothorpe means a BER encoded value will follow
1186                          * FIXME: I don't think DCE will allow it
1187                          */
1188                         if ( LDAP_DN_OCTOTHORPE( p[ 0 ] ) ) {
1189                                 p++;
1190                                 attrValueEncoding = LDAP_AVA_BINARY;
1191                                 state = B4BINARYVALUE;
1192                                 break;
1193                         }
1194
1195                         /* STRING value expected */
1196
1197                         /* 
1198                          * if we're pedantic, an attribute type in OID form
1199                          * SHOULD imply a BER encoded attribute value; we
1200                          * should at least issue a warning
1201                          */
1202                         if ( ( flags & LDAP_DN_PEDANTIC )
1203                                 && ( attrTypeEncoding == LDAP_AVA_BINARY ) ) {
1204                                 /* OID attrType SHOULD use binary encoding */
1205                                 goto parsing_error;
1206                         }
1207
1208                         attrValueEncoding = LDAP_AVA_STRING;
1209
1210                         /* 
1211                          * LDAPv2 allows the attribute value to be quoted;
1212                          * also, IA5 values are expected, in principle
1213                          */
1214                         if ( LDAP_DN_LDAPV2( flags ) || LDAP_DN_LDAP( flags ) ) {
1215                                 if ( LDAP_DN_QUOTES( p[ 0 ] ) ) {
1216                                         p++;
1217                                         state = B4IA5VALUEQUOTED;
1218                                         break;
1219                                 }
1220
1221                                 if ( LDAP_DN_LDAPV2( flags ) ) {
1222                                         state = B4IA5VALUE;
1223                                         break;
1224                                 }
1225                         }
1226
1227                         /*
1228                          * here STRING means RFC 4514 string
1229                          * FIXME: what about DCE strings? 
1230                          */
1231                         if ( !p[ 0 ] ) {
1232                                 /* empty value */
1233                                 state = GOTAVA;
1234                         } else {
1235                                 state = B4STRINGVALUE;
1236                         }
1237                         break;
1238
1239                 case B4BINARYVALUE:
1240                         if ( hexstr2binval( p, &attrValue, &p, flags, ctx ) ) {
1241                                 goto parsing_error;
1242                         }
1243
1244                         state = GOTAVA;
1245                         break;
1246
1247                 case B4STRINGVALUE:
1248                         switch ( LDAP_DN_FORMAT( flags ) ) {
1249                         case LDAP_DN_FORMAT_LDAP:
1250                         case LDAP_DN_FORMAT_LDAPV3:
1251                                 if ( str2strval( p, stoplen - ( p - str ),
1252                                                         &attrValue, &p, flags, 
1253                                                         &attrValueEncoding, ctx ) ) {
1254                                         goto parsing_error;
1255                                 }
1256                                 break;
1257
1258                         case LDAP_DN_FORMAT_DCE:
1259                                 if ( DCE2strval( p, &attrValue, &p, flags, ctx ) ) {
1260                                         goto parsing_error;
1261                                 }
1262                                 break;
1263
1264                         default:
1265                                 assert( 0 );
1266                         }
1267
1268                         state = GOTAVA;
1269                         break;
1270
1271                 case B4IA5VALUE:
1272                         if ( IA52strval( p, &attrValue, &p, flags, ctx ) ) {
1273                                 goto parsing_error;
1274                         }
1275
1276                         state = GOTAVA;
1277                         break;
1278                 
1279                 case B4IA5VALUEQUOTED:
1280
1281                         /* lead quote already stripped */
1282                         if ( quotedIA52strval( p, &attrValue, 
1283                                                 &p, flags, ctx ) ) {
1284                                 goto parsing_error;
1285                         }
1286
1287                         state = GOTAVA;
1288                         break;
1289
1290                 case GOTAVA: {
1291                         int     rdnsep = 0;
1292
1293                         if ( !( flags & LDAP_DN_SKIP ) ) {
1294                                 LDAPAVA *ava;
1295
1296                                 /*
1297                                  * we accept empty values
1298                                  */
1299                                 ava = ldapava_new( &attrType, &attrValue, 
1300                                                 attrValueEncoding, ctx );
1301                                 if ( ava == NULL ) {
1302                                         rc = LDAP_NO_MEMORY;
1303                                         goto parsing_error;
1304                                 }
1305                                 tmpRDN[navas++] = ava;
1306
1307                                 attrValue.bv_val = NULL;
1308                                 attrValue.bv_len = 0;
1309
1310                                 /*
1311                                  * prepare room for new AVAs if needed
1312                                  */
1313                                 if (navas == num_slots) {
1314                                         LDAPAVA **tmp;
1315                                         
1316                                         if ( tmpRDN == tmpRDN_ ) {
1317                                                 tmp = LDAP_MALLOCX( num_slots * 2 * sizeof( LDAPAVA * ), ctx );
1318                                                 if ( tmp == NULL ) {
1319                                                         rc = LDAP_NO_MEMORY;
1320                                                         goto parsing_error;
1321                                                 }
1322                                                 AC_MEMCPY( tmp, tmpRDN, num_slots * sizeof( LDAPAVA * ) );
1323
1324                                         } else {
1325                                                 tmp = LDAP_REALLOCX( tmpRDN, num_slots * 2 * sizeof( LDAPAVA * ), ctx );
1326                                                 if ( tmp == NULL ) {
1327                                                         rc = LDAP_NO_MEMORY;
1328                                                         goto parsing_error;
1329                                                 }
1330                                         }
1331
1332                                         tmpRDN = tmp;
1333                                         num_slots *= 2;
1334                                 }
1335                         }
1336                         
1337                         /* 
1338                          * if we got an AVA separator ('+', or ',' for DCE ) 
1339                          * we expect a new AVA for this RDN; otherwise 
1340                          * we add the RDN to the DN
1341                          */
1342                         switch ( LDAP_DN_FORMAT( flags ) ) {
1343                         case LDAP_DN_FORMAT_LDAP:
1344                         case LDAP_DN_FORMAT_LDAPV3:
1345                         case LDAP_DN_FORMAT_LDAPV2:
1346                                 if ( !LDAP_DN_AVA_SEP( p[ 0 ] ) ) {
1347                                         rdnsep = 1;
1348                                 }
1349                                 break;
1350
1351                         case LDAP_DN_FORMAT_DCE:
1352                                 if ( !LDAP_DN_AVA_SEP_DCE( p[ 0 ] ) ) {
1353                                         rdnsep = 1;
1354                                 }
1355                                 break;
1356                         }
1357
1358                         if ( rdnsep ) {
1359                                 /* 
1360                                  * the RDN is over, phew
1361                                  */
1362                                 *n = p;
1363                                 if ( !( flags & LDAP_DN_SKIP ) ) {
1364                                         newRDN = (LDAPRDN)LDAP_MALLOCX( 
1365                                                 sizeof(LDAPAVA) * (navas+1), ctx );
1366                                         if ( newRDN == NULL ) {
1367                                                 rc = LDAP_NO_MEMORY;
1368                                                 goto parsing_error;
1369                                         } else {
1370                                                 AC_MEMCPY( newRDN, tmpRDN, sizeof(LDAPAVA *) * navas);
1371                                                 newRDN[navas] = NULL;
1372                                         }
1373
1374                                 }
1375                                 rc = LDAP_SUCCESS;
1376                                 goto return_result;
1377                         }
1378
1379                         /* they should have been used in an AVA */
1380                         attrType.bv_val = NULL;
1381                         attrValue.bv_val = NULL;
1382                         
1383                         p++;
1384                         state = B4AVA;
1385                         break;
1386                 }
1387
1388                 default:
1389                         assert( 0 );
1390                         goto parsing_error;
1391                 }
1392         }
1393         *n = p;
1394         
1395 parsing_error:;
1396         /* They are set to NULL after they're used in an AVA */
1397
1398         if ( attrValue.bv_val ) {
1399                 LDAP_FREEX( attrValue.bv_val, ctx );
1400         }
1401
1402         for ( navas-- ; navas >= 0; navas-- ) {
1403                 ldapava_free( tmpRDN[navas], ctx );
1404         }
1405
1406 return_result:;
1407
1408         if ( tmpRDN != tmpRDN_ ) {
1409                 LDAP_FREEX( tmpRDN, ctx );
1410         }
1411
1412         if ( rdn ) {
1413                 *rdn = newRDN;
1414         }
1415         
1416         return( rc );
1417 }
1418
1419 /*
1420  * reads in a UTF-8 string value, unescaping stuff:
1421  * '\' + LDAP_DN_NEEDESCAPE(c) -> 'c'
1422  * '\' + HEXPAIR(p) -> unhex(p)
1423  */
1424 static int
1425 str2strval( const char *str, ber_len_t stoplen, struct berval *val, const char **next, unsigned flags, int *retFlags, void *ctx )
1426 {
1427         const char      *p, *end, *startPos, *endPos = NULL;
1428         ber_len_t       len, escapes;
1429
1430         assert( str != NULL );
1431         assert( val != NULL );
1432         assert( next != NULL );
1433
1434         *next = NULL;
1435         end = str + stoplen;
1436         for ( startPos = p = str, escapes = 0; p < end; p++ ) {
1437                 if ( LDAP_DN_ESCAPE( p[ 0 ] ) ) {
1438                         p++;
1439                         if ( p[ 0 ] == '\0' ) {
1440                                 return( 1 );
1441                         }
1442                         if ( LDAP_DN_MAYESCAPE( p[ 0 ] ) ) {
1443                                 escapes++;
1444                                 continue;
1445                         }
1446
1447                         if ( LDAP_DN_HEXPAIR( p ) ) {
1448                                 char c;
1449
1450                                 hexstr2bin( p, &c );
1451                                 escapes += 2;
1452
1453                                 if ( !LDAP_DN_ASCII_PRINTABLE( c ) ) {
1454
1455                                         /*
1456                                          * we assume the string is UTF-8
1457                                          */
1458                                         *retFlags = LDAP_AVA_NONPRINTABLE;
1459                                 }
1460                                 p++;
1461
1462                                 continue;
1463                         }
1464
1465                         if ( LDAP_DN_PEDANTIC & flags ) {
1466                                 return( 1 );
1467                         }
1468                         /* 
1469                          * we do not allow escaping 
1470                          * of chars that don't need 
1471                          * to and do not belong to 
1472                          * HEXDIGITS
1473                          */
1474                         return( 1 );
1475
1476                 } else if ( !LDAP_DN_ASCII_PRINTABLE( p[ 0 ] ) ) {
1477                         if ( p[ 0 ] == '\0' ) {
1478                                 return( 1 );
1479                         }
1480                         *retFlags = LDAP_AVA_NONPRINTABLE;
1481
1482                 } else if ( ( LDAP_DN_LDAP( flags ) && LDAP_DN_VALUE_END_V2( p[ 0 ] ) ) 
1483                                 || ( LDAP_DN_LDAPV3( flags ) && LDAP_DN_VALUE_END( p[ 0 ] ) ) ) {
1484                         break;
1485
1486                 } else if ( LDAP_DN_NEEDESCAPE( p[ 0 ] ) ) {
1487                         /* 
1488                          * FIXME: maybe we can add 
1489                          * escapes if not pedantic?
1490                          */
1491                         return( 1 );
1492                 }
1493         }
1494
1495         /*
1496          * we do allow unescaped spaces at the end
1497          * of the value only in non-pedantic mode
1498          */
1499         if ( p > startPos + 1 && LDAP_DN_ASCII_SPACE( p[ -1 ] ) &&
1500                         !LDAP_DN_ESCAPE( p[ -2 ] ) ) {
1501                 if ( flags & LDAP_DN_PEDANTIC ) {
1502                         return( 1 );
1503                 }
1504
1505                 /* strip trailing (unescaped) spaces */
1506                 for ( endPos = p - 1; 
1507                                 endPos > startPos + 1 && 
1508                                 LDAP_DN_ASCII_SPACE( endPos[ -1 ] ) &&
1509                                 !LDAP_DN_ESCAPE( endPos[ -2 ] );
1510                                 endPos-- ) {
1511                         /* no op */
1512                 }
1513         }
1514
1515         *next = p;
1516         if ( flags & LDAP_DN_SKIP ) {
1517                 return( 0 );
1518         }
1519
1520         /*
1521          * FIXME: test memory?
1522          */
1523         len = ( endPos ? endPos : p ) - startPos - escapes;
1524         val->bv_len = len;
1525
1526         if ( escapes == 0 ) {
1527                 if ( *retFlags & LDAP_AVA_NONPRINTABLE ) {
1528                         val->bv_val = LDAP_MALLOCX( len + 1, ctx );
1529                         AC_MEMCPY( val->bv_val, startPos, len );
1530                         val->bv_val[ len ] = '\0';
1531                 } else {
1532                         val->bv_val = LDAP_STRNDUPX( startPos, len, ctx );
1533                 }
1534
1535         } else {
1536                 ber_len_t       s, d;
1537
1538                 val->bv_val = LDAP_MALLOCX( len + 1, ctx );
1539                 for ( s = 0, d = 0; d < len; ) {
1540                         if ( LDAP_DN_ESCAPE( startPos[ s ] ) ) {
1541                                 s++;
1542                                 if ( LDAP_DN_MAYESCAPE( startPos[ s ] ) ) {
1543                                         val->bv_val[ d++ ] = 
1544                                                 startPos[ s++ ];
1545                                         
1546                                 } else if ( LDAP_DN_HEXPAIR( &startPos[ s ] ) ) {
1547                                         char    c;
1548
1549                                         hexstr2bin( &startPos[ s ], &c );
1550                                         val->bv_val[ d++ ] = c;
1551                                         s += 2;
1552                                         
1553                                 } else {
1554                                         /* we should never get here */
1555                                         assert( 0 );
1556                                 }
1557
1558                         } else {
1559                                 val->bv_val[ d++ ] = startPos[ s++ ];
1560                         }
1561                 }
1562
1563                 val->bv_val[ d ] = '\0';
1564                 assert( d == len );
1565         }
1566
1567         return( 0 );
1568 }
1569
1570 static int
1571 DCE2strval( const char *str, struct berval *val, const char **next, unsigned flags, void *ctx )
1572 {
1573         const char      *p, *startPos, *endPos = NULL;
1574         ber_len_t       len, escapes;
1575
1576         assert( str != NULL );
1577         assert( val != NULL );
1578         assert( next != NULL );
1579
1580         *next = NULL;
1581         
1582         for ( startPos = p = str, escapes = 0; p[ 0 ]; p++ ) {
1583                 if ( LDAP_DN_ESCAPE_DCE( p[ 0 ] ) ) {
1584                         p++;
1585                         if ( LDAP_DN_NEEDESCAPE_DCE( p[ 0 ] ) ) {
1586                                 escapes++;
1587
1588                         } else {
1589                                 return( 1 );
1590                         }
1591
1592                 } else if ( LDAP_DN_VALUE_END_DCE( p[ 0 ] ) ) {
1593                         break;
1594                 }
1595
1596                 /*
1597                  * FIXME: can we accept anything else? I guess we need
1598                  * to stop if a value is not legal
1599                  */
1600         }
1601
1602         /* 
1603          * (unescaped) trailing spaces are trimmed must be silently ignored;
1604          * so we eat them
1605          */
1606         if ( p > startPos + 1 && LDAP_DN_ASCII_SPACE( p[ -1 ] ) &&
1607                         !LDAP_DN_ESCAPE( p[ -2 ] ) ) {
1608                 if ( flags & LDAP_DN_PEDANTIC ) {
1609                         return( 1 );
1610                 }
1611
1612                 /* strip trailing (unescaped) spaces */
1613                 for ( endPos = p - 1; 
1614                                 endPos > startPos + 1 && 
1615                                 LDAP_DN_ASCII_SPACE( endPos[ -1 ] ) &&
1616                                 !LDAP_DN_ESCAPE( endPos[ -2 ] );
1617                                 endPos-- ) {
1618                         /* no op */
1619                 }
1620         }
1621
1622         *next = p;
1623         if ( flags & LDAP_DN_SKIP ) {
1624                 return( 0 );
1625         }
1626         
1627         len = ( endPos ? endPos : p ) - startPos - escapes;
1628         val->bv_len = len;
1629         if ( escapes == 0 ){
1630                 val->bv_val = LDAP_STRNDUPX( startPos, len, ctx );
1631
1632         } else {
1633                 ber_len_t       s, d;
1634
1635                 val->bv_val = LDAP_MALLOCX( len + 1, ctx );
1636                 for ( s = 0, d = 0; d < len; ) {
1637                         /*
1638                          * This point is reached only if escapes 
1639                          * are properly used, so all we need to
1640                          * do is eat them
1641                          */
1642                         if (  LDAP_DN_ESCAPE_DCE( startPos[ s ] ) ) {
1643                                 s++;
1644
1645                         }
1646                         val->bv_val[ d++ ] = startPos[ s++ ];
1647                 }
1648                 val->bv_val[ d ] = '\0';
1649                 assert( strlen( val->bv_val ) == len );
1650         }
1651         
1652         return( 0 );
1653 }
1654
1655 static int
1656 IA52strval( const char *str, struct berval *val, const char **next, unsigned flags, void *ctx )
1657 {
1658         const char      *p, *startPos, *endPos = NULL;
1659         ber_len_t       len, escapes;
1660
1661         assert( str != NULL );
1662         assert( val != NULL );
1663         assert( next != NULL );
1664
1665         *next = NULL;
1666
1667         /*
1668          * LDAPv2 (RFC 1779)
1669          */
1670         
1671         for ( startPos = p = str, escapes = 0; p[ 0 ]; p++ ) {
1672                 if ( LDAP_DN_ESCAPE( p[ 0 ] ) ) {
1673                         p++;
1674                         if ( p[ 0 ] == '\0' ) {
1675                                 return( 1 );
1676                         }
1677
1678                         if ( !LDAP_DN_NEEDESCAPE( p[ 0 ] )
1679                                         && ( LDAP_DN_PEDANTIC & flags ) ) {
1680                                 return( 1 );
1681                         }
1682                         escapes++;
1683
1684                 } else if ( LDAP_DN_VALUE_END_V2( p[ 0 ] ) ) {
1685                         break;
1686                 }
1687
1688                 /*
1689                  * FIXME: can we accept anything else? I guess we need
1690                  * to stop if a value is not legal
1691                  */
1692         }
1693
1694         /* strip trailing (unescaped) spaces */
1695         for ( endPos = p; 
1696                         endPos > startPos + 1 && 
1697                         LDAP_DN_ASCII_SPACE( endPos[ -1 ] ) &&
1698                         !LDAP_DN_ESCAPE( endPos[ -2 ] );
1699                         endPos-- ) {
1700                 /* no op */
1701         }
1702
1703         *next = p;
1704         if ( flags & LDAP_DN_SKIP ) {
1705                 return( 0 );
1706         }
1707
1708         len = ( endPos ? endPos : p ) - startPos - escapes;
1709         val->bv_len = len;
1710         if ( escapes == 0 ) {
1711                 val->bv_val = LDAP_STRNDUPX( startPos, len, ctx );
1712
1713         } else {
1714                 ber_len_t       s, d;
1715                 
1716                 val->bv_val = LDAP_MALLOCX( len + 1, ctx );
1717                 for ( s = 0, d = 0; d < len; ) {
1718                         if ( LDAP_DN_ESCAPE( startPos[ s ] ) ) {
1719                                 s++;
1720                         }
1721                         val->bv_val[ d++ ] = startPos[ s++ ];
1722                 }
1723                 val->bv_val[ d ] = '\0';
1724                 assert( strlen( val->bv_val ) == len );
1725         }
1726
1727         return( 0 );
1728 }
1729
1730 static int
1731 quotedIA52strval( const char *str, struct berval *val, const char **next, unsigned flags, void *ctx )
1732 {
1733         const char      *p, *startPos, *endPos = NULL;
1734         ber_len_t       len;
1735         unsigned        escapes = 0;
1736
1737         assert( str != NULL );
1738         assert( val != NULL );
1739         assert( next != NULL );
1740
1741         *next = NULL;
1742
1743         /* initial quote already eaten */
1744         for ( startPos = p = str; p[ 0 ]; p++ ) {
1745                 /* 
1746                  * According to RFC 1779, the quoted value can
1747                  * contain escaped as well as unescaped special values;
1748                  * as a consequence we tolerate escaped values 
1749                  * (e.g. '"\,"' -> '\,') and escape unescaped specials
1750                  * (e.g. '","' -> '\,').
1751                  */
1752                 if ( LDAP_DN_ESCAPE( p[ 0 ] ) ) {
1753                         if ( p[ 1 ] == '\0' ) {
1754                                 return( 1 );
1755                         }
1756                         p++;
1757
1758                         if ( !LDAP_DN_V2_PAIR( p[ 0 ] )
1759                                         && ( LDAP_DN_PEDANTIC & flags ) ) {
1760                                 /*
1761                                  * do we allow to escape normal chars?
1762                                  * LDAPv2 does not allow any mechanism 
1763                                  * for escaping chars with '\' and hex 
1764                                  * pair
1765                                  */
1766                                 return( 1 );
1767                         }
1768                         escapes++;
1769
1770                 } else if ( LDAP_DN_QUOTES( p[ 0 ] ) ) {
1771                         endPos = p;
1772                         /* eat closing quotes */
1773                         p++;
1774                         break;
1775                 }
1776
1777                 /*
1778                  * FIXME: can we accept anything else? I guess we need
1779                  * to stop if a value is not legal
1780                  */
1781         }
1782
1783         if ( endPos == NULL ) {
1784                 return( 1 );
1785         }
1786
1787         /* Strip trailing (unescaped) spaces */
1788         for ( ; p[ 0 ] && LDAP_DN_ASCII_SPACE( p[ 0 ] ); p++ ) {
1789                 /* no op */
1790         }
1791
1792         *next = p;
1793         if ( flags & LDAP_DN_SKIP ) {
1794                 return( 0 );
1795         }
1796
1797         len = endPos - startPos - escapes;
1798         assert( endPos >= startPos + escapes );
1799         val->bv_len = len;
1800         if ( escapes == 0 ) {
1801                 val->bv_val = LDAP_STRNDUPX( startPos, len, ctx );
1802
1803         } else {
1804                 ber_len_t       s, d;
1805                 
1806                 val->bv_val = LDAP_MALLOCX( len + 1, ctx );
1807                 val->bv_len = len;
1808
1809                 for ( s = d = 0; d < len; ) {
1810                         if ( LDAP_DN_ESCAPE( str[ s ] ) ) {
1811                                 s++;
1812                         }
1813                         val->bv_val[ d++ ] = str[ s++ ];
1814                 }
1815                 val->bv_val[ d ] = '\0';
1816                 assert( strlen( val->bv_val ) == len );
1817         }
1818
1819         return( 0 );
1820 }
1821
1822 static int
1823 hexstr2bin( const char *str, char *c )
1824 {
1825         char    c1, c2;
1826
1827         assert( str != NULL );
1828         assert( c != NULL );
1829
1830         c1 = str[ 0 ];
1831         c2 = str[ 1 ];
1832
1833         if ( LDAP_DN_ASCII_DIGIT( c1 ) ) {
1834                 *c = c1 - '0';
1835
1836         } else {
1837                 if ( LDAP_DN_ASCII_UCASE_HEXALPHA( c1 ) ) {
1838                         *c = c1 - 'A' + 10;
1839                 } else {
1840                         assert( LDAP_DN_ASCII_LCASE_HEXALPHA( c1 ) );
1841                         *c = c1 - 'a' + 10;
1842                 }
1843         }
1844
1845         *c <<= 4;
1846
1847         if ( LDAP_DN_ASCII_DIGIT( c2 ) ) {
1848                 *c += c2 - '0';
1849                 
1850         } else {
1851                 if ( LDAP_DN_ASCII_UCASE_HEXALPHA( c2 ) ) {
1852                         *c += c2 - 'A' + 10;
1853                 } else {
1854                         assert( LDAP_DN_ASCII_LCASE_HEXALPHA( c2 ) );
1855                         *c += c2 - 'a' + 10;
1856                 }
1857         }
1858
1859         return( 0 );
1860 }
1861
1862 static int
1863 hexstr2binval( const char *str, struct berval *val, const char **next, unsigned flags, void *ctx )
1864 {
1865         const char      *p, *startPos, *endPos = NULL;
1866         ber_len_t       len;
1867         ber_len_t       s, d;
1868
1869         assert( str != NULL );
1870         assert( val != NULL );
1871         assert( next != NULL );
1872
1873         *next = NULL;
1874
1875         for ( startPos = p = str; p[ 0 ]; p += 2 ) {
1876                 switch ( LDAP_DN_FORMAT( flags ) ) {
1877                 case LDAP_DN_FORMAT_LDAPV3:
1878                         if ( LDAP_DN_VALUE_END( p[ 0 ] ) ) {
1879                                 goto end_of_value;
1880                         }
1881                         break;
1882
1883                 case LDAP_DN_FORMAT_LDAP:
1884                 case LDAP_DN_FORMAT_LDAPV2:
1885                         if ( LDAP_DN_VALUE_END_V2( p[ 0 ] ) ) {
1886                                 goto end_of_value;
1887                         }
1888                         break;
1889
1890                 case LDAP_DN_FORMAT_DCE:
1891                         if ( LDAP_DN_VALUE_END_DCE( p[ 0 ] ) ) {
1892                                 goto end_of_value;
1893                         }
1894                         break;
1895                 }
1896
1897                 if ( LDAP_DN_ASCII_SPACE( p[ 0 ] ) ) {
1898                         if ( flags & LDAP_DN_PEDANTIC ) {
1899                                 return( 1 );
1900                         }
1901                         endPos = p;
1902
1903                         for ( ; p[ 0 ]; p++ ) {
1904                                 switch ( LDAP_DN_FORMAT( flags ) ) {
1905                                 case LDAP_DN_FORMAT_LDAPV3:
1906                                         if ( LDAP_DN_VALUE_END( p[ 0 ] ) ) {
1907                                                 goto end_of_value;
1908                                         }
1909                                         break;
1910
1911                                 case LDAP_DN_FORMAT_LDAP:
1912                                 case LDAP_DN_FORMAT_LDAPV2:
1913                                         if ( LDAP_DN_VALUE_END_V2( p[ 0 ] ) ) {
1914                                                 goto end_of_value;
1915                                         }
1916                                         break;
1917
1918                                 case LDAP_DN_FORMAT_DCE:
1919                                         if ( LDAP_DN_VALUE_END_DCE( p[ 0 ] ) ) {
1920                                                 goto end_of_value;
1921                                         }
1922                                         break;
1923                                 }
1924                         }
1925                         break;
1926                 }
1927                 
1928                 if ( !LDAP_DN_HEXPAIR( p ) ) {
1929                         return( 1 );
1930                 }
1931         }
1932
1933 end_of_value:;
1934
1935         *next = p;
1936         if ( flags & LDAP_DN_SKIP ) {
1937                 return( 0 );
1938         }
1939
1940         len = ( ( endPos ? endPos : p ) - startPos ) / 2;
1941         /* must be even! */
1942         assert( 2 * len == (ber_len_t) (( endPos ? endPos : p ) - startPos ));
1943
1944         val->bv_len = len;
1945         val->bv_val = LDAP_MALLOCX( len + 1, ctx );
1946         if ( val->bv_val == NULL ) {
1947                 return( LDAP_NO_MEMORY );
1948         }
1949
1950         for ( s = 0, d = 0; d < len; s += 2, d++ ) {
1951                 char    c;
1952
1953                 hexstr2bin( &startPos[ s ], &c );
1954
1955                 val->bv_val[ d ] = c;
1956         }
1957
1958         val->bv_val[ d ] = '\0';
1959
1960         return( 0 );
1961 }
1962
1963 /*
1964  * convert a byte in a hexadecimal pair
1965  */
1966 static int
1967 byte2hexpair( const char *val, char *pair )
1968 {
1969         static const char       hexdig[] = "0123456789ABCDEF";
1970
1971         assert( val != NULL );
1972         assert( pair != NULL );
1973
1974         /* 
1975          * we assume the string has enough room for the hex encoding
1976          * of the value
1977          */
1978
1979         pair[ 0 ] = hexdig[ 0x0f & ( val[ 0 ] >> 4 ) ];
1980         pair[ 1 ] = hexdig[ 0x0f & val[ 0 ] ];
1981         
1982         return( 0 );
1983 }
1984
1985 /*
1986  * convert a binary value in hexadecimal pairs
1987  */
1988 static int
1989 binval2hexstr( struct berval *val, char *str )
1990 {
1991         ber_len_t       s, d;
1992
1993         assert( val != NULL );
1994         assert( str != NULL );
1995
1996         if ( val->bv_len == 0 ) {
1997                 return( 0 );
1998         }
1999
2000         /* 
2001          * we assume the string has enough room for the hex encoding
2002          * of the value
2003          */
2004
2005         for ( s = 0, d = 0; s < val->bv_len; s++, d += 2 ) {
2006                 byte2hexpair( &val->bv_val[ s ], &str[ d ] );
2007         }
2008         
2009         return( 0 );
2010 }
2011
2012 /*
2013  * Length of the string representation, accounting for escaped hex
2014  * of UTF-8 chars
2015  */
2016 static int
2017 strval2strlen( struct berval *val, unsigned flags, ber_len_t *len )
2018 {
2019         ber_len_t       l, cl = 1;
2020         char            *p;
2021         int             escaped_byte_len = LDAP_DN_IS_PRETTY( flags ) ? 1 : 3;
2022 #ifdef PRETTY_ESCAPE
2023         int             escaped_ascii_len = LDAP_DN_IS_PRETTY( flags ) ? 2 : 3;
2024 #endif /* PRETTY_ESCAPE */
2025         
2026         assert( val != NULL );
2027         assert( len != NULL );
2028
2029         *len = 0;
2030         if ( val->bv_len == 0 ) {
2031                 return( 0 );
2032         }
2033
2034         for ( l = 0, p = val->bv_val; p < val->bv_val + val->bv_len; p += cl ) {
2035
2036                 /* 
2037                  * escape '%x00' 
2038                  */
2039                 if ( p[ 0 ] == '\0' ) {
2040                         cl = 1;
2041                         l += 3;
2042                         continue;
2043                 }
2044
2045                 cl = LDAP_UTF8_CHARLEN2( p, cl );
2046                 if ( cl == 0 ) {
2047                         /* illegal utf-8 char! */
2048                         return( -1 );
2049
2050                 } else if ( cl > 1 ) {
2051                         ber_len_t cnt;
2052
2053                         for ( cnt = 1; cnt < cl; cnt++ ) {
2054                                 if ( ( p[ cnt ] & 0xc0 ) != 0x80 ) {
2055                                         return( -1 );
2056                                 }
2057                         }
2058                         l += escaped_byte_len * cl;
2059
2060                 } else if ( LDAP_DN_NEEDESCAPE( p[ 0 ] )
2061                                 || LDAP_DN_SHOULDESCAPE( p[ 0 ] )
2062                                 || ( p == val->bv_val && LDAP_DN_NEEDESCAPE_LEAD( p[ 0 ] ) )
2063                                 || ( !p[ 1 ] && LDAP_DN_NEEDESCAPE_TRAIL( p[ 0 ] ) ) ) {
2064 #ifdef PRETTY_ESCAPE
2065 #if 0
2066                         if ( LDAP_DN_WILLESCAPE_HEX( flags, p[ 0 ] ) ) {
2067 #else
2068                         if ( LDAP_DN_WILLESCAPE_CHAR( p[ 0 ] ) ) {
2069 #endif
2070
2071                                 /* 
2072                                  * there might be some chars we want 
2073                                  * to escape in form of a couple 
2074                                  * of hexdigits for optimization purposes
2075                                  */
2076                                 l += 3;
2077
2078                         } else {
2079                                 l += escaped_ascii_len;
2080                         }
2081 #else /* ! PRETTY_ESCAPE */
2082                         l += 3;
2083 #endif /* ! PRETTY_ESCAPE */
2084
2085                 } else {
2086                         l++;
2087                 }
2088         }
2089
2090         *len = l;
2091
2092         return( 0 );
2093 }
2094
2095 /*
2096  * convert to string representation, escaping with hex the UTF-8 stuff;
2097  * assume the destination has enough room for escaping
2098  */
2099 static int
2100 strval2str( struct berval *val, char *str, unsigned flags, ber_len_t *len )
2101 {
2102         ber_len_t       s, d, end;
2103
2104         assert( val != NULL );
2105         assert( str != NULL );
2106         assert( len != NULL );
2107
2108         if ( val->bv_len == 0 ) {
2109                 *len = 0;
2110                 return( 0 );
2111         }
2112
2113         /* 
2114          * we assume the string has enough room for the hex encoding
2115          * of the value
2116          */
2117         for ( s = 0, d = 0, end = val->bv_len - 1; s < val->bv_len; ) {
2118                 ber_len_t       cl;
2119
2120                 /* 
2121                  * escape '%x00' 
2122                  */
2123                 if ( val->bv_val[ s ] == '\0' ) {
2124                         cl = 1;
2125                         str[ d++ ] = '\\';
2126                         str[ d++ ] = '0';
2127                         str[ d++ ] = '0';
2128                         s++;
2129                         continue;
2130                 }
2131                 
2132                 /*
2133                  * The length was checked in strval2strlen();
2134                  * LDAP_UTF8_CHARLEN() should suffice
2135                  */
2136                 cl = LDAP_UTF8_CHARLEN2( &val->bv_val[ s ], cl );
2137                 assert( cl > 0 );
2138                 
2139                 /* 
2140                  * there might be some chars we want to escape in form
2141                  * of a couple of hexdigits for optimization purposes
2142                  */
2143                 if ( ( cl > 1 && !LDAP_DN_IS_PRETTY( flags ) ) 
2144 #ifdef PRETTY_ESCAPE
2145 #if 0
2146                                 || LDAP_DN_WILLESCAPE_HEX( flags, val->bv_val[ s ] ) 
2147 #else
2148                                 || LDAP_DN_WILLESCAPE_CHAR( val->bv_val[ s ] ) 
2149 #endif
2150 #else /* ! PRETTY_ESCAPE */
2151                                 || LDAP_DN_NEEDESCAPE( val->bv_val[ s ] )
2152                                 || LDAP_DN_SHOULDESCAPE( val->bv_val[ s ] )
2153                                 || ( d == 0 && LDAP_DN_NEEDESCAPE_LEAD( val->bv_val[ s ] ) )
2154                                 || ( s == end && LDAP_DN_NEEDESCAPE_TRAIL( val->bv_val[ s ] ) )
2155
2156 #endif /* ! PRETTY_ESCAPE */
2157                                 ) {
2158                         for ( ; cl--; ) {
2159                                 str[ d++ ] = '\\';
2160                                 byte2hexpair( &val->bv_val[ s ], &str[ d ] );
2161                                 s++;
2162                                 d += 2;
2163                         }
2164
2165                 } else if ( cl > 1 ) {
2166                         for ( ; cl--; ) {
2167                                 str[ d++ ] = val->bv_val[ s++ ];
2168                         }
2169
2170                 } else {
2171 #ifdef PRETTY_ESCAPE
2172                         if ( LDAP_DN_NEEDESCAPE( val->bv_val[ s ] )
2173                                         || LDAP_DN_SHOULDESCAPE( val->bv_val[ s ] )
2174                                         || ( d == 0 && LDAP_DN_NEEDESCAPE_LEAD( val->bv_val[ s ] ) )
2175                                         || ( s == end && LDAP_DN_NEEDESCAPE_TRAIL( val->bv_val[ s ] ) ) ) {
2176                                 str[ d++ ] = '\\';
2177                                 if ( !LDAP_DN_IS_PRETTY( flags ) ) {
2178                                         byte2hexpair( &val->bv_val[ s ], &str[ d ] );
2179                                         s++;
2180                                         d += 2;
2181                                         continue;
2182                                 }
2183                         }
2184 #endif /* PRETTY_ESCAPE */
2185                         str[ d++ ] = val->bv_val[ s++ ];
2186                 }
2187         }
2188
2189         *len = d;
2190         
2191         return( 0 );
2192 }
2193
2194 /*
2195  * Length of the IA5 string representation (no UTF-8 allowed)
2196  */
2197 static int
2198 strval2IA5strlen( struct berval *val, unsigned flags, ber_len_t *len )
2199 {
2200         ber_len_t       l;
2201         char            *p;
2202
2203         assert( val != NULL );
2204         assert( len != NULL );
2205
2206         *len = 0;
2207         if ( val->bv_len == 0 ) {
2208                 return( 0 );
2209         }
2210
2211         if ( flags & LDAP_AVA_NONPRINTABLE ) {
2212                 /*
2213                  * Turn value into a binary encoded BER
2214                  */
2215                 return( -1 );
2216
2217         } else {
2218                 for ( l = 0, p = val->bv_val; p[ 0 ]; p++ ) {
2219                         if ( LDAP_DN_NEEDESCAPE( p[ 0 ] )
2220                                         || LDAP_DN_SHOULDESCAPE( p[ 0 ] )
2221                                         || ( p == val->bv_val && LDAP_DN_NEEDESCAPE_LEAD( p[ 0 ] ) )
2222                                         || ( !p[ 1 ] && LDAP_DN_NEEDESCAPE_TRAIL( p[ 0 ] ) ) ) {
2223                                 l += 2;
2224
2225                         } else {
2226                                 l++;
2227                         }
2228                 }
2229         }
2230
2231         *len = l;
2232         
2233         return( 0 );
2234 }
2235
2236 /*
2237  * convert to string representation (np UTF-8)
2238  * assume the destination has enough room for escaping
2239  */
2240 static int
2241 strval2IA5str( struct berval *val, char *str, unsigned flags, ber_len_t *len )
2242 {
2243         ber_len_t       s, d, end;
2244
2245         assert( val != NULL );
2246         assert( str != NULL );
2247         assert( len != NULL );
2248
2249         if ( val->bv_len == 0 ) {
2250                 *len = 0;
2251                 return( 0 );
2252         }
2253
2254         if ( flags & LDAP_AVA_NONPRINTABLE ) {
2255                 /*
2256                  * Turn value into a binary encoded BER
2257                  */
2258                 *len = 0;
2259                 return( -1 );
2260
2261         } else {
2262                 /* 
2263                  * we assume the string has enough room for the hex encoding
2264                  * of the value
2265                  */
2266
2267                 for ( s = 0, d = 0, end = val->bv_len - 1; s < val->bv_len; ) {
2268                         if ( LDAP_DN_NEEDESCAPE( val->bv_val[ s ] )
2269                                         || LDAP_DN_SHOULDESCAPE( val->bv_val[ s ] )
2270                                         || ( s == 0 && LDAP_DN_NEEDESCAPE_LEAD( val->bv_val[ s ] ) )
2271                                         || ( s == end && LDAP_DN_NEEDESCAPE_TRAIL( val->bv_val[ s ] ) ) ) {
2272                                 str[ d++ ] = '\\';
2273                         }
2274                         str[ d++ ] = val->bv_val[ s++ ];
2275                 }
2276         }
2277
2278         *len = d;
2279         
2280         return( 0 );
2281 }
2282
2283 /*
2284  * Length of the (supposedly) DCE string representation, 
2285  * accounting for escaped hex of UTF-8 chars
2286  */
2287 static int
2288 strval2DCEstrlen( struct berval *val, unsigned flags, ber_len_t *len )
2289 {
2290         ber_len_t       l;
2291         char            *p;
2292
2293         assert( val != NULL );
2294         assert( len != NULL );
2295
2296         *len = 0;
2297         if ( val->bv_len == 0 ) {
2298                 return( 0 );
2299         }
2300
2301         if ( flags & LDAP_AVA_NONPRINTABLE ) {
2302                 /* 
2303                  * FIXME: Turn the value into a binary encoded BER?
2304                  */
2305                 return( -1 );
2306                 
2307         } else {
2308                 for ( l = 0, p = val->bv_val; p[ 0 ]; p++ ) {
2309                         if ( LDAP_DN_NEEDESCAPE_DCE( p[ 0 ] ) ) {
2310                                 l += 2;
2311
2312                         } else {
2313                                 l++;
2314                         }
2315                 }
2316         }
2317
2318         *len = l;
2319
2320         return( 0 );
2321 }
2322
2323 /*
2324  * convert to (supposedly) DCE string representation, 
2325  * escaping with hex the UTF-8 stuff;
2326  * assume the destination has enough room for escaping
2327  */
2328 static int
2329 strval2DCEstr( struct berval *val, char *str, unsigned flags, ber_len_t *len )
2330 {
2331         ber_len_t       s, d;
2332
2333         assert( val != NULL );
2334         assert( str != NULL );
2335         assert( len != NULL );
2336
2337         if ( val->bv_len == 0 ) {
2338                 *len = 0;
2339                 return( 0 );
2340         }
2341
2342         if ( flags & LDAP_AVA_NONPRINTABLE ) {
2343                 /*
2344                  * FIXME: Turn the value into a binary encoded BER?
2345                  */
2346                 *len = 0;
2347                 return( -1 );
2348                 
2349         } else {
2350
2351                 /* 
2352                  * we assume the string has enough room for the hex encoding
2353                  * of the value
2354                  */
2355
2356                 for ( s = 0, d = 0; s < val->bv_len; ) {
2357                         if ( LDAP_DN_NEEDESCAPE_DCE( val->bv_val[ s ] ) ) {
2358                                 str[ d++ ] = '\\';
2359                         }
2360                         str[ d++ ] = val->bv_val[ s++ ];
2361                 }
2362         }
2363
2364         *len = d;
2365         
2366         return( 0 );
2367 }
2368
2369 /*
2370  * Length of the (supposedly) AD canonical string representation, 
2371  * accounting for escaped hex of UTF-8 chars
2372  */
2373 static int
2374 strval2ADstrlen( struct berval *val, unsigned flags, ber_len_t *len )
2375 {
2376         ber_len_t       l;
2377         char            *p;
2378
2379         assert( val != NULL );
2380         assert( len != NULL );
2381
2382         *len = 0;
2383         if ( val->bv_len == 0 ) {
2384                 return( 0 );
2385         }
2386
2387         if ( flags & LDAP_AVA_NONPRINTABLE ) {
2388                 /* 
2389                  * FIXME: Turn the value into a binary encoded BER?
2390                  */
2391                 return( -1 );
2392                 
2393         } else {
2394                 for ( l = 0, p = val->bv_val; p[ 0 ]; p++ ) {
2395                         if ( LDAP_DN_NEEDESCAPE_AD( p[ 0 ] ) ) {
2396                                 l += 2;
2397
2398                         } else {
2399                                 l++;
2400                         }
2401                 }
2402         }
2403
2404         *len = l;
2405         
2406         return( 0 );
2407 }
2408
2409 /*
2410  * convert to (supposedly) AD string representation, 
2411  * escaping with hex the UTF-8 stuff;
2412  * assume the destination has enough room for escaping
2413  */
2414 static int
2415 strval2ADstr( struct berval *val, char *str, unsigned flags, ber_len_t *len )
2416 {
2417         ber_len_t       s, d;
2418
2419         assert( val != NULL );
2420         assert( str != NULL );
2421         assert( len != NULL );
2422
2423         if ( val->bv_len == 0 ) {
2424                 *len = 0;
2425                 return( 0 );
2426         }
2427
2428         if ( flags & LDAP_AVA_NONPRINTABLE ) {
2429                 /*
2430                  * FIXME: Turn the value into a binary encoded BER?
2431                  */
2432                 *len = 0;
2433                 return( -1 );
2434                 
2435         } else {
2436
2437                 /* 
2438                  * we assume the string has enough room for the hex encoding
2439                  * of the value
2440                  */
2441
2442                 for ( s = 0, d = 0; s < val->bv_len; ) {
2443                         if ( LDAP_DN_NEEDESCAPE_AD( val->bv_val[ s ] ) ) {
2444                                 str[ d++ ] = '\\';
2445                         }
2446                         str[ d++ ] = val->bv_val[ s++ ];
2447                 }
2448         }
2449
2450         *len = d;
2451         
2452         return( 0 );
2453 }
2454
2455 /*
2456  * If the DN is terminated by single-AVA RDNs with attribute type of "dc",
2457  * the first part of the AD representation of the DN is written in DNS
2458  * form, i.e. dot separated domain name components (as suggested 
2459  * by Luke Howard, http://www.padl.com/~lukeh)
2460  */
2461 static int
2462 dn2domain( LDAPDN dn, struct berval *bv, int pos, int *iRDN )
2463 {
2464         int             i;
2465         int             domain = 0, first = 1;
2466         ber_len_t       l = 1; /* we move the null also */
2467         char            *str;
2468
2469         /* we are guaranteed there's enough memory in str */
2470
2471         /* sanity */
2472         assert( dn != NULL );
2473         assert( bv != NULL );
2474         assert( iRDN != NULL );
2475         assert( *iRDN >= 0 );
2476
2477         str = bv->bv_val + pos;
2478
2479         for ( i = *iRDN; i >= 0; i-- ) {
2480                 LDAPRDN         rdn;
2481                 LDAPAVA         *ava;
2482
2483                 assert( dn[ i ] != NULL );
2484                 rdn = dn[ i ];
2485
2486                 assert( rdn[ 0 ] != NULL );
2487                 ava = rdn[ 0 ];
2488
2489                 if ( !LDAP_DN_IS_RDN_DC( rdn ) ) {
2490                         break;
2491                 }
2492
2493                 domain = 1;
2494                 
2495                 if ( first ) {
2496                         first = 0;
2497                         AC_MEMCPY( str, ava->la_value.bv_val, 
2498                                         ava->la_value.bv_len + 1);
2499                         l += ava->la_value.bv_len;
2500
2501                 } else {
2502                         AC_MEMCPY( str + ava->la_value.bv_len + 1, bv->bv_val + pos, l);
2503                         AC_MEMCPY( str, ava->la_value.bv_val, 
2504                                         ava->la_value.bv_len );
2505                         str[ ava->la_value.bv_len ] = '.';
2506                         l += ava->la_value.bv_len + 1;
2507                 }
2508         }
2509
2510         *iRDN = i;
2511         bv->bv_len = pos + l - 1;
2512
2513         return( domain );
2514 }
2515
2516 static int
2517 rdn2strlen( LDAPRDN rdn, unsigned flags, ber_len_t *len,
2518          int ( *s2l )( struct berval *v, unsigned f, ber_len_t *l ) )
2519 {
2520         int             iAVA;
2521         ber_len_t       l = 0;
2522
2523         *len = 0;
2524
2525         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
2526                 LDAPAVA         *ava = rdn[ iAVA ];
2527
2528                 /* len(type) + '=' + '+' | ',' */
2529                 l += ava->la_attr.bv_len + 2;
2530
2531                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
2532                         /* octothorpe + twice the length */
2533                         l += 1 + 2 * ava->la_value.bv_len;
2534
2535                 } else {
2536                         ber_len_t       vl;
2537                         unsigned        f = flags | ava->la_flags;
2538                         
2539                         if ( ( *s2l )( &ava->la_value, f, &vl ) ) {
2540                                 return( -1 );
2541                         }
2542                         l += vl;
2543                 }
2544         }
2545         
2546         *len = l;
2547         
2548         return( 0 );
2549 }
2550
2551 static int
2552 rdn2str( LDAPRDN rdn, char *str, unsigned flags, ber_len_t *len,
2553         int ( *s2s ) ( struct berval *v, char * s, unsigned f, ber_len_t *l ) )
2554 {
2555         int             iAVA;
2556         ber_len_t       l = 0;
2557
2558         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
2559                 LDAPAVA         *ava = rdn[ iAVA ];
2560
2561                 AC_MEMCPY( &str[ l ], ava->la_attr.bv_val, 
2562                                 ava->la_attr.bv_len );
2563                 l += ava->la_attr.bv_len;
2564
2565                 str[ l++ ] = '=';
2566
2567                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
2568                         str[ l++ ] = '#';
2569                         if ( binval2hexstr( &ava->la_value, &str[ l ] ) ) {
2570                                 return( -1 );
2571                         }
2572                         l += 2 * ava->la_value.bv_len;
2573
2574                 } else {
2575                         ber_len_t       vl;
2576                         unsigned        f = flags | ava->la_flags;
2577
2578                         if ( ( *s2s )( &ava->la_value, &str[ l ], f, &vl ) ) {
2579                                 return( -1 );
2580                         }
2581                         l += vl;
2582                 }
2583                 str[ l++ ] = ( rdn[ iAVA + 1] ? '+' : ',' );
2584         }
2585
2586         *len = l;
2587
2588         return( 0 );
2589 }
2590
2591 static int
2592 rdn2DCEstrlen( LDAPRDN rdn, unsigned flags, ber_len_t *len )
2593 {
2594         int             iAVA;
2595         ber_len_t       l = 0;
2596
2597         *len = 0;
2598
2599         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
2600                 LDAPAVA         *ava = rdn[ iAVA ];
2601
2602                 /* len(type) + '=' + ',' | '/' */
2603                 l += ava->la_attr.bv_len + 2;
2604
2605                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
2606                         /* octothorpe + twice the length */
2607                         l += 1 + 2 * ava->la_value.bv_len;
2608                 } else {
2609                         ber_len_t       vl;
2610                         unsigned        f = flags | ava->la_flags;
2611                         
2612                         if ( strval2DCEstrlen( &ava->la_value, f, &vl ) ) {
2613                                 return( -1 );
2614                         }
2615                         l += vl;
2616                 }
2617         }
2618         
2619         *len = l;
2620         
2621         return( 0 );
2622 }
2623
2624 static int
2625 rdn2DCEstr( LDAPRDN rdn, char *str, unsigned flags, ber_len_t *len, int first )
2626 {
2627         int             iAVA;
2628         ber_len_t       l = 0;
2629
2630         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
2631                 LDAPAVA         *ava = rdn[ iAVA ];
2632
2633                 if ( first ) {
2634                         first = 0;
2635                 } else {
2636                         str[ l++ ] = ( iAVA ? ',' : '/' );
2637                 }
2638
2639                 AC_MEMCPY( &str[ l ], ava->la_attr.bv_val, 
2640                                 ava->la_attr.bv_len );
2641                 l += ava->la_attr.bv_len;
2642
2643                 str[ l++ ] = '=';
2644
2645                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
2646                         str[ l++ ] = '#';
2647                         if ( binval2hexstr( &ava->la_value, &str[ l ] ) ) {
2648                                 return( -1 );
2649                         }
2650                         l += 2 * ava->la_value.bv_len;
2651                 } else {
2652                         ber_len_t       vl;
2653                         unsigned        f = flags | ava->la_flags;
2654
2655                         if ( strval2DCEstr( &ava->la_value, &str[ l ], f, &vl ) ) {
2656                                 return( -1 );
2657                         }
2658                         l += vl;
2659                 }
2660         }
2661
2662         *len = l;
2663
2664         return( 0 );
2665 }
2666
2667 static int
2668 rdn2UFNstrlen( LDAPRDN rdn, unsigned flags, ber_len_t *len )
2669 {
2670         int             iAVA;
2671         ber_len_t       l = 0;
2672
2673         assert( rdn != NULL );
2674         assert( len != NULL );
2675
2676         *len = 0;
2677
2678         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
2679                 LDAPAVA         *ava = rdn[ iAVA ];
2680
2681                 /* ' + ' | ', ' */
2682                 l += ( rdn[ iAVA + 1 ] ? 3 : 2 );
2683
2684                 /* FIXME: are binary values allowed in UFN? */
2685                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
2686                         /* octothorpe + twice the value */
2687                         l += 1 + 2 * ava->la_value.bv_len;
2688
2689                 } else {
2690                         ber_len_t       vl;
2691                         unsigned        f = flags | ava->la_flags;
2692
2693                         if ( strval2strlen( &ava->la_value, f, &vl ) ) {
2694                                 return( -1 );
2695                         }
2696                         l += vl;
2697                 }
2698         }
2699         
2700         *len = l;
2701         
2702         return( 0 );
2703 }
2704
2705 static int
2706 rdn2UFNstr( LDAPRDN rdn, char *str, unsigned flags, ber_len_t *len )
2707 {
2708         int             iAVA;
2709         ber_len_t       l = 0;
2710
2711         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
2712                 LDAPAVA         *ava = rdn[ iAVA ];
2713
2714                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
2715                         str[ l++ ] = '#';
2716                         if ( binval2hexstr( &ava->la_value, &str[ l ] ) ) {
2717                                 return( -1 );
2718                         }
2719                         l += 2 * ava->la_value.bv_len;
2720                         
2721                 } else {
2722                         ber_len_t       vl;
2723                         unsigned        f = flags | ava->la_flags;
2724                         
2725                         if ( strval2str( &ava->la_value, &str[ l ], f, &vl ) ) {
2726                                 return( -1 );
2727                         }
2728                         l += vl;
2729                 }
2730
2731                 if ( rdn[ iAVA + 1 ] ) {
2732                         AC_MEMCPY( &str[ l ], " + ", 3 );
2733                         l += 3;
2734
2735                 } else {
2736                         AC_MEMCPY( &str[ l ], ", ", 2 );
2737                         l += 2;
2738                 }
2739         }
2740
2741         *len = l;
2742
2743         return( 0 );
2744 }
2745
2746 static int
2747 rdn2ADstrlen( LDAPRDN rdn, unsigned flags, ber_len_t *len )
2748 {
2749         int             iAVA;
2750         ber_len_t       l = 0;
2751
2752         assert( rdn != NULL );
2753         assert( len != NULL );
2754
2755         *len = 0;
2756
2757         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
2758                 LDAPAVA         *ava = rdn[ iAVA ];
2759
2760                 /* ',' | '/' */
2761                 l++;
2762
2763                 /* FIXME: are binary values allowed in UFN? */
2764                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
2765                         /* octothorpe + twice the value */
2766                         l += 1 + 2 * ava->la_value.bv_len;
2767                 } else {
2768                         ber_len_t       vl;
2769                         unsigned        f = flags | ava->la_flags;
2770
2771                         if ( strval2ADstrlen( &ava->la_value, f, &vl ) ) {
2772                                 return( -1 );
2773                         }
2774                         l += vl;
2775                 }
2776         }
2777         
2778         *len = l;
2779         
2780         return( 0 );
2781 }
2782
2783 static int
2784 rdn2ADstr( LDAPRDN rdn, char *str, unsigned flags, ber_len_t *len, int first )
2785 {
2786         int             iAVA;
2787         ber_len_t       l = 0;
2788
2789         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
2790                 LDAPAVA         *ava = rdn[ iAVA ];
2791
2792                 if ( first ) {
2793                         first = 0;
2794                 } else {
2795                         str[ l++ ] = ( iAVA ? ',' : '/' );
2796                 }
2797
2798                 if ( ava->la_flags & LDAP_AVA_BINARY ) {
2799                         str[ l++ ] = '#';
2800                         if ( binval2hexstr( &ava->la_value, &str[ l ] ) ) {
2801                                 return( -1 );
2802                         }
2803                         l += 2 * ava->la_value.bv_len;
2804                 } else {
2805                         ber_len_t       vl;
2806                         unsigned        f = flags | ava->la_flags;
2807                         
2808                         if ( strval2ADstr( &ava->la_value, &str[ l ], f, &vl ) ) {
2809                                 return( -1 );
2810                         }
2811                         l += vl;
2812                 }
2813         }
2814
2815         *len = l;
2816
2817         return( 0 );
2818 }
2819
2820 /*
2821  * ldap_rdn2str
2822  *
2823  * Returns in str a string representation of rdn based on flags.
2824  * There is some duplication of code between this and ldap_dn2str;
2825  * this is wanted to reduce the allocation of temporary buffers.
2826  */
2827 int
2828 ldap_rdn2str( LDAPRDN rdn, char **str, unsigned flags )
2829 {
2830         struct berval bv;
2831         int rc;
2832
2833         assert( str != NULL );
2834
2835         if((flags & LDAP_DN_FORMAT_MASK) == LDAP_DN_FORMAT_LBER) {
2836                 return LDAP_PARAM_ERROR;
2837         }
2838
2839         rc = ldap_rdn2bv_x( rdn, &bv, flags, NULL );
2840         *str = bv.bv_val;
2841         return rc;
2842 }
2843
2844 int
2845 ldap_rdn2bv( LDAPRDN rdn, struct berval *bv, unsigned flags )
2846 {
2847         return ldap_rdn2bv_x( rdn, bv, flags, NULL );
2848 }
2849
2850 int
2851 ldap_rdn2bv_x( LDAPRDN rdn, struct berval *bv, unsigned flags, void *ctx )
2852 {
2853         int             rc, back;
2854         ber_len_t       l;
2855         
2856         assert( bv != NULL );
2857
2858         bv->bv_len = 0;
2859         bv->bv_val = NULL;
2860
2861         if ( rdn == NULL ) {
2862                 bv->bv_val = LDAP_STRDUPX( "", ctx );
2863                 return( LDAP_SUCCESS );
2864         }
2865
2866         /*
2867          * This routine wastes "back" bytes at the end of the string
2868          */
2869
2870         switch ( LDAP_DN_FORMAT( flags ) ) {
2871         case LDAP_DN_FORMAT_LDAPV3:
2872                 if ( rdn2strlen( rdn, flags, &l, strval2strlen ) ) {
2873                         return LDAP_DECODING_ERROR;
2874                 }
2875                 break;
2876
2877         case LDAP_DN_FORMAT_LDAPV2:
2878                 if ( rdn2strlen( rdn, flags, &l, strval2IA5strlen ) ) {
2879                         return LDAP_DECODING_ERROR;
2880                 }
2881                 break;
2882
2883         case LDAP_DN_FORMAT_UFN:
2884                 if ( rdn2UFNstrlen( rdn, flags, &l ) ) {
2885                         return LDAP_DECODING_ERROR;
2886                 }
2887                 break;
2888
2889         case LDAP_DN_FORMAT_DCE:
2890                 if ( rdn2DCEstrlen( rdn, flags, &l ) ) {
2891                         return LDAP_DECODING_ERROR;
2892                 }
2893                 break;
2894
2895         case LDAP_DN_FORMAT_AD_CANONICAL:
2896                 if ( rdn2ADstrlen( rdn, flags, &l ) ) {
2897                         return LDAP_DECODING_ERROR;
2898                 }
2899                 break;
2900
2901         default:
2902                 return LDAP_PARAM_ERROR;
2903         }
2904
2905         bv->bv_val = LDAP_MALLOCX( l + 1, ctx );
2906
2907         switch ( LDAP_DN_FORMAT( flags ) ) {
2908         case LDAP_DN_FORMAT_LDAPV3:
2909                 rc = rdn2str( rdn, bv->bv_val, flags, &l, strval2str );
2910                 back = 1;
2911                 break;
2912
2913         case LDAP_DN_FORMAT_LDAPV2:
2914                 rc = rdn2str( rdn, bv->bv_val, flags, &l, strval2IA5str );
2915                 back = 1;
2916                 break;
2917
2918         case LDAP_DN_FORMAT_UFN:
2919                 rc = rdn2UFNstr( rdn, bv->bv_val, flags, &l );
2920                 back = 2;
2921                 break;
2922
2923         case LDAP_DN_FORMAT_DCE:
2924                 rc = rdn2DCEstr( rdn, bv->bv_val, flags, &l, 1 );
2925                 back = 0;
2926                 break;
2927
2928         case LDAP_DN_FORMAT_AD_CANONICAL:
2929                 rc = rdn2ADstr( rdn, bv->bv_val, flags, &l, 1 );
2930                 back = 0;
2931                 break;
2932
2933         default:
2934                 /* need at least one of the previous */
2935                 return LDAP_PARAM_ERROR;
2936         }
2937
2938         if ( rc ) {
2939                 LDAP_FREEX( bv->bv_val, ctx );
2940                 return rc;
2941         }
2942
2943         bv->bv_len = l - back;
2944         bv->bv_val[ bv->bv_len ] = '\0';
2945
2946         return LDAP_SUCCESS;
2947 }
2948
2949 /*
2950  * Very bulk implementation; many optimizations can be performed
2951  *   - a NULL dn results in an empty string ""
2952  * 
2953  * FIXME: doubts
2954  *   a) what do we do if a UTF-8 string must be converted in LDAPv2?
2955  *      we must encode it in binary form ('#' + HEXPAIRs)
2956  *   b) does DCE/AD support UTF-8?
2957  *      no clue; don't think so.
2958  *   c) what do we do when binary values must be converted in UTF/DCE/AD?
2959  *      use binary encoded BER
2960  */ 
2961 int ldap_dn2str( LDAPDN dn, char **str, unsigned flags )
2962 {
2963         struct berval bv;
2964         int rc;
2965
2966         assert( str != NULL );
2967
2968         if((flags & LDAP_DN_FORMAT_MASK) == LDAP_DN_FORMAT_LBER) {
2969                 return LDAP_PARAM_ERROR;
2970         }
2971         
2972         rc = ldap_dn2bv_x( dn, &bv, flags, NULL );
2973         *str = bv.bv_val;
2974         return rc;
2975 }
2976
2977 int ldap_dn2bv( LDAPDN dn, struct berval *bv, unsigned flags )
2978 {
2979         return ldap_dn2bv_x( dn, bv, flags, NULL );
2980 }
2981
2982 int ldap_dn2bv_x( LDAPDN dn, struct berval *bv, unsigned flags, void *ctx )
2983 {
2984         int             iRDN;
2985         int             rc = LDAP_ENCODING_ERROR;
2986         ber_len_t       len, l;
2987
2988         /* stringifying helpers for LDAPv3/LDAPv2 */
2989         int ( *sv2l ) ( struct berval *v, unsigned f, ber_len_t *l );
2990         int ( *sv2s ) ( struct berval *v, char *s, unsigned f, ber_len_t *l );
2991
2992         assert( bv != NULL );
2993         bv->bv_len = 0;
2994         bv->bv_val = NULL;
2995
2996         Debug( LDAP_DEBUG_ARGS, "=> ldap_dn2bv(%u)\n", flags, 0, 0 );
2997
2998         /* 
2999          * a null dn means an empty dn string 
3000          * FIXME: better raise an error?
3001          */
3002         if ( dn == NULL ) {
3003                 bv->bv_val = LDAP_STRDUPX( "", ctx );
3004                 return( LDAP_SUCCESS );
3005         }
3006
3007         switch ( LDAP_DN_FORMAT( flags ) ) {
3008         case LDAP_DN_FORMAT_LDAPV3:
3009                 sv2l = strval2strlen;
3010                 sv2s = strval2str;
3011
3012                 if( 0 ) {
3013         case LDAP_DN_FORMAT_LDAPV2:
3014                         sv2l = strval2IA5strlen;
3015                         sv2s = strval2IA5str;
3016                 }
3017
3018                 for ( iRDN = 0, len = 0; dn[ iRDN ]; iRDN++ ) {
3019                         ber_len_t       rdnl;
3020                         if ( rdn2strlen( dn[ iRDN ], flags, &rdnl, sv2l ) ) {
3021                                 goto return_results;
3022                         }
3023
3024                         len += rdnl;
3025                 }
3026
3027                 if ( ( bv->bv_val = LDAP_MALLOCX( len + 1, ctx ) ) == NULL ) {
3028                         rc = LDAP_NO_MEMORY;
3029                         break;
3030                 }
3031
3032                 for ( l = 0, iRDN = 0; dn[ iRDN ]; iRDN++ ) {
3033                         ber_len_t       rdnl;
3034                         
3035                         if ( rdn2str( dn[ iRDN ], &bv->bv_val[ l ], flags, 
3036                                         &rdnl, sv2s ) ) {
3037                                 LDAP_FREEX( bv->bv_val, ctx );
3038                                 bv->bv_val = NULL;
3039                                 goto return_results;
3040                         }
3041                         l += rdnl;
3042                 }
3043
3044                 assert( l == len );
3045
3046                 /* 
3047                  * trim the last ',' (the allocated memory 
3048                  * is one byte longer than required)
3049                  */
3050                 bv->bv_len = len - 1;
3051                 bv->bv_val[ bv->bv_len ] = '\0';
3052
3053                 rc = LDAP_SUCCESS;
3054                 break;
3055
3056         case LDAP_DN_FORMAT_UFN: {
3057                 /*
3058                  * FIXME: quoting from RFC 1781:
3059                  *
3060    To take a distinguished name, and generate a name of this format with
3061    attribute types omitted, the following steps are followed.
3062
3063     1.  If the first attribute is of type CommonName, the type may be
3064         omitted.
3065
3066     2.  If the last attribute is of type Country, the type may be
3067         omitted.
3068
3069     3.  If the last attribute is of type Country, the last
3070         Organisation attribute may have the type omitted.
3071
3072     4.  All attributes of type OrganisationalUnit may have the type
3073         omitted, unless they are after an Organisation attribute or
3074         the first attribute is of type OrganisationalUnit.
3075
3076          * this should be the pedantic implementation.
3077                  *
3078                  * Here the standard implementation reflects
3079                  * the one historically provided by OpenLDAP
3080                  * (and UMIch, I presume), with the variant
3081                  * of spaces and plusses (' + ') separating 
3082                  * rdn components.
3083                  * 
3084                  * A non-standard but nice implementation could
3085                  * be to turn the  final "dc" attributes into a 
3086                  * dot-separated domain.
3087                  *
3088                  * Other improvements could involve the use of
3089                  * friendly country names and so.
3090                  */
3091 #ifdef DC_IN_UFN
3092                 int     leftmost_dc = -1;
3093                 int     last_iRDN = -1;
3094 #endif /* DC_IN_UFN */
3095
3096                 for ( iRDN = 0, len = 0; dn[ iRDN ]; iRDN++ ) {
3097                         ber_len_t       rdnl;
3098                         
3099                         if ( rdn2UFNstrlen( dn[ iRDN ], flags, &rdnl ) ) {
3100                                 goto return_results;
3101                         }
3102                         len += rdnl;
3103
3104 #ifdef DC_IN_UFN
3105                         if ( LDAP_DN_IS_RDN_DC( dn[ iRDN ] ) ) {
3106                                 if ( leftmost_dc == -1 ) {
3107                                         leftmost_dc = iRDN;
3108                                 }
3109                         } else {
3110                                 leftmost_dc = -1;
3111                         }
3112 #endif /* DC_IN_UFN */
3113                 }
3114
3115                 if ( ( bv->bv_val = LDAP_MALLOCX( len + 1, ctx ) ) == NULL ) {
3116                         rc = LDAP_NO_MEMORY;
3117                         break;
3118                 }
3119
3120 #ifdef DC_IN_UFN
3121                 if ( leftmost_dc == -1 ) {
3122 #endif /* DC_IN_UFN */
3123                         for ( l = 0, iRDN = 0; dn[ iRDN ]; iRDN++ ) {
3124                                 ber_len_t       vl;
3125                         
3126                                 if ( rdn2UFNstr( dn[ iRDN ], &bv->bv_val[ l ], 
3127                                                 flags, &vl ) ) {
3128                                         LDAP_FREEX( bv->bv_val, ctx );
3129                                         bv->bv_val = NULL;
3130                                         goto return_results;
3131                                 }
3132                                 l += vl;
3133                         }
3134
3135                         /* 
3136                          * trim the last ', ' (the allocated memory 
3137                          * is two bytes longer than required)
3138                          */
3139                         bv->bv_len = len - 2;
3140                         bv->bv_val[ bv->bv_len ] = '\0';
3141 #ifdef DC_IN_UFN
3142                 } else {
3143                         last_iRDN = iRDN - 1;
3144
3145                         for ( l = 0, iRDN = 0; iRDN < leftmost_dc; iRDN++ ) {
3146                                 ber_len_t       vl;
3147                         
3148                                 if ( rdn2UFNstr( dn[ iRDN ], &bv->bv_val[ l ], 
3149                                                 flags, &vl ) ) {
3150                                         LDAP_FREEX( bv->bv_val, ctx );
3151                                         bv->bv_val = NULL;
3152                                         goto return_results;
3153                                 }
3154                                 l += vl;
3155                         }
3156
3157                         if ( !dn2domain( dn, bv, l, &last_iRDN ) ) {
3158                                 LDAP_FREEX( bv->bv_val, ctx );
3159                                 bv->bv_val = NULL;
3160                                 goto return_results;
3161                         }
3162
3163                         /* the string is correctly terminated by dn2domain */
3164                 }
3165 #endif /* DC_IN_UFN */
3166                 
3167                 rc = LDAP_SUCCESS;
3168
3169         } break;
3170
3171         case LDAP_DN_FORMAT_DCE:
3172                 for ( iRDN = 0, len = 0; dn[ iRDN ]; iRDN++ ) {
3173                         ber_len_t       rdnl;
3174                         if ( rdn2DCEstrlen( dn[ iRDN ], flags, &rdnl ) ) {
3175                                 goto return_results;
3176                         }
3177
3178                         len += rdnl;
3179                 }
3180
3181                 if ( ( bv->bv_val = LDAP_MALLOCX( len + 1, ctx ) ) == NULL ) {
3182                         rc = LDAP_NO_MEMORY;
3183                         break;
3184                 }
3185
3186                 for ( l = 0; iRDN--; ) {
3187                         ber_len_t       rdnl;
3188                         
3189                         if ( rdn2DCEstr( dn[ iRDN ], &bv->bv_val[ l ], flags, 
3190                                         &rdnl, 0 ) ) {
3191                                 LDAP_FREEX( bv->bv_val, ctx );
3192                                 bv->bv_val = NULL;
3193                                 goto return_results;
3194                         }
3195                         l += rdnl;
3196                 }
3197
3198                 assert( l == len );
3199
3200                 bv->bv_len = len;
3201                 bv->bv_val[ bv->bv_len ] = '\0';
3202
3203                 rc = LDAP_SUCCESS;
3204                 break;
3205
3206         case LDAP_DN_FORMAT_AD_CANONICAL: {
3207                 int     trailing_slash = 1;
3208
3209                 /*
3210                  * Sort of UFN for DCE DNs: a slash ('/') separated
3211                  * global->local DN with no types; strictly speaking,
3212                  * the naming context should be a domain, which is
3213                  * written in DNS-style, e.g. dot-deparated.
3214                  * 
3215                  * Example:
3216                  * 
3217                  *      "givenName=Bill+sn=Gates,ou=People,dc=microsoft,dc=com"
3218                  *
3219                  * will read
3220                  * 
3221                  *      "microsoft.com/People/Bill,Gates"
3222                  */ 
3223                 for ( iRDN = 0, len = -1; dn[ iRDN ]; iRDN++ ) {
3224                         ber_len_t       rdnl;
3225                         
3226                         if ( rdn2ADstrlen( dn[ iRDN ], flags, &rdnl ) ) {
3227                                 goto return_results;
3228                         }
3229
3230                         len += rdnl;
3231                 }
3232
3233                 /* reserve room for trailing '/' in case the DN 
3234                  * is exactly a domain */
3235                 if ( ( bv->bv_val = LDAP_MALLOCX( len + 1 + 1, ctx ) ) == NULL )
3236                 {
3237                         rc = LDAP_NO_MEMORY;
3238                         break;
3239                 }
3240
3241                 iRDN--;
3242                 if ( iRDN && dn2domain( dn, bv, 0, &iRDN ) != 0 ) {
3243                         for ( l = bv->bv_len; iRDN >= 0 ; iRDN-- ) {
3244                                 ber_len_t       rdnl;
3245
3246                                 trailing_slash = 0;
3247                         
3248                                 if ( rdn2ADstr( dn[ iRDN ], &bv->bv_val[ l ], 
3249                                                 flags, &rdnl, 0 ) ) {
3250                                         LDAP_FREEX( bv->bv_val, ctx );
3251                                         bv->bv_val = NULL;
3252                                         goto return_results;
3253                                 }
3254                                 l += rdnl;
3255                         }
3256
3257                 } else {
3258                         int             first = 1;
3259
3260                         /*
3261                          * Strictly speaking, AD canonical requires
3262                          * a DN to be in the form "..., dc=smtg",
3263                          * i.e. terminated by a domain component
3264                          */
3265                         if ( flags & LDAP_DN_PEDANTIC ) {
3266                                 LDAP_FREEX( bv->bv_val, ctx );
3267                                 bv->bv_val = NULL;
3268                                 rc = LDAP_ENCODING_ERROR;
3269                                 break;
3270                         }
3271
3272                         for ( l = 0; iRDN >= 0 ; iRDN-- ) {
3273                                 ber_len_t       rdnl;
3274                         
3275                                 if ( rdn2ADstr( dn[ iRDN ], &bv->bv_val[ l ], 
3276                                                 flags, &rdnl, first ) ) {
3277                                         LDAP_FREEX( bv->bv_val, ctx );
3278                                         bv->bv_val = NULL;
3279                                         goto return_results;
3280                                 }
3281                                 if ( first ) {
3282                                         first = 0;
3283                                 }
3284                                 l += rdnl;
3285                         }
3286                 }
3287
3288                 if ( trailing_slash ) {
3289                         /* the DN is exactly a domain -- need a trailing
3290                          * slash; room was reserved in advance */
3291                         bv->bv_val[ len ] = '/';
3292                         len++;
3293                 }
3294
3295                 bv->bv_len = len;
3296                 bv->bv_val[ bv->bv_len ] = '\0';
3297
3298                 rc = LDAP_SUCCESS;
3299         } break;
3300
3301         default:
3302                 return LDAP_PARAM_ERROR;
3303         }
3304
3305         Debug( LDAP_DEBUG_ARGS, "<= ldap_dn2bv(%s)=%d %s\n",
3306                 bv->bv_val, rc, rc ? ldap_err2string( rc ) : "" );
3307
3308 return_results:;
3309         return( rc );
3310 }
3311
3312 #ifdef HAVE_TLS
3313 #include <openssl/x509.h>
3314 #include <openssl/err.h>
3315
3316 /* Convert a structured DN from an X.509 certificate into an LDAPV3 DN.
3317  * x509_name must be an (X509_NAME *). If func is non-NULL, the
3318  * constructed DN will use numeric OIDs to identify attributeTypes,
3319  * and the func() will be invoked to rewrite the DN with the given
3320  * flags.
3321  *
3322  * Otherwise the DN will use shortNames as defined in the OpenSSL
3323  * library.
3324  *
3325  * It's preferable to let slapd do the OID to attributeType mapping,
3326  * because the OpenSSL tables are known to have many typos in versions
3327  * up to (at least) 0.9.6c. However, the LDAP client has no schema tables,
3328  * so we're forced to use OpenSSL's mapping there.
3329  *  -- Howard Chu 2002-04-18
3330  */
3331
3332 int
3333 ldap_X509dn2bv( void *x509_name, struct berval *bv, LDAPDN_rewrite_func *func,
3334         unsigned flags )
3335 {
3336         LDAPDN  newDN;
3337         LDAPRDN newRDN;
3338         LDAPAVA *newAVA, *baseAVA;
3339         X509_NAME_ENTRY *ne;
3340         ASN1_OBJECT *obj;
3341         ASN1_STRING *str;
3342         char oids[8192], *oidptr = oids, *oidbuf = NULL;
3343         void *ptrs[2048];
3344         int i, j, k = 0, navas, nrdns, rc = LDAP_SUCCESS;
3345         int set = -1;
3346         size_t dnsize, oidrem = sizeof(oids), oidsize = 0;
3347         int csize;
3348
3349         struct berval   Val;
3350
3351         assert( bv != NULL );
3352         bv->bv_len = 0;
3353         bv->bv_val = NULL;
3354
3355         /* Get the number of AVAs. This is not necessarily the same as
3356          * the number of RDNs.
3357          */
3358         navas = X509_NAME_entry_count( x509_name );
3359
3360         /* Get the last element, to see how many RDNs there are */
3361         ne = X509_NAME_get_entry( x509_name, navas - 1 );
3362         nrdns = ne->set + 1;
3363
3364         /* Allocate the DN/RDN/AVA stuff as a single block */    
3365         dnsize = sizeof(LDAPRDN) * (nrdns+1);
3366         dnsize += sizeof(LDAPAVA *) * (navas+nrdns);
3367         dnsize += sizeof(LDAPAVA) * navas;
3368         if (dnsize > sizeof(ptrs)) {
3369                 newDN = (LDAPDN)LDAP_MALLOC( dnsize );
3370                 if ( newDN == NULL )
3371                         return LDAP_NO_MEMORY;
3372         } else {
3373                 newDN = (LDAPDN)ptrs;
3374         }
3375         
3376         newDN[nrdns] = NULL;
3377         newRDN = (LDAPRDN)(newDN + nrdns+1);
3378         newAVA = (LDAPAVA *)(newRDN + navas + nrdns);
3379         baseAVA = newAVA;
3380
3381         /* Retrieve RDNs in reverse order; LDAP is backwards from X.500. */
3382         for ( i = nrdns - 1, j = 0; i >= 0; i-- ) {
3383                 ne = X509_NAME_get_entry( x509_name, i );
3384                 obj = X509_NAME_ENTRY_get_object( ne );
3385                 str = X509_NAME_ENTRY_get_data( ne );
3386
3387                 /* If set changed, move to next RDN */
3388                 if ( set != ne->set ) {
3389                         /* If this is not the first time, end the
3390                          * previous RDN and advance.
3391                          */
3392                         if ( j > 0 ) {
3393                                 newRDN[k] = NULL;
3394                                 newRDN += k+1;
3395                         }
3396                         newDN[j++] = newRDN;
3397
3398                         k = 0;
3399                         set = ne->set;
3400                 }
3401                 newAVA->la_private = NULL;
3402                 newAVA->la_flags = LDAP_AVA_STRING;
3403
3404                 if ( !func ) {
3405                         int n = OBJ_obj2nid( obj );
3406
3407                         if (n == NID_undef)
3408                                 goto get_oid;
3409                         newAVA->la_attr.bv_val = (char *)OBJ_nid2sn( n );
3410                         newAVA->la_attr.bv_len = strlen( newAVA->la_attr.bv_val );
3411 #ifdef HAVE_EBCDIC
3412                         newAVA->la_attr.bv_val = LDAP_STRDUP( newAVA->la_attr.bv_val );
3413                         __etoa( newAVA->la_attr.bv_val );
3414                         newAVA->la_flags |= LDAP_AVA_FREE_ATTR;
3415 #endif
3416                 } else {
3417 get_oid:                newAVA->la_attr.bv_val = oidptr;
3418                         newAVA->la_attr.bv_len = OBJ_obj2txt( oidptr, oidrem, obj, 1 );
3419 #ifdef HAVE_EBCDIC
3420                         __etoa( newAVA->la_attr.bv_val );
3421 #endif
3422                         oidptr += newAVA->la_attr.bv_len + 1;
3423                         oidrem -= newAVA->la_attr.bv_len + 1;
3424
3425                         /* Running out of OID buffer space? */
3426                         if (oidrem < 128) {
3427                                 if ( oidsize == 0 ) {
3428                                         oidsize = sizeof(oids) * 2;
3429                                         oidrem = oidsize;
3430                                         oidbuf = LDAP_MALLOC( oidsize );
3431                                         if ( oidbuf == NULL ) goto nomem;
3432                                         oidptr = oidbuf;
3433                                 } else {
3434                                         char *old = oidbuf;
3435                                         oidbuf = LDAP_REALLOC( oidbuf, oidsize*2 );
3436                                         if ( oidbuf == NULL ) goto nomem;
3437                                         /* Buffer moved! Fix AVA pointers */
3438                                         if ( old != oidbuf ) {
3439                                                 LDAPAVA *a;
3440                                                 long dif = oidbuf - old;
3441
3442                                                 for (a=baseAVA; a<=newAVA; a++){
3443                                                         if (a->la_attr.bv_val >= old &&
3444                                                                 a->la_attr.bv_val <= (old + oidsize))
3445                                                                 a->la_attr.bv_val += dif;
3446                                                 }
3447                                         }
3448                                         oidptr = oidbuf + oidsize - oidrem;
3449                                         oidrem += oidsize;
3450                                         oidsize *= 2;
3451                                 }
3452                         }
3453                 }
3454                 Val.bv_val = (char *) str->data;
3455                 Val.bv_len = str->length;
3456                 switch( str->type ) {
3457                 case V_ASN1_UNIVERSALSTRING:
3458                         /* This uses 32-bit ISO 10646-1 */
3459                         csize = 4; goto to_utf8;
3460                 case V_ASN1_BMPSTRING:
3461                         /* This uses 16-bit ISO 10646-1 */
3462                         csize = 2; goto to_utf8;
3463                 case V_ASN1_T61STRING:
3464                         /* This uses 8-bit, assume ISO 8859-1 */
3465                         csize = 1;
3466 to_utf8:                rc = ldap_ucs_to_utf8s( &Val, csize, &newAVA->la_value );
3467                         newAVA->la_flags |= LDAP_AVA_FREE_VALUE;
3468                         if (rc != LDAP_SUCCESS) goto nomem;
3469                         newAVA->la_flags = LDAP_AVA_NONPRINTABLE;
3470                         break;
3471                 case V_ASN1_UTF8STRING:
3472                         newAVA->la_flags = LDAP_AVA_NONPRINTABLE;
3473                         /* This is already in UTF-8 encoding */
3474                 case V_ASN1_IA5STRING:
3475                 case V_ASN1_PRINTABLESTRING:
3476                         /* These are always 7-bit strings */
3477                         newAVA->la_value = Val;
3478                 default:
3479                         ;
3480                 }
3481                 newRDN[k] = newAVA;
3482                 newAVA++;
3483                 k++;
3484         }
3485         newRDN[k] = NULL;
3486
3487         if ( func ) {
3488                 rc = func( newDN, flags, NULL );
3489                 if ( rc != LDAP_SUCCESS )
3490                         goto nomem;
3491         }
3492
3493         rc = ldap_dn2bv_x( newDN, bv, LDAP_DN_FORMAT_LDAPV3, NULL );
3494
3495 nomem:
3496         for (;baseAVA < newAVA; baseAVA++) {
3497                 if (baseAVA->la_flags & LDAP_AVA_FREE_ATTR)
3498                         LDAP_FREE( baseAVA->la_attr.bv_val );
3499                 if (baseAVA->la_flags & LDAP_AVA_FREE_VALUE)
3500                         LDAP_FREE( baseAVA->la_value.bv_val );
3501         }
3502
3503         if ( oidsize != 0 )
3504                 LDAP_FREE( oidbuf );
3505         if ( newDN != (LDAPDN) ptrs )
3506                 LDAP_FREE( newDN );
3507         return rc;
3508 }
3509 #endif /* HAVE_TLS */
3510