d76b7715dad8e2640ad5a5946395c1b4469bd05e
[bbaumbach/samba-autobuild/.git] / source4 / lib / registry / reg_backend_ldb / reg_backend_ldb.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Registry interface
4    Copyright (C) Jelmer Vernooij  2004.
5    
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 2 of the License, or
9    (at your option) any later version.
10    
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.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22
23 static char *reg_path_to_ldb(TALLOC_CTX *mem_ctx, const char *path, const char *add)
24 {
25         char *ret = talloc_strdup(mem_ctx, "");
26         char *mypath = strdup(path);
27         char *end = mypath, *begin;
28
29         if(add) 
30                 ret = talloc_asprintf_append(ret, "%s", add);
31
32         while(end) {
33                 char *keyname;
34                 begin = strrchr(end, '\\');
35
36                 if(begin) keyname = begin + 1;
37                 else keyname = mypath;
38
39                 if(strlen(keyname))
40                         ret = talloc_asprintf_append(ret, "key=%s,", keyname);
41                         
42                 if(begin) {
43                         *begin = '\0';
44                         end = begin-1;
45                 } else {
46                         end = NULL;
47                 }
48         }
49
50         SAFE_FREE(mypath);
51
52         ret[strlen(ret)-1] = '\0';
53
54         if(strlen(ret) == 0) return NULL;
55         
56         return ret;
57 }
58
59
60 static int ldb_close_registry(void *data) 
61 {
62         ldb_close((struct ldb_context *)data);
63         return 0;
64 }
65
66 static WERROR ldb_get_subkey_by_id(TALLOC_CTX *mem_ctx, struct registry_key *k, int idx, struct registry_key **subkey)
67 {
68         struct ldb_context *c = k->hive->backend_data;
69         int ret;
70         struct ldb_message **msg;
71         struct ldb_message_element *el;
72
73         ret = ldb_search(c, (char *)k->backend_data, LDB_SCOPE_ONELEVEL, "(key=*)", NULL,&msg);
74
75         if(ret < 0) {
76                 DEBUG(0, ("Error getting subkeys for '%s': %s\n", (char *)k->backend_data, ldb_errstring(c)));
77                 return WERR_FOOBAR;
78         }
79
80         if(idx >= ret) return WERR_NO_MORE_ITEMS;
81         
82         el = ldb_msg_find_element(msg[idx], "key");
83         
84         *subkey = talloc_p(mem_ctx, struct registry_key);
85         (*subkey)->name = talloc_strdup(mem_ctx, el->values[0].data);
86         (*subkey)->backend_data = talloc_strdup(mem_ctx, msg[idx]->dn);
87
88         ldb_search_free(c, msg);
89         return WERR_OK;
90 }
91
92 static WERROR ldb_get_value_by_id(TALLOC_CTX *mem_ctx, struct registry_key *k, int idx, struct registry_value **value)
93 {
94         struct ldb_context *c = k->hive->backend_data;
95         int ret;
96         struct ldb_message **msg;
97         struct ldb_message_element *el;
98
99         ret = ldb_search(c, (char *)k->backend_data, LDB_SCOPE_ONELEVEL, "(value=*)", NULL,&msg);
100
101         if(ret < 0) {
102                 DEBUG(0, ("Error getting values for '%s': %s\n", (char *)k->backend_data, ldb_errstring(c)));
103                 return WERR_FOOBAR;
104         }
105
106         if(idx >= ret) return WERR_NO_MORE_ITEMS;
107         
108         el = ldb_msg_find_element(msg[idx], "value");
109         
110         *value = talloc_p(mem_ctx, struct registry_value);
111         (*value)->name = talloc_strdup(mem_ctx, el->values[0].data);
112         (*value)->backend_data = talloc_strdup(mem_ctx, msg[idx]->dn);
113
114         ldb_search_free(c, msg);
115         return WERR_OK;
116 }
117
118 static WERROR ldb_open_key(TALLOC_CTX *mem_ctx, struct registry_hive *h, const char *name, struct registry_key **key)
119 {
120         struct ldb_context *c = h->backend_data;
121         struct ldb_message **msg;
122         char *ldap_path;
123         int ret;
124         ldap_path = reg_path_to_ldb(mem_ctx, name, NULL);
125         
126         ret = ldb_search(c, ldap_path, LDB_SCOPE_BASE, "(key=*)", NULL,&msg);
127
128         if(ret == 0) {
129                 return WERR_NO_MORE_ITEMS;
130         } else if(ret < 0) {
131                 DEBUG(0, ("Error opening key '%s': %s\n", ldap_path, ldb_errstring(c)));
132                 return WERR_FOOBAR;
133         }
134
135         *key = talloc_p(mem_ctx, struct registry_key);
136         (*key)->name = talloc_strdup(mem_ctx, strrchr(name, '\\'));
137         (*key)->backend_data = talloc_strdup(mem_ctx, msg[0]->dn);
138
139         ldb_search_free(c, msg);
140
141         return WERR_OK;
142 }
143
144 static WERROR ldb_open_hive(TALLOC_CTX *mem_ctx, struct registry_hive *hive, struct registry_key **k)
145 {
146         struct ldb_context *c;
147
148         if (!hive->location) return WERR_INVALID_PARAM;
149         c = ldb_connect(hive->location, 0, NULL);
150
151         if(!c) return WERR_FOOBAR;
152         ldb_set_debug_stderr(c);
153         hive->backend_data = c;
154
155         return ldb_open_key(mem_ctx, hive, "", k);
156 }
157
158 static struct registry_operations reg_backend_ldb = {
159         .name = "ldb",
160         .open_hive = ldb_open_hive,
161         .open_key = ldb_open_key,
162         .get_value_by_index = ldb_get_value_by_id,
163         .get_subkey_by_index = ldb_get_subkey_by_id,
164 };
165
166 NTSTATUS registry_ldb_init(void)
167 {
168         return register_backend("registry", &reg_backend_ldb);
169 }