2 * Map names to server_ids
4 * Copyright Volker Lendecke <vl@samba.org> 2014
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/>.
21 #include "system/filesys.h"
22 #include "lib/util/server_id_db.h"
23 #include "lib/tdb_wrap/tdb_wrap.h"
24 #include "lib/util/strv.h"
25 #include "lib/util/util_tdb.h"
26 #include "lib/util/samba_util.h"
28 static TDB_DATA
talloc_tdb_data(void *ptr
)
30 return (TDB_DATA
) { .dptr
= ptr
, .dsize
= talloc_get_size(ptr
) };
39 static int server_id_db_destructor(struct server_id_db
*db
);
41 struct server_id_db
*server_id_db_init(TALLOC_CTX
*mem_ctx
,
43 const char *base_path
,
44 int hash_size
, int tdb_flags
)
46 struct server_id_db
*db
;
47 size_t pathlen
= strlen(base_path
) + 11;
50 db
= talloc(mem_ctx
, struct server_id_db
);
57 snprintf(path
, pathlen
, "%s/names.tdb", base_path
);
59 db
->tdb
= tdb_wrap_open(db
, path
, hash_size
, tdb_flags
,
60 O_RDWR
|O_CREAT
, 0660);
61 if (db
->tdb
== NULL
) {
66 talloc_set_destructor(db
, server_id_db_destructor
);
71 void server_id_db_reinit(struct server_id_db
*db
, struct server_id pid
)
74 TALLOC_FREE(db
->names
);
77 static int server_id_db_destructor(struct server_id_db
*db
)
81 while ((name
= strv_next(db
->names
, name
)) != NULL
) {
82 server_id_db_remove(db
, name
);
88 int server_id_db_add(struct server_id_db
*db
, const char *name
)
90 struct tdb_context
*tdb
= db
->tdb
->tdb
;
91 struct server_id_buf buf
;
96 n
= strv_find(db
->names
, name
);
101 ret
= strv_add(db
, &db
->names
, name
);
106 key
= string_term_tdb_data(name
);
108 server_id_str_buf(db
->pid
, &buf
);
109 data
= string_term_tdb_data(buf
.buf
);
111 ret
= tdb_append(tdb
, key
, data
);
113 enum TDB_ERROR err
= tdb_error(tdb
);
114 strv_delete(&db
->names
, strv_find(db
->names
, name
));
115 return map_unix_error_from_tdb(err
);
121 int server_id_db_remove(struct server_id_db
*db
, const char *name
)
123 struct tdb_context
*tdb
= db
->tdb
->tdb
;
124 struct server_id_buf buf
;
130 n
= strv_find(db
->names
, name
);
135 key
= string_term_tdb_data(name
);
136 server_id_str_buf(db
->pid
, &buf
);
138 ret
= tdb_chainlock(tdb
, key
);
140 enum TDB_ERROR err
= tdb_error(tdb
);
141 return map_unix_error_from_tdb(err
);
144 ret
= tdb_fetch_talloc(tdb
, key
, db
, &data
);
146 tdb_chainunlock(tdb
, key
);
152 id
= strv_find(ids
, buf
.buf
);
154 tdb_chainunlock(tdb
, key
);
159 strv_delete(&ids
, id
);
160 ret
= tdb_store(tdb
, key
, talloc_tdb_data(ids
), TDB_MODIFY
);
163 tdb_chainunlock(tdb
, key
);
166 enum TDB_ERROR err
= tdb_error(tdb
);
167 return map_unix_error_from_tdb(err
);
170 strv_delete(&db
->names
, n
);
174 int server_id_db_lookup(struct server_id_db
*db
, const char *name
,
175 TALLOC_CTX
*mem_ctx
, unsigned *pnum_servers
,
176 struct server_id
**pservers
)
178 struct tdb_context
*tdb
= db
->tdb
->tdb
;
182 unsigned num_servers
;
183 struct server_id
*servers
;
186 key
= string_term_tdb_data(name
);
188 ret
= tdb_fetch_talloc(tdb
, key
, mem_ctx
, &data
);
194 num_servers
= strv_count(ids
);
196 servers
= talloc_array(mem_ctx
, struct server_id
, num_servers
);
197 if (servers
== NULL
) {
204 for (id
= ids
; id
!= NULL
; id
= strv_next(ids
, id
)) {
205 servers
[i
++] = server_id_from_string(NONCLUSTER_VNN
, id
);
210 *pnum_servers
= num_servers
;
216 bool server_id_db_lookup_one(struct server_id_db
*db
, const char *name
,
217 struct server_id
*server
)
220 unsigned num_servers
;
221 struct server_id
*servers
;
223 ret
= server_id_db_lookup(db
, name
, db
, &num_servers
, &servers
);
227 if (num_servers
== 0) {
228 TALLOC_FREE(servers
);
231 *server
= servers
[0];
232 TALLOC_FREE(servers
);
236 struct server_id_db_traverse_state
{
238 int (*fn
)(const char *name
,
239 unsigned num_servers
,
240 const struct server_id
*servers
,
245 static int server_id_db_traverse_fn(struct tdb_context
*tdb
,
246 TDB_DATA key
, TDB_DATA data
,
249 struct server_id_db_traverse_state
*state
= private_data
;
252 unsigned num_servers
;
253 struct server_id
*servers
;
256 if (key
.dsize
== 0) {
259 if (key
.dptr
[key
.dsize
-1] != '\0') {
262 name
= (const char *)key
.dptr
;
264 ids
= (char *)talloc_memdup(state
->mem_ctx
, data
.dptr
, data
.dsize
);
269 num_servers
= strv_count(ids
);
270 servers
= talloc_array(ids
, struct server_id
, num_servers
);
274 for (id
= ids
; id
!= NULL
; id
= strv_next(ids
, id
)) {
275 servers
[i
++] = server_id_from_string(NONCLUSTER_VNN
, id
);
278 ret
= state
->fn(name
, num_servers
, servers
, state
->private_data
);
285 int server_id_db_traverse_read(struct server_id_db
*db
,
286 int (*fn
)(const char *name
,
287 unsigned num_servers
,
288 const struct server_id
*servers
,
292 struct server_id_db_traverse_state state
;
295 state
= (struct server_id_db_traverse_state
) {
296 .fn
= fn
, .private_data
= private_data
,
297 .mem_ctx
= talloc_new(db
)
300 if (state
.mem_ctx
== NULL
) {
304 ret
= tdb_traverse_read(db
->tdb
->tdb
, server_id_db_traverse_fn
,
306 TALLOC_FREE(state
.mem_ctx
);