]> git.sur5r.net Git - openldap/blob - servers/slapd/dn.c
Minor cleanup, rename ldapava_free_*() routines and
[openldap] / servers / slapd / dn.c
1 /* dn.c - routines for dealing with distinguished names */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/ctype.h>
13 #include <ac/socket.h>
14 #include <ac/string.h>
15 #include <ac/time.h>
16
17 #include "ldap_pvt.h"
18
19 #include "slap.h"
20
21 #define SLAP_LDAPDN_PRETTY 0x1
22
23 /*
24  * The DN syntax-related functions take advantage of the dn representation
25  * handling functions ldap_str2dn/ldap_dn2str.  The latter are not schema-
26  * aware, so the attributes and their values need be validated (and possibly
27  * normalized).  In the current implementation the required validation/nor-
28  * malization/"pretty"ing are done on newly created DN structural represen-
29  * tations; however the idea is to move towards DN handling in structural
30  * representation instead of the current string representation.  To this
31  * purpose, we need to do only the required operations and keep track of
32  * what has been done to minimize their impact on performances.
33  *
34  * Developers are strongly encouraged to use this feature, to speed-up
35  * its stabilization.
36  */
37
38 #define AVA_PRIVATE( ava ) ( ( AttributeDescription * )(ava)->la_private )
39
40 /*
41  * In-place, schema-aware validation of the
42  * structural representation of a distinguished name.
43  */
44 static int
45 LDAPDN_validate( LDAPDN *dn )
46 {
47         int             iRDN;
48         int             rc;
49
50         assert( dn );
51
52         for ( iRDN = 0; dn[ iRDN ]; iRDN++ ) {
53                 LDAPRDN         *rdn = dn[ iRDN ][ 0 ];
54                 int             iAVA;
55
56                 assert( rdn );
57
58                 for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
59                         LDAPAVA                 *ava = rdn[ iAVA ][ 0 ];
60                         AttributeDescription    *ad;
61                         slap_syntax_validate_func *validate = NULL;
62
63                         assert( ava );
64                         
65                         if ( ( ad = AVA_PRIVATE( ava ) ) == NULL ) {
66                                 const char      *text = NULL;
67
68                                 rc = slap_bv2ad( ava->la_attr, &ad, &text );
69                                 if ( rc != LDAP_SUCCESS ) {
70                                         return LDAP_INVALID_SYNTAX;
71                                 }
72
73                                 ava->la_private = ( void * )ad;
74                         }
75
76                         /* 
77                          * Replace attr oid/name with the canonical name
78                          */
79                         ber_bvfree( ava->la_attr );
80                         ava->la_attr = ber_bvdup( &ad->ad_cname );
81
82                         validate = ad->ad_type->sat_syntax->ssyn_validate;
83
84                         if ( validate ) {
85                                 /*
86                                  * validate value by validate function
87                                  */
88                                 rc = ( *validate )( ad->ad_type->sat_syntax,
89                                         ava->la_value );
90                         
91                                 if ( rc != LDAP_SUCCESS ) {
92                                         return LDAP_INVALID_SYNTAX;
93                                 }
94                         }
95                 }
96         }
97
98         return LDAP_SUCCESS;
99 }
100
101 /*
102  * dn validate routine
103  */
104 int
105 dnValidate(
106         Syntax *syntax,
107         struct berval *in )
108 {
109         int             rc;
110         LDAPDN          *dn = NULL;
111
112         assert( in );
113
114         if ( in->bv_len == 0 ) {
115                 return( LDAP_SUCCESS );
116         }
117
118         rc = ldap_str2dn( in->bv_val, &dn, LDAP_DN_FORMAT_LDAP );
119
120         /*
121          * Schema-aware validate
122          */
123         if ( rc == LDAP_SUCCESS ) {
124                 rc = LDAPDN_validate( dn );
125         }
126         
127         ldap_dnfree( dn );
128         
129         if ( rc != LDAP_SUCCESS ) {
130                 return( LDAP_INVALID_SYNTAX );
131         }
132
133         return( LDAP_SUCCESS );
134 }
135
136 /*
137  * AVA sorting inside a RDN
138  *
139  * rule: sort attributeTypes in alphabetical order; in case of multiple
140  * occurrences of the same attributeType, sort values in byte order
141  * (use memcmp, which implies alphabetical order in case of IA5 value;
142  * this should guarantee the repeatability of the operation).
143  *
144  * uses a linear search; should be fine since the number of AVAs in
145  * a RDN should be limited.
146  */
147 static void
148 AVA_Sort( LDAPRDN *rdn, int iAVA )
149 {
150         int             i;
151         LDAPAVA         *ava_in = rdn[ iAVA ][ 0 ];
152
153         assert( rdn );
154         assert( ava_in );
155         
156         for ( i = 0; i < iAVA; i++ ) {
157                 LDAPAVA         *ava = rdn[ i ][ 0 ];
158                 int             a, j;
159
160                 assert( ava );
161
162                 a = strcmp( ava_in->la_attr->bv_val, ava->la_attr->bv_val );
163
164                 if ( a > 0 ) {
165                         break;
166                 }
167
168                 while ( a == 0 ) {
169                         int             v, d;
170
171                         d = ava_in->la_value->bv_len - ava->la_value->bv_len;
172
173                         v = memcmp( ava_in->la_value->bv_val, 
174                                         ava->la_value->bv_val,
175                                         d <= 0 ? ava_in->la_value->bv_len 
176                                                 : ava->la_value->bv_len );
177
178                         if ( v == 0 && d != 0 ) {
179                                 v = d;
180                         }
181
182                         if ( v <= 0 ) {
183                                 /* 
184                                  * got it!
185                                  */
186                                 break;
187                         }
188
189                         if ( ++i == iAVA ) {
190                                 /*
191                                  * already sorted
192                                  */
193                                 return;
194                         }
195
196                         ava = rdn[ i ][ 0 ];
197                         a = strcmp( ava_in->la_value->bv_val, 
198                                         ava->la_value->bv_val );
199                 }
200
201                 /*
202                  * move ahead
203                  */
204                 for ( j = iAVA; j > i; j-- ) {
205                         rdn[ j ][ 0 ] = rdn[ j - 1 ][ 0 ];
206                 }
207                 rdn[ i ][ 0 ] = ava_in;
208
209                 return;
210         }
211 }
212
213 /*
214  * In-place, schema-aware normalization / "pretty"ing of the
215  * structural representation of a distinguished name.
216  */
217 static int
218 LDAPDN_rewrite( LDAPDN *dn, unsigned flags )
219 {
220         int             iRDN;
221         int             rc;
222
223         assert( dn );
224
225         for ( iRDN = 0; dn[ iRDN ]; iRDN++ ) {
226                 LDAPRDN         *rdn = dn[ iRDN ][ 0 ];
227                 int             iAVA;
228
229                 assert( rdn );
230
231                 for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
232                         LDAPAVA                 *ava = rdn[ iAVA ][ 0 ];
233                         AttributeDescription    *ad;
234                         slap_syntax_transform_func *transf = NULL;
235                         MatchingRule *mr;
236                         struct berval           *bv = NULL;
237
238                         assert( ava );
239
240                         if ( ( ad = AVA_PRIVATE( ava ) ) == NULL ) {
241                                 const char      *text = NULL;
242
243                                 rc = slap_bv2ad( ava->la_attr, &ad, &text );
244                                 if ( rc != LDAP_SUCCESS ) {
245                                         return LDAP_INVALID_SYNTAX;
246                                 }
247                                 
248                                 ava->la_private = ( void * )ad;
249                         }
250
251                         /* 
252                          * Replace attr oid/name with the canonical name
253                          */
254                         ber_bvfree( ava->la_attr );
255                         ava->la_attr = ber_bvdup( &ad->ad_cname );
256
257                         if( flags & SLAP_LDAPDN_PRETTY ) {
258                                 transf = ad->ad_type->sat_syntax->ssyn_pretty;
259                                 mr = NULL;
260                         } else {
261                                 transf = ad->ad_type->sat_syntax->ssyn_normalize;
262                                 mr = ad->ad_type->sat_equality;
263                         }
264
265                         if ( transf ) {
266                                 /*
267                                  * transform value by normalize/pretty function
268                                  */
269                                 rc = ( *transf )( ad->ad_type->sat_syntax,
270                                         ava->la_value, &bv );
271                         
272                                 if ( rc != LDAP_SUCCESS ) {
273                                         return LDAP_INVALID_SYNTAX;
274                                 }
275                         }
276
277                         if( mr && ( mr->smr_usage & SLAP_MR_DN_FOLD ) ) {
278                                 struct berval *s = bv;
279
280                                 bv = ber_bvstr( UTF8normalize( bv ? bv : ava->la_value, 
281                                         UTF8_CASEFOLD ) );
282
283                                 ber_bvfree( s );
284                         }
285
286                         if( bv ) {
287                                 ber_bvfree( ava->la_value );
288                                 ava->la_value = bv;
289                         }
290
291                         AVA_Sort( rdn, iAVA );
292                 }
293         }
294
295         return LDAP_SUCCESS;
296 }
297
298 /*
299  * dn normalize routine
300  */
301 int
302 dnNormalize(
303         Syntax *syntax,
304         struct berval *val,
305         struct berval **normalized )
306 {
307         struct berval *out = NULL;
308
309         Debug( LDAP_DEBUG_TRACE, ">>> dnNormalize: <%s>\n", val->bv_val, 0, 0 );
310
311         assert( val );
312         assert( normalized );
313
314         if ( val->bv_len != 0 ) {
315                 LDAPDN          *dn = NULL;
316                 char            *dn_out = NULL;
317                 int             rc;
318
319                 /*
320                  * Go to structural representation
321                  */
322                 rc = ldap_str2dn( val->bv_val, &dn, LDAP_DN_FORMAT_LDAP );
323                 if ( rc != LDAP_SUCCESS ) {
324                         return LDAP_INVALID_SYNTAX;
325                 }
326
327                 /*
328                  * Schema-aware rewrite
329                  */
330                 if ( LDAPDN_rewrite( dn, 0 ) != LDAP_SUCCESS ) {
331                         ldap_dnfree( dn );
332                         return LDAP_INVALID_SYNTAX;
333                 }
334
335                 /*
336                  * Back to string representation
337                  */
338                 rc = ldap_dn2str( dn, &dn_out, LDAP_DN_FORMAT_LDAPV3 );
339
340                 ldap_dnfree( dn );
341
342                 if ( rc != LDAP_SUCCESS ) {
343                         return LDAP_INVALID_SYNTAX;
344                 }
345
346                 out = ber_bvstr( dn_out );
347
348         } else {
349                 out = ber_bvdup( val );
350         }
351
352         Debug( LDAP_DEBUG_TRACE, "<<< dnNormalize: <%s>\n", out->bv_val, 0, 0 );
353
354         *normalized = out;
355
356         return LDAP_SUCCESS;
357 }
358
359 /*
360  * dn "pretty"ing routine
361  */
362 int
363 dnPretty(
364         Syntax *syntax,
365         struct berval *val,
366         struct berval **pretty)
367 {
368         struct berval *out = NULL;
369
370         Debug( LDAP_DEBUG_TRACE, ">>> dnPretty: <%s>\n", val->bv_val, 0, 0 );
371
372         assert( val );
373         assert( pretty );
374
375         if ( val->bv_len != 0 ) {
376                 LDAPDN          *dn = NULL;
377                 char            *dn_out = NULL;
378                 int             rc;
379
380                 /* FIXME: should be liberal in what we accept */
381                 rc = ldap_str2dn( val->bv_val, &dn, LDAP_DN_FORMAT_LDAP );
382                 if ( rc != LDAP_SUCCESS ) {
383                         return LDAP_INVALID_SYNTAX;
384                 }
385
386                 /*
387                  * Schema-aware rewrite
388                  */
389                 if ( LDAPDN_rewrite( dn, SLAP_LDAPDN_PRETTY ) != LDAP_SUCCESS ) {
390                         ldap_dnfree( dn );
391                         return LDAP_INVALID_SYNTAX;
392                 }
393
394                 /* FIXME: not sure why the default isn't pretty */
395                 /* RE: the default is the form that is used as
396                  * an internal representation; the pretty form
397                  * is a variant */
398                 rc = ldap_dn2str( dn, &dn_out,
399                         LDAP_DN_FORMAT_LDAPV3 | LDAP_DN_PRETTY );
400
401                 ldap_dnfree( dn );
402
403                 if ( rc != LDAP_SUCCESS ) {
404                         return LDAP_INVALID_SYNTAX;
405                 }
406
407                 out = ber_bvstr( dn_out );
408
409         } else {
410                 out = ber_bvdup( val );
411         }
412
413         Debug( LDAP_DEBUG_TRACE, "<<< dnPretty: <%s>\n", out->bv_val, 0, 0 );
414
415         *pretty = out;
416
417         return LDAP_SUCCESS;
418 }
419
420 /*
421  * dn match routine
422  *
423  * note: uses exact string match (strcmp) because it is supposed to work
424  * on normalized DNs.
425  */
426 int
427 dnMatch(
428         int *matchp,
429         slap_mask_t flags,
430         Syntax *syntax,
431         MatchingRule *mr,
432         struct berval *value,
433         void *assertedValue )
434 {
435         int match;
436         struct berval *asserted = (struct berval *) assertedValue;
437
438         assert( matchp );
439         assert( value );
440         assert( assertedValue );
441         
442         match = value->bv_len - asserted->bv_len;
443
444         if ( match == 0 ) {
445                 match = strcmp( value->bv_val, asserted->bv_val );
446         }
447
448 #ifdef NEW_LOGGING
449         LDAP_LOG(( "schema", LDAP_LEVEL_ENTRY,
450                 "dnMatch: %d\n    %s\n    %s\n", match,
451                 value->bv_val, asserted->bv_val ));
452 #else
453         Debug( LDAP_DEBUG_ARGS, "dnMatch %d\n\t\"%s\"\n\t\"%s\"\n",
454                 match, value->bv_val, asserted->bv_val );
455 #endif
456
457         *matchp = match;
458         return( LDAP_SUCCESS );
459 }
460
461 /*
462  * dn_validate - validate and compress dn.  the dn is
463  * compressed in place are returned if valid.
464  */
465
466 char *
467 dn_validate( char *dn_in )
468 {
469         struct berval   val, *normalized;
470         int             rc;
471
472         if ( dn_in == NULL || dn_in[ 0 ] == '\0' ) {
473                 return( dn_in );
474         }
475
476         val.bv_val = dn_in;
477         val.bv_len = strlen( dn_in );
478
479         rc = dnPretty( NULL, &val, &normalized );
480         if ( rc != LDAP_SUCCESS ) {
481                 return( NULL );
482         }
483
484         if ( val.bv_len < normalized->bv_len ) {
485                 ber_bvfree( normalized );
486                 return( NULL );
487         }
488
489         AC_MEMCPY( dn_in, normalized->bv_val, normalized->bv_len + 1 );
490         ber_bvfree( normalized );
491
492         return( dn_in );
493 }
494
495 /*
496  * dn_normalize - put dn into a canonical form suitable for storing
497  * in a hash database.  this involves normalizing the case as well as
498  * the format.  the dn is normalized in place as well as returned if valid.
499  */
500
501 char *
502 dn_normalize( char *dn )
503 {
504         struct berval   val, *normalized;
505         int             rc;
506
507         if ( dn == NULL || dn[ 0 ] == '\0' ) {
508                 return( dn );
509         }
510
511         val.bv_val = dn;
512         val.bv_len = strlen( dn );
513
514         rc = dnNormalize( NULL, &val, &normalized );
515         if ( rc != LDAP_SUCCESS ) {
516                 return( NULL );
517         }
518
519         if ( val.bv_len < normalized->bv_len ) {
520                 ber_bvfree( normalized );
521                 return( NULL );
522         }
523
524         AC_MEMCPY( dn, normalized->bv_val, normalized->bv_len + 1 );
525         ber_bvfree( normalized );
526
527         return( dn );
528 }
529
530 /*
531  * dn_parent - return the dn's parent, in-place
532  */
533 char *
534 dn_parent(
535         Backend *be,
536         const char      *dn )
537 {
538         const char      *s;
539         int     inquote;
540
541         if( dn == NULL ) {
542                 return NULL;
543         }
544
545         while(*dn != '\0' && ASCII_SPACE(*dn)) {
546                 dn++;
547         }
548
549         if( *dn == '\0' ) {
550                 return NULL;
551         }
552
553         if ( be != NULL && be_issuffix( be, dn ) ) {
554                 return NULL;
555         }
556
557         /*
558          * assume it is an X.500-style name, which looks like
559          * foo=bar,sha=baz,...
560          */
561
562         inquote = 0;
563         for ( s = dn; *s; s++ ) {
564                 if ( *s == '\\' ) {
565                         if ( *(s + 1) ) {
566                                 s++;
567                         }
568                         continue;
569                 }
570                 if ( inquote ) {
571                         if ( *s == '"' ) {
572                                 inquote = 0;
573                         }
574                 } else {
575                         if ( *s == '"' ) {
576                                 inquote = 1;
577                         } else if ( DN_SEPARATOR( *s ) ) {
578                                 return (char *)s + 1;
579                         }
580                 }
581         }
582
583         return "";
584 }
585
586 int dn_rdnlen(
587         Backend *be,
588         const char      *dn_in )
589 {
590         char    *s;
591         int     inquote;
592
593         if( dn_in == NULL ) {
594                 return 0;
595         }
596
597         while(*dn_in && ASCII_SPACE(*dn_in)) {
598                 dn_in++;
599         }
600
601         if( *dn_in == '\0' ) {
602                 return( 0 );
603         }
604
605         if ( be != NULL && be_issuffix( be, dn_in ) ) {
606                 return( 0 );
607         }
608
609         inquote = 0;
610
611         for ( s = (char *)dn_in; *s; s++ ) {
612                 if ( *s == '\\' ) {
613                         if ( *(s + 1) ) {
614                                 s++;
615                         }
616                         continue;
617                 }
618                 if ( inquote ) {
619                         if ( *s == '"' ) {
620                                 inquote = 0;
621                         }
622                 } else {
623                         if ( *s == '"' ) {
624                                 inquote = 1;
625                         } else if ( DN_SEPARATOR( *s ) ) {
626                                 break;
627                         }
628                 }
629         }
630
631         return( s - dn_in );
632 }
633
634 char * dn_rdn(
635         Backend *be,
636         const char      *dn_in )
637 {
638         char *rdn;
639         int i = dn_rdnlen( be, dn_in );
640
641         rdn = ch_malloc( i + 1 );
642         strncpy(rdn, dn_in, i);
643         rdn[i] = '\0';
644         return rdn;
645 }
646
647 /*
648  * return a charray of all subtrees to which the DN resides in
649  */
650 char **dn_subtree(
651         Backend *be,
652         const char      *dn )
653 {
654         char **subtree = NULL;
655         
656         do {
657                 charray_add( &subtree, dn );
658
659                 dn = dn_parent( be, dn );
660
661         } while ( dn != NULL );
662
663         return subtree;
664 }
665
666
667 int
668 dn_issuffixbv(
669         const struct berval *dn,
670         const struct berval *suffix
671 )
672 {
673         int     d = dn->bv_len - suffix->bv_len;
674
675         assert( dn );
676         assert( suffix );
677
678         /* empty suffix matches any dn */
679         if ( suffix->bv_len == 0 ) {
680                 return 1;
681         }
682
683         /* suffix longer than dn */
684         if ( d < 0 ) {
685                 return 0;
686         }
687
688         /* no rdn separator or escaped rdn separator */
689         if ( d > 1 && ( !DN_SEPARATOR( dn->bv_val[ d - 1 ] ) 
690                                 || DN_ESCAPE( dn->bv_val[ d - 2 ] ) ) ) {
691                 return 0;
692         }
693
694         /* no possible match or malformed dn */
695         if ( d == 1 ) {
696                 return 0;
697         }
698
699         /* compare */
700         return( strcmp( dn->bv_val + d, suffix->bv_val ) == 0 );
701 }
702
703 /*
704  * dn_issuffix - tells whether suffix is a suffix of dn. Both dn
705  * and suffix must be normalized.
706  */
707
708 int
709 dn_issuffix(
710         const char      *dn,
711         const char      *suffix
712 )
713 {
714         struct berval   bvdn, bvsuffix;
715
716         assert( dn );
717         assert( suffix );
718
719         bvdn.bv_val = (char *) dn;
720         bvdn.bv_len = strlen( dn );
721         bvsuffix.bv_val = (char *) suffix;
722         bvsuffix.bv_len = strlen( suffix );
723
724         return dn_issuffixbv( &bvdn, &bvsuffix );
725 }
726
727 /*
728  * get_next_substring(), rdn_attr_type(), rdn_attr_value(), and
729  * build_new_dn().
730  *
731  * Copyright 1999, Juan C. Gomez, All rights reserved.
732  * This software is not subject to any license of Silicon Graphics
733  * Inc. or Purdue University.
734  *
735  * Redistribution and use in source and binary forms are permitted
736  * without restriction or fee of any kind as long as this notice
737  * is preserved.
738  *
739  */
740
741 /* get_next_substring:
742  *
743  * Gets next substring in s, using d (or the end of the string '\0') as a
744  * string delimiter, and places it in a duplicated memory space. Leading
745  * spaces are ignored. String s **must** be null-terminated.
746  */
747
748 static char *
749 get_next_substring( const char * s, char d )
750 {
751
752         char    *str, *r;
753
754         r = str = ch_malloc( strlen(s) + 1 );
755
756         /* Skip leading spaces */
757         
758         while ( *s && ASCII_SPACE(*s) ) {
759                 s++;
760         }
761         
762         /* Copy word */
763
764         while ( *s && (*s != d) ) {
765
766                 /* Don't stop when you see trailing spaces may be a multi-word
767                 * string, i.e. name=John Doe!
768                 */
769
770                 *str++ = *s++;
771         }
772         
773         *str = '\0';
774         
775         return r;
776         
777 }
778
779
780 /* rdn_attr_type:
781  *
782  * Given a string (i.e. an rdn) of the form:
783  *       "attribute_type = attribute_value"
784  * this function returns the type of an attribute, that is the
785  * string "attribute_type" which is placed in newly allocated
786  * memory. The returned string will be null-terminated.
787  */
788
789 char * rdn_attr_type( const char * s )
790 {
791         return get_next_substring( s, '=' );
792 }
793
794
795 /* rdn_attr_value:
796  *
797  * Given a string (i.e. an rdn) of the form:
798  *       "attribute_type = attribute_value"
799  * this function returns "attribute_type" which is placed in newly allocated
800  * memory. The returned string will be null-terminated and may contain
801  * spaces (i.e. "John Doe\0").
802  */
803
804 char *
805 rdn_attr_value( const char * rdn )
806 {
807
808         const char      *str;
809
810         if ( (str = strchr( rdn, '=' )) != NULL ) {
811                 return get_next_substring(++str, '\0');
812         }
813
814         return NULL;
815
816 }
817
818
819 /* rdn_attrs:
820  *
821  * Given a string (i.e. an rdn) of the form:
822  *   "attribute_type=attribute_value[+attribute_type=attribute_value[...]]"
823  * this function stores the types of the attributes in ptypes, that is the
824  * array of strings "attribute_type" which is placed in newly allocated
825  * memory, and the values of the attributes in pvalues, that is the
826  * array of strings "attribute_value" which is placed in newly allocated
827  * memory. Returns 0 on success, -1 on failure.
828  *
829  * note: got part of the code from dn_validate
830  */
831
832 int
833 rdn_attrs( const char * rdn_in, char ***ptypes, char ***pvalues)
834 {
835         char **parts, **p;
836
837         *ptypes = NULL;
838         *pvalues = NULL;
839
840         /*
841          * explode the rdn in parts
842          */
843         parts = ldap_explode_rdn( rdn_in, 0 );
844
845         if ( parts == NULL ) {
846                 return( -1 );
847         }
848
849         for ( p = parts; p[0]; p++ ) {
850                 char *s, *e, *d;
851                 
852                 /* split each rdn part in type value */
853                 s = strchr( p[0], '=' );
854                 if ( s == NULL ) {
855                         charray_free( *ptypes );
856                         charray_free( *pvalues );
857                         charray_free( parts );
858                         return( -1 );
859                 }
860                 
861                 /* type should be fine */
862                 charray_add_n( ptypes, p[0], ( s-p[0] ) );
863
864                 /* value needs to be unescaped
865                  * (maybe this should be moved to ldap_explode_rdn?) */
866                 for ( e = d = s + 1; e[0]; e++ ) {
867                         if ( *e != '\\' ) {
868                                 *d++ = *e;
869                         }
870                 }
871                 d[0] = '\0';
872                 charray_add( pvalues, s + 1 );
873         }
874
875         /* free array */
876         charray_free( parts );
877
878         return( 0 );
879 }
880
881
882 /* rdn_validate:
883  *
884  * 1 if rdn is a legal rdn;
885  * 0 otherwise (including a sequence of rdns)
886  *
887  * note: got it from dn_rdn; it should be rewritten
888  * according to dn_validate
889  */
890 int
891 rdn_validate( const char * rdn )
892 {
893         int     inquote;
894
895         if ( rdn == NULL ) {
896                 return( 0 );
897         }
898
899         if ( strchr( rdn, '=' ) == NULL ) {
900                 return( 0 );
901         }
902
903         while ( *rdn && ASCII_SPACE( *rdn ) ) {
904                 rdn++;
905         }
906
907         if( *rdn == '\0' ) {
908                 return( 0 );
909         }
910
911         inquote = 0;
912
913         for ( ; *rdn; rdn++ ) {
914                 if ( *rdn == '\\' ) {
915                         if ( *(rdn + 1) ) {
916                                 rdn++;
917                         }
918                         continue;
919                 }
920                 if ( inquote ) {
921                         if ( *rdn == '"' ) {
922                                 inquote = 0;
923                         }
924                 } else {
925                         if ( *rdn == '"' ) {
926                                 inquote = 1;
927                         } else if ( DN_SEPARATOR( *rdn ) ) {
928                                 return( 0 );
929                         }
930                 }
931         }
932
933         return( 1 );
934 }
935
936
937 /* build_new_dn:
938  *
939  * Used by ldbm/bdb2 back_modrdn to create the new dn of entries being
940  * renamed.
941  *
942  * new_dn = parent (p_dn) + separator(s) + rdn (newrdn) + null.
943  */
944
945 void
946 build_new_dn( char ** new_dn,
947         const char *e_dn,
948         const char * p_dn,
949         const char * newrdn )
950 {
951
952         if ( p_dn == NULL ) {
953                 *new_dn = ch_strdup( newrdn );
954                 return;
955         }
956
957         *new_dn = (char *) ch_malloc( strlen( p_dn ) + strlen( newrdn ) + 3 );
958
959         strcpy( *new_dn, newrdn );
960         strcat( *new_dn, "," );
961         strcat( *new_dn, p_dn );
962 }