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/>.
28 enum dbwrap_lock_order
{
29 DBWRAP_LOCK_ORDER_1
= 1,
30 DBWRAP_LOCK_ORDER_2
= 2,
31 DBWRAP_LOCK_ORDER_3
= 3
33 #define DBWRAP_LOCK_ORDER_MAX DBWRAP_LOCK_ORDER_3
35 #define DBWRAP_FLAG_NONE 0x0000000000000000ULL
36 #define DBWRAP_FLAG_OPTIMIZE_READONLY_ACCESS 0x0000000000000001ULL
38 /* The following definitions come from lib/dbwrap.c */
40 TDB_DATA
dbwrap_record_get_key(const struct db_record
*rec
);
41 TDB_DATA
dbwrap_record_get_value(const struct db_record
*rec
);
42 NTSTATUS
dbwrap_record_store(struct db_record
*rec
, TDB_DATA data
, int flags
);
43 NTSTATUS
dbwrap_record_delete(struct db_record
*rec
);
44 struct db_record
*dbwrap_fetch_locked(struct db_context
*db
,
47 struct db_record
*dbwrap_try_fetch_locked(struct db_context
*db
,
50 struct db_context
*dbwrap_record_get_db(struct db_record
*rec
);
51 void dbwrap_set_stored_callback(
52 struct db_context
*db
,
53 void (*cb
)(struct db_context
*db
, struct db_record
*rec
,
57 NTSTATUS
dbwrap_delete(struct db_context
*db
, TDB_DATA key
);
58 NTSTATUS
dbwrap_store(struct db_context
*db
, TDB_DATA key
,
59 TDB_DATA data
, int flags
);
60 NTSTATUS
dbwrap_fetch(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
61 TDB_DATA key
, TDB_DATA
*value
);
62 bool dbwrap_exists(struct db_context
*db
, TDB_DATA key
);
63 NTSTATUS
dbwrap_traverse(struct db_context
*db
,
64 int (*f
)(struct db_record
*, void*),
67 NTSTATUS
dbwrap_traverse_read(struct db_context
*db
,
68 int (*f
)(struct db_record
*, void*),
71 NTSTATUS
dbwrap_parse_record(struct db_context
*db
, TDB_DATA key
,
72 void (*parser
)(TDB_DATA key
, TDB_DATA data
,
75 int dbwrap_wipe(struct db_context
*db
);
76 int dbwrap_check(struct db_context
*db
);
77 int dbwrap_get_seqnum(struct db_context
*db
);
78 /* Returns 0 if unknown. */
79 int dbwrap_hash_size(struct db_context
*db
);
80 int dbwrap_transaction_start(struct db_context
*db
);
81 NTSTATUS
dbwrap_transaction_start_nonblock(struct db_context
*db
);
82 int dbwrap_transaction_commit(struct db_context
*db
);
83 int dbwrap_transaction_cancel(struct db_context
*db
);
84 void dbwrap_db_id(struct db_context
*db
, const uint8_t **id
, size_t *idlen
);
85 bool dbwrap_is_persistent(struct db_context
*db
);
86 const char *dbwrap_name(struct db_context
*db
);
88 /* The following definitions come from lib/dbwrap_util.c */
90 NTSTATUS
dbwrap_delete_bystring(struct db_context
*db
, const char *key
);
91 NTSTATUS
dbwrap_store_bystring(struct db_context
*db
, const char *key
,
92 TDB_DATA data
, int flags
);
93 NTSTATUS
dbwrap_fetch_bystring(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
94 const char *key
, TDB_DATA
*value
);
96 NTSTATUS
dbwrap_fetch_int32(struct db_context
*db
, TDB_DATA key
,
98 NTSTATUS
dbwrap_fetch_int32_bystring(struct db_context
*db
, const char *keystr
,
100 NTSTATUS
dbwrap_store_int32_bystring(struct db_context
*db
, const char *keystr
,
102 NTSTATUS
dbwrap_fetch_uint32_bystring(struct db_context
*db
,
103 const char *keystr
, uint32_t *val
);
104 NTSTATUS
dbwrap_store_uint32_bystring(struct db_context
*db
,
105 const char *keystr
, uint32_t v
);
106 NTSTATUS
dbwrap_change_uint32_atomic_bystring(struct db_context
*db
,
109 uint32_t change_val
);
110 NTSTATUS
dbwrap_trans_change_uint32_atomic_bystring(struct db_context
*db
,
113 uint32_t change_val
);
114 NTSTATUS
dbwrap_change_int32_atomic(struct db_context
*db
,
118 NTSTATUS
dbwrap_change_int32_atomic_bystring(struct db_context
*db
,
122 NTSTATUS
dbwrap_trans_change_int32_atomic_bystring(struct db_context
*db
,
126 NTSTATUS
dbwrap_trans_store(struct db_context
*db
, TDB_DATA key
, TDB_DATA dbuf
,
128 NTSTATUS
dbwrap_trans_delete(struct db_context
*db
, TDB_DATA key
);
129 NTSTATUS
dbwrap_trans_store_int32_bystring(struct db_context
*db
,
132 NTSTATUS
dbwrap_trans_store_uint32_bystring(struct db_context
*db
,
135 NTSTATUS
dbwrap_trans_store_bystring(struct db_context
*db
, const char *key
,
136 TDB_DATA data
, int flags
);
137 NTSTATUS
dbwrap_trans_delete_bystring(struct db_context
*db
, const char *key
);
138 NTSTATUS
dbwrap_trans_do(struct db_context
*db
,
139 NTSTATUS (*action
)(struct db_context
*, void *),
141 NTSTATUS
dbwrap_trans_traverse(struct db_context
*db
,
142 int (*f
)(struct db_record
*, void*),
145 NTSTATUS
dbwrap_delete_bystring_upper(struct db_context
*db
, const char *key
);
146 NTSTATUS
dbwrap_store_bystring_upper(struct db_context
*db
, const char *key
,
147 TDB_DATA data
, int flags
);
148 NTSTATUS
dbwrap_fetch_bystring_upper(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
149 const char *key
, TDB_DATA
*value
);
152 * This opens an ntdb or tdb file: you can hand it a .ntdb or .tdb extension
153 * and it will decide (based on parameter settings, or else what exists) which
156 * For backwards compatibility, it takes tdb-style open flags, not ntdb!
158 struct db_context
*dbwrap_local_open(TALLOC_CTX
*mem_ctx
,
159 struct loadparm_context
*lp_ctx
,
161 int hash_size
, int tdb_flags
,
162 int open_flags
, mode_t mode
,
163 enum dbwrap_lock_order lock_order
);
165 #endif /* __DBWRAP_H__ */