2 Samba Unix/Linux CIFS implementation
4 low level TDB/CTDB tool using the dbwrap interface
6 Copyright (C) 2009 Michael Adam <obnox@samba.org>
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/>.
24 extern bool AllowDebugChange
;
26 typedef enum { OP_FETCH
, OP_STORE
, OP_DELETE
, OP_ERASE
, OP_LISTKEYS
} dbwrap_op
;
28 typedef enum { TYPE_INT32
, TYPE_UINT32
} dbwrap_type
;
30 static int dbwrap_tool_fetch_int32(struct db_context
*db
,
36 value
= dbwrap_fetch_int32(db
, keyname
);
37 d_printf("%d\n", value
);
42 static int dbwrap_tool_fetch_uint32(struct db_context
*db
,
49 ret
= dbwrap_fetch_uint32(db
, keyname
, &value
);
51 d_printf("%u\n", value
);
54 d_fprintf(stderr
, "ERROR: could not fetch uint32 key '%s'\n",
60 static int dbwrap_tool_store_int32(struct db_context
*db
,
65 int32_t value
= *((int32_t *)data
);
67 status
= dbwrap_trans_store_int32(db
, keyname
, value
);
69 if (!NT_STATUS_IS_OK(status
)) {
70 d_fprintf(stderr
, "ERROR: could not store int32 key '%s': %s\n",
71 keyname
, nt_errstr(status
));
78 static int dbwrap_tool_store_uint32(struct db_context
*db
,
83 uint32_t value
= *((uint32_t *)data
);
85 status
= dbwrap_trans_store_uint32(db
, keyname
, value
);
87 if (!NT_STATUS_IS_OK(status
)) {
89 "ERROR: could not store uint32 key '%s': %s\n",
90 keyname
, nt_errstr(status
));
97 static int dbwrap_tool_delete(struct db_context
*db
,
103 status
= dbwrap_trans_delete_bystring(db
, keyname
);
105 if (!NT_STATUS_IS_OK(status
)) {
106 d_fprintf(stderr
, "ERROR deleting record %s : %s\n",
107 keyname
, nt_errstr(status
));
114 static int delete_fn(struct db_record
*rec
, void *priv
)
116 rec
->delete_rec(rec
);
121 * dbwrap_tool_erase: erase the whole data base
122 * the keyname argument is not used.
124 static int dbwrap_tool_erase(struct db_context
*db
,
130 ret
= db
->traverse(db
, delete_fn
, NULL
);
133 d_fprintf(stderr
, "ERROR erasing the database\n");
140 static int listkey_fn(struct db_record
*rec
, void *private_data
)
142 int length
= rec
->key
.dsize
;
143 unsigned char *p
= (unsigned char *)rec
->key
.dptr
;
146 if (isprint(*p
) && !strchr("\"\\", *p
)) {
149 d_printf("\\%02X", *p
);
159 static int dbwrap_tool_listkeys(struct db_context
*db
,
165 ret
= db
->traverse_read(db
, listkey_fn
, NULL
);
168 d_fprintf(stderr
, "ERROR listing db keys\n");
175 struct dbwrap_op_dispatch_table
{
178 int (*cmd
)(struct db_context
*db
,
183 struct dbwrap_op_dispatch_table dispatch_table
[] = {
184 { OP_FETCH
, TYPE_INT32
, dbwrap_tool_fetch_int32
},
185 { OP_FETCH
, TYPE_UINT32
, dbwrap_tool_fetch_uint32
},
186 { OP_STORE
, TYPE_INT32
, dbwrap_tool_store_int32
},
187 { OP_STORE
, TYPE_UINT32
, dbwrap_tool_store_uint32
},
188 { OP_DELETE
, TYPE_INT32
, dbwrap_tool_delete
},
189 { OP_ERASE
, TYPE_INT32
, dbwrap_tool_erase
},
190 { OP_LISTKEYS
, TYPE_INT32
, dbwrap_tool_listkeys
},
194 int main(int argc
, const char **argv
)
196 struct tevent_context
*evt_ctx
;
197 struct messaging_context
*msg_ctx
;
198 struct db_context
*db
;
205 const char *keyname
= "";
206 const char *keytype
= "int32";
208 const char *valuestr
= "0";
211 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
216 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 0;
218 AllowDebugChange
= false;
219 lp_load(get_dyn_CONFIGFILE(), true, false, false, true);
221 if ((argc
< 3) || (argc
> 6)) {
223 "USAGE: %s <database> <op> [<key> [<type> [<value>]]]\n"
224 " ops: fetch, store, delete, erase, listkeys\n"
225 " types: int32, uint32\n",
233 if (strcmp(opname
, "store") == 0) {
235 d_fprintf(stderr
, "ERROR: operation 'store' requires "
243 } else if (strcmp(opname
, "fetch") == 0) {
245 d_fprintf(stderr
, "ERROR: operation 'fetch' requires "
246 "type but not value argument\n");
252 } else if (strcmp(opname
, "delete") == 0) {
254 d_fprintf(stderr
, "ERROR: operation 'delete' does "
255 "not allow type nor value argument\n");
260 } else if (strcmp(opname
, "erase") == 0) {
262 d_fprintf(stderr
, "ERROR: operation 'erase' does "
263 "not take a key argument\n");
267 } else if (strcmp(opname
, "listkeys") == 0) {
269 d_fprintf(stderr
, "ERROR: operation 'listkeys' does "
270 "not take a key argument\n");
276 "ERROR: invalid op '%s' specified\n"
277 " supported ops: fetch, store, delete\n",
282 if (strcmp(keytype
, "int32") == 0) {
284 value
= (int32_t)strtol(valuestr
, NULL
, 10);
285 } else if (strcmp(keytype
, "uint32") == 0) {
287 value
= (int32_t)strtoul(valuestr
, NULL
, 10);
289 d_fprintf(stderr
, "ERROR: invalid type '%s' specified.\n"
290 " supported types: int32, uint32\n",
295 evt_ctx
= tevent_context_init(mem_ctx
);
296 if (evt_ctx
== NULL
) {
297 d_fprintf(stderr
, "ERROR: could not init event context\n");
301 msg_ctx
= messaging_init(mem_ctx
, server_id_self(), evt_ctx
);
302 if (msg_ctx
== NULL
) {
303 d_fprintf(stderr
, "ERROR: could not init messaging context\n");
307 db
= db_open(mem_ctx
, dbname
, 0, TDB_DEFAULT
, O_RDWR
| O_CREAT
, 0644);
309 d_fprintf(stderr
, "ERROR: could not open dbname\n");
313 for (count
= 0; dispatch_table
[count
].cmd
!= NULL
; count
++) {
314 if ((op
== dispatch_table
[count
].op
) &&
315 (type
== dispatch_table
[count
].type
))
317 ret
= dispatch_table
[count
].cmd(db
, keyname
, &value
);
323 TALLOC_FREE(mem_ctx
);