2 Unix SMB/CIFS implementation.
3 Database interface wrapper around tdb
4 Copyright (C) Volker Lendecke 2005-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/>.
25 #include "libcli/util/ntstatus.h"
27 #include "lib/param/loadparm.h"
32 enum dbwrap_lock_order
{
33 DBWRAP_LOCK_ORDER_NONE
= 0, /* Don't check lock orders for this db. */
35 * We only allow orders 1, 2, 3:
36 * These are the orders that CTDB currently supports.
38 DBWRAP_LOCK_ORDER_1
= 1,
39 DBWRAP_LOCK_ORDER_2
= 2,
40 DBWRAP_LOCK_ORDER_3
= 3
43 #define DBWRAP_FLAG_NONE 0x0000000000000000ULL
44 #define DBWRAP_FLAG_OPTIMIZE_READONLY_ACCESS 0x0000000000000001ULL
46 /* The following definitions come from lib/dbwrap.c */
48 TDB_DATA
dbwrap_record_get_key(const struct db_record
*rec
);
49 TDB_DATA
dbwrap_record_get_value(const struct db_record
*rec
);
50 NTSTATUS
dbwrap_record_store(struct db_record
*rec
, TDB_DATA data
, int flags
);
51 NTSTATUS
dbwrap_record_delete(struct db_record
*rec
);
52 struct db_record
*dbwrap_fetch_locked(struct db_context
*db
,
55 struct db_record
*dbwrap_try_fetch_locked(struct db_context
*db
,
58 struct db_context
*dbwrap_record_get_db(struct db_record
*rec
);
60 NTSTATUS
dbwrap_delete(struct db_context
*db
, TDB_DATA key
);
61 NTSTATUS
dbwrap_store(struct db_context
*db
, TDB_DATA key
,
62 TDB_DATA data
, int flags
);
63 NTSTATUS
dbwrap_fetch(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
64 TDB_DATA key
, TDB_DATA
*value
);
65 bool dbwrap_exists(struct db_context
*db
, TDB_DATA key
);
66 NTSTATUS
dbwrap_traverse(struct db_context
*db
,
67 int (*f
)(struct db_record
*, void*),
70 NTSTATUS
dbwrap_traverse_read(struct db_context
*db
,
71 int (*f
)(struct db_record
*, void*),
74 NTSTATUS
dbwrap_parse_record(struct db_context
*db
, TDB_DATA key
,
75 void (*parser
)(TDB_DATA key
, TDB_DATA data
,
78 int dbwrap_wipe(struct db_context
*db
);
79 int dbwrap_check(struct db_context
*db
);
80 int dbwrap_get_seqnum(struct db_context
*db
);
81 /* Returns 0 if unknown. */
82 int dbwrap_transaction_start(struct db_context
*db
);
83 NTSTATUS
dbwrap_transaction_start_nonblock(struct db_context
*db
);
84 int dbwrap_transaction_commit(struct db_context
*db
);
85 int dbwrap_transaction_cancel(struct db_context
*db
);
86 size_t dbwrap_db_id(struct db_context
*db
, uint8_t *id
, size_t idlen
);
87 bool dbwrap_is_persistent(struct db_context
*db
);
88 const char *dbwrap_name(struct db_context
*db
);
90 /* The following definitions come from lib/dbwrap_util.c */
92 NTSTATUS
dbwrap_purge(struct db_context
*db
, TDB_DATA key
);
93 NTSTATUS
dbwrap_purge_bystring(struct db_context
*db
, const char *key
);
94 NTSTATUS
dbwrap_delete_bystring(struct db_context
*db
, const char *key
);
95 NTSTATUS
dbwrap_store_bystring(struct db_context
*db
, const char *key
,
96 TDB_DATA data
, int flags
);
97 NTSTATUS
dbwrap_fetch_bystring(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
98 const char *key
, TDB_DATA
*value
);
100 NTSTATUS
dbwrap_fetch_int32(struct db_context
*db
, TDB_DATA key
,
102 NTSTATUS
dbwrap_fetch_int32_bystring(struct db_context
*db
, const char *keystr
,
104 NTSTATUS
dbwrap_store_int32_bystring(struct db_context
*db
, const char *keystr
,
106 NTSTATUS
dbwrap_fetch_uint32_bystring(struct db_context
*db
,
107 const char *keystr
, uint32_t *val
);
108 NTSTATUS
dbwrap_store_uint32_bystring(struct db_context
*db
,
109 const char *keystr
, uint32_t v
);
110 NTSTATUS
dbwrap_change_uint32_atomic_bystring(struct db_context
*db
,
113 uint32_t change_val
);
114 NTSTATUS
dbwrap_trans_change_uint32_atomic_bystring(struct db_context
*db
,
117 uint32_t change_val
);
118 NTSTATUS
dbwrap_change_int32_atomic(struct db_context
*db
,
122 NTSTATUS
dbwrap_change_int32_atomic_bystring(struct db_context
*db
,
126 NTSTATUS
dbwrap_trans_change_int32_atomic_bystring(struct db_context
*db
,
130 NTSTATUS
dbwrap_trans_store(struct db_context
*db
, TDB_DATA key
, TDB_DATA dbuf
,
132 NTSTATUS
dbwrap_trans_delete(struct db_context
*db
, TDB_DATA key
);
133 NTSTATUS
dbwrap_trans_store_int32_bystring(struct db_context
*db
,
136 NTSTATUS
dbwrap_trans_store_uint32_bystring(struct db_context
*db
,
139 NTSTATUS
dbwrap_trans_store_bystring(struct db_context
*db
, const char *key
,
140 TDB_DATA data
, int flags
);
141 NTSTATUS
dbwrap_trans_delete_bystring(struct db_context
*db
, const char *key
);
142 NTSTATUS
dbwrap_trans_do(struct db_context
*db
,
143 NTSTATUS (*action
)(struct db_context
*, void *),
145 NTSTATUS
dbwrap_trans_traverse(struct db_context
*db
,
146 int (*f
)(struct db_record
*, void*),
149 NTSTATUS
dbwrap_delete_bystring_upper(struct db_context
*db
, const char *key
);
150 NTSTATUS
dbwrap_store_bystring_upper(struct db_context
*db
, const char *key
,
151 TDB_DATA data
, int flags
);
152 NTSTATUS
dbwrap_fetch_bystring_upper(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
153 const char *key
, TDB_DATA
*value
);
155 size_t dbwrap_marshall(struct db_context
*db
, uint8_t *buf
, size_t bufsize
);
156 NTSTATUS
dbwrap_parse_marshall_buf(const uint8_t *buf
, size_t buflen
,
157 bool (*fn
)(TDB_DATA key
, TDB_DATA value
,
160 NTSTATUS
dbwrap_unmarshall(struct db_context
*db
, const uint8_t *buf
,
165 * This opens a tdb file
167 struct db_context
*dbwrap_local_open(TALLOC_CTX
*mem_ctx
,
168 struct loadparm_context
*lp_ctx
,
170 int hash_size
, int tdb_flags
,
171 int open_flags
, mode_t mode
,
172 enum dbwrap_lock_order lock_order
,
173 uint64_t dbwrap_flags
);
175 #endif /* __DBWRAP_H__ */