]> git.sur5r.net Git - openldap/blob - servers/slapd/dn.c
Remove deprecated routines and a little lint.
[openldap] / servers / slapd / dn.c
1 /* dn.c - routines for dealing with distinguished names */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 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 const struct berval slap_empty_bv = { 0, "" };
22
23 #define SLAP_LDAPDN_PRETTY 0x1
24
25 /*
26  * The DN syntax-related functions take advantage of the dn representation
27  * handling functions ldap_str2dn/ldap_dn2str.  The latter are not schema-
28  * aware, so the attributes and their values need be validated (and possibly
29  * normalized).  In the current implementation the required validation/nor-
30  * malization/"pretty"ing are done on newly created DN structural represen-
31  * tations; however the idea is to move towards DN handling in structural
32  * representation instead of the current string representation.  To this
33  * purpose, we need to do only the required operations and keep track of
34  * what has been done to minimize their impact on performances.
35  *
36  * Developers are strongly encouraged to use this feature, to speed-up
37  * its stabilization.
38  */
39
40 #define AVA_PRIVATE( ava ) ( ( AttributeDescription * )(ava)->la_private )
41
42 /*
43  * In-place, schema-aware validation of the
44  * structural representation of a distinguished name.
45  */
46 static int
47 LDAPDN_validate( LDAPDN *dn )
48 {
49         int             iRDN;
50         int             rc;
51
52         assert( dn );
53
54         for ( iRDN = 0; dn[ 0 ][ iRDN ]; iRDN++ ) {
55                 LDAPRDN         *rdn = dn[ 0 ][ iRDN ];
56                 int             iAVA;
57
58                 assert( rdn );
59
60                 for ( iAVA = 0; rdn[ 0 ][ iAVA ]; iAVA++ ) {
61                         LDAPAVA                 *ava = rdn[ 0 ][ iAVA ];
62                         AttributeDescription    *ad;
63                         slap_syntax_validate_func *validate = NULL;
64
65                         assert( ava );
66                         
67                         if ( ( ad = AVA_PRIVATE( ava ) ) == NULL ) {
68                                 const char      *text = NULL;
69
70                                 rc = slap_bv2ad( &ava->la_attr, &ad, &text );
71                                 if ( rc != LDAP_SUCCESS ) {
72                                         return LDAP_INVALID_SYNTAX;
73                                 }
74
75                                 ava->la_private = ( void * )ad;
76                         }
77
78                         /* 
79                          * Replace attr oid/name with the canonical name
80                          */
81                         ava->la_attr = ad->ad_cname;
82
83                         validate = ad->ad_type->sat_syntax->ssyn_validate;
84
85                         if ( validate ) {
86                                 /*
87                                  * validate value by validate function
88                                  */
89                                 rc = ( *validate )( ad->ad_type->sat_syntax,
90                                         &ava->la_value );
91                         
92                                 if ( rc != LDAP_SUCCESS ) {
93                                         return LDAP_INVALID_SYNTAX;
94                                 }
95                         }
96                 }
97         }
98
99         return LDAP_SUCCESS;
100 }
101
102 /*
103  * dn validate routine
104  */
105 int
106 dnValidate(
107         Syntax *syntax,
108         struct berval *in )
109 {
110         int             rc;
111         LDAPDN          *dn = NULL;
112
113         assert( in );
114
115         if ( in->bv_len == 0 ) {
116                 return( LDAP_SUCCESS );
117         }
118
119         rc = ldap_str2dn( in->bv_val, &dn, LDAP_DN_FORMAT_LDAP );
120
121         /*
122          * Schema-aware validate
123          */
124         if ( rc == LDAP_SUCCESS ) {
125                 rc = LDAPDN_validate( dn );
126                 ldap_dnfree( dn );
127         }
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  * Note: the sorting can be slightly improved by sorting first
145  * by attribute type length, then by alphabetical order.
146  *
147  * uses a linear search; should be fine since the number of AVAs in
148  * a RDN should be limited.
149  */
150 static void
151 AVA_Sort( LDAPRDN *rdn, int iAVA )
152 {
153         int             i;
154         LDAPAVA         *ava_in = rdn[ 0 ][ iAVA ];
155
156         assert( rdn );
157         assert( ava_in );
158         
159         for ( i = 0; i < iAVA; i++ ) {
160                 LDAPAVA         *ava = rdn[ 0 ][ i ];
161                 int             a, j;
162
163                 assert( ava );
164
165                 a = strcmp( ava_in->la_attr.bv_val, ava->la_attr.bv_val );
166
167                 if ( a > 0 ) {
168                         break;
169                 }
170
171                 while ( a == 0 ) {
172                         int             v, d;
173
174                         d = ava_in->la_value.bv_len - ava->la_value.bv_len;
175
176                         v = memcmp( ava_in->la_value.bv_val, 
177                                         ava->la_value.bv_val,
178                                         d <= 0 ? ava_in->la_value.bv_len 
179                                                 : ava->la_value.bv_len );
180
181                         if ( v == 0 && d != 0 ) {
182                                 v = d;
183                         }
184
185                         if ( v <= 0 ) {
186                                 /* 
187                                  * got it!
188                                  */
189                                 break;
190                         }
191
192                         if ( ++i == iAVA ) {
193                                 /*
194                                  * already sorted
195                                  */
196                                 return;
197                         }
198
199                         ava = rdn[ 0 ][ i ];
200                         a = strcmp( ava_in->la_attr.bv_val, 
201                                         ava->la_attr.bv_val );
202                 }
203
204                 /*
205                  * move ahead
206                  */
207                 for ( j = iAVA; j > i; j-- ) {
208                         rdn[ 0 ][ j ] = rdn[ 0 ][ j - 1 ];
209                 }
210                 rdn[ 0 ][ i ] = ava_in;
211
212                 return;
213         }
214 }
215
216 /*
217  * In-place, schema-aware normalization / "pretty"ing of the
218  * structural representation of a distinguished name.
219  */
220 static int
221 LDAPDN_rewrite( LDAPDN *dn, unsigned flags )
222 {
223         int             iRDN;
224         int             rc;
225
226         assert( dn );
227
228         for ( iRDN = 0; dn[ 0 ][ iRDN ]; iRDN++ ) {
229                 LDAPRDN         *rdn = dn[ 0 ][ iRDN ];
230                 int             iAVA;
231
232                 assert( rdn );
233
234                 for ( iAVA = 0; rdn[ 0 ][ iAVA ]; iAVA++ ) {
235                         LDAPAVA                 *ava = rdn[ 0 ][ iAVA ];
236                         AttributeDescription    *ad;
237                         slap_syntax_transform_func *transf = NULL;
238                         MatchingRule *mr;
239                         struct berval           bv = { 0, NULL };
240                         int                     do_sort = 0;
241
242                         assert( ava );
243
244                         if ( ( ad = AVA_PRIVATE( ava ) ) == NULL ) {
245                                 const char      *text = NULL;
246
247                                 rc = slap_bv2ad( &ava->la_attr, &ad, &text );
248                                 if ( rc != LDAP_SUCCESS ) {
249                                         return LDAP_INVALID_SYNTAX;
250                                 }
251                                 
252                                 ava->la_private = ( void * )ad;
253                                 do_sort = 1;
254                         }
255
256                         /* 
257                          * Replace attr oid/name with the canonical name
258                          */
259                         ava->la_attr = ad->ad_cname;
260
261                         if( flags & SLAP_LDAPDN_PRETTY ) {
262                                 transf = ad->ad_type->sat_syntax->ssyn_pretty;
263                                 mr = NULL;
264                         } else {
265                                 transf = ad->ad_type->sat_syntax->ssyn_normalize;
266                                 mr = ad->ad_type->sat_equality;
267                         }
268
269                         if ( transf ) {
270                                 /*
271                                  * transform value by normalize/pretty function
272                                  */
273                                 rc = ( *transf )( ad->ad_type->sat_syntax,
274                                         &ava->la_value, &bv );
275                         
276                                 if ( rc != LDAP_SUCCESS ) {
277                                         return LDAP_INVALID_SYNTAX;
278                                 }
279                         }
280
281                         if( mr && ( mr->smr_usage & SLAP_MR_DN_FOLD ) ) {
282                                 char *s = bv.bv_val;
283
284                                 ber_str2bv( UTF8normalize( bv.bv_val ? &bv
285                                         : &ava->la_value, LDAP_UTF8_CASEFOLD ),
286                                         0, 0, &bv );
287                                 free( s );
288                         }
289
290                         if( bv.bv_val ) {
291                                 free( ava->la_value.bv_val );
292                                 ava->la_value = bv;
293                         }
294
295                         if( do_sort ) AVA_Sort( rdn, iAVA );
296                 }
297         }
298
299         return LDAP_SUCCESS;
300 }
301
302 /*
303  * dn normalize routine
304  */
305 int
306 dnNormalize(
307         Syntax *syntax,
308         struct berval *val,
309         struct berval **normalized )
310 {
311         struct berval *out;
312         int rc;
313
314         assert( normalized && *normalized == NULL );
315
316         out = ch_malloc( sizeof( struct berval ) );
317         rc = dnNormalize2( syntax, val, out );
318         if ( rc != LDAP_SUCCESS )
319                 free( out );
320         else
321                 *normalized = out;
322         return rc;
323 }
324
325 int
326 dnNormalize2(
327         Syntax *syntax,
328         struct berval *val,
329         struct berval *out )
330 {
331         assert( val );
332         assert( out );
333
334         Debug( LDAP_DEBUG_TRACE, ">>> dnNormalize: <%s>\n", val->bv_val, 0, 0 );
335
336         if ( val->bv_len != 0 ) {
337                 LDAPDN          *dn = NULL;
338                 int             rc;
339
340                 /*
341                  * Go to structural representation
342                  */
343                 rc = ldap_str2dn( val->bv_val, &dn, LDAP_DN_FORMAT_LDAP );
344                 if ( rc != LDAP_SUCCESS ) {
345                         return LDAP_INVALID_SYNTAX;
346                 }
347
348                 /*
349                  * Schema-aware rewrite
350                  */
351                 if ( LDAPDN_rewrite( dn, 0 ) != LDAP_SUCCESS ) {
352                         ldap_dnfree( dn );
353                         return LDAP_INVALID_SYNTAX;
354                 }
355
356                 /*
357                  * Back to string representation
358                  */
359                 rc = ldap_dn2bv( dn, out, LDAP_DN_FORMAT_LDAPV3 );
360
361                 ldap_dnfree( dn );
362
363                 if ( rc != LDAP_SUCCESS ) {
364                         return LDAP_INVALID_SYNTAX;
365                 }
366         } else {
367                 ber_dupbv( out, val );
368         }
369
370         Debug( LDAP_DEBUG_TRACE, "<<< dnNormalize: <%s>\n", out->bv_val, 0, 0 );
371
372         return LDAP_SUCCESS;
373 }
374
375 /*
376  * dn "pretty"ing routine
377  */
378 int
379 dnPretty(
380         Syntax *syntax,
381         struct berval *val,
382         struct berval **pretty)
383 {
384         struct berval *out;
385         int rc;
386
387         assert( pretty && *pretty == NULL );
388
389         out = ch_malloc( sizeof( struct berval ) );
390         rc = dnPretty2( syntax, val, out );
391         if ( rc != LDAP_SUCCESS )
392                 free( out );
393         else
394                 *pretty = out;
395         return rc;
396 }
397
398 int
399 dnPretty2(
400         Syntax *syntax,
401         struct berval *val,
402         struct berval *out)
403 {
404         assert( val );
405         assert( out );
406
407         Debug( LDAP_DEBUG_TRACE, ">>> dnPretty: <%s>\n", val->bv_val, 0, 0 );
408
409         if ( val->bv_len != 0 ) {
410                 LDAPDN          *dn = NULL;
411                 int             rc;
412
413                 /* FIXME: should be liberal in what we accept */
414                 rc = ldap_str2dn( val->bv_val, &dn, LDAP_DN_FORMAT_LDAP );
415                 if ( rc != LDAP_SUCCESS ) {
416                         return LDAP_INVALID_SYNTAX;
417                 }
418
419                 /*
420                  * Schema-aware rewrite
421                  */
422                 if ( LDAPDN_rewrite( dn, SLAP_LDAPDN_PRETTY ) != LDAP_SUCCESS ) {
423                         ldap_dnfree( dn );
424                         return LDAP_INVALID_SYNTAX;
425                 }
426
427                 /* FIXME: not sure why the default isn't pretty */
428                 /* RE: the default is the form that is used as
429                  * an internal representation; the pretty form
430                  * is a variant */
431                 rc = ldap_dn2bv( dn, out,
432                         LDAP_DN_FORMAT_LDAPV3 | LDAP_DN_PRETTY );
433
434                 ldap_dnfree( dn );
435
436                 if ( rc != LDAP_SUCCESS ) {
437                         return LDAP_INVALID_SYNTAX;
438                 }
439         } else {
440                 ber_dupbv( out, val );
441         }
442
443         Debug( LDAP_DEBUG_TRACE, "<<< dnPretty: <%s>\n", out->bv_val, 0, 0 );
444
445         return LDAP_SUCCESS;
446 }
447
448 /*
449  * Combination of both dnPretty and dnNormalize
450  */
451 int
452 dnPrettyNormal(
453         Syntax *syntax,
454         struct berval *val,
455         struct berval *pretty,
456         struct berval *normal)
457 {
458         Debug( LDAP_DEBUG_TRACE, ">>> dnPrettyNormal: <%s>\n", val->bv_val, 0, 0 );
459
460         assert( val );
461         assert( pretty );
462         assert( normal );
463
464         if ( val->bv_len != 0 ) {
465                 LDAPDN          *dn = NULL;
466                 int             rc;
467
468                 pretty->bv_val = NULL;
469                 normal->bv_val = NULL;
470                 pretty->bv_len = 0;
471                 normal->bv_len = 0;
472
473                 /* FIXME: should be liberal in what we accept */
474                 rc = ldap_str2dn( val->bv_val, &dn, LDAP_DN_FORMAT_LDAP );
475                 if ( rc != LDAP_SUCCESS ) {
476                         return LDAP_INVALID_SYNTAX;
477                 }
478
479                 /*
480                  * Schema-aware rewrite
481                  */
482                 if ( LDAPDN_rewrite( dn, SLAP_LDAPDN_PRETTY ) != LDAP_SUCCESS ) {
483                         ldap_dnfree( dn );
484                         return LDAP_INVALID_SYNTAX;
485                 }
486
487                 rc = ldap_dn2bv( dn, pretty,
488                         LDAP_DN_FORMAT_LDAPV3 | LDAP_DN_PRETTY );
489
490                 if ( rc != LDAP_SUCCESS ) {
491                         ldap_dnfree( dn );
492                         return LDAP_INVALID_SYNTAX;
493                 }
494
495                 if ( LDAPDN_rewrite( dn, 0 ) != LDAP_SUCCESS ) {
496                         ldap_dnfree( dn );
497                         free( pretty->bv_val );
498                         pretty->bv_val = NULL;
499                         pretty->bv_len = 0;
500                         return LDAP_INVALID_SYNTAX;
501                 }
502
503                 rc = ldap_dn2bv( dn, normal, LDAP_DN_FORMAT_LDAPV3 );
504
505                 ldap_dnfree( dn );
506                 if ( rc != LDAP_SUCCESS ) {
507                         free( pretty->bv_val );
508                         pretty->bv_val = NULL;
509                         pretty->bv_len = 0;
510                         return LDAP_INVALID_SYNTAX;
511                 }
512         } else {
513                 ber_dupbv( pretty, val );
514                 ber_dupbv( normal, val );
515         }
516
517         Debug( LDAP_DEBUG_TRACE, "<<< dnPrettyNormal: <%s>, <%s>\n",
518                 pretty->bv_val, normal->bv_val, 0 );
519
520         return LDAP_SUCCESS;
521 }
522
523 /*
524  * dnMatch routine
525  */
526 int
527 dnMatch(
528         int *matchp,
529         slap_mask_t flags,
530         Syntax *syntax,
531         MatchingRule *mr,
532         struct berval *value,
533         void *assertedValue )
534 {
535         int match;
536         struct berval *asserted = (struct berval *) assertedValue;
537
538         assert( matchp );
539         assert( value );
540         assert( assertedValue );
541         
542         match = value->bv_len - asserted->bv_len;
543
544         if ( match == 0 ) {
545                 match = strcmp( value->bv_val, asserted->bv_val );
546         }
547
548 #ifdef NEW_LOGGING
549         LDAP_LOG(( "schema", LDAP_LEVEL_ENTRY,
550                 "dnMatch: %d\n    %s\n    %s\n", match,
551                 value->bv_val, asserted->bv_val ));
552 #else
553         Debug( LDAP_DEBUG_ARGS, "dnMatch %d\n\t\"%s\"\n\t\"%s\"\n",
554                 match, value->bv_val, asserted->bv_val );
555 #endif
556
557         *matchp = match;
558         return( LDAP_SUCCESS );
559 }
560
561 /*
562  * dnParent - dn's parent, in-place
563  *
564  * note: the incoming dn is assumed to be normalized/prettyfied,
565  * so that escaped rdn/ava separators are in '\'+hexpair form
566  */
567 int
568 dnParent( 
569         struct berval   *dn, 
570         struct berval   *pdn )
571 {
572         char    *p;
573
574         p = strchr( dn->bv_val, ',' );
575
576         /* one-level dn */
577         if ( p == NULL ) {
578                 *pdn = slap_empty_bv;
579                 return LDAP_SUCCESS;
580         }
581
582         assert( DN_SEPARATOR( p[ 0 ] ) );
583         p++;
584
585         assert( ATTR_LEADCHAR( p[ 0 ] ) );
586         pdn->bv_val = p;
587         pdn->bv_len = dn->bv_len - (p - dn->bv_val);
588
589         return LDAP_SUCCESS;
590 }
591
592 #ifdef SLAP_DN_MIGRATION
593 /*
594  * these routines are provided for migration purposes only!
595  *      dn_normalize is deprecated in favor of dnNormalize
596  *      strcmp/strcasecmp for DNs is deprecated in favor of dnMatch
597  *
598  * other routines are likewise deprecated but may not yet have
599  * replacement functions.
600  */
601
602 /*
603  * dn_normalize - put dn into a canonical form suitable for storing
604  * in a hash database.  this involves normalizing the case as well as
605  * the format.  the dn is normalized in place as well as returned if valid.
606  * Deprecated in favor of dnNormalize()
607  */
608 char *
609 dn_normalize( char *dn )
610 {
611         struct berval val;
612         struct berval *normalized = NULL;
613         int             rc;
614
615         if ( dn == NULL || dn[0] == '\0' ) {
616                 return dn;
617         }
618
619         val.bv_val = dn;
620         val.bv_len = strlen( dn );
621
622         rc = dnNormalize( NULL, &val, &normalized );
623         if ( rc != LDAP_SUCCESS ) {
624                 return NULL;
625         }
626
627         if ( val.bv_len < normalized->bv_len ) {
628                 ber_bvfree( normalized );
629                 return NULL;
630         }
631
632         AC_MEMCPY( dn, normalized->bv_val, normalized->bv_len + 1 );
633         ber_bvfree( normalized );
634
635         return dn;
636 }
637
638 #endif /* SLAP_DN_MIGRATION */
639
640
641 int
642 dnExtractRdn( 
643         struct berval   *dn, 
644         struct berval   *rdn )
645 {
646         LDAPRDN         *tmpRDN;
647         const char      *p;
648         int             rc;
649
650         assert( dn );
651         assert( rdn );
652
653         if( dn->bv_len == 0 ) {
654                 return LDAP_OTHER;
655         }
656
657         rc = ldap_str2rdn( dn->bv_val, &tmpRDN, (char **)&p, LDAP_DN_FORMAT_LDAP );
658         if ( rc != LDAP_SUCCESS ) {
659                 return rc;
660         }
661
662         rc = ldap_rdn2bv( tmpRDN, rdn, LDAP_DN_FORMAT_LDAPV3 );
663         ldap_rdnfree( tmpRDN );
664         if ( rc != LDAP_SUCCESS ) {
665                 return rc;
666         }
667
668         return LDAP_SUCCESS;
669 }
670
671 /*
672  * We can assume the input is a prettied or normalized DN
673  */
674 int 
675 dn_rdnlen(
676         Backend         *be,
677         struct berval   *dn_in )
678 {
679         const char      *p;
680
681         assert( dn_in );
682
683         if ( dn_in == NULL ) {
684                 return 0;
685         }
686
687         if ( !dn_in->bv_len ) {
688                 return 0;
689         }
690
691         if ( be != NULL && be_issuffix( be, dn_in ) ) {
692                 return 0;
693         }
694
695         p = strchr( dn_in->bv_val, ',' );
696
697         return p ? p - dn_in->bv_val : dn_in->bv_len;
698 }
699
700
701 /* rdnValidate:
702  *
703  * LDAP_SUCCESS if rdn is a legal rdn;
704  * LDAP_INVALID_SYNTAX otherwise (including a sequence of rdns)
705  */
706 int
707 rdnValidate( struct berval *rdn )
708 {
709 #if 1
710         /* Major cheat!
711          * input is a pretty or normalized DN
712          * hence, we can just search for ','
713          */
714         if( rdn == NULL || rdn->bv_len == 0 ) {
715                 return LDAP_INVALID_SYNTAX;
716         }
717
718         return strchr( rdn->bv_val, ',' ) == NULL
719                 ? LDAP_SUCCESS : LDAP_INVALID_SYNTAX;
720
721 #else
722         LDAPRDN         *RDN, **DN[ 2 ] = { &RDN, NULL };
723         const char      *p;
724         int             rc;
725
726         /*
727          * must be non-empty
728          */
729         if ( rdn == NULL || rdn == '\0' ) {
730                 return 0;
731         }
732
733         /*
734          * must be parsable
735          */
736         rc = ldap_str2rdn( rdn, &RDN, (char **)&p, LDAP_DN_FORMAT_LDAP );
737         if ( rc != LDAP_SUCCESS ) {
738                 return 0;
739         }
740
741         /*
742          * Must be one-level
743          */
744         if ( p[ 0 ] != '\0' ) {
745                 return 0;
746         }
747
748         /*
749          * Schema-aware validate
750          */
751         if ( rc == LDAP_SUCCESS ) {
752                 rc = LDAPDN_validate( DN );
753         }
754         ldap_rdnfree( RDN );
755
756         /*
757          * Must validate (there's a repeated parsing ...)
758          */
759         return ( rc == LDAP_SUCCESS );
760 #endif
761 }
762
763
764 /* build_new_dn:
765  *
766  * Used by ldbm/bdb2 back_modrdn to create the new dn of entries being
767  * renamed.
768  *
769  * new_dn = parent (p_dn) + separator + rdn (newrdn) + null.
770  */
771
772 void
773 build_new_dn( struct berval * new_dn,
774         struct berval * parent_dn,
775         struct berval * newrdn )
776 {
777         char *ptr;
778
779         if ( parent_dn == NULL ) {
780                 ber_dupbv( new_dn, newrdn );
781                 return;
782         }
783
784         new_dn->bv_len = parent_dn->bv_len + newrdn->bv_len + 1;
785         new_dn->bv_val = (char *) ch_malloc( new_dn->bv_len + 1 );
786
787         ptr = slap_strcopy( new_dn->bv_val, newrdn->bv_val );
788         *ptr++ = ',';
789         strcpy( ptr, parent_dn->bv_val );
790 }
791
792
793 /*
794  * dnIsSuffix - tells whether suffix is a suffix of dn.
795  * Both dn and suffix must be normalized.
796  */
797 int
798 dnIsSuffix(
799         const struct berval *dn,
800         const struct berval *suffix )
801 {
802         int     d = dn->bv_len - suffix->bv_len;
803
804         assert( dn );
805         assert( suffix );
806
807         /* empty suffix matches any dn */
808         if ( suffix->bv_len == 0 ) {
809                 return 1;
810         }
811
812         /* suffix longer than dn */
813         if ( d < 0 ) {
814                 return 0;
815         }
816
817         /* no rdn separator or escaped rdn separator */
818         if ( d > 1 && !DN_SEPARATOR( dn->bv_val[ d - 1 ] ) ) {
819                 return 0;
820         }
821
822         /* no possible match or malformed dn */
823         if ( d == 1 ) {
824                 return 0;
825         }
826
827         /* compare */
828         return( strcmp( dn->bv_val + d, suffix->bv_val ) == 0 );
829 }