git-tar-tree: Remove duplicate git_config() call
[git.git] / builtin-tar-tree.c
blob82b4951f3af8e7d6c58cc52798abd3094c4ea7d9
1 /*
2 * Copyright (c) 2005, 2006 Rene Scharfe
3 */
4 #include <time.h>
5 #include "cache.h"
6 #include "commit.h"
7 #include "strbuf.h"
8 #include "tar.h"
9 #include "builtin.h"
10 #include "pkt-line.h"
11 #include "archive.h"
13 #define RECORDSIZE (512)
14 #define BLOCKSIZE (RECORDSIZE * 20)
16 static const char tar_tree_usage[] =
17 "git-tar-tree [--remote=<repo>] <tree-ish> [basedir]";
19 static char block[BLOCKSIZE];
20 static unsigned long offset;
22 static time_t archive_time;
23 static int tar_umask;
24 static int verbose;
26 /* writes out the whole block, but only if it is full */
27 static void write_if_needed(void)
29 if (offset == BLOCKSIZE) {
30 write_or_die(1, block, BLOCKSIZE);
31 offset = 0;
36 * queues up writes, so that all our write(2) calls write exactly one
37 * full block; pads writes to RECORDSIZE
39 static void write_blocked(const void *data, unsigned long size)
41 const char *buf = data;
42 unsigned long tail;
44 if (offset) {
45 unsigned long chunk = BLOCKSIZE - offset;
46 if (size < chunk)
47 chunk = size;
48 memcpy(block + offset, buf, chunk);
49 size -= chunk;
50 offset += chunk;
51 buf += chunk;
52 write_if_needed();
54 while (size >= BLOCKSIZE) {
55 write_or_die(1, buf, BLOCKSIZE);
56 size -= BLOCKSIZE;
57 buf += BLOCKSIZE;
59 if (size) {
60 memcpy(block + offset, buf, size);
61 offset += size;
63 tail = offset % RECORDSIZE;
64 if (tail) {
65 memset(block + offset, 0, RECORDSIZE - tail);
66 offset += RECORDSIZE - tail;
68 write_if_needed();
72 * The end of tar archives is marked by 2*512 nul bytes and after that
73 * follows the rest of the block (if any).
75 static void write_trailer(void)
77 int tail = BLOCKSIZE - offset;
78 memset(block + offset, 0, tail);
79 write_or_die(1, block, BLOCKSIZE);
80 if (tail < 2 * RECORDSIZE) {
81 memset(block, 0, offset);
82 write_or_die(1, block, BLOCKSIZE);
86 static void strbuf_append_string(struct strbuf *sb, const char *s)
88 int slen = strlen(s);
89 int total = sb->len + slen;
90 if (total > sb->alloc) {
91 sb->buf = xrealloc(sb->buf, total);
92 sb->alloc = total;
94 memcpy(sb->buf + sb->len, s, slen);
95 sb->len = total;
99 * pax extended header records have the format "%u %s=%s\n". %u contains
100 * the size of the whole string (including the %u), the first %s is the
101 * keyword, the second one is the value. This function constructs such a
102 * string and appends it to a struct strbuf.
104 static void strbuf_append_ext_header(struct strbuf *sb, const char *keyword,
105 const char *value, unsigned int valuelen)
107 char *p;
108 int len, total, tmp;
110 /* "%u %s=%s\n" */
111 len = 1 + 1 + strlen(keyword) + 1 + valuelen + 1;
112 for (tmp = len; tmp > 9; tmp /= 10)
113 len++;
115 total = sb->len + len;
116 if (total > sb->alloc) {
117 sb->buf = xrealloc(sb->buf, total);
118 sb->alloc = total;
121 p = sb->buf;
122 p += sprintf(p, "%u %s=", len, keyword);
123 memcpy(p, value, valuelen);
124 p += valuelen;
125 *p = '\n';
126 sb->len = total;
129 static unsigned int ustar_header_chksum(const struct ustar_header *header)
131 char *p = (char *)header;
132 unsigned int chksum = 0;
133 while (p < header->chksum)
134 chksum += *p++;
135 chksum += sizeof(header->chksum) * ' ';
136 p += sizeof(header->chksum);
137 while (p < (char *)header + sizeof(struct ustar_header))
138 chksum += *p++;
139 return chksum;
142 static int get_path_prefix(const struct strbuf *path, int maxlen)
144 int i = path->len;
145 if (i > maxlen)
146 i = maxlen;
147 do {
148 i--;
149 } while (i > 0 && path->buf[i] != '/');
150 return i;
153 static void write_entry(const unsigned char *sha1, struct strbuf *path,
154 unsigned int mode, void *buffer, unsigned long size)
156 struct ustar_header header;
157 struct strbuf ext_header;
159 memset(&header, 0, sizeof(header));
160 ext_header.buf = NULL;
161 ext_header.len = ext_header.alloc = 0;
163 if (!sha1) {
164 *header.typeflag = TYPEFLAG_GLOBAL_HEADER;
165 mode = 0100666;
166 strcpy(header.name, "pax_global_header");
167 } else if (!path) {
168 *header.typeflag = TYPEFLAG_EXT_HEADER;
169 mode = 0100666;
170 sprintf(header.name, "%s.paxheader", sha1_to_hex(sha1));
171 } else {
172 if (verbose)
173 fprintf(stderr, "%.*s\n", path->len, path->buf);
174 if (S_ISDIR(mode)) {
175 *header.typeflag = TYPEFLAG_DIR;
176 mode = (mode | 0777) & ~tar_umask;
177 } else if (S_ISLNK(mode)) {
178 *header.typeflag = TYPEFLAG_LNK;
179 mode |= 0777;
180 } else if (S_ISREG(mode)) {
181 *header.typeflag = TYPEFLAG_REG;
182 mode = (mode | ((mode & 0100) ? 0777 : 0666)) & ~tar_umask;
183 } else {
184 error("unsupported file mode: 0%o (SHA1: %s)",
185 mode, sha1_to_hex(sha1));
186 return;
188 if (path->len > sizeof(header.name)) {
189 int plen = get_path_prefix(path, sizeof(header.prefix));
190 int rest = path->len - plen - 1;
191 if (plen > 0 && rest <= sizeof(header.name)) {
192 memcpy(header.prefix, path->buf, plen);
193 memcpy(header.name, path->buf + plen + 1, rest);
194 } else {
195 sprintf(header.name, "%s.data",
196 sha1_to_hex(sha1));
197 strbuf_append_ext_header(&ext_header, "path",
198 path->buf, path->len);
200 } else
201 memcpy(header.name, path->buf, path->len);
204 if (S_ISLNK(mode) && buffer) {
205 if (size > sizeof(header.linkname)) {
206 sprintf(header.linkname, "see %s.paxheader",
207 sha1_to_hex(sha1));
208 strbuf_append_ext_header(&ext_header, "linkpath",
209 buffer, size);
210 } else
211 memcpy(header.linkname, buffer, size);
214 sprintf(header.mode, "%07o", mode & 07777);
215 sprintf(header.size, "%011lo", S_ISREG(mode) ? size : 0);
216 sprintf(header.mtime, "%011lo", archive_time);
218 /* XXX: should we provide more meaningful info here? */
219 sprintf(header.uid, "%07o", 0);
220 sprintf(header.gid, "%07o", 0);
221 strlcpy(header.uname, "git", sizeof(header.uname));
222 strlcpy(header.gname, "git", sizeof(header.gname));
223 sprintf(header.devmajor, "%07o", 0);
224 sprintf(header.devminor, "%07o", 0);
226 memcpy(header.magic, "ustar", 6);
227 memcpy(header.version, "00", 2);
229 sprintf(header.chksum, "%07o", ustar_header_chksum(&header));
231 if (ext_header.len > 0) {
232 write_entry(sha1, NULL, 0, ext_header.buf, ext_header.len);
233 free(ext_header.buf);
235 write_blocked(&header, sizeof(header));
236 if (S_ISREG(mode) && buffer && size > 0)
237 write_blocked(buffer, size);
240 static void write_global_extended_header(const unsigned char *sha1)
242 struct strbuf ext_header;
243 ext_header.buf = NULL;
244 ext_header.len = ext_header.alloc = 0;
245 strbuf_append_ext_header(&ext_header, "comment", sha1_to_hex(sha1), 40);
246 write_entry(NULL, NULL, 0, ext_header.buf, ext_header.len);
247 free(ext_header.buf);
250 static int git_tar_config(const char *var, const char *value)
252 if (!strcmp(var, "tar.umask")) {
253 if (!strcmp(value, "user")) {
254 tar_umask = umask(0);
255 umask(tar_umask);
256 } else {
257 tar_umask = git_config_int(var, value);
259 return 0;
261 return git_default_config(var, value);
264 static int generate_tar(int argc, const char **argv, const char *prefix)
266 struct archiver_args args;
267 int result;
268 char *base = NULL;
270 memset(&args, 0, sizeof(args));
271 if (argc != 2 && argc != 3)
272 usage(tar_tree_usage);
273 if (argc == 3) {
274 int baselen = strlen(argv[2]);
275 base = xmalloc(baselen + 2);
276 memcpy(base, argv[2], baselen);
277 base[baselen] = '/';
278 base[baselen + 1] = '\0';
280 args.base = base;
281 parse_treeish_arg(argv + 1, &args, NULL);
283 result = write_tar_archive(&args);
284 free(base);
286 return result;
289 static int write_tar_entry(const unsigned char *sha1,
290 const char *base, int baselen,
291 const char *filename, unsigned mode, int stage)
293 static struct strbuf path;
294 int filenamelen = strlen(filename);
295 void *buffer;
296 char type[20];
297 unsigned long size;
299 if (!path.alloc) {
300 path.buf = xmalloc(PATH_MAX);
301 path.alloc = PATH_MAX;
302 path.len = path.eof = 0;
304 if (path.alloc < baselen + filenamelen) {
305 free(path.buf);
306 path.buf = xmalloc(baselen + filenamelen);
307 path.alloc = baselen + filenamelen;
309 memcpy(path.buf, base, baselen);
310 memcpy(path.buf + baselen, filename, filenamelen);
311 path.len = baselen + filenamelen;
312 if (S_ISDIR(mode)) {
313 strbuf_append_string(&path, "/");
314 buffer = NULL;
315 size = 0;
316 } else {
317 buffer = read_sha1_file(sha1, type, &size);
318 if (!buffer)
319 die("cannot read %s", sha1_to_hex(sha1));
322 write_entry(sha1, &path, mode, buffer, size);
323 free(buffer);
325 return READ_TREE_RECURSIVE;
328 int write_tar_archive(struct archiver_args *args)
330 int plen = args->base ? strlen(args->base) : 0;
332 git_config(git_tar_config);
334 archive_time = args->time;
335 verbose = args->verbose;
337 if (args->commit_sha1)
338 write_global_extended_header(args->commit_sha1);
340 if (args->base && plen > 0 && args->base[plen - 1] == '/') {
341 char *base = xstrdup(args->base);
342 int baselen = strlen(base);
344 while (baselen > 0 && base[baselen - 1] == '/')
345 base[--baselen] = '\0';
346 write_tar_entry(args->tree->object.sha1, "", 0, base, 040777, 0);
347 free(base);
349 read_tree_recursive(args->tree, args->base, plen, 0,
350 args->pathspec, write_tar_entry);
351 write_trailer();
353 return 0;
356 static const char *exec = "git-upload-tar";
358 static int remote_tar(int argc, const char **argv)
360 int fd[2], ret, len;
361 pid_t pid;
362 char buf[1024];
363 char *url;
365 if (argc < 3 || 4 < argc)
366 usage(tar_tree_usage);
368 /* --remote=<repo> */
369 url = xstrdup(argv[1]+9);
370 pid = git_connect(fd, url, exec);
371 if (pid < 0)
372 return 1;
374 packet_write(fd[1], "want %s\n", argv[2]);
375 if (argv[3])
376 packet_write(fd[1], "base %s\n", argv[3]);
377 packet_flush(fd[1]);
379 len = packet_read_line(fd[0], buf, sizeof(buf));
380 if (!len)
381 die("git-tar-tree: expected ACK/NAK, got EOF");
382 if (buf[len-1] == '\n')
383 buf[--len] = 0;
384 if (strcmp(buf, "ACK")) {
385 if (5 < len && !strncmp(buf, "NACK ", 5))
386 die("git-tar-tree: NACK %s", buf + 5);
387 die("git-tar-tree: protocol error");
389 /* expect a flush */
390 len = packet_read_line(fd[0], buf, sizeof(buf));
391 if (len)
392 die("git-tar-tree: expected a flush");
394 /* Now, start reading from fd[0] and spit it out to stdout */
395 ret = copy_fd(fd[0], 1);
396 close(fd[0]);
398 ret |= finish_connect(pid);
399 return !!ret;
402 int cmd_tar_tree(int argc, const char **argv, const char *prefix)
404 if (argc < 2)
405 usage(tar_tree_usage);
406 if (!strncmp("--remote=", argv[1], 9))
407 return remote_tar(argc, argv);
408 return generate_tar(argc, argv, prefix);
411 /* ustar header + extended global header content */
412 #define HEADERSIZE (2 * RECORDSIZE)
414 int cmd_get_tar_commit_id(int argc, const char **argv, const char *prefix)
416 char buffer[HEADERSIZE];
417 struct ustar_header *header = (struct ustar_header *)buffer;
418 char *content = buffer + RECORDSIZE;
419 ssize_t n;
421 n = xread(0, buffer, HEADERSIZE);
422 if (n < HEADERSIZE)
423 die("git-get-tar-commit-id: read error");
424 if (header->typeflag[0] != 'g')
425 return 1;
426 if (memcmp(content, "52 comment=", 11))
427 return 1;
429 n = xwrite(1, content + 11, 41);
430 if (n < 41)
431 die("git-get-tar-commit-id: write error");
433 return 0;