]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/dn.c
Per ITS#419, don't require SLAPD_RLOOKUPS when HAVE_TCPD
[openldap] / servers / slapd / dn.c
index cb356d0639e7d3807a34b7f4b016f1094e6bd4a6..c968d5a02d648c1bb69fc11fddcc2e2f3f8de3d0 100644 (file)
@@ -1,4 +1,9 @@
 /* dn.c - routines for dealing with distinguished names */
+/* $OpenLDAP$ */
+/*
+ * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
 
 #include "portable.h"
 
@@ -9,6 +14,8 @@
 #include <ac/string.h>
 #include <ac/time.h>
 
+#include "ldap_pvt.h"
+
 #include "slap.h"
 
 #define B4LEADTYPE             0
 #define B4SEPARATOR            8
 
 /*
- * dn_normalize - put dn into a canonical format.  the dn is
- * normalized in place, as well as returned if valid.
+ * dn_validate - validate and compress dn.  the dn is
+ * compressed in place are returned if valid.
  */
 
 char *
-dn_normalize( char *dn )
+dn_validate( char *dn )
 {
        char    *d, *s;
        int     state, gotesc;
@@ -139,7 +146,7 @@ dn_normalize( char *dn )
                default:
                        dn = NULL;
                        Debug( LDAP_DEBUG_ANY,
-                           "dn_normalize - unknown state %d\n", state, 0, 0 );
+                           "dn_validate - unknown state %d\n", state, 0, 0 );
                        break;
                }
                if ( *s == '\\' ) {
@@ -169,18 +176,18 @@ dn_normalize( char *dn )
 }
 
 /*
- * dn_normalize_case - put dn into a canonical form suitable for storing
+ * dn_normalize - put dn into a canonical form suitable for storing
  * in a hash database.  this involves normalizing the case as well as
  * the format.  the dn is normalized in place as well as returned if valid.
  */
 
 char *
-dn_normalize_case( char *dn )
+dn_normalize( char *dn )
 {
-       str2upper( dn );
+       ldap_pvt_str2upper( dn );
 
-       /* normalize format */
-       dn = dn_normalize( dn );
+       /* validate and compress dn */
+       dn = dn_validate( dn );
 
        /* and upper case it */
        return( dn );
@@ -193,10 +200,10 @@ dn_normalize_case( char *dn )
 char *
 dn_parent(
     Backend    *be,
-    char       *dn
+    const char *dn
 )
 {
-       char    *s;
+       const char      *s;
        int     inquote;
 
        if( dn == NULL ) {
@@ -215,24 +222,6 @@ dn_parent(
                return( NULL );
        }
 
-       /*
-        * 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] ) );
-               }
-       }
-
        /*
         * else assume it is an X.500-style name, which looks like
         * foo=bar,sha=baz,...
@@ -287,28 +276,6 @@ char * dn_rdn(
 
        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,...
-        */
-
        inquote = 0;
 
        for ( s = dn; *s; s++ ) {
@@ -335,6 +302,33 @@ char * dn_rdn(
        return( dn );
 }
 
+
+/*
+ * return a charray of all subtrees to which the DN resides in
+ */
+char **dn_subtree(
+       Backend *be,
+    const char *dn )
+{
+       char *child, *parent;
+       char **subtree = NULL;
+       
+       child = ch_strdup( dn );
+
+       do {
+               charray_add( &subtree, child );
+
+               parent = dn_parent( be, child );
+
+               free( child );
+
+               child = parent;
+       } while ( child != NULL );
+
+       return subtree;
+}
+
+
 /*
  * dn_issuffix - tells whether suffix is a suffix of dn.  both dn
  * and suffix must be normalized.
@@ -362,47 +356,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
-
-char *
-str2upper( char *str )
-{
-       char    *s;
-
-       /* normalize case */
-       for ( s = str; *s; s++ ) {
-               *s = TOUPPER( (unsigned char) *s );
-       }
-
-       return( str );
-}
-
-char *
-str2lower( char *str )
-{
-       char    *s;
-
-       /* normalize case */
-       for ( s = str; *s; s++ ) {
-               *s = TOLOWER( (unsigned char) *s );
-       }
-
-       return( str );
-}
-
-
 /*
  * get_next_substring(), rdn_attr_type(), rdn_attr_value(), and
  * build_new_dn().
@@ -518,7 +471,10 @@ int rdn_validate( const char * rdn )
  */
 
 void
-build_new_dn( char ** new_dn, char *e_dn, char * p_dn, char * newrdn )
+build_new_dn( char ** new_dn,
+       const char *e_dn,
+       const char * p_dn,
+       const char * newrdn )
 {
 
     if ( p_dn == NULL ) {
@@ -530,39 +486,7 @@ build_new_dn( char ** new_dn, char *e_dn, char * p_dn, char * newrdn )
     
     *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
-    
 }