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/>.
21 #include "system/filesys.h"
22 #include "smbd/globals.h"
23 #include "dbwrap/dbwrap.h"
24 #include "dbwrap/dbwrap_open.h"
26 static struct db_context
*connections_db_ctx(bool rw
)
28 static struct db_context
*db_ctx
;
35 open_flags
= rw
? (O_RDWR
|O_CREAT
) : O_RDONLY
;
37 db_ctx
= db_open(NULL
, lock_path("connections.tdb"), 0,
38 TDB_CLEAR_IF_FIRST
|TDB_INCOMPATIBLE_HASH
|TDB_DEFAULT
, open_flags
, 0644);
42 static struct db_record
*connections_fetch_record(TALLOC_CTX
*mem_ctx
,
45 struct db_context
*ctx
= connections_db_ctx(True
);
51 return dbwrap_fetch_locked(ctx
, mem_ctx
, key
);
54 struct db_record
*connections_fetch_entry(TALLOC_CTX
*mem_ctx
,
55 connection_struct
*conn
,
58 struct connections_key ckey
;
62 ckey
.pid
= sconn_server_id(conn
->sconn
);
63 ckey
.cnum
= conn
->cnum
;
64 strlcpy(ckey
.name
, name
, sizeof(ckey
.name
));
66 key
.dsize
= sizeof(ckey
);
67 key
.dptr
= (uint8
*)&ckey
;
69 return connections_fetch_record(mem_ctx
, key
);
72 struct conn_traverse_state
{
73 int (*fn
)(struct db_record
*rec
,
74 const struct connections_key
*key
,
75 const struct connections_data
*data
,
80 static int conn_traverse_fn(struct db_record
*rec
, void *private_data
)
84 struct conn_traverse_state
*state
=
85 (struct conn_traverse_state
*)private_data
;
87 key
= dbwrap_record_get_key(rec
);
88 value
= dbwrap_record_get_value(rec
);
90 if ((key
.dsize
!= sizeof(struct connections_key
))
91 || (value
.dsize
!= sizeof(struct connections_data
))) {
95 return state
->fn(rec
, (const struct connections_key
*)key
.dptr
,
96 (const struct connections_data
*)value
.dptr
,
100 int connections_traverse(int (*fn
)(struct db_record
*rec
,
106 struct db_context
*ctx
= connections_db_ctx(False
);
112 status
= dbwrap_traverse(ctx
, fn
, private_data
, &count
);
113 if (!NT_STATUS_IS_OK(status
)) {
120 int connections_forall(int (*fn
)(struct db_record
*rec
,
121 const struct connections_key
*key
,
122 const struct connections_data
*data
,
126 struct db_context
*ctx
;
127 struct conn_traverse_state state
;
131 ctx
= connections_db_ctx(true);
137 state
.private_data
= private_data
;
139 status
= dbwrap_traverse(ctx
, conn_traverse_fn
, (void *)&state
, &count
);
140 if (!NT_STATUS_IS_OK(status
)) {
147 struct conn_traverse_read_state
{
148 int (*fn
)(const struct connections_key
*key
,
149 const struct connections_data
*data
,
154 static int connections_forall_read_fn(struct db_record
*rec
,
159 struct conn_traverse_read_state
*state
=
160 (struct conn_traverse_read_state
*)private_data
;
162 key
= dbwrap_record_get_key(rec
);
163 value
= dbwrap_record_get_value(rec
);
165 if ((key
.dsize
!= sizeof(struct connections_key
))
166 || (value
.dsize
!= sizeof(struct connections_data
))) {
169 return state
->fn((const struct connections_key
*)key
.dptr
,
170 (const struct connections_data
*)value
.dptr
,
171 state
->private_data
);
174 int connections_forall_read(int (*fn
)(const struct connections_key
*key
,
175 const struct connections_data
*data
,
179 struct db_context
*ctx
;
180 struct conn_traverse_read_state state
;
184 ctx
= connections_db_ctx(false);
190 state
.private_data
= private_data
;
192 status
= dbwrap_traverse_read(ctx
, connections_forall_read_fn
,
193 (void *)&state
, &count
);
195 if (!NT_STATUS_IS_OK(status
)) {
202 bool connections_init(bool rw
)
204 return (connections_db_ctx(rw
) != NULL
);