2 * Copyright (c) 2005, 2006 Rene Scharfe
8 #define RECORDSIZE (512)
9 #define BLOCKSIZE (RECORDSIZE * 20)
11 static char block
[BLOCKSIZE
];
12 static unsigned long offset
;
14 static int tar_umask
= 002;
16 /* writes out the whole block, but only if it is full */
17 static void write_if_needed(void)
19 if (offset
== BLOCKSIZE
) {
20 write_or_die(1, block
, BLOCKSIZE
);
26 * queues up writes, so that all our write(2) calls write exactly one
27 * full block; pads writes to RECORDSIZE
29 static void write_blocked(const void *data
, unsigned long size
)
31 const char *buf
= data
;
35 unsigned long chunk
= BLOCKSIZE
- offset
;
38 memcpy(block
+ offset
, buf
, chunk
);
44 while (size
>= BLOCKSIZE
) {
45 write_or_die(1, buf
, BLOCKSIZE
);
50 memcpy(block
+ offset
, buf
, size
);
53 tail
= offset
% RECORDSIZE
;
55 memset(block
+ offset
, 0, RECORDSIZE
- tail
);
56 offset
+= RECORDSIZE
- tail
;
62 * The end of tar archives is marked by 2*512 nul bytes and after that
63 * follows the rest of the block (if any).
65 static void write_trailer(void)
67 int tail
= BLOCKSIZE
- offset
;
68 memset(block
+ offset
, 0, tail
);
69 write_or_die(1, block
, BLOCKSIZE
);
70 if (tail
< 2 * RECORDSIZE
) {
71 memset(block
, 0, offset
);
72 write_or_die(1, block
, BLOCKSIZE
);
77 * pax extended header records have the format "%u %s=%s\n". %u contains
78 * the size of the whole string (including the %u), the first %s is the
79 * keyword, the second one is the value. This function constructs such a
80 * string and appends it to a struct strbuf.
82 static void strbuf_append_ext_header(struct strbuf
*sb
, const char *keyword
,
83 const char *value
, unsigned int valuelen
)
88 len
= 1 + 1 + strlen(keyword
) + 1 + valuelen
+ 1;
89 for (tmp
= len
; tmp
> 9; tmp
/= 10)
93 strbuf_addf(sb
, "%u %s=", len
, keyword
);
94 strbuf_add(sb
, value
, valuelen
);
95 strbuf_addch(sb
, '\n');
98 static unsigned int ustar_header_chksum(const struct ustar_header
*header
)
100 char *p
= (char *)header
;
101 unsigned int chksum
= 0;
102 while (p
< header
->chksum
)
104 chksum
+= sizeof(header
->chksum
) * ' ';
105 p
+= sizeof(header
->chksum
);
106 while (p
< (char *)header
+ sizeof(struct ustar_header
))
111 static size_t get_path_prefix(const char *path
, size_t pathlen
, size_t maxlen
)
118 } while (i
> 0 && path
[i
] != '/');
122 static int write_tar_entry(struct archiver_args
*args
,
123 const unsigned char *sha1
, const char *path
, size_t pathlen
,
124 unsigned int mode
, void *buffer
, unsigned long size
)
126 struct ustar_header header
;
127 struct strbuf ext_header
= STRBUF_INIT
;
130 memset(&header
, 0, sizeof(header
));
133 *header
.typeflag
= TYPEFLAG_GLOBAL_HEADER
;
135 strcpy(header
.name
, "pax_global_header");
137 *header
.typeflag
= TYPEFLAG_EXT_HEADER
;
139 sprintf(header
.name
, "%s.paxheader", sha1_to_hex(sha1
));
141 if (S_ISDIR(mode
) || S_ISGITLINK(mode
)) {
142 *header
.typeflag
= TYPEFLAG_DIR
;
143 mode
= (mode
| 0777) & ~tar_umask
;
144 } else if (S_ISLNK(mode
)) {
145 *header
.typeflag
= TYPEFLAG_LNK
;
147 } else if (S_ISREG(mode
)) {
148 *header
.typeflag
= TYPEFLAG_REG
;
149 mode
= (mode
| ((mode
& 0100) ? 0777 : 0666)) & ~tar_umask
;
151 return error("unsupported file mode: 0%o (SHA1: %s)",
152 mode
, sha1_to_hex(sha1
));
154 if (pathlen
> sizeof(header
.name
)) {
155 size_t plen
= get_path_prefix(path
, pathlen
,
156 sizeof(header
.prefix
));
157 size_t rest
= pathlen
- plen
- 1;
158 if (plen
> 0 && rest
<= sizeof(header
.name
)) {
159 memcpy(header
.prefix
, path
, plen
);
160 memcpy(header
.name
, path
+ plen
+ 1, rest
);
162 sprintf(header
.name
, "%s.data",
164 strbuf_append_ext_header(&ext_header
, "path",
168 memcpy(header
.name
, path
, pathlen
);
171 if (S_ISLNK(mode
) && buffer
) {
172 if (size
> sizeof(header
.linkname
)) {
173 sprintf(header
.linkname
, "see %s.paxheader",
175 strbuf_append_ext_header(&ext_header
, "linkpath",
178 memcpy(header
.linkname
, buffer
, size
);
181 sprintf(header
.mode
, "%07o", mode
& 07777);
182 sprintf(header
.size
, "%011lo", S_ISREG(mode
) ? size
: 0);
183 sprintf(header
.mtime
, "%011lo", args
->time
);
185 sprintf(header
.uid
, "%07o", 0);
186 sprintf(header
.gid
, "%07o", 0);
187 strlcpy(header
.uname
, "root", sizeof(header
.uname
));
188 strlcpy(header
.gname
, "root", sizeof(header
.gname
));
189 sprintf(header
.devmajor
, "%07o", 0);
190 sprintf(header
.devminor
, "%07o", 0);
192 memcpy(header
.magic
, "ustar", 6);
193 memcpy(header
.version
, "00", 2);
195 sprintf(header
.chksum
, "%07o", ustar_header_chksum(&header
));
197 if (ext_header
.len
> 0) {
198 err
= write_tar_entry(args
, sha1
, NULL
, 0, 0, ext_header
.buf
,
203 strbuf_release(&ext_header
);
204 write_blocked(&header
, sizeof(header
));
205 if (S_ISREG(mode
) && buffer
&& size
> 0)
206 write_blocked(buffer
, size
);
210 static int write_global_extended_header(struct archiver_args
*args
)
212 const unsigned char *sha1
= args
->commit_sha1
;
213 struct strbuf ext_header
= STRBUF_INIT
;
216 strbuf_append_ext_header(&ext_header
, "comment", sha1_to_hex(sha1
), 40);
217 err
= write_tar_entry(args
, NULL
, NULL
, 0, 0, ext_header
.buf
,
219 strbuf_release(&ext_header
);
223 static int git_tar_config(const char *var
, const char *value
, void *cb
)
225 if (!strcmp(var
, "tar.umask")) {
226 if (value
&& !strcmp(value
, "user")) {
227 tar_umask
= umask(0);
230 tar_umask
= git_config_int(var
, value
);
234 return git_default_config(var
, value
, cb
);
237 int write_tar_archive(struct archiver_args
*args
)
241 git_config(git_tar_config
, NULL
);
243 if (args
->commit_sha1
)
244 err
= write_global_extended_header(args
);
246 err
= write_archive_entries(args
, write_tar_entry
);