2 * Parse and rearrange a svnadmin dump.
3 * Create the dump with:
4 * svnadmin dump --incremental -r<startrev>:<endrev> <repository> >outfile
6 * Licensed under a two-clause BSD-style license.
7 * See LICENSE for details.
11 #include "repo_tree.h"
12 #include "fast_export.h"
13 #include "line_buffer.h"
17 * Compare start of string to literal of equal length;
18 * must be guarded by length test.
20 #define constcmp(s, ref) memcmp(s, ref, sizeof(ref) - 1)
22 #define REPORT_FILENO 3
24 #define NODEACT_REPLACE 4
25 #define NODEACT_DELETE 3
27 #define NODEACT_CHANGE 1
28 #define NODEACT_UNKNOWN 0
31 #define DUMP_CTX 0 /* dump metadata */
32 #define REV_CTX 1 /* revision metadata */
33 #define NODE_CTX 2 /* node metadata */
34 #define INTERNODE_CTX 3 /* between nodes */
36 #define LENGTH_UNKNOWN (~0)
37 #define DATE_RFC2822_LEN 31
39 static struct line_buffer input = LINE_BUFFER_INIT;
42 uint32_t action, propLength, textLength, srcRev, type;
43 struct strbuf src, dst;
44 uint32_t text_delta, prop_delta;
49 unsigned long timestamp;
50 struct strbuf log, author;
55 struct strbuf uuid, url;
58 static void reset_node_ctx(char *fname)
61 node_ctx.action = NODEACT_UNKNOWN;
62 node_ctx.propLength = LENGTH_UNKNOWN;
63 node_ctx.textLength = LENGTH_UNKNOWN;
64 strbuf_reset(&node_ctx.src);
66 strbuf_reset(&node_ctx.dst);
68 strbuf_addstr(&node_ctx.dst, fname);
69 node_ctx.text_delta = 0;
70 node_ctx.prop_delta = 0;
73 static void reset_rev_ctx(uint32_t revision)
75 rev_ctx.revision = revision;
76 rev_ctx.timestamp = 0;
77 strbuf_reset(&rev_ctx.log);
78 strbuf_reset(&rev_ctx.author);
81 static void reset_dump_ctx(const char *url)
83 strbuf_reset(&dump_ctx.url);
85 strbuf_addstr(&dump_ctx.url, url);
87 strbuf_reset(&dump_ctx.uuid);
90 static void handle_property(const struct strbuf *key_buf,
94 const char *key = key_buf->buf;
95 size_t keylen = key_buf->len;
98 case sizeof("svn:log"):
99 if (constcmp(key, "svn:log"))
102 die("invalid dump: unsets svn:log");
103 strbuf_swap(&rev_ctx.log, val);
105 case sizeof("svn:author"):
106 if (constcmp(key, "svn:author"))
109 strbuf_reset(&rev_ctx.author);
111 strbuf_swap(&rev_ctx.author, val);
113 case sizeof("svn:date"):
114 if (constcmp(key, "svn:date"))
117 die("invalid dump: unsets svn:date");
118 if (parse_date_basic(val->buf, &rev_ctx.timestamp, NULL))
119 warning("invalid timestamp: %s", val->buf);
121 case sizeof("svn:executable"):
122 case sizeof("svn:special"):
123 if (keylen == strlen("svn:executable") &&
124 constcmp(key, "svn:executable"))
126 if (keylen == strlen("svn:special") &&
127 constcmp(key, "svn:special"))
132 die("invalid dump: sets type twice");
135 node_ctx.type = REPO_MODE_BLB;
139 node_ctx.type = keylen == strlen("svn:executable") ?
145 static void die_short_read(void)
147 if (buffer_ferror(&input))
148 die_errno("error reading dump file");
149 die("invalid dump: unexpected end of file");
152 static void read_props(void)
154 static struct strbuf key = STRBUF_INIT;
155 static struct strbuf val = STRBUF_INIT;
158 * NEEDSWORK: to support simple mode changes like
165 * we keep track of whether a mode has been set and reset to
166 * plain file only if not. We should be keeping track of the
167 * symlink and executable bits separately instead.
169 uint32_t type_set = 0;
170 while ((t = buffer_read_line(&input)) && strcmp(t, "PROPS-END")) {
172 const char type = t[0];
175 if (!type || t[1] != ' ')
176 die("invalid property line: %s\n", t);
179 buffer_read_binary(&input, &val, len);
183 /* Discard trailing newline. */
184 ch = buffer_read_char(&input);
188 die("invalid dump: expected newline after %s", val.buf);
192 strbuf_swap(&key, &val);
195 handle_property(&val, NULL, &type_set);
198 handle_property(&key, &val, &type_set);
202 die("invalid property line: %s\n", t);
207 static void handle_node(void)
209 const uint32_t type = node_ctx.type;
210 const int have_props = node_ctx.propLength != LENGTH_UNKNOWN;
211 const int have_text = node_ctx.textLength != LENGTH_UNKNOWN;
213 * Old text for this node:
214 * NULL - directory or bug
216 * "<dataref>" - data retrievable from fast-import
218 static const char *const empty_blob = "::empty::";
219 const char *old_data = NULL;
221 if (node_ctx.text_delta)
222 die("text deltas not supported");
224 if (node_ctx.action == NODEACT_DELETE) {
225 if (have_text || have_props || node_ctx.srcRev)
226 die("invalid dump: deletion node has "
227 "copyfrom info, text, or properties");
228 repo_delete(node_ctx.dst.buf);
231 if (node_ctx.action == NODEACT_REPLACE) {
232 repo_delete(node_ctx.dst.buf);
233 node_ctx.action = NODEACT_ADD;
235 if (node_ctx.srcRev) {
236 repo_copy(node_ctx.srcRev, node_ctx.src.buf, node_ctx.dst.buf);
237 if (node_ctx.action == NODEACT_ADD)
238 node_ctx.action = NODEACT_CHANGE;
240 if (have_text && type == REPO_MODE_DIR)
241 die("invalid dump: directories cannot have text attached");
244 * Find old content (old_data) and decide on the new mode.
246 if (node_ctx.action == NODEACT_CHANGE && !*node_ctx.dst.buf) {
247 if (type != REPO_MODE_DIR)
248 die("invalid dump: root of tree is not a regular file");
250 } else if (node_ctx.action == NODEACT_CHANGE) {
252 old_data = repo_read_path(node_ctx.dst.buf, &mode);
253 if (mode == REPO_MODE_DIR && type != REPO_MODE_DIR)
254 die("invalid dump: cannot modify a directory into a file");
255 if (mode != REPO_MODE_DIR && type == REPO_MODE_DIR)
256 die("invalid dump: cannot modify a file into a directory");
257 node_ctx.type = mode;
258 } else if (node_ctx.action == NODEACT_ADD) {
259 if (type == REPO_MODE_DIR)
262 old_data = empty_blob;
264 die("invalid dump: adds node without text");
266 die("invalid dump: Node-path block lacks Node-action");
270 * Adjust mode to reflect properties.
273 if (!node_ctx.prop_delta)
274 node_ctx.type = type;
275 if (node_ctx.propLength)
282 if (type == REPO_MODE_DIR) /* directories are not tracked. */
285 if (old_data == empty_blob)
286 /* For the fast_export_* functions, NULL means empty. */
289 fast_export_modify(node_ctx.dst.buf, node_ctx.type, old_data);
292 fast_export_modify(node_ctx.dst.buf, node_ctx.type, "inline");
293 fast_export_data(node_ctx.type, node_ctx.textLength, &input);
296 static void begin_revision(void)
298 if (!rev_ctx.revision) /* revision 0 gets no git commit. */
300 fast_export_begin_commit(rev_ctx.revision, rev_ctx.author.buf,
301 &rev_ctx.log, dump_ctx.uuid.buf, dump_ctx.url.buf,
305 static void end_revision(void)
307 if (rev_ctx.revision)
308 fast_export_end_commit(rev_ctx.revision);
311 void svndump_read(const char *url)
315 uint32_t active_ctx = DUMP_CTX;
319 while ((t = buffer_read_line(&input))) {
320 val = strchr(t, ':');
328 /* strlen(key) + 1 */
329 switch (val - t - 1) {
330 case sizeof("SVN-fs-dump-format-version"):
331 if (constcmp(t, "SVN-fs-dump-format-version"))
333 dump_ctx.version = atoi(val);
334 if (dump_ctx.version > 3)
335 die("expected svn dump format version <= 3, found %"PRIu32,
339 if (constcmp(t, "UUID"))
341 strbuf_reset(&dump_ctx.uuid);
342 strbuf_addstr(&dump_ctx.uuid, val);
344 case sizeof("Revision-number"):
345 if (constcmp(t, "Revision-number"))
347 if (active_ctx == NODE_CTX)
349 if (active_ctx == REV_CTX)
351 if (active_ctx != DUMP_CTX)
353 active_ctx = REV_CTX;
354 reset_rev_ctx(atoi(val));
356 case sizeof("Node-path"):
357 if (prefixcmp(t, "Node-"))
359 if (!constcmp(t + strlen("Node-"), "path")) {
360 if (active_ctx == NODE_CTX)
362 if (active_ctx == REV_CTX)
364 active_ctx = NODE_CTX;
368 if (constcmp(t + strlen("Node-"), "kind"))
370 if (!strcmp(val, "dir"))
371 node_ctx.type = REPO_MODE_DIR;
372 else if (!strcmp(val, "file"))
373 node_ctx.type = REPO_MODE_BLB;
375 fprintf(stderr, "Unknown node-kind: %s\n", val);
377 case sizeof("Node-action"):
378 if (constcmp(t, "Node-action"))
380 if (!strcmp(val, "delete")) {
381 node_ctx.action = NODEACT_DELETE;
382 } else if (!strcmp(val, "add")) {
383 node_ctx.action = NODEACT_ADD;
384 } else if (!strcmp(val, "change")) {
385 node_ctx.action = NODEACT_CHANGE;
386 } else if (!strcmp(val, "replace")) {
387 node_ctx.action = NODEACT_REPLACE;
389 fprintf(stderr, "Unknown node-action: %s\n", val);
390 node_ctx.action = NODEACT_UNKNOWN;
393 case sizeof("Node-copyfrom-path"):
394 if (constcmp(t, "Node-copyfrom-path"))
396 strbuf_reset(&node_ctx.src);
397 strbuf_addstr(&node_ctx.src, val);
399 case sizeof("Node-copyfrom-rev"):
400 if (constcmp(t, "Node-copyfrom-rev"))
402 node_ctx.srcRev = atoi(val);
404 case sizeof("Text-content-length"):
405 if (!constcmp(t, "Text-content-length")) {
406 node_ctx.textLength = atoi(val);
409 if (constcmp(t, "Prop-content-length"))
411 node_ctx.propLength = atoi(val);
413 case sizeof("Text-delta"):
414 if (!constcmp(t, "Text-delta")) {
415 node_ctx.text_delta = !strcmp(val, "true");
418 if (constcmp(t, "Prop-delta"))
420 node_ctx.prop_delta = !strcmp(val, "true");
422 case sizeof("Content-length"):
423 if (constcmp(t, "Content-length"))
426 t = buffer_read_line(&input);
430 die("invalid dump: expected blank line after content length header");
431 if (active_ctx == REV_CTX) {
433 } else if (active_ctx == NODE_CTX) {
435 active_ctx = INTERNODE_CTX;
437 fprintf(stderr, "Unexpected content length header: %"PRIu32"\n", len);
438 if (buffer_skip_bytes(&input, len) != len)
443 if (buffer_ferror(&input))
445 if (active_ctx == NODE_CTX)
447 if (active_ctx == REV_CTX)
449 if (active_ctx != DUMP_CTX)
453 int svndump_init(const char *filename)
455 if (buffer_init(&input, filename))
456 return error("cannot open %s: %s", filename, strerror(errno));
457 fast_export_init(REPORT_FILENO);
458 strbuf_init(&dump_ctx.uuid, 4096);
459 strbuf_init(&dump_ctx.url, 4096);
460 strbuf_init(&rev_ctx.log, 4096);
461 strbuf_init(&rev_ctx.author, 4096);
462 strbuf_init(&node_ctx.src, 4096);
463 strbuf_init(&node_ctx.dst, 4096);
464 reset_dump_ctx(NULL);
466 reset_node_ctx(NULL);
470 void svndump_deinit(void)
472 fast_export_deinit();
473 reset_dump_ctx(NULL);
475 reset_node_ctx(NULL);
476 strbuf_release(&rev_ctx.log);
477 strbuf_release(&node_ctx.src);
478 strbuf_release(&node_ctx.dst);
479 if (buffer_deinit(&input))
480 fprintf(stderr, "Input error\n");
482 fprintf(stderr, "Output error\n");
485 void svndump_reset(void)
488 buffer_reset(&input);
489 strbuf_release(&dump_ctx.uuid);
490 strbuf_release(&dump_ctx.url);
491 strbuf_release(&rev_ctx.log);
492 strbuf_release(&rev_ctx.author);