2 Unix SMB/CIFS implementation.
3 Utility functions for the dbwrap API
4 Copyright (C) Volker Lendecke 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 2 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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 int32_t dbwrap_fetch_int32(struct db_context
*db
, const char *keystr
)
28 if (db
->fetch(db
, NULL
, string_term_tdb_data(keystr
), &dbuf
) != 0) {
32 if ((dbuf
.dptr
== NULL
) || (dbuf
.dsize
!= sizeof(int32_t))) {
33 TALLOC_FREE(dbuf
.dptr
);
37 ret
= IVAL(dbuf
.dptr
, 0);
38 TALLOC_FREE(dbuf
.dptr
);
42 int dbwrap_store_int32(struct db_context
*db
, const char *keystr
, int32_t v
)
44 struct db_record
*rec
;
48 rec
= db
->fetch_locked(db
, NULL
, string_term_tdb_data(keystr
));
53 SIVAL(&v_store
, 0, v
);
55 status
= rec
->store(rec
, make_tdb_data((const uint8
*)&v_store
,
59 return NT_STATUS_IS_OK(status
) ? 0 : -1;
62 bool dbwrap_fetch_uint32(struct db_context
*db
, const char *keystr
,
67 if (db
->fetch(db
, NULL
, string_term_tdb_data(keystr
), &dbuf
) != 0) {
71 if ((dbuf
.dptr
== NULL
) || (dbuf
.dsize
!= sizeof(uint32_t))) {
72 TALLOC_FREE(dbuf
.dptr
);
76 *val
= IVAL(dbuf
.dptr
, 0);
77 TALLOC_FREE(dbuf
.dptr
);
81 bool dbwrap_store_uint32(struct db_context
*db
, const char *keystr
, uint32_t v
)
83 struct db_record
*rec
;
87 rec
= db
->fetch_locked(db
, NULL
, string_term_tdb_data(keystr
));
92 SIVAL(&v_store
, 0, v
);
94 status
= rec
->store(rec
, make_tdb_data((const uint8
*)&v_store
,
98 return NT_STATUS_IS_OK(status
) ? 0 : -1;
102 * Atomic unsigned integer change (addition):
104 * if value does not exist yet in the db, use *oldval as initial old value.
105 * return old value in *oldval.
106 * store *oldval + change_val to db.
108 uint32_t dbwrap_change_uint32_atomic(struct db_context
*db
, const char *keystr
,
109 uint32_t *oldval
, uint32_t change_val
)
111 struct db_record
*rec
;
115 if (!(rec
= db
->fetch_locked(db
, NULL
,
116 string_term_tdb_data(keystr
)))) {
120 if (rec
->value
.dptr
== NULL
) {
122 } else if (rec
->value
.dsize
== sizeof(val
)) {
123 val
= IVAL(rec
->value
.dptr
, 0);
131 data
.dsize
= sizeof(val
);
132 data
.dptr
= (uint8
*)&val
;
134 rec
->store(rec
, data
, TDB_REPLACE
);
142 * Atomic integer change (addition):
144 * if value does not exist yet in the db, use *oldval as initial old value.
145 * return old value in *oldval.
146 * store *oldval + change_val to db.
148 int32
dbwrap_change_int32_atomic(struct db_context
*db
, const char *keystr
,
149 int32
*oldval
, int32 change_val
)
151 struct db_record
*rec
;
155 if (!(rec
= db
->fetch_locked(db
, NULL
,
156 string_term_tdb_data(keystr
)))) {
160 if (rec
->value
.dptr
== NULL
) {
162 } else if (rec
->value
.dsize
== sizeof(val
)) {
163 val
= IVAL(rec
->value
.dptr
, 0);
171 data
.dsize
= sizeof(val
);
172 data
.dptr
= (uint8
*)&val
;
174 rec
->store(rec
, data
, TDB_REPLACE
);
181 NTSTATUS
dbwrap_trans_store(struct db_context
*db
, TDB_DATA key
, TDB_DATA dbuf
,
185 struct db_record
*rec
= NULL
;
188 res
= db
->transaction_start(db
);
190 DEBUG(5, ("transaction_start failed\n"));
191 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
194 rec
= db
->fetch_locked(db
, talloc_tos(), key
);
196 DEBUG(5, ("fetch_locked failed\n"));
197 status
= NT_STATUS_NO_MEMORY
;
201 status
= rec
->store(rec
, dbuf
, flag
);
202 if (!NT_STATUS_IS_OK(status
)) {
203 DEBUG(5, ("store returned %s\n", nt_errstr(status
)));
209 res
= db
->transaction_commit(db
);
211 DEBUG(5, ("tdb_transaction_commit failed\n"));
212 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
221 if (db
->transaction_cancel(db
) != 0) {
222 smb_panic("Cancelling transaction failed");
227 NTSTATUS
dbwrap_trans_delete(struct db_context
*db
, TDB_DATA key
)
230 struct db_record
*rec
= NULL
;
233 res
= db
->transaction_start(db
);
235 DEBUG(5, ("transaction_start failed\n"));
236 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
239 rec
= db
->fetch_locked(db
, talloc_tos(), key
);
241 DEBUG(5, ("fetch_locked failed\n"));
242 status
= NT_STATUS_NO_MEMORY
;
246 status
= rec
->delete_rec(rec
);
247 if (!NT_STATUS_IS_OK(status
)) {
248 DEBUG(5, ("delete_rec returned %s\n", nt_errstr(status
)));
254 res
= db
->transaction_commit(db
);
256 DEBUG(5, ("tdb_transaction_commit failed\n"));
257 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
266 if (db
->transaction_cancel(db
) != 0) {
267 smb_panic("Cancelling transaction failed");
272 NTSTATUS
dbwrap_trans_store_int32(struct db_context
*db
, const char *keystr
,
277 SIVAL(&v_store
, 0, v
);
279 return dbwrap_trans_store(db
, string_term_tdb_data(keystr
),
280 make_tdb_data((const uint8
*)&v_store
,
285 NTSTATUS
dbwrap_trans_store_uint32(struct db_context
*db
, const char *keystr
,
290 SIVAL(&v_store
, 0, v
);
292 return dbwrap_trans_store(db
, string_term_tdb_data(keystr
),
293 make_tdb_data((const uint8
*)&v_store
,
298 NTSTATUS
dbwrap_trans_store_bystring(struct db_context
*db
, const char *key
,
299 TDB_DATA data
, int flags
)
301 return dbwrap_trans_store(db
, string_term_tdb_data(key
), data
, flags
);
304 NTSTATUS
dbwrap_trans_delete_bystring(struct db_context
*db
, const char *key
)
306 return dbwrap_trans_delete(db
, string_term_tdb_data(key
));