s3: Update waf build to include missed dependancy on Lion.
[Samba/gebeck_regimport.git] / source3 / lib / conn_tdb.c
blob9b0a07a56c0a453afc486084010862b4674a9fbb
1 /*
2 Unix SMB/CIFS implementation.
3 Low-level connections.tdb access functions
4 Copyright (C) Volker Lendecke 2007
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 "system/filesys.h"
22 #include "smbd/globals.h"
23 #include "dbwrap/dbwrap.h"
24 #include "dbwrap/dbwrap_open.h"
25 #include "messages.h"
27 static struct db_context *connections_db_ctx(bool rw)
29 static struct db_context *db_ctx;
30 int open_flags;
32 if (db_ctx != NULL) {
33 return db_ctx;
36 open_flags = rw ? (O_RDWR|O_CREAT) : O_RDONLY;
38 db_ctx = db_open(NULL, lock_path("connections.tdb"), 0,
39 TDB_CLEAR_IF_FIRST|TDB_INCOMPATIBLE_HASH|TDB_DEFAULT,
40 open_flags, 0644, DBWRAP_LOCK_ORDER_1);
41 return db_ctx;
44 static struct db_record *connections_fetch_record(TALLOC_CTX *mem_ctx,
45 TDB_DATA key)
47 struct db_context *ctx = connections_db_ctx(True);
49 if (ctx == NULL) {
50 return NULL;
53 return dbwrap_fetch_locked(ctx, mem_ctx, key);
56 struct db_record *connections_fetch_entry(TALLOC_CTX *mem_ctx,
57 connection_struct *conn,
58 const char *name)
60 struct connections_key ckey;
61 TDB_DATA key;
63 ZERO_STRUCT(ckey);
64 ckey.pid = messaging_server_id(conn->sconn->msg_ctx);
65 ckey.cnum = conn->cnum;
66 strlcpy(ckey.name, name, sizeof(ckey.name));
68 key.dsize = sizeof(ckey);
69 key.dptr = (uint8 *)&ckey;
71 return connections_fetch_record(mem_ctx, key);
74 struct conn_traverse_state {
75 int (*fn)(struct db_record *rec,
76 const struct connections_key *key,
77 const struct connections_data *data,
78 void *private_data);
79 void *private_data;
82 static int conn_traverse_fn(struct db_record *rec, void *private_data)
84 TDB_DATA key;
85 TDB_DATA value;
86 struct conn_traverse_state *state =
87 (struct conn_traverse_state *)private_data;
89 key = dbwrap_record_get_key(rec);
90 value = dbwrap_record_get_value(rec);
92 if ((key.dsize != sizeof(struct connections_key))
93 || (value.dsize != sizeof(struct connections_data))) {
94 return 0;
97 return state->fn(rec, (const struct connections_key *)key.dptr,
98 (const struct connections_data *)value.dptr,
99 state->private_data);
102 int connections_traverse(int (*fn)(struct db_record *rec,
103 void *private_data),
104 void *private_data)
106 NTSTATUS status;
107 int count;
108 struct db_context *ctx = connections_db_ctx(False);
110 if (ctx == NULL) {
111 return -1;
114 status = dbwrap_traverse(ctx, fn, private_data, &count);
115 if (!NT_STATUS_IS_OK(status)) {
116 return -1;
119 return count;
122 int connections_forall(int (*fn)(struct db_record *rec,
123 const struct connections_key *key,
124 const struct connections_data *data,
125 void *private_data),
126 void *private_data)
128 struct db_context *ctx;
129 struct conn_traverse_state state;
130 NTSTATUS status;
131 int count;
133 ctx = connections_db_ctx(true);
134 if (ctx == NULL) {
135 return -1;
138 state.fn = fn;
139 state.private_data = private_data;
141 status = dbwrap_traverse(ctx, conn_traverse_fn, (void *)&state, &count);
142 if (!NT_STATUS_IS_OK(status)) {
143 return -1;
146 return count;
149 struct conn_traverse_read_state {
150 int (*fn)(const struct connections_key *key,
151 const struct connections_data *data,
152 void *private_data);
153 void *private_data;
156 static int connections_forall_read_fn(struct db_record *rec,
157 void *private_data)
159 TDB_DATA key;
160 TDB_DATA value;
161 struct conn_traverse_read_state *state =
162 (struct conn_traverse_read_state *)private_data;
164 key = dbwrap_record_get_key(rec);
165 value = dbwrap_record_get_value(rec);
167 if ((key.dsize != sizeof(struct connections_key))
168 || (value.dsize != sizeof(struct connections_data))) {
169 return 0;
171 return state->fn((const struct connections_key *)key.dptr,
172 (const struct connections_data *)value.dptr,
173 state->private_data);
176 int connections_forall_read(int (*fn)(const struct connections_key *key,
177 const struct connections_data *data,
178 void *private_data),
179 void *private_data)
181 struct db_context *ctx;
182 struct conn_traverse_read_state state;
183 NTSTATUS status;
184 int count;
186 ctx = connections_db_ctx(false);
187 if (ctx == NULL) {
188 return -1;
191 state.fn = fn;
192 state.private_data = private_data;
194 status = dbwrap_traverse_read(ctx, connections_forall_read_fn,
195 (void *)&state, &count);
197 if (!NT_STATUS_IS_OK(status)) {
198 return -1;
201 return count;
204 bool connections_init(bool rw)
206 return (connections_db_ctx(rw) != NULL);