~ubuntu-branches/ubuntu/maverick/samba/maverick-proposed

« back to all changes in this revision

Viewing changes to source/tdb/tdbdump.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2004-10-15 12:31:58 UTC
  • Revision ID: james.westby@ubuntu.com-20041015123158-aokykzdqkdgy6dfx
Tags: upstream-3.0.7
ImportĀ upstreamĀ versionĀ 3.0.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
   Unix SMB/CIFS implementation.
 
3
   simple tdb dump util
 
4
   Copyright (C) Andrew Tridgell              2001
 
5
 
 
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.
 
10
   
 
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.
 
15
   
 
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.
 
19
*/
 
20
 
 
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"
 
34
 
 
35
static void print_data(TDB_DATA d)
 
36
{
 
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);
 
44
                }
 
45
                p++;
 
46
        }
 
47
}
 
48
 
 
49
static int traverse_fn(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA dbuf, void *state)
 
50
{
 
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;
 
60
}
 
61
 
 
62
static int dump_tdb(const char *fname)
 
63
{
 
64
        TDB_CONTEXT *tdb;
 
65
        
 
66
        tdb = tdb_open(fname, 0, 0, O_RDONLY, 0);
 
67
        if (!tdb) {
 
68
                printf("Failed to open %s\n", fname);
 
69
                return 1;
 
70
        }
 
71
 
 
72
        tdb_traverse(tdb, traverse_fn, NULL);
 
73
        return 0;
 
74
}
 
75
 
 
76
 int main(int argc, char *argv[])
 
77
{
 
78
        char *fname;
 
79
 
 
80
        if (argc < 2) {
 
81
                printf("Usage: tdbdump <fname>\n");
 
82
                exit(1);
 
83
        }
 
84
 
 
85
        fname = argv[1];
 
86
 
 
87
        return dump_tdb(fname);
 
88
}