2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2001
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/>.
21 #include "system/locale.h"
22 #include "system/time.h"
23 #include "system/filesys.h"
24 #include "system/wait.h"
27 static void print_data(TDB_DATA d
)
29 unsigned char *p
= (unsigned char *)d
.dptr
;
32 if (isprint(*p
) && !strchr("\"\\", *p
)) {
41 static int traverse_fn(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA dbuf
, void *state
)
44 printf("key(%d) = \"", (int)key
.dsize
);
47 printf("data(%d) = \"", (int)dbuf
.dsize
);
54 static void log_stderr(struct tdb_context
*tdb
, enum tdb_debug_level level
,
58 const char *name
= tdb_name(tdb
);
59 const char *prefix
= "";
68 case TDB_DEBUG_WARNING
:
81 fprintf(stderr
, "tdb(%s): %s", name
, prefix
);
82 vfprintf(stderr
, fmt
, ap
);
86 static void emergency_walk(TDB_DATA key
, TDB_DATA dbuf
, void *keyname
)
89 if (key
.dsize
!= strlen(keyname
))
91 if (memcmp(key
.dptr
, keyname
, key
.dsize
) != 0)
94 traverse_fn(NULL
, key
, dbuf
, NULL
);
97 static int dump_tdb(const char *fname
, const char *keyname
, bool emergency
)
101 struct tdb_logging_context logfn
= { log_stderr
};
103 tdb
= tdb_open_ex(fname
, 0, 0, O_RDONLY
, 0, &logfn
, NULL
);
105 printf("Failed to open %s\n", fname
);
110 return tdb_rescue(tdb
, emergency_walk
, discard_const(keyname
)) == 0;
113 return tdb_traverse(tdb
, traverse_fn
, NULL
) == -1 ? 1 : 0;
115 key
.dptr
= discard_const_p(uint8_t, keyname
);
116 key
.dsize
= strlen(keyname
);
117 value
= tdb_fetch(tdb
, key
);
129 static void usage( void)
131 printf( "Usage: tdbdump [options] <filename>\n\n");
132 printf( " -h this help message\n");
133 printf( " -k keyname dumps value of keyname\n");
134 printf( " -e emergency dump, for corrupt databases\n");
137 int main(int argc
, char *argv
[])
139 char *fname
, *keyname
=NULL
;
140 bool emergency
= false;
144 printf("Usage: tdbdump <fname>\n");
148 while ((c
= getopt( argc
, argv
, "hk:e")) != -1) {
165 fname
= argv
[optind
];
167 return dump_tdb(fname
, keyname
, emergency
);