lib/param: use the correct path names again
[Samba/gebeck_regimport.git] / source3 / registry / reg_util_internal.c
blobe256c75cb2de18ca8d9fdeba245af8d28e9fd41a
1 /*
2 * Unix SMB/CIFS implementation.
3 * Virtual Windows Registry Layer (utility functions)
4 * Copyright (C) Gerald Carter 2002-2005
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 /* Implementation of registry frontend view functions. */
22 #include "includes.h"
23 #include "registry.h"
24 #include "reg_util_internal.h"
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_REGISTRY
29 /***********************************************************************
30 Utility function for splitting the base path of a registry path off
31 by setting base and new_path to the apprapriate offsets withing the
32 path.
34 WARNING!! Does modify the original string!
35 ***********************************************************************/
37 bool reg_split_path(char *path, char **base, char **new_path)
39 char *p;
41 *new_path = *base = NULL;
43 if (!path) {
44 return false;
46 *base = path;
48 p = strchr(path, '\\');
50 if ( p ) {
51 *p = '\0';
52 *new_path = p+1;
55 return true;
58 /***********************************************************************
59 Utility function for splitting the base path of a registry path off
60 by setting base and new_path to the appropriate offsets withing the
61 path.
63 WARNING!! Does modify the original string!
64 ***********************************************************************/
66 bool reg_split_key(char *path, char **base, char **key)
68 char *p;
70 *key = *base = NULL;
72 if (!path) {
73 return false;
76 *base = path;
78 p = strrchr(path, '\\');
80 if (p) {
81 *p = '\0';
82 *key = p+1;
85 return true;
88 /**
89 * The full path to the registry key is used as database key.
90 * Leading and trailing '\' characters are stripped.
91 * Key string is also normalized to UPPER case.
94 char *normalize_reg_path(TALLOC_CTX *ctx, const char *keyname )
96 char *p;
97 char *nkeyname;
99 /* skip leading '\' chars */
100 while (*keyname == '\\') {
101 keyname++;
104 nkeyname = talloc_strdup(ctx, keyname);
105 if (nkeyname == NULL) {
106 return NULL;
109 /* strip trailing '\' chars */
110 p = strrchr(nkeyname, '\\');
111 while ((p != NULL) && (p[1] == '\0')) {
112 *p = '\0';
113 p = strrchr(nkeyname, '\\');
116 if (!strupper_m(nkeyname)) {
117 TALLOC_FREE(nkeyname);
118 return NULL;
121 return nkeyname;
124 /**********************************************************************
125 move to next non-delimter character
126 *********************************************************************/
128 char *reg_remaining_path(TALLOC_CTX *ctx, const char *key)
130 char *new_path = NULL;
131 char *p = NULL;
133 if (!key || !*key) {
134 return NULL;
137 new_path = talloc_strdup(ctx, key);
138 if (!new_path) {
139 return NULL;
141 /* normalize_reg_path( new_path ); */
142 if (!(p = strchr(new_path, '\\')) ) {
143 p = new_path;
144 } else {
145 p++;
148 return p;