Sync with 'maint'
[git/gitster.git] / pack-write.c
blob8c7dfddc5aa71a76bce2724d9b6b9806e58e7124
1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
4 #include "environment.h"
5 #include "gettext.h"
6 #include "hex.h"
7 #include "pack.h"
8 #include "csum-file.h"
9 #include "remote.h"
10 #include "chunk-format.h"
11 #include "object-file.h"
12 #include "pack-mtimes.h"
13 #include "pack-objects.h"
14 #include "pack-revindex.h"
15 #include "path.h"
16 #include "repository.h"
17 #include "strbuf.h"
19 void reset_pack_idx_option(struct pack_idx_option *opts)
21 memset(opts, 0, sizeof(*opts));
22 opts->version = 2;
23 opts->off32_limit = 0x7fffffff;
26 static int sha1_compare(const void *_a, const void *_b)
28 struct pack_idx_entry *a = *(struct pack_idx_entry **)_a;
29 struct pack_idx_entry *b = *(struct pack_idx_entry **)_b;
30 return oidcmp(&a->oid, &b->oid);
33 static int cmp_uint32(const void *a_, const void *b_)
35 uint32_t a = *((uint32_t *)a_);
36 uint32_t b = *((uint32_t *)b_);
38 return (a < b) ? -1 : (a != b);
41 static int need_large_offset(off_t offset, const struct pack_idx_option *opts)
43 uint32_t ofsval;
45 if ((offset >> 31) || (opts->off32_limit < offset))
46 return 1;
47 if (!opts->anomaly_nr)
48 return 0;
49 ofsval = offset;
50 return !!bsearch(&ofsval, opts->anomaly, opts->anomaly_nr,
51 sizeof(ofsval), cmp_uint32);
55 * The *sha1 contains the pack content SHA1 hash.
56 * The objects array passed in will be sorted by SHA1 on exit.
58 const char *write_idx_file(const char *index_name, struct pack_idx_entry **objects,
59 int nr_objects, const struct pack_idx_option *opts,
60 const unsigned char *sha1)
62 struct hashfile *f;
63 struct pack_idx_entry **sorted_by_sha, **list, **last;
64 off_t last_obj_offset = 0;
65 int i, fd;
66 uint32_t index_version;
68 if (nr_objects) {
69 sorted_by_sha = objects;
70 list = sorted_by_sha;
71 last = sorted_by_sha + nr_objects;
72 for (i = 0; i < nr_objects; ++i) {
73 if (objects[i]->offset > last_obj_offset)
74 last_obj_offset = objects[i]->offset;
76 QSORT(sorted_by_sha, nr_objects, sha1_compare);
78 else
79 sorted_by_sha = list = last = NULL;
81 if (opts->flags & WRITE_IDX_VERIFY) {
82 assert(index_name);
83 f = hashfd_check(index_name);
84 } else {
85 if (!index_name) {
86 struct strbuf tmp_file = STRBUF_INIT;
87 fd = odb_mkstemp(&tmp_file, "pack/tmp_idx_XXXXXX");
88 index_name = strbuf_detach(&tmp_file, NULL);
89 } else {
90 unlink(index_name);
91 fd = xopen(index_name, O_CREAT|O_EXCL|O_WRONLY, 0600);
93 f = hashfd(fd, index_name);
96 /* if last object's offset is >= 2^31 we should use index V2 */
97 index_version = need_large_offset(last_obj_offset, opts) ? 2 : opts->version;
99 /* index versions 2 and above need a header */
100 if (index_version >= 2) {
101 struct pack_idx_header hdr;
102 hdr.idx_signature = htonl(PACK_IDX_SIGNATURE);
103 hdr.idx_version = htonl(index_version);
104 hashwrite(f, &hdr, sizeof(hdr));
108 * Write the first-level table (the list is sorted,
109 * but we use a 256-entry lookup to be able to avoid
110 * having to do eight extra binary search iterations).
112 for (i = 0; i < 256; i++) {
113 struct pack_idx_entry **next = list;
114 while (next < last) {
115 struct pack_idx_entry *obj = *next;
116 if (obj->oid.hash[0] != i)
117 break;
118 next++;
120 hashwrite_be32(f, next - sorted_by_sha);
121 list = next;
125 * Write the actual SHA1 entries..
127 list = sorted_by_sha;
128 for (i = 0; i < nr_objects; i++) {
129 struct pack_idx_entry *obj = *list++;
130 if (index_version < 2)
131 hashwrite_be32(f, obj->offset);
132 hashwrite(f, obj->oid.hash, the_hash_algo->rawsz);
133 if ((opts->flags & WRITE_IDX_STRICT) &&
134 (i && oideq(&list[-2]->oid, &obj->oid)))
135 die("The same object %s appears twice in the pack",
136 oid_to_hex(&obj->oid));
139 if (index_version >= 2) {
140 unsigned int nr_large_offset = 0;
142 /* write the crc32 table */
143 list = sorted_by_sha;
144 for (i = 0; i < nr_objects; i++) {
145 struct pack_idx_entry *obj = *list++;
146 hashwrite_be32(f, obj->crc32);
149 /* write the 32-bit offset table */
150 list = sorted_by_sha;
151 for (i = 0; i < nr_objects; i++) {
152 struct pack_idx_entry *obj = *list++;
153 uint32_t offset;
155 offset = (need_large_offset(obj->offset, opts)
156 ? (0x80000000 | nr_large_offset++)
157 : obj->offset);
158 hashwrite_be32(f, offset);
161 /* write the large offset table */
162 list = sorted_by_sha;
163 while (nr_large_offset) {
164 struct pack_idx_entry *obj = *list++;
165 uint64_t offset = obj->offset;
167 if (!need_large_offset(offset, opts))
168 continue;
169 hashwrite_be64(f, offset);
170 nr_large_offset--;
174 hashwrite(f, sha1, the_hash_algo->rawsz);
175 finalize_hashfile(f, NULL, FSYNC_COMPONENT_PACK_METADATA,
176 CSUM_HASH_IN_STREAM | CSUM_CLOSE |
177 ((opts->flags & WRITE_IDX_VERIFY) ? 0 : CSUM_FSYNC));
178 return index_name;
181 static int pack_order_cmp(const void *va, const void *vb, void *ctx)
183 struct pack_idx_entry **objects = ctx;
185 off_t oa = objects[*(uint32_t*)va]->offset;
186 off_t ob = objects[*(uint32_t*)vb]->offset;
188 if (oa < ob)
189 return -1;
190 if (oa > ob)
191 return 1;
192 return 0;
195 static void write_rev_header(struct hashfile *f)
197 hashwrite_be32(f, RIDX_SIGNATURE);
198 hashwrite_be32(f, RIDX_VERSION);
199 hashwrite_be32(f, oid_version(the_hash_algo));
202 static void write_rev_index_positions(struct hashfile *f,
203 uint32_t *pack_order,
204 uint32_t nr_objects)
206 uint32_t i;
207 for (i = 0; i < nr_objects; i++)
208 hashwrite_be32(f, pack_order[i]);
211 static void write_rev_trailer(struct hashfile *f, const unsigned char *hash)
213 hashwrite(f, hash, the_hash_algo->rawsz);
216 char *write_rev_file(const char *rev_name,
217 struct pack_idx_entry **objects,
218 uint32_t nr_objects,
219 const unsigned char *hash,
220 unsigned flags)
222 uint32_t *pack_order;
223 uint32_t i;
224 char *ret;
226 if (!(flags & WRITE_REV) && !(flags & WRITE_REV_VERIFY))
227 return NULL;
229 ALLOC_ARRAY(pack_order, nr_objects);
230 for (i = 0; i < nr_objects; i++)
231 pack_order[i] = i;
232 QSORT_S(pack_order, nr_objects, pack_order_cmp, objects);
234 ret = write_rev_file_order(rev_name, pack_order, nr_objects, hash,
235 flags);
237 free(pack_order);
239 return ret;
242 char *write_rev_file_order(const char *rev_name,
243 uint32_t *pack_order,
244 uint32_t nr_objects,
245 const unsigned char *hash,
246 unsigned flags)
248 struct hashfile *f;
249 char *path;
250 int fd;
252 if ((flags & WRITE_REV) && (flags & WRITE_REV_VERIFY))
253 die(_("cannot both write and verify reverse index"));
255 if (flags & WRITE_REV) {
256 if (!rev_name) {
257 struct strbuf tmp_file = STRBUF_INIT;
258 fd = odb_mkstemp(&tmp_file, "pack/tmp_rev_XXXXXX");
259 path = strbuf_detach(&tmp_file, NULL);
260 } else {
261 unlink(rev_name);
262 fd = xopen(rev_name, O_CREAT|O_EXCL|O_WRONLY, 0600);
263 path = xstrdup(rev_name);
265 f = hashfd(fd, path);
266 } else if (flags & WRITE_REV_VERIFY) {
267 struct stat statbuf;
268 if (stat(rev_name, &statbuf)) {
269 if (errno == ENOENT) {
270 /* .rev files are optional */
271 return NULL;
272 } else
273 die_errno(_("could not stat: %s"), rev_name);
275 f = hashfd_check(rev_name);
276 path = xstrdup(rev_name);
277 } else {
278 return NULL;
281 write_rev_header(f);
283 write_rev_index_positions(f, pack_order, nr_objects);
284 write_rev_trailer(f, hash);
286 if (adjust_shared_perm(path) < 0)
287 die(_("failed to make %s readable"), path);
289 finalize_hashfile(f, NULL, FSYNC_COMPONENT_PACK_METADATA,
290 CSUM_HASH_IN_STREAM | CSUM_CLOSE |
291 ((flags & WRITE_IDX_VERIFY) ? 0 : CSUM_FSYNC));
293 return path;
296 static void write_mtimes_header(struct hashfile *f)
298 hashwrite_be32(f, MTIMES_SIGNATURE);
299 hashwrite_be32(f, MTIMES_VERSION);
300 hashwrite_be32(f, oid_version(the_hash_algo));
304 * Writes the object mtimes of "objects" for use in a .mtimes file.
305 * Note that objects must be in lexicographic (index) order, which is
306 * the expected ordering of these values in the .mtimes file.
308 static void write_mtimes_objects(struct hashfile *f,
309 struct packing_data *to_pack,
310 struct pack_idx_entry **objects,
311 uint32_t nr_objects)
313 uint32_t i;
314 for (i = 0; i < nr_objects; i++) {
315 struct object_entry *e = (struct object_entry*)objects[i];
316 hashwrite_be32(f, oe_cruft_mtime(to_pack, e));
320 static void write_mtimes_trailer(struct hashfile *f, const unsigned char *hash)
322 hashwrite(f, hash, the_hash_algo->rawsz);
325 static char *write_mtimes_file(struct packing_data *to_pack,
326 struct pack_idx_entry **objects,
327 uint32_t nr_objects,
328 const unsigned char *hash)
330 struct strbuf tmp_file = STRBUF_INIT;
331 char *mtimes_name;
332 struct hashfile *f;
333 int fd;
335 if (!to_pack)
336 BUG("cannot call write_mtimes_file with NULL packing_data");
338 fd = odb_mkstemp(&tmp_file, "pack/tmp_mtimes_XXXXXX");
339 mtimes_name = strbuf_detach(&tmp_file, NULL);
340 f = hashfd(fd, mtimes_name);
342 write_mtimes_header(f);
343 write_mtimes_objects(f, to_pack, objects, nr_objects);
344 write_mtimes_trailer(f, hash);
346 if (adjust_shared_perm(mtimes_name) < 0)
347 die(_("failed to make %s readable"), mtimes_name);
349 finalize_hashfile(f, NULL, FSYNC_COMPONENT_PACK_METADATA,
350 CSUM_HASH_IN_STREAM | CSUM_CLOSE | CSUM_FSYNC);
352 return mtimes_name;
355 off_t write_pack_header(struct hashfile *f, uint32_t nr_entries)
357 struct pack_header hdr;
359 hdr.hdr_signature = htonl(PACK_SIGNATURE);
360 hdr.hdr_version = htonl(PACK_VERSION);
361 hdr.hdr_entries = htonl(nr_entries);
362 hashwrite(f, &hdr, sizeof(hdr));
363 return sizeof(hdr);
367 * Update pack header with object_count and compute new SHA1 for pack data
368 * associated to pack_fd, and write that SHA1 at the end. That new SHA1
369 * is also returned in new_pack_sha1.
371 * If partial_pack_sha1 is non null, then the SHA1 of the existing pack
372 * (without the header update) is computed and validated against the
373 * one provided in partial_pack_sha1. The validation is performed at
374 * partial_pack_offset bytes in the pack file. The SHA1 of the remaining
375 * data (i.e. from partial_pack_offset to the end) is then computed and
376 * returned in partial_pack_sha1.
378 * Note that new_pack_sha1 is updated last, so both new_pack_sha1 and
379 * partial_pack_sha1 can refer to the same buffer if the caller is not
380 * interested in the resulting SHA1 of pack data above partial_pack_offset.
382 void fixup_pack_header_footer(int pack_fd,
383 unsigned char *new_pack_hash,
384 const char *pack_name,
385 uint32_t object_count,
386 unsigned char *partial_pack_hash,
387 off_t partial_pack_offset)
389 int aligned_sz, buf_sz = 8 * 1024;
390 git_hash_ctx old_hash_ctx, new_hash_ctx;
391 struct pack_header hdr;
392 char *buf;
393 ssize_t read_result;
395 the_hash_algo->init_fn(&old_hash_ctx);
396 the_hash_algo->init_fn(&new_hash_ctx);
398 if (lseek(pack_fd, 0, SEEK_SET) != 0)
399 die_errno("Failed seeking to start of '%s'", pack_name);
400 read_result = read_in_full(pack_fd, &hdr, sizeof(hdr));
401 if (read_result < 0)
402 die_errno("Unable to reread header of '%s'", pack_name);
403 else if (read_result != sizeof(hdr))
404 die_errno("Unexpected short read for header of '%s'",
405 pack_name);
406 if (lseek(pack_fd, 0, SEEK_SET) != 0)
407 die_errno("Failed seeking to start of '%s'", pack_name);
408 the_hash_algo->update_fn(&old_hash_ctx, &hdr, sizeof(hdr));
409 hdr.hdr_entries = htonl(object_count);
410 the_hash_algo->update_fn(&new_hash_ctx, &hdr, sizeof(hdr));
411 write_or_die(pack_fd, &hdr, sizeof(hdr));
412 partial_pack_offset -= sizeof(hdr);
414 buf = xmalloc(buf_sz);
415 aligned_sz = buf_sz - sizeof(hdr);
416 for (;;) {
417 ssize_t m, n;
418 m = (partial_pack_hash && partial_pack_offset < aligned_sz) ?
419 partial_pack_offset : aligned_sz;
420 n = xread(pack_fd, buf, m);
421 if (!n)
422 break;
423 if (n < 0)
424 die_errno("Failed to checksum '%s'", pack_name);
425 the_hash_algo->update_fn(&new_hash_ctx, buf, n);
427 aligned_sz -= n;
428 if (!aligned_sz)
429 aligned_sz = buf_sz;
431 if (!partial_pack_hash)
432 continue;
434 the_hash_algo->update_fn(&old_hash_ctx, buf, n);
435 partial_pack_offset -= n;
436 if (partial_pack_offset == 0) {
437 unsigned char hash[GIT_MAX_RAWSZ];
438 the_hash_algo->final_fn(hash, &old_hash_ctx);
439 if (!hasheq(hash, partial_pack_hash,
440 the_repository->hash_algo))
441 die("Unexpected checksum for %s "
442 "(disk corruption?)", pack_name);
444 * Now let's compute the SHA1 of the remainder of the
445 * pack, which also means making partial_pack_offset
446 * big enough not to matter anymore.
448 the_hash_algo->init_fn(&old_hash_ctx);
449 partial_pack_offset = ~partial_pack_offset;
450 partial_pack_offset -= MSB(partial_pack_offset, 1);
453 free(buf);
455 if (partial_pack_hash)
456 the_hash_algo->final_fn(partial_pack_hash, &old_hash_ctx);
457 the_hash_algo->final_fn(new_pack_hash, &new_hash_ctx);
458 write_or_die(pack_fd, new_pack_hash, the_hash_algo->rawsz);
459 fsync_component_or_die(FSYNC_COMPONENT_PACK, pack_fd, pack_name);
462 char *index_pack_lockfile(int ip_out, int *is_well_formed)
464 char packname[GIT_MAX_HEXSZ + 6];
465 const int len = the_hash_algo->hexsz + 6;
468 * The first thing we expect from index-pack's output
469 * is "pack\t%40s\n" or "keep\t%40s\n" (46 bytes) where
470 * %40s is the newly created pack SHA1 name. In the "keep"
471 * case, we need it to remove the corresponding .keep file
472 * later on. If we don't get that then tough luck with it.
474 if (read_in_full(ip_out, packname, len) == len && packname[len-1] == '\n') {
475 const char *name;
477 if (is_well_formed)
478 *is_well_formed = 1;
479 packname[len-1] = 0;
480 if (skip_prefix(packname, "keep\t", &name))
481 return xstrfmt("%s/pack/pack-%s.keep",
482 repo_get_object_directory(the_repository), name);
483 return NULL;
485 if (is_well_formed)
486 *is_well_formed = 0;
487 return NULL;
491 * The per-object header is a pretty dense thing, which is
492 * - first byte: low four bits are "size", then three bits of "type",
493 * and the high bit is "size continues".
494 * - each byte afterwards: low seven bits are size continuation,
495 * with the high bit being "size continues"
497 int encode_in_pack_object_header(unsigned char *hdr, int hdr_len,
498 enum object_type type, uintmax_t size)
500 int n = 1;
501 unsigned char c;
503 if (type < OBJ_COMMIT || type > OBJ_REF_DELTA)
504 die("bad type %d", type);
506 c = (type << 4) | (size & 15);
507 size >>= 4;
508 while (size) {
509 if (n == hdr_len)
510 die("object size is too enormous to format");
511 *hdr++ = c | 0x80;
512 c = size & 0x7f;
513 size >>= 7;
514 n++;
516 *hdr = c;
517 return n;
520 struct hashfile *create_tmp_packfile(char **pack_tmp_name)
522 struct strbuf tmpname = STRBUF_INIT;
523 int fd;
525 fd = odb_mkstemp(&tmpname, "pack/tmp_pack_XXXXXX");
526 *pack_tmp_name = strbuf_detach(&tmpname, NULL);
527 return hashfd(fd, *pack_tmp_name);
530 static void rename_tmp_packfile(struct strbuf *name_prefix, const char *source,
531 const char *ext)
533 size_t name_prefix_len = name_prefix->len;
535 strbuf_addstr(name_prefix, ext);
536 if (finalize_object_file(source, name_prefix->buf))
537 die("unable to rename temporary file to '%s'",
538 name_prefix->buf);
539 strbuf_setlen(name_prefix, name_prefix_len);
542 void rename_tmp_packfile_idx(struct strbuf *name_buffer,
543 char **idx_tmp_name)
545 rename_tmp_packfile(name_buffer, *idx_tmp_name, "idx");
548 void stage_tmp_packfiles(struct strbuf *name_buffer,
549 const char *pack_tmp_name,
550 struct pack_idx_entry **written_list,
551 uint32_t nr_written,
552 struct packing_data *to_pack,
553 struct pack_idx_option *pack_idx_opts,
554 unsigned char hash[],
555 char **idx_tmp_name)
557 char *rev_tmp_name = NULL;
558 char *mtimes_tmp_name = NULL;
560 if (adjust_shared_perm(pack_tmp_name))
561 die_errno("unable to make temporary pack file readable");
563 *idx_tmp_name = (char *)write_idx_file(NULL, written_list, nr_written,
564 pack_idx_opts, hash);
565 if (adjust_shared_perm(*idx_tmp_name))
566 die_errno("unable to make temporary index file readable");
568 rev_tmp_name = write_rev_file(NULL, written_list, nr_written, hash,
569 pack_idx_opts->flags);
571 if (pack_idx_opts->flags & WRITE_MTIMES) {
572 mtimes_tmp_name = write_mtimes_file(to_pack, written_list,
573 nr_written,
574 hash);
577 rename_tmp_packfile(name_buffer, pack_tmp_name, "pack");
578 if (rev_tmp_name)
579 rename_tmp_packfile(name_buffer, rev_tmp_name, "rev");
580 if (mtimes_tmp_name)
581 rename_tmp_packfile(name_buffer, mtimes_tmp_name, "mtimes");
583 free(rev_tmp_name);
584 free(mtimes_tmp_name);
587 void write_promisor_file(const char *promisor_name, struct ref **sought, int nr_sought)
589 int i, err;
590 FILE *output = xfopen(promisor_name, "w");
592 for (i = 0; i < nr_sought; i++)
593 fprintf(output, "%s %s\n", oid_to_hex(&sought[i]->old_oid),
594 sought[i]->name);
596 err = ferror(output);
597 err |= fclose(output);
598 if (err)
599 die(_("could not write '%s' promisor file"), promisor_name);