X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fdn.c;h=a20d5a2cb5c845aff9bf52cb8487299ccc42ed61;hb=ae63be3894c799771d0ccabec1e376c7478cd263;hp=a8419c59a6cabfc99e018778905880f383ccdede;hpb=7a0b0b2bbf7777cf009ab746654d67ea0abef6ee;p=openldap diff --git a/servers/slapd/dn.c b/servers/slapd/dn.c index a8419c59a6..a20d5a2cb5 100644 --- a/servers/slapd/dn.c +++ b/servers/slapd/dn.c @@ -1,7 +1,7 @@ /* dn.c - routines for dealing with distinguished names */ /* $OpenLDAP$ */ /* - * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ @@ -45,13 +45,13 @@ dn_validate( char *dn ) switch ( state ) { case B4LEADTYPE: case B4TYPE: - if ( LEADOIDCHAR(*s) ) { + if ( OID_LEADCHAR(*s) ) { state = INOIDTYPE; *d++ = *s; - } else if ( LEADKEYCHAR(*s) ) { + } else if ( ATTR_LEADCHAR(*s) ) { state = INKEYTYPE; *d++ = *s; - } else if ( ! SPACE( *s ) ) { + } else if ( ! ASCII_SPACE( *s ) ) { dn = NULL; state = INKEYTYPE; *d++ = *s; @@ -59,12 +59,12 @@ dn_validate( char *dn ) break; case INOIDTYPE: - if ( OIDCHAR(*s) ) { + if ( OID_CHAR(*s) ) { *d++ = *s; } else if ( *s == '=' ) { state = B4VALUE; *d++ = *s; - } else if ( SPACE( *s ) ) { + } else if ( ASCII_SPACE( *s ) ) { state = B4EQUAL; } else { dn = NULL; @@ -73,12 +73,12 @@ dn_validate( char *dn ) break; case INKEYTYPE: - if ( KEYCHAR(*s) ) { + if ( ATTR_CHAR(*s) ) { *d++ = *s; } else if ( *s == '=' ) { state = B4VALUE; *d++ = *s; - } else if ( SPACE( *s ) ) { + } else if ( ASCII_SPACE( *s ) ) { state = B4EQUAL; } else { dn = NULL; @@ -90,7 +90,7 @@ dn_validate( char *dn ) if ( *s == '=' ) { state = B4VALUE; *d++ = *s; - } else if ( ! SPACE( *s ) ) { + } else if ( ! ASCII_SPACE( *s ) ) { /* not a valid dn - but what can we do here? */ *d++ = *s; dn = NULL; @@ -101,15 +101,15 @@ dn_validate( char *dn ) if ( *s == '"' ) { state = INQUOTEDVALUE; *d++ = *s; - } else if ( ! SPACE( *s ) ) { + } else if ( ! ASCII_SPACE( *s ) ) { state = INVALUE; *d++ = *s; } break; case INVALUE: - if ( !gotesc && SEPARATOR( *s ) ) { - while ( SPACE( *(d - 1) ) ) + if ( !gotesc && RDN_SEPARATOR( *s ) ) { + while ( ASCII_SPACE( *(d - 1) ) ) d--; state = B4TYPE; if ( *s == '+' ) { @@ -117,8 +117,8 @@ dn_validate( char *dn ) } else { *d++ = ','; } - } else if ( gotesc && !NEEDSESCAPE( *s ) && - !SEPARATOR( *s ) ) { + } else if ( gotesc && !RDN_NEEDSESCAPE( *s ) && + !RDN_SEPARATOR( *s ) ) { *--d = *s; d++; } else { @@ -130,25 +130,28 @@ dn_validate( char *dn ) if ( !gotesc && *s == '"' ) { state = B4SEPARATOR; *d++ = *s; - } else if ( gotesc && !NEEDSESCAPE( *s ) ) { + } else if ( gotesc && !RDN_NEEDSESCAPE( *s ) ) { *--d = *s; d++; } else { *d++ = *s; } break; + case B4SEPARATOR: - if ( SEPARATOR( *s ) ) { + if ( RDN_SEPARATOR( *s ) ) { state = B4TYPE; *d++ = *s; } break; + default: dn = NULL; Debug( LDAP_DEBUG_ANY, "dn_validate - unknown state %d\n", state, 0, 0 ); break; } + if ( *s == '\\' ) { gotesc = 1; } else { @@ -184,12 +187,12 @@ dn_validate( char *dn ) char * dn_normalize( char *dn ) { + /* upper case it */ ldap_pvt_str2upper( dn ); /* validate and compress dn */ dn = dn_validate( dn ); - /* and upper case it */ return( dn ); } @@ -210,7 +213,7 @@ dn_parent( return NULL; } - while(*dn && SPACE(*dn)) { + while(*dn != '\0' && ASCII_SPACE(*dn)) { dn++; } @@ -222,28 +225,8 @@ dn_parent( return( NULL ); } -#ifdef DNS_DN /* - * no =, assume it is a dns name, like blah@some.domain.name - * if the blah@ part is there, return some.domain.name. if - * it's just some.domain.name, return domain.name. - */ - if ( strchr( dn, '=' ) == NULL ) { - if ( (s = strchr( dn, '@' )) == NULL ) { - if ( (s = strchr( dn, '.' )) == NULL ) { - return( NULL ); - } - } - if ( *(s + 1) == '\0' ) { - return( NULL ); - } else { - return( ch_strdup( &s[1] ) ); - } - } -#endif - - /* - * else assume it is an X.500-style name, which looks like + * assume it is an X.500-style name, which looks like * foo=bar,sha=baz,... */ @@ -262,7 +245,7 @@ dn_parent( } else { if ( *s == '"' ) { inquote = 1; - } else if ( DNSEPARATOR( *s ) ) { + } else if ( DN_SEPARATOR( *s ) ) { return( ch_strdup( &s[1] ) ); } } @@ -273,50 +256,28 @@ dn_parent( char * dn_rdn( Backend *be, - char *dn ) + const char *dn_in ) { - char *s; + char *dn, *s; int inquote; - if( dn == NULL ) { + if( dn_in == NULL ) { return NULL; } - while(*dn && SPACE(*dn)) { - dn++; + while(*dn_in && ASCII_SPACE(*dn_in)) { + dn_in++; } - if( *dn == '\0' ) { + if( *dn_in == '\0' ) { return( NULL ); } - if ( be != NULL && be_issuffix( be, dn ) ) { + if ( be != NULL && be_issuffix( be, dn_in ) ) { return( NULL ); } - dn = ch_strdup( dn ); - -#ifdef DNS_DN - /* - * no =, assume it is a dns name, like blah@some.domain.name - * if the blah@ part is there, return some.domain.name. if - * it's just some.domain.name, return domain.name. - */ - if ( strchr( dn, '=' ) == NULL ) { - if ( (s = strchr( dn, '@' )) == NULL ) { - if ( (s = strchr( dn, '.' )) == NULL ) { - return( dn ); - } - } - *s = '\0'; - return( dn ); - } -#endif - - /* - * else assume it is an X.500-style name, which looks like - * foo=bar,sha=baz,... - */ + dn = ch_strdup( dn_in ); inquote = 0; @@ -334,7 +295,7 @@ char * dn_rdn( } else { if ( *s == '"' ) { inquote = 1; - } else if ( DNSEPARATOR( *s ) ) { + } else if ( DN_SEPARATOR( *s ) ) { *s = '\0'; return( dn ); } @@ -378,8 +339,8 @@ char **dn_subtree( int dn_issuffix( - char *dn, - char *suffix + const char *dn, + const char *suffix ) { int dnlen, suffixlen; @@ -398,20 +359,6 @@ dn_issuffix( return( strcmp( dn + dnlen - suffixlen, suffix ) == 0 ); } -#ifdef DNS_DN -/* - * dn_type - tells whether the given dn is an X.500 thing or DNS thing - * returns (defined in slap.h): DN_DNS dns-style thing - * DN_X500 x500-style thing - */ - -int -dn_type( char *dn ) -{ - return( strchr( dn, '=' ) == NULL ? DN_DNS : DN_X500 ); -} -#endif - /* * get_next_substring(), rdn_attr_type(), rdn_attr_value(), and * build_new_dn(). @@ -434,7 +381,7 @@ dn_type( char *dn ) */ static char * -get_next_substring( char * s, char d ) +get_next_substring( const char * s, char d ) { char *str, *r; @@ -443,10 +390,8 @@ get_next_substring( char * s, char d ) /* Skip leading spaces */ - while ( *s && SPACE(*s) ) { - + while ( *s && ASCII_SPACE(*s) ) { s++; - } /* Copy word */ @@ -477,11 +422,9 @@ get_next_substring( char * s, char d ) * memory. The returned string will be null-terminated. */ -char * rdn_attr_type( char * s ) +char * rdn_attr_type( const char * s ) { - return get_next_substring( s, '=' ); - } @@ -495,15 +438,13 @@ char * rdn_attr_type( char * s ) */ char * -rdn_attr_value( char * rdn ) +rdn_attr_value( const char * rdn ) { - char *str; + const char *str; if ( (str = strchr( rdn, '=' )) != NULL ) { - return get_next_substring(++str, '\0'); - } return NULL; @@ -534,47 +475,13 @@ build_new_dn( char ** new_dn, { if ( p_dn == NULL ) { - *new_dn = ch_strdup( newrdn ); return; - } *new_dn = (char *) ch_malloc( strlen( p_dn ) + strlen( newrdn ) + 3 ); -#ifdef DNS_DN - if ( dn_type( e_dn ) == DN_X500 ) { -#endif - strcpy( *new_dn, newrdn ); strcat( *new_dn, "," ); strcat( *new_dn, p_dn ); - -#ifdef DNS_DN - } else { - - char *s; - char sep[2]; - - strcpy( *new_dn, newrdn ); - s = strchr( newrdn, '\0' ); - s--; - - if ( (*s != '.') && (*s != '@') ) { - - if ( (s = strpbrk( e_dn, ".@" )) != NULL ) { - - sep[0] = *s; - sep[1] = '\0'; - strcat( *new_dn, sep ); - - } - - } - - strcat( *new_dn, p_dn ); - - } -#endif - }