2 Unix SMB/CIFS implementation.
3 Database interface wrapper
4 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2006
6 Major code contributions from Aleksey Fedoseev (fedoseev@ru.ibm.com)
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #ifdef CLUSTER_SUPPORT
24 #include "ctdb_private.h"
27 * Fall back using fetch_locked if no genuine fetch operation is provided
30 static int dbwrap_fallback_fetch(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
31 TDB_DATA key
, TDB_DATA
*data
)
33 struct db_record
*rec
;
35 if (!(rec
= db
->fetch_locked(db
, mem_ctx
, key
))) {
39 data
->dsize
= rec
->value
.dsize
;
40 data
->dptr
= talloc_move(mem_ctx
, &rec
->value
.dptr
);
46 * Fall back using fetch if no genuine parse operation is provided
49 static int dbwrap_fallback_parse_record(struct db_context
*db
, TDB_DATA key
,
50 int (*parser
)(TDB_DATA key
,
58 res
= db
->fetch(db
, talloc_tos(), key
, &data
);
63 res
= parser(key
, data
, private_data
);
64 TALLOC_FREE(data
.dptr
);
68 bool db_is_local(const char *name
)
70 #ifdef CLUSTER_SUPPORT
71 const char *sockname
= lp_ctdbd_socket();
73 if(!sockname
|| !*sockname
) {
77 if (lp_clustering() && socket_exist(sockname
)) {
79 /* ctdb only wants the file part of the name */
80 partname
= strrchr(name
, '/');
86 /* allow ctdb for individual databases to be disabled */
87 if (lp_parm_bool(-1, "ctdb", partname
, True
)) {
98 struct db_context
*db_open(TALLOC_CTX
*mem_ctx
,
100 int hash_size
, int tdb_flags
,
101 int open_flags
, mode_t mode
)
103 struct db_context
*result
= NULL
;
104 #ifdef CLUSTER_SUPPORT
105 const char *sockname
= lp_ctdbd_socket();
108 #ifdef CLUSTER_SUPPORT
109 if(!sockname
|| !*sockname
) {
110 sockname
= CTDB_PATH
;
113 if (lp_clustering()) {
114 const char *partname
;
116 if (!socket_exist(sockname
)) {
117 DEBUG(1, ("ctdb socket does not exist - is ctdb not "
122 /* ctdb only wants the file part of the name */
123 partname
= strrchr(name
, '/');
129 /* allow ctdb for individual databases to be disabled */
130 if (lp_parm_bool(-1, "ctdb", partname
, True
)) {
131 result
= db_open_ctdb(mem_ctx
, partname
, hash_size
,
132 tdb_flags
, open_flags
, mode
);
133 if (result
== NULL
) {
134 DEBUG(0,("failed to attach to ctdb %s\n",
146 if (result
== NULL
) {
147 result
= db_open_tdb(mem_ctx
, name
, hash_size
,
148 tdb_flags
, open_flags
, mode
);
151 if ((result
!= NULL
) && (result
->fetch
== NULL
)) {
152 result
->fetch
= dbwrap_fallback_fetch
;
154 if ((result
!= NULL
) && (result
->parse_record
== NULL
)) {
155 result
->parse_record
= dbwrap_fallback_parse_record
;
161 NTSTATUS
dbwrap_delete(struct db_context
*db
, TDB_DATA key
)
163 struct db_record
*rec
;
166 rec
= db
->fetch_locked(db
, talloc_tos(), key
);
168 return NT_STATUS_NO_MEMORY
;
170 status
= rec
->delete_rec(rec
);
175 NTSTATUS
dbwrap_store(struct db_context
*db
, TDB_DATA key
,
176 TDB_DATA data
, int flags
)
178 struct db_record
*rec
;
181 rec
= db
->fetch_locked(db
, talloc_tos(), key
);
183 return NT_STATUS_NO_MEMORY
;
186 status
= rec
->store(rec
, data
, flags
);
191 TDB_DATA
dbwrap_fetch(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
196 if (db
->fetch(db
, mem_ctx
, key
, &result
) == -1) {
197 return make_tdb_data(NULL
, 0);
203 NTSTATUS
dbwrap_delete_bystring(struct db_context
*db
, const char *key
)
205 return dbwrap_delete(db
, string_term_tdb_data(key
));
208 NTSTATUS
dbwrap_store_bystring(struct db_context
*db
, const char *key
,
209 TDB_DATA data
, int flags
)
211 return dbwrap_store(db
, string_term_tdb_data(key
), data
, flags
);
214 TDB_DATA
dbwrap_fetch_bystring(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
217 return dbwrap_fetch(db
, mem_ctx
, string_term_tdb_data(key
));