2 Unix SMB/CIFS implementation.
3 Low-level sessionid.tdb access functions
4 Copyright (C) Volker Lendecke 2010
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"
26 static struct db_context
*session_db_ctx(void)
28 static struct db_context
*session_db_ctx_ptr
;
30 if (session_db_ctx_ptr
!= NULL
) {
31 return session_db_ctx_ptr
;
34 session_db_ctx_ptr
= db_open(NULL
, lock_path("sessionid.tdb"), 0,
35 TDB_CLEAR_IF_FIRST
|TDB_DEFAULT
|TDB_INCOMPATIBLE_HASH
,
36 O_RDWR
| O_CREAT
, 0644);
37 return session_db_ctx_ptr
;
40 bool sessionid_init(void)
42 if (session_db_ctx() == NULL
) {
43 DEBUG(1,("session_init: failed to open sessionid tdb\n"));
50 struct db_record
*sessionid_fetch_record(TALLOC_CTX
*mem_ctx
, const char *key
)
52 struct db_context
*db
;
54 db
= session_db_ctx();
58 return db
->fetch_locked(db
, mem_ctx
, string_term_tdb_data(key
));
61 struct sessionid_traverse_state
{
62 int (*fn
)(struct db_record
*rec
, const char *key
,
63 struct sessionid
*session
, void *private_data
);
67 static int sessionid_traverse_fn(struct db_record
*rec
, void *private_data
)
69 struct sessionid_traverse_state
*state
=
70 (struct sessionid_traverse_state
*)private_data
;
71 struct sessionid session
;
73 if ((rec
->key
.dptr
[rec
->key
.dsize
-1] != '\0')
74 || (rec
->value
.dsize
!= sizeof(struct sessionid
))) {
75 DEBUG(1, ("Found invalid record in sessionid.tdb\n"));
79 memcpy(&session
, rec
->value
.dptr
, sizeof(session
));
81 return state
->fn(rec
, (char *)rec
->key
.dptr
, &session
,
85 int sessionid_traverse(int (*fn
)(struct db_record
*rec
, const char *key
,
86 struct sessionid
*session
,
90 struct db_context
*db
;
91 struct sessionid_traverse_state state
;
93 db
= session_db_ctx();
98 state
.private_data
= private_data
;
99 return db
->traverse(db
, sessionid_traverse_fn
, &state
);
102 struct sessionid_traverse_read_state
{
103 int (*fn
)(const char *key
, struct sessionid
*session
,
108 static int sessionid_traverse_read_fn(struct db_record
*rec
,
111 struct sessionid_traverse_read_state
*state
=
112 (struct sessionid_traverse_read_state
*)private_data
;
113 struct sessionid session
;
115 if ((rec
->key
.dptr
[rec
->key
.dsize
-1] != '\0')
116 || (rec
->value
.dsize
!= sizeof(struct sessionid
))) {
117 DEBUG(1, ("Found invalid record in sessionid.tdb\n"));
121 memcpy(&session
, rec
->value
.dptr
, sizeof(session
));
123 return state
->fn((char *)rec
->key
.dptr
, &session
,
124 state
->private_data
);
127 int sessionid_traverse_read(int (*fn
)(const char *key
,
128 struct sessionid
*session
,
132 struct db_context
*db
;
133 struct sessionid_traverse_read_state state
;
135 db
= session_db_ctx();
140 state
.private_data
= private_data
;
141 return db
->traverse(db
, sessionid_traverse_read_fn
, &state
);