s4-netlogon: implement dcesrv_netr_DsRAddressToSitenamesExW
[Samba/aatanasov.git] / source3 / lib / adt_tree.c
blob6ac498d9e62ae0884471ca16c85a4fcb55efdaf7
1 /*
2 * Unix SMB/CIFS implementation.
3 * Generic Abstract Data Types
4 * Copyright (C) Gerald Carter 2002.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "adt_tree.h"
24 /**************************************************************************
25 *************************************************************************/
27 static bool trim_tree_keypath( char *path, char **base, char **new_path )
29 char *p;
31 *new_path = *base = NULL;
33 if ( !path )
34 return False;
36 *base = path;
38 p = strchr( path, '/' );
40 if ( p ) {
41 *p = '\0';
42 *new_path = p+1;
45 return True;
49 /**************************************************************************
50 Initialize the tree's root. The cmp_fn is a callback function used
51 for comparision of two children
52 *************************************************************************/
54 SORTED_TREE* pathtree_init( void *data_p, int (cmp_fn)(void*, void*) )
56 SORTED_TREE *tree = NULL;
58 if ( !(tree = TALLOC_ZERO_P(NULL, SORTED_TREE)) )
59 return NULL;
61 tree->compare = cmp_fn;
63 if ( !(tree->root = TALLOC_ZERO_P(tree, TREE_NODE)) ) {
64 TALLOC_FREE( tree );
65 return NULL;
68 tree->root->data_p = data_p;
70 return tree;
74 /**************************************************************************
75 Find the next child given a key string
76 *************************************************************************/
78 static TREE_NODE* pathtree_birth_child( TREE_NODE *node, char* key )
80 TREE_NODE *infant = NULL;
81 TREE_NODE **siblings;
82 int i;
84 if ( !(infant = TALLOC_ZERO_P( node, TREE_NODE)) )
85 return NULL;
87 infant->key = talloc_strdup( infant, key );
88 infant->parent = node;
90 siblings = TALLOC_REALLOC_ARRAY( node, node->children, TREE_NODE *, node->num_children+1 );
92 if ( siblings )
93 node->children = siblings;
95 node->num_children++;
97 /* first child */
99 if ( node->num_children == 1 ) {
100 DEBUG(11,("pathtree_birth_child: First child of node [%s]! [%s]\n",
101 node->key ? node->key : "NULL", infant->key ));
102 node->children[0] = infant;
104 else
107 * multiple siblings .... (at least 2 children)
109 * work from the end of the list forward
110 * The last child is not set at this point
111 * Insert the new infanct in ascending order
112 * from left to right
115 for ( i = node->num_children-1; i>=1; i-- )
117 DEBUG(11,("pathtree_birth_child: Looking for crib; infant -> [%s], child -> [%s]\n",
118 infant->key, node->children[i-1]->key));
120 /* the strings should never match assuming that we
121 have called pathtree_find_child() first */
123 if ( StrCaseCmp( infant->key, node->children[i-1]->key ) > 0 ) {
124 DEBUG(11,("pathtree_birth_child: storing infant in i == [%d]\n",
125 i));
126 node->children[i] = infant;
127 break;
130 /* bump everything towards the end on slot */
132 node->children[i] = node->children[i-1];
135 DEBUG(11,("pathtree_birth_child: Exiting loop (i == [%d])\n", i ));
137 /* if we haven't found the correct slot yet, the child
138 will be first in the list */
140 if ( i == 0 )
141 node->children[0] = infant;
144 return infant;
147 /**************************************************************************
148 Find the next child given a key string
149 *************************************************************************/
151 static TREE_NODE* pathtree_find_child( TREE_NODE *node, char* key )
153 TREE_NODE *next = NULL;
154 int i, result;
156 if ( !node ) {
157 DEBUG(0,("pathtree_find_child: NULL node passed into function!\n"));
158 return NULL;
161 if ( !key ) {
162 DEBUG(0,("pathtree_find_child: NULL key string passed into function!\n"));
163 return NULL;
166 for ( i=0; i<node->num_children; i++ )
168 DEBUG(11,("pathtree_find_child: child key => [%s]\n",
169 node->children[i]->key));
171 result = StrCaseCmp( node->children[i]->key, key );
173 if ( result == 0 )
174 next = node->children[i];
176 /* if result > 0 then we've gone to far because
177 the list of children is sorted by key name
178 If result == 0, then we have a match */
180 if ( result > 0 )
181 break;
184 DEBUG(11,("pathtree_find_child: %s [%s]\n",
185 next ? "Found" : "Did not find", key ));
187 return next;
190 /**************************************************************************
191 Add a new node into the tree given a key path and a blob of data
192 *************************************************************************/
194 WERROR pathtree_add( SORTED_TREE *tree, const char *path, void *data_p )
196 char *str, *base, *path2;
197 TREE_NODE *current, *next;
198 WERROR ret = WERR_OK;
200 DEBUG(8,("pathtree_add: Enter\n"));
202 if ( !path || *path != '/' ) {
203 DEBUG(0,("pathtree_add: Attempt to add a node with a bad path [%s]\n",
204 path ? path : "NULL" ));
205 return WERR_INVALID_PARAM;
208 if ( !tree ) {
209 DEBUG(0,("pathtree_add: Attempt to add a node to an uninitialized tree!\n"));
210 return WERR_INVALID_PARAM;
213 /* move past the first '/' */
215 path++;
216 path2 = SMB_STRDUP( path );
217 if ( !path2 ) {
218 DEBUG(0,("pathtree_add: strdup() failed on string [%s]!?!?!\n", path));
219 return WERR_NOMEM;
224 * this works sort of like a 'mkdir -p' call, possibly
225 * creating an entire path to the new node at once
226 * The path should be of the form /<key1>/<key2>/...
229 base = path2;
230 str = path2;
231 current = tree->root;
233 do {
234 /* break off the remaining part of the path */
236 str = strchr( str, '/' );
237 if ( str )
238 *str = '\0';
240 /* iterate to the next child--birth it if necessary */
242 next = pathtree_find_child( current, base );
243 if ( !next ) {
244 next = pathtree_birth_child( current, base );
245 if ( !next ) {
246 DEBUG(0,("pathtree_add: Failed to create new child!\n"));
247 ret = WERR_NOMEM;
248 goto done;
251 current = next;
253 /* setup the next part of the path */
255 base = str;
256 if ( base ) {
257 *base = '/';
258 base++;
259 str = base;
262 } while ( base != NULL );
264 current->data_p = data_p;
266 DEBUG(10,("pathtree_add: Successfully added node [%s] to tree\n",
267 path ));
269 DEBUG(8,("pathtree_add: Exit\n"));
271 done:
272 SAFE_FREE( path2 );
273 return ret;
277 /**************************************************************************
278 Recursive routine to print out all children of a TREE_NODE
279 *************************************************************************/
281 static void pathtree_print_children(TALLOC_CTX *ctx,
282 TREE_NODE *node,
283 int debug,
284 const char *path )
286 int i;
287 int num_children;
288 char *path2 = NULL;
290 if ( !node )
291 return;
293 if ( node->key )
294 DEBUG(debug,("%s: [%s] (%s)\n", path ? path : "NULL", node->key,
295 node->data_p ? "data" : "NULL" ));
297 if ( path ) {
298 path2 = talloc_strdup(ctx, path);
299 if (!path2) {
300 return;
304 path2 = talloc_asprintf(ctx,
305 "%s%s/",
306 path ? path : "",
307 node->key ? node->key : "NULL");
308 if (!path2) {
309 return;
312 num_children = node->num_children;
313 for ( i=0; i<num_children; i++ ) {
314 pathtree_print_children(ctx, node->children[i], debug, path2 );
318 /**************************************************************************
319 Dump the kys for a tree to the log file
320 *************************************************************************/
322 void pathtree_print_keys( SORTED_TREE *tree, int debug )
324 int i;
325 int num_children = tree->root->num_children;
327 if ( tree->root->key )
328 DEBUG(debug,("ROOT/: [%s] (%s)\n", tree->root->key,
329 tree->root->data_p ? "data" : "NULL" ));
331 for ( i=0; i<num_children; i++ ) {
332 TALLOC_CTX *ctx = talloc_stackframe();
333 pathtree_print_children(ctx, tree->root->children[i], debug,
334 tree->root->key ? tree->root->key : "ROOT/" );
335 TALLOC_FREE(ctx);
340 /**************************************************************************
341 return the data_p for for the node in tree matching the key string
342 The key string is the full path. We must break it apart and walk
343 the tree
344 *************************************************************************/
346 void* pathtree_find( SORTED_TREE *tree, char *key )
348 char *keystr, *base = NULL, *str = NULL, *p;
349 TREE_NODE *current;
350 void *result = NULL;
352 DEBUG(10,("pathtree_find: Enter [%s]\n", key ? key : "NULL" ));
354 /* sanity checks first */
356 if ( !key ) {
357 DEBUG(0,("pathtree_find: Attempt to search tree using NULL search string!\n"));
358 return NULL;
361 if ( !tree ) {
362 DEBUG(0,("pathtree_find: Attempt to search an uninitialized tree using string [%s]!\n",
363 key ? key : "NULL" ));
364 return NULL;
367 if ( !tree->root )
368 return NULL;
370 /* make a copy to play with */
372 if ( *key == '/' )
373 keystr = SMB_STRDUP( key+1 );
374 else
375 keystr = SMB_STRDUP( key );
377 if ( !keystr ) {
378 DEBUG(0,("pathtree_find: strdup() failed on string [%s]!?!?!\n", key));
379 return NULL;
382 /* start breaking the path apart */
384 p = keystr;
385 current = tree->root;
387 if ( tree->root->data_p )
388 result = tree->root->data_p;
392 /* break off the remaining part of the path */
394 trim_tree_keypath( p, &base, &str );
396 DEBUG(11,("pathtree_find: [loop] base => [%s], new_path => [%s]\n",
397 base ? base : "",
398 str ? str : ""));
400 /* iterate to the next child */
402 current = pathtree_find_child( current, base );
405 * the idea is that the data_p for a parent should
406 * be inherited by all children, but allow it to be
407 * overridden farther down
410 if ( current && current->data_p )
411 result = current->data_p;
413 /* reset the path pointer 'p' to the remaining part of the key string */
415 p = str;
417 } while ( str && current );
419 /* result should be the data_p from the lowest match node in the tree */
420 if ( result )
421 DEBUG(11,("pathtree_find: Found data_p!\n"));
423 SAFE_FREE( keystr );
425 DEBUG(10,("pathtree_find: Exit\n"));
427 return result;