2 * Copyright (c) 2005, 2006 Rene Scharfe
8 #include "run-command.h"
10 #define RECORDSIZE (512)
11 #define BLOCKSIZE (RECORDSIZE * 20)
13 static char block[BLOCKSIZE];
14 static unsigned long offset;
16 static int tar_umask = 002;
18 static int write_tar_filter_archive(const struct archiver *ar,
19 struct archiver_args *args);
21 /* writes out the whole block, but only if it is full */
22 static void write_if_needed(void)
24 if (offset == BLOCKSIZE) {
25 write_or_die(1, block, BLOCKSIZE);
31 * queues up writes, so that all our write(2) calls write exactly one
32 * full block; pads writes to RECORDSIZE
34 static void do_write_blocked(const void *data, unsigned long size)
36 const char *buf = data;
39 unsigned long chunk = BLOCKSIZE - offset;
42 memcpy(block + offset, buf, chunk);
48 while (size >= BLOCKSIZE) {
49 write_or_die(1, buf, BLOCKSIZE);
54 memcpy(block + offset, buf, size);
59 static void finish_record(void)
62 tail = offset % RECORDSIZE;
64 memset(block + offset, 0, RECORDSIZE - tail);
65 offset += RECORDSIZE - tail;
70 static void write_blocked(const void *data, unsigned long size)
72 do_write_blocked(data, size);
77 * The end of tar archives is marked by 2*512 nul bytes and after that
78 * follows the rest of the block (if any).
80 static void write_trailer(void)
82 int tail = BLOCKSIZE - offset;
83 memset(block + offset, 0, tail);
84 write_or_die(1, block, BLOCKSIZE);
85 if (tail < 2 * RECORDSIZE) {
86 memset(block, 0, offset);
87 write_or_die(1, block, BLOCKSIZE);
92 * queues up writes, so that all our write(2) calls write exactly one
93 * full block; pads writes to RECORDSIZE
95 static int stream_blocked(const unsigned char *sha1)
97 struct git_istream *st;
98 enum object_type type;
103 st = open_istream(sha1, &type, &sz, NULL);
105 return error("cannot stream blob %s", sha1_to_hex(sha1));
107 readlen = read_istream(st, buf, sizeof(buf));
110 do_write_blocked(buf, readlen);
119 * pax extended header records have the format "%u %s=%s\n". %u contains
120 * the size of the whole string (including the %u), the first %s is the
121 * keyword, the second one is the value. This function constructs such a
122 * string and appends it to a struct strbuf.
124 static void strbuf_append_ext_header(struct strbuf *sb, const char *keyword,
125 const char *value, unsigned int valuelen)
130 len = 1 + 1 + strlen(keyword) + 1 + valuelen + 1;
131 for (tmp = len; tmp > 9; tmp /= 10)
134 strbuf_grow(sb, len);
135 strbuf_addf(sb, "%u %s=", len, keyword);
136 strbuf_add(sb, value, valuelen);
137 strbuf_addch(sb, '\n');
140 static unsigned int ustar_header_chksum(const struct ustar_header *header)
142 const unsigned char *p = (const unsigned char *)header;
143 unsigned int chksum = 0;
144 while (p < (const unsigned char *)header->chksum)
146 chksum += sizeof(header->chksum) * ' ';
147 p += sizeof(header->chksum);
148 while (p < (const unsigned char *)header + sizeof(struct ustar_header))
153 static size_t get_path_prefix(const char *path, size_t pathlen, size_t maxlen)
156 if (i > 1 && path[i - 1] == '/')
162 } while (i > 0 && path[i] != '/');
166 static void prepare_header(struct archiver_args *args,
167 struct ustar_header *header,
168 unsigned int mode, unsigned long size)
170 sprintf(header->mode, "%07o", mode & 07777);
171 sprintf(header->size, "%011lo", S_ISREG(mode) ? size : 0);
172 sprintf(header->mtime, "%011lo", (unsigned long) args->time);
174 sprintf(header->uid, "%07o", 0);
175 sprintf(header->gid, "%07o", 0);
176 strlcpy(header->uname, "root", sizeof(header->uname));
177 strlcpy(header->gname, "root", sizeof(header->gname));
178 sprintf(header->devmajor, "%07o", 0);
179 sprintf(header->devminor, "%07o", 0);
181 memcpy(header->magic, "ustar", 6);
182 memcpy(header->version, "00", 2);
184 sprintf(header->chksum, "%07o", ustar_header_chksum(header));
187 static int write_extended_header(struct archiver_args *args,
188 const unsigned char *sha1,
189 const void *buffer, unsigned long size)
191 struct ustar_header header;
193 memset(&header, 0, sizeof(header));
194 *header.typeflag = TYPEFLAG_EXT_HEADER;
196 sprintf(header.name, "%s.paxheader", sha1_to_hex(sha1));
197 prepare_header(args, &header, mode, size);
198 write_blocked(&header, sizeof(header));
199 write_blocked(buffer, size);
203 static int write_tar_entry(struct archiver_args *args,
204 const unsigned char *sha1,
205 const char *path, size_t pathlen,
208 struct ustar_header header;
209 struct strbuf ext_header = STRBUF_INIT;
210 unsigned int old_mode = mode;
215 memset(&header, 0, sizeof(header));
217 if (S_ISDIR(mode) || S_ISGITLINK(mode)) {
218 *header.typeflag = TYPEFLAG_DIR;
219 mode = (mode | 0777) & ~tar_umask;
220 } else if (S_ISLNK(mode)) {
221 *header.typeflag = TYPEFLAG_LNK;
223 } else if (S_ISREG(mode)) {
224 *header.typeflag = TYPEFLAG_REG;
225 mode = (mode | ((mode & 0100) ? 0777 : 0666)) & ~tar_umask;
227 return error("unsupported file mode: 0%o (SHA1: %s)",
228 mode, sha1_to_hex(sha1));
230 if (pathlen > sizeof(header.name)) {
231 size_t plen = get_path_prefix(path, pathlen,
232 sizeof(header.prefix));
233 size_t rest = pathlen - plen - 1;
234 if (plen > 0 && rest <= sizeof(header.name)) {
235 memcpy(header.prefix, path, plen);
236 memcpy(header.name, path + plen + 1, rest);
238 sprintf(header.name, "%s.data",
240 strbuf_append_ext_header(&ext_header, "path",
244 memcpy(header.name, path, pathlen);
246 if (S_ISREG(mode) && !args->convert &&
247 sha1_object_info(sha1, &size) == OBJ_BLOB &&
248 size > big_file_threshold)
250 else if (S_ISLNK(mode) || S_ISREG(mode)) {
251 enum object_type type;
252 buffer = sha1_file_to_archive(args, path, sha1, old_mode, &type, &size);
254 return error("cannot read %s", sha1_to_hex(sha1));
261 if (size > sizeof(header.linkname)) {
262 sprintf(header.linkname, "see %s.paxheader",
264 strbuf_append_ext_header(&ext_header, "linkpath",
267 memcpy(header.linkname, buffer, size);
270 prepare_header(args, &header, mode, size);
272 if (ext_header.len > 0) {
273 err = write_extended_header(args, sha1, ext_header.buf,
280 strbuf_release(&ext_header);
281 write_blocked(&header, sizeof(header));
282 if (S_ISREG(mode) && size > 0) {
284 write_blocked(buffer, size);
286 err = stream_blocked(sha1);
292 static int write_global_extended_header(struct archiver_args *args)
294 const unsigned char *sha1 = args->commit_sha1;
295 struct strbuf ext_header = STRBUF_INIT;
296 struct ustar_header header;
300 strbuf_append_ext_header(&ext_header, "comment", sha1_to_hex(sha1), 40);
301 memset(&header, 0, sizeof(header));
302 *header.typeflag = TYPEFLAG_GLOBAL_HEADER;
304 strcpy(header.name, "pax_global_header");
305 prepare_header(args, &header, mode, ext_header.len);
306 write_blocked(&header, sizeof(header));
307 write_blocked(ext_header.buf, ext_header.len);
308 strbuf_release(&ext_header);
312 static struct archiver **tar_filters;
313 static int nr_tar_filters;
314 static int alloc_tar_filters;
316 static struct archiver *find_tar_filter(const char *name, int len)
319 for (i = 0; i < nr_tar_filters; i++) {
320 struct archiver *ar = tar_filters[i];
321 if (!strncmp(ar->name, name, len) && !ar->name[len])
327 static int tar_filter_config(const char *var, const char *value, void *data)
334 if (parse_config_key(var, "tar", &name, &namelen, &type) < 0 || !name)
337 ar = find_tar_filter(name, namelen);
339 ar = xcalloc(1, sizeof(*ar));
340 ar->name = xmemdupz(name, namelen);
341 ar->write_archive = write_tar_filter_archive;
342 ar->flags = ARCHIVER_WANT_COMPRESSION_LEVELS;
343 ALLOC_GROW(tar_filters, nr_tar_filters + 1, alloc_tar_filters);
344 tar_filters[nr_tar_filters++] = ar;
347 if (!strcmp(type, "command")) {
349 return config_error_nonbool(var);
351 ar->data = xstrdup(value);
354 if (!strcmp(type, "remote")) {
355 if (git_config_bool(var, value))
356 ar->flags |= ARCHIVER_REMOTE;
358 ar->flags &= ~ARCHIVER_REMOTE;
365 static int git_tar_config(const char *var, const char *value, void *cb)
367 if (!strcmp(var, "tar.umask")) {
368 if (value && !strcmp(value, "user")) {
369 tar_umask = umask(0);
372 tar_umask = git_config_int(var, value);
377 return tar_filter_config(var, value, cb);
380 static int write_tar_archive(const struct archiver *ar,
381 struct archiver_args *args)
385 if (args->commit_sha1)
386 err = write_global_extended_header(args);
388 err = write_archive_entries(args, write_tar_entry);
394 static int write_tar_filter_archive(const struct archiver *ar,
395 struct archiver_args *args)
397 struct strbuf cmd = STRBUF_INIT;
398 struct child_process filter = CHILD_PROCESS_INIT;
403 die("BUG: tar-filter archiver called with no filter defined");
405 strbuf_addstr(&cmd, ar->data);
406 if (args->compression_level >= 0)
407 strbuf_addf(&cmd, " -%d", args->compression_level);
412 filter.use_shell = 1;
415 if (start_command(&filter) < 0)
416 die_errno("unable to start '%s' filter", argv[0]);
418 if (dup2(filter.in, 1) < 0)
419 die_errno("unable to redirect descriptor");
422 r = write_tar_archive(ar, args);
425 if (finish_command(&filter) != 0)
426 die("'%s' filter reported error", argv[0]);
428 strbuf_release(&cmd);
432 static struct archiver tar_archiver = {
438 void init_tar_archiver(void)
441 register_archiver(&tar_archiver);
443 tar_filter_config("tar.tgz.command", "gzip -cn", NULL);
444 tar_filter_config("tar.tgz.remote", "true", NULL);
445 tar_filter_config("tar.tar.gz.command", "gzip -cn", NULL);
446 tar_filter_config("tar.tar.gz.remote", "true", NULL);
447 git_config(git_tar_config, NULL);
448 for (i = 0; i < nr_tar_filters; i++) {
449 /* omit any filters that never had a command configured */
450 if (tar_filters[i]->data)
451 register_archiver(tar_filters[i]);