t5332-multi-pack-reuse.sh: demonstrate duplicate packing failure
[git/gitster.git] / pack-write.c
blobf415604c15990b66111a689019f2cfde6f964f82
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 const 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 const 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 const 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 int fd;
251 if ((flags & WRITE_REV) && (flags & WRITE_REV_VERIFY))
252 die(_("cannot both write and verify reverse index"));
254 if (flags & WRITE_REV) {
255 if (!rev_name) {
256 struct strbuf tmp_file = STRBUF_INIT;
257 fd = odb_mkstemp(&tmp_file, "pack/tmp_rev_XXXXXX");
258 rev_name = strbuf_detach(&tmp_file, NULL);
259 } else {
260 unlink(rev_name);
261 fd = xopen(rev_name, O_CREAT|O_EXCL|O_WRONLY, 0600);
263 f = hashfd(fd, rev_name);
264 } else if (flags & WRITE_REV_VERIFY) {
265 struct stat statbuf;
266 if (stat(rev_name, &statbuf)) {
267 if (errno == ENOENT) {
268 /* .rev files are optional */
269 return NULL;
270 } else
271 die_errno(_("could not stat: %s"), rev_name);
273 f = hashfd_check(rev_name);
274 } else
275 return NULL;
277 write_rev_header(f);
279 write_rev_index_positions(f, pack_order, nr_objects);
280 write_rev_trailer(f, hash);
282 if (rev_name && adjust_shared_perm(rev_name) < 0)
283 die(_("failed to make %s readable"), rev_name);
285 finalize_hashfile(f, NULL, FSYNC_COMPONENT_PACK_METADATA,
286 CSUM_HASH_IN_STREAM | CSUM_CLOSE |
287 ((flags & WRITE_IDX_VERIFY) ? 0 : CSUM_FSYNC));
289 return rev_name;
292 static void write_mtimes_header(struct hashfile *f)
294 hashwrite_be32(f, MTIMES_SIGNATURE);
295 hashwrite_be32(f, MTIMES_VERSION);
296 hashwrite_be32(f, oid_version(the_hash_algo));
300 * Writes the object mtimes of "objects" for use in a .mtimes file.
301 * Note that objects must be in lexicographic (index) order, which is
302 * the expected ordering of these values in the .mtimes file.
304 static void write_mtimes_objects(struct hashfile *f,
305 struct packing_data *to_pack,
306 struct pack_idx_entry **objects,
307 uint32_t nr_objects)
309 uint32_t i;
310 for (i = 0; i < nr_objects; i++) {
311 struct object_entry *e = (struct object_entry*)objects[i];
312 hashwrite_be32(f, oe_cruft_mtime(to_pack, e));
316 static void write_mtimes_trailer(struct hashfile *f, const unsigned char *hash)
318 hashwrite(f, hash, the_hash_algo->rawsz);
321 static char *write_mtimes_file(struct packing_data *to_pack,
322 struct pack_idx_entry **objects,
323 uint32_t nr_objects,
324 const unsigned char *hash)
326 struct strbuf tmp_file = STRBUF_INIT;
327 char *mtimes_name;
328 struct hashfile *f;
329 int fd;
331 if (!to_pack)
332 BUG("cannot call write_mtimes_file with NULL packing_data");
334 fd = odb_mkstemp(&tmp_file, "pack/tmp_mtimes_XXXXXX");
335 mtimes_name = strbuf_detach(&tmp_file, NULL);
336 f = hashfd(fd, mtimes_name);
338 write_mtimes_header(f);
339 write_mtimes_objects(f, to_pack, objects, nr_objects);
340 write_mtimes_trailer(f, hash);
342 if (adjust_shared_perm(mtimes_name) < 0)
343 die(_("failed to make %s readable"), mtimes_name);
345 finalize_hashfile(f, NULL, FSYNC_COMPONENT_PACK_METADATA,
346 CSUM_HASH_IN_STREAM | CSUM_CLOSE | CSUM_FSYNC);
348 return mtimes_name;
351 off_t write_pack_header(struct hashfile *f, uint32_t nr_entries)
353 struct pack_header hdr;
355 hdr.hdr_signature = htonl(PACK_SIGNATURE);
356 hdr.hdr_version = htonl(PACK_VERSION);
357 hdr.hdr_entries = htonl(nr_entries);
358 hashwrite(f, &hdr, sizeof(hdr));
359 return sizeof(hdr);
363 * Update pack header with object_count and compute new SHA1 for pack data
364 * associated to pack_fd, and write that SHA1 at the end. That new SHA1
365 * is also returned in new_pack_sha1.
367 * If partial_pack_sha1 is non null, then the SHA1 of the existing pack
368 * (without the header update) is computed and validated against the
369 * one provided in partial_pack_sha1. The validation is performed at
370 * partial_pack_offset bytes in the pack file. The SHA1 of the remaining
371 * data (i.e. from partial_pack_offset to the end) is then computed and
372 * returned in partial_pack_sha1.
374 * Note that new_pack_sha1 is updated last, so both new_pack_sha1 and
375 * partial_pack_sha1 can refer to the same buffer if the caller is not
376 * interested in the resulting SHA1 of pack data above partial_pack_offset.
378 void fixup_pack_header_footer(int pack_fd,
379 unsigned char *new_pack_hash,
380 const char *pack_name,
381 uint32_t object_count,
382 unsigned char *partial_pack_hash,
383 off_t partial_pack_offset)
385 int aligned_sz, buf_sz = 8 * 1024;
386 git_hash_ctx old_hash_ctx, new_hash_ctx;
387 struct pack_header hdr;
388 char *buf;
389 ssize_t read_result;
391 the_hash_algo->init_fn(&old_hash_ctx);
392 the_hash_algo->init_fn(&new_hash_ctx);
394 if (lseek(pack_fd, 0, SEEK_SET) != 0)
395 die_errno("Failed seeking to start of '%s'", pack_name);
396 read_result = read_in_full(pack_fd, &hdr, sizeof(hdr));
397 if (read_result < 0)
398 die_errno("Unable to reread header of '%s'", pack_name);
399 else if (read_result != sizeof(hdr))
400 die_errno("Unexpected short read for header of '%s'",
401 pack_name);
402 if (lseek(pack_fd, 0, SEEK_SET) != 0)
403 die_errno("Failed seeking to start of '%s'", pack_name);
404 the_hash_algo->update_fn(&old_hash_ctx, &hdr, sizeof(hdr));
405 hdr.hdr_entries = htonl(object_count);
406 the_hash_algo->update_fn(&new_hash_ctx, &hdr, sizeof(hdr));
407 write_or_die(pack_fd, &hdr, sizeof(hdr));
408 partial_pack_offset -= sizeof(hdr);
410 buf = xmalloc(buf_sz);
411 aligned_sz = buf_sz - sizeof(hdr);
412 for (;;) {
413 ssize_t m, n;
414 m = (partial_pack_hash && partial_pack_offset < aligned_sz) ?
415 partial_pack_offset : aligned_sz;
416 n = xread(pack_fd, buf, m);
417 if (!n)
418 break;
419 if (n < 0)
420 die_errno("Failed to checksum '%s'", pack_name);
421 the_hash_algo->update_fn(&new_hash_ctx, buf, n);
423 aligned_sz -= n;
424 if (!aligned_sz)
425 aligned_sz = buf_sz;
427 if (!partial_pack_hash)
428 continue;
430 the_hash_algo->update_fn(&old_hash_ctx, buf, n);
431 partial_pack_offset -= n;
432 if (partial_pack_offset == 0) {
433 unsigned char hash[GIT_MAX_RAWSZ];
434 the_hash_algo->final_fn(hash, &old_hash_ctx);
435 if (!hasheq(hash, partial_pack_hash,
436 the_repository->hash_algo))
437 die("Unexpected checksum for %s "
438 "(disk corruption?)", pack_name);
440 * Now let's compute the SHA1 of the remainder of the
441 * pack, which also means making partial_pack_offset
442 * big enough not to matter anymore.
444 the_hash_algo->init_fn(&old_hash_ctx);
445 partial_pack_offset = ~partial_pack_offset;
446 partial_pack_offset -= MSB(partial_pack_offset, 1);
449 free(buf);
451 if (partial_pack_hash)
452 the_hash_algo->final_fn(partial_pack_hash, &old_hash_ctx);
453 the_hash_algo->final_fn(new_pack_hash, &new_hash_ctx);
454 write_or_die(pack_fd, new_pack_hash, the_hash_algo->rawsz);
455 fsync_component_or_die(FSYNC_COMPONENT_PACK, pack_fd, pack_name);
458 char *index_pack_lockfile(int ip_out, int *is_well_formed)
460 char packname[GIT_MAX_HEXSZ + 6];
461 const int len = the_hash_algo->hexsz + 6;
464 * The first thing we expect from index-pack's output
465 * is "pack\t%40s\n" or "keep\t%40s\n" (46 bytes) where
466 * %40s is the newly created pack SHA1 name. In the "keep"
467 * case, we need it to remove the corresponding .keep file
468 * later on. If we don't get that then tough luck with it.
470 if (read_in_full(ip_out, packname, len) == len && packname[len-1] == '\n') {
471 const char *name;
473 if (is_well_formed)
474 *is_well_formed = 1;
475 packname[len-1] = 0;
476 if (skip_prefix(packname, "keep\t", &name))
477 return xstrfmt("%s/pack/pack-%s.keep",
478 repo_get_object_directory(the_repository), name);
479 return NULL;
481 if (is_well_formed)
482 *is_well_formed = 0;
483 return NULL;
487 * The per-object header is a pretty dense thing, which is
488 * - first byte: low four bits are "size", then three bits of "type",
489 * and the high bit is "size continues".
490 * - each byte afterwards: low seven bits are size continuation,
491 * with the high bit being "size continues"
493 int encode_in_pack_object_header(unsigned char *hdr, int hdr_len,
494 enum object_type type, uintmax_t size)
496 int n = 1;
497 unsigned char c;
499 if (type < OBJ_COMMIT || type > OBJ_REF_DELTA)
500 die("bad type %d", type);
502 c = (type << 4) | (size & 15);
503 size >>= 4;
504 while (size) {
505 if (n == hdr_len)
506 die("object size is too enormous to format");
507 *hdr++ = c | 0x80;
508 c = size & 0x7f;
509 size >>= 7;
510 n++;
512 *hdr = c;
513 return n;
516 struct hashfile *create_tmp_packfile(char **pack_tmp_name)
518 struct strbuf tmpname = STRBUF_INIT;
519 int fd;
521 fd = odb_mkstemp(&tmpname, "pack/tmp_pack_XXXXXX");
522 *pack_tmp_name = strbuf_detach(&tmpname, NULL);
523 return hashfd(fd, *pack_tmp_name);
526 static void rename_tmp_packfile(struct strbuf *name_prefix, const char *source,
527 const char *ext)
529 size_t name_prefix_len = name_prefix->len;
531 strbuf_addstr(name_prefix, ext);
532 if (finalize_object_file(source, name_prefix->buf))
533 die("unable to rename temporary file to '%s'",
534 name_prefix->buf);
535 strbuf_setlen(name_prefix, name_prefix_len);
538 void rename_tmp_packfile_idx(struct strbuf *name_buffer,
539 char **idx_tmp_name)
541 rename_tmp_packfile(name_buffer, *idx_tmp_name, "idx");
544 void stage_tmp_packfiles(struct strbuf *name_buffer,
545 const char *pack_tmp_name,
546 struct pack_idx_entry **written_list,
547 uint32_t nr_written,
548 struct packing_data *to_pack,
549 struct pack_idx_option *pack_idx_opts,
550 unsigned char hash[],
551 char **idx_tmp_name)
553 const char *rev_tmp_name = NULL;
554 char *mtimes_tmp_name = NULL;
556 if (adjust_shared_perm(pack_tmp_name))
557 die_errno("unable to make temporary pack file readable");
559 *idx_tmp_name = (char *)write_idx_file(NULL, written_list, nr_written,
560 pack_idx_opts, hash);
561 if (adjust_shared_perm(*idx_tmp_name))
562 die_errno("unable to make temporary index file readable");
564 rev_tmp_name = write_rev_file(NULL, written_list, nr_written, hash,
565 pack_idx_opts->flags);
567 if (pack_idx_opts->flags & WRITE_MTIMES) {
568 mtimes_tmp_name = write_mtimes_file(to_pack, written_list,
569 nr_written,
570 hash);
573 rename_tmp_packfile(name_buffer, pack_tmp_name, "pack");
574 if (rev_tmp_name)
575 rename_tmp_packfile(name_buffer, rev_tmp_name, "rev");
576 if (mtimes_tmp_name)
577 rename_tmp_packfile(name_buffer, mtimes_tmp_name, "mtimes");
579 free((char *)rev_tmp_name);
580 free(mtimes_tmp_name);
583 void write_promisor_file(const char *promisor_name, struct ref **sought, int nr_sought)
585 int i, err;
586 FILE *output = xfopen(promisor_name, "w");
588 for (i = 0; i < nr_sought; i++)
589 fprintf(output, "%s %s\n", oid_to_hex(&sought[i]->old_oid),
590 sought[i]->name);
592 err = ferror(output);
593 err |= fclose(output);
594 if (err)
595 die(_("could not write '%s' promisor file"), promisor_name);