]> git.sur5r.net Git - openldap/blob - libraries/liblmdb/mdb_dump.c
537a499019ad49ce54afb6482ea00406225c0c06
[openldap] / libraries / liblmdb / mdb_dump.c
1 /* mdb_dump.c - memory-mapped database dump tool */
2 /*
3  * Copyright 2011-2017 Howard Chu, Symas Corp.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted only as authorized by the OpenLDAP
8  * Public License.
9  *
10  * A copy of this license is available in the file LICENSE in the
11  * top-level directory of the distribution or, alternatively, at
12  * <http://www.OpenLDAP.org/license.html>.
13  */
14 #include <stdio.h>
15 #include <errno.h>
16 #include <stdlib.h>
17 #include <string.h>
18 #include <ctype.h>
19 #include <unistd.h>
20 #include <signal.h>
21 #include "lmdb.h"
22
23 #ifdef _WIN32
24 #define Z       "I"
25 #else
26 #define Z       "z"
27 #endif
28
29 #define PRINT   1
30 static int mode;
31
32 typedef struct flagbit {
33         int bit;
34         char *name;
35 } flagbit;
36
37 flagbit dbflags[] = {
38         { MDB_REVERSEKEY, "reversekey" },
39         { MDB_DUPSORT, "dupsort" },
40         { MDB_INTEGERKEY, "integerkey" },
41         { MDB_DUPFIXED, "dupfixed" },
42         { MDB_INTEGERDUP, "integerdup" },
43         { MDB_REVERSEDUP, "reversedup" },
44         { 0, NULL }
45 };
46
47 static volatile sig_atomic_t gotsig;
48
49 static void dumpsig( int sig )
50 {
51         gotsig=1;
52 }
53
54 static const char hexc[] = "0123456789abcdef";
55
56 static void hex(unsigned char c)
57 {
58         putchar(hexc[c >> 4]);
59         putchar(hexc[c & 0xf]);
60 }
61
62 static void text(MDB_val *v)
63 {
64         unsigned char *c, *end;
65
66         putchar(' ');
67         c = v->mv_data;
68         end = c + v->mv_size;
69         while (c < end) {
70                 if (isprint(*c)) {
71                         putchar(*c);
72                 } else {
73                         putchar('\\');
74                         hex(*c);
75                 }
76                 c++;
77         }
78         putchar('\n');
79 }
80
81 static void byte(MDB_val *v)
82 {
83         unsigned char *c, *end;
84
85         putchar(' ');
86         c = v->mv_data;
87         end = c + v->mv_size;
88         while (c < end) {
89                 hex(*c++);
90         }
91         putchar('\n');
92 }
93
94 /* Dump in BDB-compatible format */
95 static int dumpit(MDB_txn *txn, MDB_dbi dbi, char *name)
96 {
97         MDB_cursor *mc;
98         MDB_stat ms;
99         MDB_val key, data;
100         MDB_envinfo info;
101         unsigned int flags;
102         int rc, i;
103
104         rc = mdb_dbi_flags(txn, dbi, &flags);
105         if (rc) return rc;
106
107         rc = mdb_stat(txn, dbi, &ms);
108         if (rc) return rc;
109
110         rc = mdb_env_info(mdb_txn_env(txn), &info);
111         if (rc) return rc;
112
113         printf("VERSION=3\n");
114         printf("format=%s\n", mode & PRINT ? "print" : "bytevalue");
115         if (name)
116                 printf("database=%s\n", name);
117         printf("type=btree\n");
118         printf("mapsize=%" Z "u\n", info.me_mapsize);
119         if (info.me_mapaddr)
120                 printf("mapaddr=%p\n", info.me_mapaddr);
121         printf("maxreaders=%u\n", info.me_maxreaders);
122
123         if (flags & MDB_DUPSORT)
124                 printf("duplicates=1\n");
125
126         for (i=0; dbflags[i].bit; i++)
127                 if (flags & dbflags[i].bit)
128                         printf("%s=1\n", dbflags[i].name);
129
130         printf("db_pagesize=%d\n", ms.ms_psize);
131         printf("HEADER=END\n");
132
133         rc = mdb_cursor_open(txn, dbi, &mc);
134         if (rc) return rc;
135
136         while ((rc = mdb_cursor_get(mc, &key, &data, MDB_NEXT) == MDB_SUCCESS)) {
137                 if (gotsig) {
138                         rc = EINTR;
139                         break;
140                 }
141                 if (mode & PRINT) {
142                         text(&key);
143                         text(&data);
144                 } else {
145                         byte(&key);
146                         byte(&data);
147                 }
148         }
149         printf("DATA=END\n");
150         if (rc == MDB_NOTFOUND)
151                 rc = MDB_SUCCESS;
152
153         return rc;
154 }
155
156 static void usage(char *prog)
157 {
158         fprintf(stderr, "usage: %s [-V] [-f output] [-l] [-n] [-p] [-a|-s subdb] dbpath\n", prog);
159         exit(EXIT_FAILURE);
160 }
161
162 int main(int argc, char *argv[])
163 {
164         int i, rc;
165         MDB_env *env;
166         MDB_txn *txn;
167         MDB_dbi dbi;
168         char *prog = argv[0];
169         char *envname;
170         char *subname = NULL;
171         int alldbs = 0, envflags = 0, list = 0;
172
173         if (argc < 2) {
174                 usage(prog);
175         }
176
177         /* -a: dump main DB and all subDBs
178          * -s: dump only the named subDB
179          * -n: use NOSUBDIR flag on env_open
180          * -p: use printable characters
181          * -f: write to file instead of stdout
182          * -V: print version and exit
183          * (default) dump only the main DB
184          */
185         while ((i = getopt(argc, argv, "af:lnps:V")) != EOF) {
186                 switch(i) {
187                 case 'V':
188                         printf("%s\n", MDB_VERSION_STRING);
189                         exit(0);
190                         break;
191                 case 'l':
192                         list = 1;
193                         /*FALLTHROUGH*/;
194                 case 'a':
195                         if (subname)
196                                 usage(prog);
197                         alldbs++;
198                         break;
199                 case 'f':
200                         if (freopen(optarg, "w", stdout) == NULL) {
201                                 fprintf(stderr, "%s: %s: reopen: %s\n",
202                                         prog, optarg, strerror(errno));
203                                 exit(EXIT_FAILURE);
204                         }
205                         break;
206                 case 'n':
207                         envflags |= MDB_NOSUBDIR;
208                         break;
209                 case 'p':
210                         mode |= PRINT;
211                         break;
212                 case 's':
213                         if (alldbs)
214                                 usage(prog);
215                         subname = optarg;
216                         break;
217                 default:
218                         usage(prog);
219                 }
220         }
221
222         if (optind != argc - 1)
223                 usage(prog);
224
225 #ifdef SIGPIPE
226         signal(SIGPIPE, dumpsig);
227 #endif
228 #ifdef SIGHUP
229         signal(SIGHUP, dumpsig);
230 #endif
231         signal(SIGINT, dumpsig);
232         signal(SIGTERM, dumpsig);
233
234         envname = argv[optind];
235         rc = mdb_env_create(&env);
236         if (rc) {
237                 fprintf(stderr, "mdb_env_create failed, error %d %s\n", rc, mdb_strerror(rc));
238                 return EXIT_FAILURE;
239         }
240
241         if (alldbs || subname) {
242                 mdb_env_set_maxdbs(env, 2);
243         }
244
245         rc = mdb_env_open(env, envname, envflags | MDB_RDONLY, 0664);
246         if (rc) {
247                 fprintf(stderr, "mdb_env_open failed, error %d %s\n", rc, mdb_strerror(rc));
248                 goto env_close;
249         }
250
251         rc = mdb_txn_begin(env, NULL, MDB_RDONLY, &txn);
252         if (rc) {
253                 fprintf(stderr, "mdb_txn_begin failed, error %d %s\n", rc, mdb_strerror(rc));
254                 goto env_close;
255         }
256
257         rc = mdb_open(txn, subname, 0, &dbi);
258         if (rc) {
259                 fprintf(stderr, "mdb_open failed, error %d %s\n", rc, mdb_strerror(rc));
260                 goto txn_abort;
261         }
262
263         if (alldbs) {
264                 MDB_cursor *cursor;
265                 MDB_val key;
266                 int count = 0;
267
268                 rc = mdb_cursor_open(txn, dbi, &cursor);
269                 if (rc) {
270                         fprintf(stderr, "mdb_cursor_open failed, error %d %s\n", rc, mdb_strerror(rc));
271                         goto txn_abort;
272                 }
273                 while ((rc = mdb_cursor_get(cursor, &key, NULL, MDB_NEXT_NODUP)) == 0) {
274                         char *str;
275                         MDB_dbi db2;
276                         if (memchr(key.mv_data, '\0', key.mv_size))
277                                 continue;
278                         count++;
279                         str = malloc(key.mv_size+1);
280                         memcpy(str, key.mv_data, key.mv_size);
281                         str[key.mv_size] = '\0';
282                         rc = mdb_open(txn, str, 0, &db2);
283                         if (rc == MDB_SUCCESS) {
284                                 if (list) {
285                                         printf("%s\n", str);
286                                         list++;
287                                 } else {
288                                         rc = dumpit(txn, db2, str);
289                                         if (rc)
290                                                 break;
291                                 }
292                                 mdb_close(env, db2);
293                         }
294                         free(str);
295                         if (rc) continue;
296                 }
297                 mdb_cursor_close(cursor);
298                 if (!count) {
299                         fprintf(stderr, "%s: %s does not contain multiple databases\n", prog, envname);
300                         rc = MDB_NOTFOUND;
301                 } else if (rc == MDB_NOTFOUND) {
302                         rc = MDB_SUCCESS;
303                 }
304         } else {
305                 rc = dumpit(txn, dbi, subname);
306         }
307         if (rc && rc != MDB_NOTFOUND)
308                 fprintf(stderr, "%s: %s: %s\n", prog, envname, mdb_strerror(rc));
309
310         mdb_close(env, dbi);
311 txn_abort:
312         mdb_txn_abort(txn);
313 env_close:
314         mdb_env_close(env);
315
316         return rc ? EXIT_FAILURE : EXIT_SUCCESS;
317 }