2 * Copyright (c) 2005, 2006 Rene Scharfe
13 #define RECORDSIZE (512)
14 #define BLOCKSIZE (RECORDSIZE * 20)
16 static const char tar_tree_usage
[] =
17 "git-tar-tree [--remote=<repo>] <ent> [basedir]";
19 static char block
[BLOCKSIZE
];
20 static unsigned long offset
;
22 static time_t archive_time
;
24 /* tries hard to write, either succeeds or dies in the attempt */
25 static void reliable_write(void *buf
, unsigned long size
)
28 long ret
= xwrite(1, buf
, size
);
32 die("git-tar-tree: %s", strerror(errno
));
34 die("git-tar-tree: disk full?");
41 /* writes out the whole block, but only if it is full */
42 static void write_if_needed(void)
44 if (offset
== BLOCKSIZE
) {
45 reliable_write(block
, BLOCKSIZE
);
50 /* acquire the next record from the buffer; user must call write_if_needed() */
51 static char *get_record(void)
53 char *p
= block
+ offset
;
54 memset(p
, 0, RECORDSIZE
);
60 * The end of tar archives is marked by 1024 nul bytes and after that
61 * follows the rest of the block (if any).
63 static void write_trailer(void)
76 * queues up writes, so that all our write(2) calls write exactly one
77 * full block; pads writes to RECORDSIZE
79 static void write_blocked(void *buf
, unsigned long size
)
84 unsigned long chunk
= BLOCKSIZE
- offset
;
87 memcpy(block
+ offset
, buf
, chunk
);
93 while (size
>= BLOCKSIZE
) {
94 reliable_write(buf
, BLOCKSIZE
);
99 memcpy(block
+ offset
, buf
, size
);
102 tail
= offset
% RECORDSIZE
;
104 memset(block
+ offset
, 0, RECORDSIZE
- tail
);
105 offset
+= RECORDSIZE
- tail
;
110 static void strbuf_append_string(struct strbuf
*sb
, const char *s
)
112 int slen
= strlen(s
);
113 int total
= sb
->len
+ slen
;
114 if (total
> sb
->alloc
) {
115 sb
->buf
= xrealloc(sb
->buf
, total
);
118 memcpy(sb
->buf
+ sb
->len
, s
, slen
);
123 * pax extended header records have the format "%u %s=%s\n". %u contains
124 * the size of the whole string (including the %u), the first %s is the
125 * keyword, the second one is the value. This function constructs such a
126 * string and appends it to a struct strbuf.
128 static void strbuf_append_ext_header(struct strbuf
*sb
, const char *keyword
,
129 const char *value
, unsigned int valuelen
)
135 len
= 1 + 1 + strlen(keyword
) + 1 + valuelen
+ 1;
136 for (tmp
= len
; tmp
> 9; tmp
/= 10)
139 total
= sb
->len
+ len
;
140 if (total
> sb
->alloc
) {
141 sb
->buf
= xrealloc(sb
->buf
, total
);
146 p
+= sprintf(p
, "%u %s=", len
, keyword
);
147 memcpy(p
, value
, valuelen
);
153 static unsigned int ustar_header_chksum(const struct ustar_header
*header
)
155 char *p
= (char *)header
;
156 unsigned int chksum
= 0;
157 while (p
< header
->chksum
)
159 chksum
+= sizeof(header
->chksum
) * ' ';
160 p
+= sizeof(header
->chksum
);
161 while (p
< (char *)header
+ sizeof(struct ustar_header
))
166 static int get_path_prefix(const struct strbuf
*path
, int maxlen
)
173 } while (i
> 0 && path
->buf
[i
] != '/');
177 static void write_entry(const unsigned char *sha1
, struct strbuf
*path
,
178 unsigned int mode
, void *buffer
, unsigned long size
)
180 struct ustar_header header
;
181 struct strbuf ext_header
;
183 memset(&header
, 0, sizeof(header
));
184 ext_header
.buf
= NULL
;
185 ext_header
.len
= ext_header
.alloc
= 0;
188 *header
.typeflag
= TYPEFLAG_GLOBAL_HEADER
;
190 strcpy(header
.name
, "pax_global_header");
192 *header
.typeflag
= TYPEFLAG_EXT_HEADER
;
194 sprintf(header
.name
, "%s.paxheader", sha1_to_hex(sha1
));
197 *header
.typeflag
= TYPEFLAG_DIR
;
199 } else if (S_ISLNK(mode
)) {
200 *header
.typeflag
= TYPEFLAG_LNK
;
202 } else if (S_ISREG(mode
)) {
203 *header
.typeflag
= TYPEFLAG_REG
;
204 mode
|= (mode
& 0100) ? 0777 : 0666;
206 error("unsupported file mode: 0%o (SHA1: %s)",
207 mode
, sha1_to_hex(sha1
));
210 if (path
->len
> sizeof(header
.name
)) {
211 int plen
= get_path_prefix(path
, sizeof(header
.prefix
));
212 int rest
= path
->len
- plen
- 1;
213 if (plen
> 0 && rest
<= sizeof(header
.name
)) {
214 memcpy(header
.prefix
, path
->buf
, plen
);
215 memcpy(header
.name
, path
->buf
+ plen
+ 1, rest
);
217 sprintf(header
.name
, "%s.data",
219 strbuf_append_ext_header(&ext_header
, "path",
220 path
->buf
, path
->len
);
223 memcpy(header
.name
, path
->buf
, path
->len
);
226 if (S_ISLNK(mode
) && buffer
) {
227 if (size
> sizeof(header
.linkname
)) {
228 sprintf(header
.linkname
, "see %s.paxheader",
230 strbuf_append_ext_header(&ext_header
, "linkpath",
233 memcpy(header
.linkname
, buffer
, size
);
236 sprintf(header
.mode
, "%07o", mode
& 07777);
237 sprintf(header
.size
, "%011lo", S_ISREG(mode
) ? size
: 0);
238 sprintf(header
.mtime
, "%011lo", archive_time
);
240 /* XXX: should we provide more meaningful info here? */
241 sprintf(header
.uid
, "%07o", 0);
242 sprintf(header
.gid
, "%07o", 0);
243 strncpy(header
.uname
, "git", 31);
244 strncpy(header
.gname
, "git", 31);
245 sprintf(header
.devmajor
, "%07o", 0);
246 sprintf(header
.devminor
, "%07o", 0);
248 memcpy(header
.magic
, "ustar", 6);
249 memcpy(header
.version
, "00", 2);
251 sprintf(header
.chksum
, "%07o", ustar_header_chksum(&header
));
253 if (ext_header
.len
> 0) {
254 write_entry(sha1
, NULL
, 0, ext_header
.buf
, ext_header
.len
);
255 free(ext_header
.buf
);
257 write_blocked(&header
, sizeof(header
));
258 if (S_ISREG(mode
) && buffer
&& size
> 0)
259 write_blocked(buffer
, size
);
262 static void write_global_extended_header(const unsigned char *sha1
)
264 struct strbuf ext_header
;
265 ext_header
.buf
= NULL
;
266 ext_header
.len
= ext_header
.alloc
= 0;
267 strbuf_append_ext_header(&ext_header
, "comment", sha1_to_hex(sha1
), 40);
268 write_entry(NULL
, NULL
, 0, ext_header
.buf
, ext_header
.len
);
269 free(ext_header
.buf
);
272 static void traverse_tree(struct tree_desc
*tree
, struct strbuf
*path
)
274 int pathlen
= path
->len
;
275 struct name_entry entry
;
277 while (tree_entry(tree
, &entry
)) {
280 unsigned long eltsize
;
282 eltbuf
= read_sha1_file(entry
.sha1
, elttype
, &eltsize
);
284 die("cannot read %s", sha1_to_hex(entry
.sha1
));
287 strbuf_append_string(path
, entry
.path
);
288 if (S_ISDIR(entry
.mode
))
289 strbuf_append_string(path
, "/");
291 write_entry(entry
.sha1
, path
, entry
.mode
, eltbuf
, eltsize
);
293 if (S_ISDIR(entry
.mode
)) {
294 struct tree_desc subtree
;
295 subtree
.buf
= eltbuf
;
296 subtree
.size
= eltsize
;
297 traverse_tree(&subtree
, path
);
303 static int generate_tar(int argc
, const char **argv
, char** envp
)
305 unsigned char sha1
[20], tree_sha1
[20];
306 struct commit
*commit
;
307 struct tree_desc tree
;
308 struct strbuf current_path
;
310 current_path
.buf
= xmalloc(PATH_MAX
);
311 current_path
.alloc
= PATH_MAX
;
312 current_path
.len
= current_path
.eof
= 0;
314 setup_git_directory();
315 git_config(git_default_config
);
319 strbuf_append_string(¤t_path
, argv
[2]);
320 strbuf_append_string(¤t_path
, "/");
323 if (get_sha1(argv
[1], sha1
))
324 die("Not a valid object name %s", argv
[1]);
327 usage(tar_tree_usage
);
330 commit
= lookup_commit_reference_gently(sha1
, 1);
332 write_global_extended_header(commit
->object
.sha1
);
333 archive_time
= commit
->date
;
335 archive_time
= time(NULL
);
337 tree
.buf
= read_object_with_reference(sha1
, tree_type
, &tree
.size
,
340 die("not a reference to a tag, commit or tree object: %s",
343 if (current_path
.len
> 0)
344 write_entry(tree_sha1
, ¤t_path
, 040777, NULL
, 0);
345 traverse_tree(&tree
, ¤t_path
);
347 free(current_path
.buf
);
351 static const char *exec
= "git-upload-tar";
353 static int remote_tar(int argc
, const char **argv
)
360 if (argc
< 3 || 4 < argc
)
361 usage(tar_tree_usage
);
363 /* --remote=<repo> */
364 url
= strdup(argv
[1]+9);
365 pid
= git_connect(fd
, url
, exec
);
369 packet_write(fd
[1], "want %s\n", argv
[2]);
371 packet_write(fd
[1], "base %s\n", argv
[3]);
374 len
= packet_read_line(fd
[0], buf
, sizeof(buf
));
376 die("git-tar-tree: expected ACK/NAK, got EOF");
377 if (buf
[len
-1] == '\n')
379 if (strcmp(buf
, "ACK")) {
380 if (5 < len
&& !strncmp(buf
, "NACK ", 5))
381 die("git-tar-tree: NACK %s", buf
+ 5);
382 die("git-tar-tree: protocol error");
385 len
= packet_read_line(fd
[0], buf
, sizeof(buf
));
387 die("git-tar-tree: expected a flush");
389 /* Now, start reading from fd[0] and spit it out to stdout */
390 ret
= copy_fd(fd
[0], 1);
393 ret
|= finish_connect(pid
);
397 int cmd_tar_tree(int argc
, const char **argv
, char **envp
)
400 usage(tar_tree_usage
);
401 if (!strncmp("--remote=", argv
[1], 9))
402 return remote_tar(argc
, argv
);
403 return generate_tar(argc
, argv
, envp
);
406 /* ustar header + extended global header content */
407 #define HEADERSIZE (2 * RECORDSIZE)
409 int cmd_get_tar_commit_id(int argc
, const char **argv
, char **envp
)
411 char buffer
[HEADERSIZE
];
412 struct ustar_header
*header
= (struct ustar_header
*)buffer
;
413 char *content
= buffer
+ RECORDSIZE
;
416 n
= xread(0, buffer
, HEADERSIZE
);
418 die("git-get-tar-commit-id: read error");
419 if (header
->typeflag
[0] != 'g')
421 if (memcmp(content
, "52 comment=", 11))
424 n
= xwrite(1, content
+ 11, 41);
426 die("git-get-tar-commit-id: write error");