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"
14 #include "string_pool.h"
18 * Compare start of string to literal of equal length;
19 * must be guarded by length test.
21 #define constcmp(s, ref) memcmp(s, ref, sizeof(ref) - 1)
23 #define NODEACT_REPLACE 4
24 #define NODEACT_DELETE 3
26 #define NODEACT_CHANGE 1
27 #define NODEACT_UNKNOWN 0
33 #define LENGTH_UNKNOWN (~0)
34 #define DATE_RFC2822_LEN 31
36 static struct line_buffer input
= LINE_BUFFER_INIT
;
39 uint32_t action
, propLength
, textLength
, srcRev
, type
;
40 uint32_t src
[REPO_MAX_PATH_DEPTH
], dst
[REPO_MAX_PATH_DEPTH
];
41 uint32_t text_delta
, prop_delta
;
46 unsigned long timestamp
;
47 struct strbuf log
, author
;
52 struct strbuf uuid
, url
;
55 static void reset_node_ctx(char *fname
)
58 node_ctx
.action
= NODEACT_UNKNOWN
;
59 node_ctx
.propLength
= LENGTH_UNKNOWN
;
60 node_ctx
.textLength
= LENGTH_UNKNOWN
;
63 pool_tok_seq(REPO_MAX_PATH_DEPTH
, node_ctx
.dst
, "/", fname
);
64 node_ctx
.text_delta
= 0;
65 node_ctx
.prop_delta
= 0;
68 static void reset_rev_ctx(uint32_t revision
)
70 rev_ctx
.revision
= revision
;
71 rev_ctx
.timestamp
= 0;
72 strbuf_reset(&rev_ctx
.log
);
73 strbuf_reset(&rev_ctx
.author
);
76 static void reset_dump_ctx(const char *url
)
78 strbuf_reset(&dump_ctx
.url
);
80 strbuf_addstr(&dump_ctx
.url
, url
);
82 strbuf_reset(&dump_ctx
.uuid
);
85 static void handle_property(const struct strbuf
*key_buf
,
86 const char *val
, uint32_t len
,
89 const char *key
= key_buf
->buf
;
90 size_t keylen
= key_buf
->len
;
93 case sizeof("svn:log"):
94 if (constcmp(key
, "svn:log"))
97 die("invalid dump: unsets svn:log");
98 strbuf_reset(&rev_ctx
.log
);
99 strbuf_add(&rev_ctx
.log
, val
, len
);
101 case sizeof("svn:author"):
102 if (constcmp(key
, "svn:author"))
104 strbuf_reset(&rev_ctx
.author
);
106 strbuf_add(&rev_ctx
.author
, val
, len
);
108 case sizeof("svn:date"):
109 if (constcmp(key
, "svn:date"))
112 die("invalid dump: unsets svn:date");
113 if (parse_date_basic(val
, &rev_ctx
.timestamp
, NULL
))
114 warning("invalid timestamp: %s", val
);
116 case sizeof("svn:executable"):
117 case sizeof("svn:special"):
118 if (keylen
== strlen("svn:executable") &&
119 constcmp(key
, "svn:executable"))
121 if (keylen
== strlen("svn:special") &&
122 constcmp(key
, "svn:special"))
127 die("invalid dump: sets type twice");
130 node_ctx
.type
= REPO_MODE_BLB
;
134 node_ctx
.type
= keylen
== strlen("svn:executable") ?
140 static void die_short_read(void)
142 if (buffer_ferror(&input
))
143 die_errno("error reading dump file");
144 die("invalid dump: unexpected end of file");
147 static void read_props(void)
149 static struct strbuf key
= STRBUF_INIT
;
150 static struct strbuf val
= STRBUF_INIT
;
153 * NEEDSWORK: to support simple mode changes like
160 * we keep track of whether a mode has been set and reset to
161 * plain file only if not. We should be keeping track of the
162 * symlink and executable bits separately instead.
164 uint32_t type_set
= 0;
165 while ((t
= buffer_read_line(&input
)) && strcmp(t
, "PROPS-END")) {
167 const char type
= t
[0];
170 if (!type
|| t
[1] != ' ')
171 die("invalid property line: %s\n", t
);
174 buffer_read_binary(&input
, &val
, len
);
178 /* Discard trailing newline. */
179 ch
= buffer_read_char(&input
);
183 die("invalid dump: expected newline after %s", val
.buf
);
187 strbuf_swap(&key
, &val
);
190 handle_property(&val
, NULL
, 0, &type_set
);
193 handle_property(&key
, val
.buf
, len
, &type_set
);
197 die("invalid property line: %s\n", t
);
202 static void handle_node(void)
205 const uint32_t type
= node_ctx
.type
;
206 const int have_props
= node_ctx
.propLength
!= LENGTH_UNKNOWN
;
207 const int have_text
= node_ctx
.textLength
!= LENGTH_UNKNOWN
;
209 if (node_ctx
.text_delta
)
210 die("text deltas not supported");
212 mark
= next_blob_mark();
213 if (node_ctx
.action
== NODEACT_DELETE
) {
214 if (have_text
|| have_props
|| node_ctx
.srcRev
)
215 die("invalid dump: deletion node has "
216 "copyfrom info, text, or properties");
217 return repo_delete(node_ctx
.dst
);
219 if (node_ctx
.action
== NODEACT_REPLACE
) {
220 repo_delete(node_ctx
.dst
);
221 node_ctx
.action
= NODEACT_ADD
;
223 if (node_ctx
.srcRev
) {
224 repo_copy(node_ctx
.srcRev
, node_ctx
.src
, node_ctx
.dst
);
225 if (node_ctx
.action
== NODEACT_ADD
)
226 node_ctx
.action
= NODEACT_CHANGE
;
228 if (have_text
&& type
== REPO_MODE_DIR
)
229 die("invalid dump: directories cannot have text attached");
232 * Decide on the new content (mark) and mode (node_ctx.type).
234 if (node_ctx
.action
== NODEACT_CHANGE
&& !~*node_ctx
.dst
) {
235 if (type
!= REPO_MODE_DIR
)
236 die("invalid dump: root of tree is not a regular file");
237 } else if (node_ctx
.action
== NODEACT_CHANGE
) {
240 mark
= repo_read_path(node_ctx
.dst
);
241 mode
= repo_read_mode(node_ctx
.dst
);
242 if (mode
== REPO_MODE_DIR
&& type
!= REPO_MODE_DIR
)
243 die("invalid dump: cannot modify a directory into a file");
244 if (mode
!= REPO_MODE_DIR
&& type
== REPO_MODE_DIR
)
245 die("invalid dump: cannot modify a file into a directory");
246 node_ctx
.type
= mode
;
247 } else if (node_ctx
.action
== NODEACT_ADD
) {
248 if (!have_text
&& type
!= REPO_MODE_DIR
)
249 die("invalid dump: adds node without text");
251 die("invalid dump: Node-path block lacks Node-action");
255 * Adjust mode to reflect properties.
258 if (!node_ctx
.prop_delta
)
259 node_ctx
.type
= type
;
260 if (node_ctx
.propLength
)
267 repo_add(node_ctx
.dst
, node_ctx
.type
, mark
);
269 fast_export_blob(node_ctx
.type
, mark
,
270 node_ctx
.textLength
, &input
);
273 static void handle_revision(void)
275 if (rev_ctx
.revision
)
276 repo_commit(rev_ctx
.revision
, rev_ctx
.author
.buf
,
277 rev_ctx
.log
.buf
, dump_ctx
.uuid
.buf
, dump_ctx
.url
.buf
,
281 void svndump_read(const char *url
)
285 uint32_t active_ctx
= DUMP_CTX
;
289 while ((t
= buffer_read_line(&input
))) {
290 val
= strchr(t
, ':');
298 /* strlen(key) + 1 */
299 switch (val
- t
- 1) {
300 case sizeof("SVN-fs-dump-format-version"):
301 if (constcmp(t
, "SVN-fs-dump-format-version"))
303 dump_ctx
.version
= atoi(val
);
304 if (dump_ctx
.version
> 3)
305 die("expected svn dump format version <= 3, found %"PRIu32
,
309 if (constcmp(t
, "UUID"))
311 strbuf_reset(&dump_ctx
.uuid
);
312 strbuf_addstr(&dump_ctx
.uuid
, val
);
314 case sizeof("Revision-number"):
315 if (constcmp(t
, "Revision-number"))
317 if (active_ctx
== NODE_CTX
)
319 if (active_ctx
!= DUMP_CTX
)
321 active_ctx
= REV_CTX
;
322 reset_rev_ctx(atoi(val
));
324 case sizeof("Node-path"):
325 if (prefixcmp(t
, "Node-"))
327 if (!constcmp(t
+ strlen("Node-"), "path")) {
328 if (active_ctx
== NODE_CTX
)
330 active_ctx
= NODE_CTX
;
334 if (constcmp(t
+ strlen("Node-"), "kind"))
336 if (!strcmp(val
, "dir"))
337 node_ctx
.type
= REPO_MODE_DIR
;
338 else if (!strcmp(val
, "file"))
339 node_ctx
.type
= REPO_MODE_BLB
;
341 fprintf(stderr
, "Unknown node-kind: %s\n", val
);
343 case sizeof("Node-action"):
344 if (constcmp(t
, "Node-action"))
346 if (!strcmp(val
, "delete")) {
347 node_ctx
.action
= NODEACT_DELETE
;
348 } else if (!strcmp(val
, "add")) {
349 node_ctx
.action
= NODEACT_ADD
;
350 } else if (!strcmp(val
, "change")) {
351 node_ctx
.action
= NODEACT_CHANGE
;
352 } else if (!strcmp(val
, "replace")) {
353 node_ctx
.action
= NODEACT_REPLACE
;
355 fprintf(stderr
, "Unknown node-action: %s\n", val
);
356 node_ctx
.action
= NODEACT_UNKNOWN
;
359 case sizeof("Node-copyfrom-path"):
360 if (constcmp(t
, "Node-copyfrom-path"))
362 pool_tok_seq(REPO_MAX_PATH_DEPTH
, node_ctx
.src
, "/", val
);
364 case sizeof("Node-copyfrom-rev"):
365 if (constcmp(t
, "Node-copyfrom-rev"))
367 node_ctx
.srcRev
= atoi(val
);
369 case sizeof("Text-content-length"):
370 if (!constcmp(t
, "Text-content-length")) {
371 node_ctx
.textLength
= atoi(val
);
374 if (constcmp(t
, "Prop-content-length"))
376 node_ctx
.propLength
= atoi(val
);
378 case sizeof("Text-delta"):
379 if (!constcmp(t
, "Text-delta")) {
380 node_ctx
.text_delta
= !strcmp(val
, "true");
383 if (constcmp(t
, "Prop-delta"))
385 node_ctx
.prop_delta
= !strcmp(val
, "true");
387 case sizeof("Content-length"):
388 if (constcmp(t
, "Content-length"))
391 t
= buffer_read_line(&input
);
395 die("invalid dump: expected blank line after content length header");
396 if (active_ctx
== REV_CTX
) {
398 } else if (active_ctx
== NODE_CTX
) {
400 active_ctx
= REV_CTX
;
402 fprintf(stderr
, "Unexpected content length header: %"PRIu32
"\n", len
);
403 if (buffer_skip_bytes(&input
, len
) != len
)
408 if (buffer_ferror(&input
))
410 if (active_ctx
== NODE_CTX
)
412 if (active_ctx
!= DUMP_CTX
)
416 int svndump_init(const char *filename
)
418 if (buffer_init(&input
, filename
))
419 return error("cannot open %s: %s", filename
, strerror(errno
));
421 strbuf_init(&dump_ctx
.uuid
, 4096);
422 strbuf_init(&dump_ctx
.url
, 4096);
423 strbuf_init(&rev_ctx
.log
, 4096);
424 strbuf_init(&rev_ctx
.author
, 4096);
425 reset_dump_ctx(NULL
);
427 reset_node_ctx(NULL
);
431 void svndump_deinit(void)
434 reset_dump_ctx(NULL
);
436 reset_node_ctx(NULL
);
437 strbuf_release(&rev_ctx
.log
);
438 if (buffer_deinit(&input
))
439 fprintf(stderr
, "Input error\n");
441 fprintf(stderr
, "Output error\n");
444 void svndump_reset(void)
446 buffer_reset(&input
);
448 strbuf_release(&dump_ctx
.uuid
);
449 strbuf_release(&dump_ctx
.url
);
450 strbuf_release(&rev_ctx
.log
);
451 strbuf_release(&rev_ctx
.author
);