1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/*
Unix SMB/CIFS implementation.
Low-level connections.tdb access functions
Copyright (C) Volker Lendecke 2007
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
static struct db_context *connections_db_ctx(bool rw)
{
static struct db_context *db_ctx;
if (db_ctx != NULL) {
return db_ctx;
}
if (rw) {
db_ctx = db_open(NULL, lock_path("connections.tdb"), 0,
TDB_CLEAR_IF_FIRST|TDB_DEFAULT,
O_RDWR | O_CREAT, 0644);
}
else {
db_ctx = db_open(NULL, lock_path("connections.tdb"), 0,
TDB_DEFAULT, O_RDONLY, 0);
}
return db_ctx;
}
struct db_record *connections_fetch_record(TALLOC_CTX *mem_ctx,
TDB_DATA key)
{
struct db_context *ctx = connections_db_ctx(True);
if (ctx == NULL) {
return NULL;
}
return ctx->fetch_locked(ctx, mem_ctx, key);
}
struct db_record *connections_fetch_entry(TALLOC_CTX *mem_ctx,
connection_struct *conn,
const char *name)
{
struct connections_key ckey;
TDB_DATA key;
ZERO_STRUCT(ckey);
ckey.pid = procid_self();
ckey.cnum = conn ? conn->cnum : -1;
strlcpy(ckey.name, name, sizeof(ckey.name));
key.dsize = sizeof(ckey);
key.dptr = (uint8 *)&ckey;
return connections_fetch_record(mem_ctx, key);
}
struct conn_traverse_state {
int (*fn)(struct db_record *rec,
const struct connections_key *key,
const struct connections_data *data,
void *private_data);
void *private_data;
};
static int conn_traverse_fn(struct db_record *rec, void *private_data)
{
struct conn_traverse_state *state =
(struct conn_traverse_state *)private_data;
if ((rec->key.dsize != sizeof(struct connections_key))
|| (rec->value.dsize != sizeof(struct connections_data))) {
return 0;
}
return state->fn(rec, (const struct connections_key *)rec->key.dptr,
(const struct connections_data *)rec->value.dptr,
state->private_data);
}
int connections_traverse(int (*fn)(struct db_record *rec,
void *private_data),
void *private_data)
{
struct db_context *ctx = connections_db_ctx(False);
if (ctx == NULL) {
return -1;
}
return ctx->traverse(ctx, fn, private_data);
}
int connections_forall(int (*fn)(struct db_record *rec,
const struct connections_key *key,
const struct connections_data *data,
void *private_data),
void *private_data)
{
struct conn_traverse_state state;
state.fn = fn;
state.private_data = private_data;
return connections_traverse(conn_traverse_fn, (void *)&state);
}
bool connections_init(bool rw)
{
return (connections_db_ctx(rw) != NULL);
}
|