tdbdump doesn't need to #include <sys/mman.h>
[Samba/gebeck_regimport.git] / source3 / tdb / tdbdump.c
blobd2530f9f54cc168688f8f6f20f450fee8f1e104f
1 /*
2 Unix SMB/CIFS implementation.
3 simple tdb dump util
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 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.
21 #include <errno.h>
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <fcntl.h>
25 #include <unistd.h>
26 #include <string.h>
27 #include <fcntl.h>
28 #include <time.h>
29 #include <sys/stat.h>
30 #include <sys/time.h>
31 #include <ctype.h>
32 #include <signal.h>
33 #include "tdb.h"
35 static void print_data(TDB_DATA d)
37 unsigned char *p = d.dptr;
38 int len = d.dsize;
39 while (len--) {
40 if (isprint(*p) && !strchr("\"\\", *p)) {
41 fputc(*p, stdout);
42 } else {
43 printf("\\%02X", *p);
45 p++;
49 static int traverse_fn(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA dbuf, void *state)
51 printf("{\n");
52 printf("key = \"");
53 print_data(key);
54 printf("\"\n");
55 printf("data = \"");
56 print_data(dbuf);
57 printf("\"\n");
58 printf("}\n");
59 return 0;
62 static int dump_tdb(const char *fname)
64 TDB_CONTEXT *tdb;
66 tdb = tdb_open(fname, 0, 0, O_RDONLY, 0);
67 if (!tdb) {
68 printf("Failed to open %s\n", fname);
69 return 1;
72 tdb_traverse(tdb, traverse_fn, NULL);
73 return 0;
76 int main(int argc, char *argv[])
78 char *fname;
80 if (argc < 2) {
81 printf("Usage: tdbdump <fname>\n");
82 exit(1);
85 fname = argv[1];
87 return dump_tdb(fname);