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 "fast_export.h"
12 #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 DATE_RFC2822_LEN 31
38 static struct line_buffer input = LINE_BUFFER_INIT;
41 uint32_t action, srcRev, type;
42 off_t prop_length, text_length;
43 struct strbuf src, dst;
44 uint32_t text_delta, prop_delta;
49 timestamp_t timestamp;
50 struct strbuf log, author, note;
55 struct strbuf uuid, url;
58 static void reset_node_ctx(char *fname)
61 node_ctx.action = NODEACT_UNKNOWN;
62 node_ctx.prop_length = -1;
63 node_ctx.text_length = -1;
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);
79 strbuf_reset(&rev_ctx.note);
82 static void reset_dump_ctx(const char *url)
84 strbuf_reset(&dump_ctx.url);
86 strbuf_addstr(&dump_ctx.url, url);
88 strbuf_reset(&dump_ctx.uuid);
91 static void handle_property(const struct strbuf *key_buf,
95 const char *key = key_buf->buf;
96 size_t keylen = key_buf->len;
99 case sizeof("svn:log"):
100 if (constcmp(key, "svn:log"))
103 die("invalid dump: unsets svn:log");
104 strbuf_swap(&rev_ctx.log, val);
106 case sizeof("svn:author"):
107 if (constcmp(key, "svn:author"))
110 strbuf_reset(&rev_ctx.author);
112 strbuf_swap(&rev_ctx.author, val);
114 case sizeof("svn:date"):
115 if (constcmp(key, "svn:date"))
118 die("invalid dump: unsets svn:date");
119 if (parse_date_basic(val->buf, &rev_ctx.timestamp, NULL))
120 warning("invalid timestamp: %s", val->buf);
122 case sizeof("svn:executable"):
123 case sizeof("svn:special"):
124 if (keylen == strlen("svn:executable") &&
125 constcmp(key, "svn:executable"))
127 if (keylen == strlen("svn:special") &&
128 constcmp(key, "svn:special"))
133 die("invalid dump: sets type twice");
136 node_ctx.type = S_IFREG | 0644;
140 node_ctx.type = keylen == strlen("svn:executable") ?
146 static void die_short_read(void)
148 if (buffer_ferror(&input))
149 die_errno("error reading dump file");
150 die("invalid dump: unexpected end of file");
153 static void read_props(void)
155 static struct strbuf key = STRBUF_INIT;
156 static struct strbuf val = STRBUF_INIT;
159 * NEEDSWORK: to support simple mode changes like
166 * we keep track of whether a mode has been set and reset to
167 * plain file only if not. We should be keeping track of the
168 * symlink and executable bits separately instead.
170 uint32_t type_set = 0;
171 while ((t = buffer_read_line(&input)) && strcmp(t, "PROPS-END")) {
173 const char type = t[0];
176 if (!type || t[1] != ' ')
177 die("invalid property line: %s", t);
180 buffer_read_binary(&input, &val, len);
184 /* Discard trailing newline. */
185 ch = buffer_read_char(&input);
189 die("invalid dump: expected newline after %s", val.buf);
193 strbuf_swap(&key, &val);
196 handle_property(&val, NULL, &type_set);
199 handle_property(&key, &val, &type_set);
203 die("invalid property line: %s", t);
208 static void handle_node(void)
210 const uint32_t type = node_ctx.type;
211 const int have_props = node_ctx.prop_length != -1;
212 const int have_text = node_ctx.text_length != -1;
214 * Old text for this node:
215 * NULL - directory or bug
217 * "<dataref>" - data retrievable from fast-import
219 static const char *const empty_blob = "::empty::";
220 const char *old_data = NULL;
221 uint32_t old_mode = S_IFREG | 0644;
223 if (node_ctx.action == NODEACT_DELETE) {
224 if (have_text || have_props || node_ctx.srcRev)
225 die("invalid dump: deletion node has "
226 "copyfrom info, text, or properties");
227 fast_export_delete(node_ctx.dst.buf);
230 if (node_ctx.action == NODEACT_REPLACE) {
231 fast_export_delete(node_ctx.dst.buf);
232 node_ctx.action = NODEACT_ADD;
234 if (node_ctx.srcRev) {
235 fast_export_copy(node_ctx.srcRev, node_ctx.src.buf, node_ctx.dst.buf);
236 if (node_ctx.action == NODEACT_ADD)
237 node_ctx.action = NODEACT_CHANGE;
239 if (have_text && type == S_IFDIR)
240 die("invalid dump: directories cannot have text attached");
243 * Find old content (old_data) and decide on the new mode.
245 if (node_ctx.action == NODEACT_CHANGE && !*node_ctx.dst.buf) {
247 die("invalid dump: root of tree is not a regular file");
249 } else if (node_ctx.action == NODEACT_CHANGE) {
251 old_data = fast_export_read_path(node_ctx.dst.buf, &mode);
252 if (mode == S_IFDIR && type != S_IFDIR)
253 die("invalid dump: cannot modify a directory into a file");
254 if (mode != S_IFDIR && type == S_IFDIR)
255 die("invalid dump: cannot modify a file into a directory");
256 node_ctx.type = mode;
258 } else if (node_ctx.action == NODEACT_ADD) {
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.prop_length)
282 if (type == S_IFDIR) /* 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 if (!node_ctx.text_delta) {
293 fast_export_modify(node_ctx.dst.buf, node_ctx.type, "inline");
294 fast_export_data(node_ctx.type, node_ctx.text_length, &input);
297 fast_export_modify(node_ctx.dst.buf, node_ctx.type, "inline");
298 fast_export_blob_delta(node_ctx.type, old_mode, old_data,
299 node_ctx.text_length, &input);
302 static void begin_revision(const char *remote_ref)
304 if (!rev_ctx.revision) /* revision 0 gets no git commit. */
306 fast_export_begin_commit(rev_ctx.revision, rev_ctx.author.buf,
307 &rev_ctx.log, dump_ctx.uuid.buf, dump_ctx.url.buf,
308 rev_ctx.timestamp, remote_ref);
311 static void end_revision(const char *note_ref)
313 struct strbuf mark = STRBUF_INIT;
314 if (rev_ctx.revision) {
315 fast_export_end_commit(rev_ctx.revision);
316 fast_export_begin_note(rev_ctx.revision, "remote-svn",
317 "Note created by remote-svn.", rev_ctx.timestamp, note_ref);
318 strbuf_addf(&mark, ":%"PRIu32, rev_ctx.revision);
319 fast_export_note(mark.buf, "inline");
320 fast_export_buf_to_data(&rev_ctx.note);
321 strbuf_release(&mark);
325 void svndump_read(const char *url, const char *local_ref, const char *notes_ref)
329 uint32_t active_ctx = DUMP_CTX;
333 while ((t = buffer_read_line(&input))) {
334 val = strchr(t, ':');
342 /* strlen(key) + 1 */
343 switch (val - t - 1) {
344 case sizeof("SVN-fs-dump-format-version"):
345 if (constcmp(t, "SVN-fs-dump-format-version"))
347 dump_ctx.version = atoi(val);
348 if (dump_ctx.version > 3)
349 die("expected svn dump format version <= 3, found %"PRIu32,
353 if (constcmp(t, "UUID"))
355 strbuf_reset(&dump_ctx.uuid);
356 strbuf_addstr(&dump_ctx.uuid, val);
358 case sizeof("Revision-number"):
359 if (constcmp(t, "Revision-number"))
361 if (active_ctx == NODE_CTX)
363 if (active_ctx == REV_CTX)
364 begin_revision(local_ref);
365 if (active_ctx != DUMP_CTX)
366 end_revision(notes_ref);
367 active_ctx = REV_CTX;
368 reset_rev_ctx(atoi(val));
369 strbuf_addf(&rev_ctx.note, "%s\n", t);
371 case sizeof("Node-path"):
372 if (constcmp(t, "Node-"))
374 if (!constcmp(t + strlen("Node-"), "path")) {
375 if (active_ctx == NODE_CTX)
377 if (active_ctx == REV_CTX)
378 begin_revision(local_ref);
379 active_ctx = NODE_CTX;
381 strbuf_addf(&rev_ctx.note, "%s\n", t);
384 if (constcmp(t + strlen("Node-"), "kind"))
386 strbuf_addf(&rev_ctx.note, "%s\n", t);
387 if (!strcmp(val, "dir"))
388 node_ctx.type = S_IFDIR;
389 else if (!strcmp(val, "file"))
390 node_ctx.type = S_IFREG | 0644;
392 fprintf(stderr, "Unknown node-kind: %s\n", val);
394 case sizeof("Node-action"):
395 if (constcmp(t, "Node-action"))
397 strbuf_addf(&rev_ctx.note, "%s\n", t);
398 if (!strcmp(val, "delete")) {
399 node_ctx.action = NODEACT_DELETE;
400 } else if (!strcmp(val, "add")) {
401 node_ctx.action = NODEACT_ADD;
402 } else if (!strcmp(val, "change")) {
403 node_ctx.action = NODEACT_CHANGE;
404 } else if (!strcmp(val, "replace")) {
405 node_ctx.action = NODEACT_REPLACE;
407 fprintf(stderr, "Unknown node-action: %s\n", val);
408 node_ctx.action = NODEACT_UNKNOWN;
411 case sizeof("Node-copyfrom-path"):
412 if (constcmp(t, "Node-copyfrom-path"))
414 strbuf_reset(&node_ctx.src);
415 strbuf_addstr(&node_ctx.src, val);
416 strbuf_addf(&rev_ctx.note, "%s\n", t);
418 case sizeof("Node-copyfrom-rev"):
419 if (constcmp(t, "Node-copyfrom-rev"))
421 node_ctx.srcRev = atoi(val);
422 strbuf_addf(&rev_ctx.note, "%s\n", t);
424 case sizeof("Text-content-length"):
425 if (constcmp(t, "Text") && constcmp(t, "Prop"))
427 if (constcmp(t + 4, "-content-length"))
433 len = strtoumax(val, &end, 10);
434 if (!isdigit(*val) || *end)
435 die("invalid dump: non-numeric length %s", val);
436 if (len > maximum_signed_value_of_type(off_t))
437 die("unrepresentable length in dump: %s", val);
440 node_ctx.text_length = (off_t) len;
442 node_ctx.prop_length = (off_t) len;
445 case sizeof("Text-delta"):
446 if (!constcmp(t, "Text-delta")) {
447 node_ctx.text_delta = !strcmp(val, "true");
450 if (constcmp(t, "Prop-delta"))
452 node_ctx.prop_delta = !strcmp(val, "true");
454 case sizeof("Content-length"):
455 if (constcmp(t, "Content-length"))
458 t = buffer_read_line(&input);
462 die("invalid dump: expected blank line after content length header");
463 if (active_ctx == REV_CTX) {
465 } else if (active_ctx == NODE_CTX) {
467 active_ctx = INTERNODE_CTX;
469 fprintf(stderr, "Unexpected content length header: %"PRIu32"\n", len);
470 if (buffer_skip_bytes(&input, len) != len)
475 if (buffer_ferror(&input))
477 if (active_ctx == NODE_CTX)
479 if (active_ctx == REV_CTX)
480 begin_revision(local_ref);
481 if (active_ctx != DUMP_CTX)
482 end_revision(notes_ref);
485 static void init(int report_fd)
487 fast_export_init(report_fd);
488 strbuf_init(&dump_ctx.uuid, 4096);
489 strbuf_init(&dump_ctx.url, 4096);
490 strbuf_init(&rev_ctx.log, 4096);
491 strbuf_init(&rev_ctx.author, 4096);
492 strbuf_init(&rev_ctx.note, 4096);
493 strbuf_init(&node_ctx.src, 4096);
494 strbuf_init(&node_ctx.dst, 4096);
495 reset_dump_ctx(NULL);
497 reset_node_ctx(NULL);
501 int svndump_init(const char *filename)
503 if (buffer_init(&input, filename))
504 return error_errno("cannot open %s", filename ? filename : "NULL");
509 int svndump_init_fd(int in_fd, int back_fd)
511 if(buffer_fdinit(&input, xdup(in_fd)))
512 return error_errno("cannot open fd %d", in_fd);
517 void svndump_deinit(void)
519 fast_export_deinit();
520 reset_dump_ctx(NULL);
522 reset_node_ctx(NULL);
523 strbuf_release(&rev_ctx.log);
524 strbuf_release(&rev_ctx.author);
525 strbuf_release(&rev_ctx.note);
526 strbuf_release(&node_ctx.src);
527 strbuf_release(&node_ctx.dst);
528 if (buffer_deinit(&input))
529 fprintf(stderr, "Input error\n");
531 fprintf(stderr, "Output error\n");
534 void svndump_reset(void)
536 strbuf_release(&dump_ctx.uuid);
537 strbuf_release(&dump_ctx.url);
538 strbuf_release(&rev_ctx.log);
539 strbuf_release(&rev_ctx.author);