]> git.sur5r.net Git - openldap/commitdiff
Replacement for value_find and compatibility macro.
authorJulio Sánchez Fernández <jsanchez@openldap.org>
Tue, 23 Oct 2001 09:43:20 +0000 (09:43 +0000)
committerJulio Sánchez Fernández <jsanchez@openldap.org>
Tue, 23 Oct 2001 09:43:20 +0000 (09:43 +0000)
Now we will be able to fix compares.

servers/slapd/proto-slap.h
servers/slapd/value.c

index 05acf2ded56cb0bdd30cec16531189c677fd1342..88cc5e64a8e6d8ffb62ebcf4d4271a09a244f0a2 100644 (file)
@@ -756,10 +756,12 @@ LDAP_SLAPD_F (int) value_match LDAP_P((
        struct berval *v1,
        void *v2,
        const char ** text ));
-LDAP_SLAPD_F (int) value_find LDAP_P((
+LDAP_SLAPD_F (int) value_find_ex LDAP_P((
        AttributeDescription *ad,
+       unsigned flags,
        struct berval **values,
        struct berval *value ));
+#define value_find(ad, values, value)  ( value_find_ex(ad,0,values,value ) )
 LDAP_SLAPD_F (int) value_add LDAP_P(( struct berval ***vals, struct berval **addvals ));
 
 /*
index 4a34fc09833a92eb953dad2e82adddfd3b8070b9..3d4e05acd6fd282894e80fd155c16081a67a6c0e 100644 (file)
@@ -168,25 +168,39 @@ value_match(
 }
 
 
-int value_find(
+int value_find_ex(
        AttributeDescription *ad,
+       unsigned flags,
        struct berval **vals,
        struct berval *val )
 {
        int     i;
        int rc;
        struct berval *nval = NULL;
+       struct berval *nval_tmp = NULL;
        MatchingRule *mr = ad->ad_type->sat_equality;
 
        if( mr == NULL || !mr->smr_match ) {
                return LDAP_INAPPROPRIATE_MATCHING;
        }
 
+       /* Take care of this here or ssyn_normalize later will hurt */
+       if ( !(flags & SLAP_MR_VALUE_IS_IN_MR_SYNTAX) &&
+            mr->smr_convert ) {
+               rc = (mr->smr_convert)(val,&nval);
+               if ( rc != LDAP_SUCCESS ) {
+                       return LDAP_INVALID_SYNTAX;
+               }
+       }
+
        if( mr->smr_syntax->ssyn_normalize ) {
                rc = mr->smr_syntax->ssyn_normalize(
-                       mr->smr_syntax, val, &nval );
+                       mr->smr_syntax, nval == NULL ? val : nval, &nval_tmp );
 
+               ber_bvfree(nval);
+               nval = nval_tmp;
                if( rc != LDAP_SUCCESS ) {
+                       ber_bvfree(nval);
                        return LDAP_INAPPROPRIATE_MATCHING;
                }
        }
@@ -195,7 +209,9 @@ int value_find(
                int match;
                const char *text;
 
-               rc = value_match( &match, ad, mr, 0,
+               /* We did convert, so keep value_match from trying */
+               rc = value_match( &match, ad, mr,
+                       flags & !SLAP_MR_VALUE_IS_IN_MR_SYNTAX,
                        vals[i], nval == NULL ? val : nval, &text );
 
                if( rc == LDAP_SUCCESS && match == 0 ) {