Merge branch 'ab/config-multi-and-nonbool'
[git.git] / packfile.c
blob2023df1b75b4a4694e49a08ca9c21f61f013659a
1 #include "git-compat-util.h"
2 #include "alloc.h"
3 #include "hex.h"
4 #include "list.h"
5 #include "pack.h"
6 #include "repository.h"
7 #include "dir.h"
8 #include "mergesort.h"
9 #include "packfile.h"
10 #include "delta.h"
11 #include "streaming.h"
12 #include "hash-lookup.h"
13 #include "commit.h"
14 #include "object.h"
15 #include "tag.h"
16 #include "tree-walk.h"
17 #include "tree.h"
18 #include "object-store.h"
19 #include "midx.h"
20 #include "commit-graph.h"
21 #include "promisor-remote.h"
23 char *odb_pack_name(struct strbuf *buf,
24 const unsigned char *hash,
25 const char *ext)
27 strbuf_reset(buf);
28 strbuf_addf(buf, "%s/pack/pack-%s.%s", get_object_directory(),
29 hash_to_hex(hash), ext);
30 return buf->buf;
33 char *sha1_pack_name(const unsigned char *sha1)
35 static struct strbuf buf = STRBUF_INIT;
36 return odb_pack_name(&buf, sha1, "pack");
39 char *sha1_pack_index_name(const unsigned char *sha1)
41 static struct strbuf buf = STRBUF_INIT;
42 return odb_pack_name(&buf, sha1, "idx");
45 static unsigned int pack_used_ctr;
46 static unsigned int pack_mmap_calls;
47 static unsigned int peak_pack_open_windows;
48 static unsigned int pack_open_windows;
49 static unsigned int pack_open_fds;
50 static unsigned int pack_max_fds;
51 static size_t peak_pack_mapped;
52 static size_t pack_mapped;
54 #define SZ_FMT PRIuMAX
55 static inline uintmax_t sz_fmt(size_t s) { return s; }
57 void pack_report(void)
59 fprintf(stderr,
60 "pack_report: getpagesize() = %10" SZ_FMT "\n"
61 "pack_report: core.packedGitWindowSize = %10" SZ_FMT "\n"
62 "pack_report: core.packedGitLimit = %10" SZ_FMT "\n",
63 sz_fmt(getpagesize()),
64 sz_fmt(packed_git_window_size),
65 sz_fmt(packed_git_limit));
66 fprintf(stderr,
67 "pack_report: pack_used_ctr = %10u\n"
68 "pack_report: pack_mmap_calls = %10u\n"
69 "pack_report: pack_open_windows = %10u / %10u\n"
70 "pack_report: pack_mapped = "
71 "%10" SZ_FMT " / %10" SZ_FMT "\n",
72 pack_used_ctr,
73 pack_mmap_calls,
74 pack_open_windows, peak_pack_open_windows,
75 sz_fmt(pack_mapped), sz_fmt(peak_pack_mapped));
79 * Open and mmap the index file at path, perform a couple of
80 * consistency checks, then record its information to p. Return 0 on
81 * success.
83 static int check_packed_git_idx(const char *path, struct packed_git *p)
85 void *idx_map;
86 size_t idx_size;
87 int fd = git_open(path), ret;
88 struct stat st;
89 const unsigned int hashsz = the_hash_algo->rawsz;
91 if (fd < 0)
92 return -1;
93 if (fstat(fd, &st)) {
94 close(fd);
95 return -1;
97 idx_size = xsize_t(st.st_size);
98 if (idx_size < 4 * 256 + hashsz + hashsz) {
99 close(fd);
100 return error("index file %s is too small", path);
102 idx_map = xmmap(NULL, idx_size, PROT_READ, MAP_PRIVATE, fd, 0);
103 close(fd);
105 ret = load_idx(path, hashsz, idx_map, idx_size, p);
107 if (ret)
108 munmap(idx_map, idx_size);
110 return ret;
113 int load_idx(const char *path, const unsigned int hashsz, void *idx_map,
114 size_t idx_size, struct packed_git *p)
116 struct pack_idx_header *hdr = idx_map;
117 uint32_t version, nr, i, *index;
119 if (idx_size < 4 * 256 + hashsz + hashsz)
120 return error("index file %s is too small", path);
121 if (!idx_map)
122 return error("empty data");
124 if (hdr->idx_signature == htonl(PACK_IDX_SIGNATURE)) {
125 version = ntohl(hdr->idx_version);
126 if (version < 2 || version > 2)
127 return error("index file %s is version %"PRIu32
128 " and is not supported by this binary"
129 " (try upgrading GIT to a newer version)",
130 path, version);
131 } else
132 version = 1;
134 nr = 0;
135 index = idx_map;
136 if (version > 1)
137 index += 2; /* skip index header */
138 for (i = 0; i < 256; i++) {
139 uint32_t n = ntohl(index[i]);
140 if (n < nr)
141 return error("non-monotonic index %s", path);
142 nr = n;
145 if (version == 1) {
147 * Total size:
148 * - 256 index entries 4 bytes each
149 * - 24-byte entries * nr (object ID + 4-byte offset)
150 * - hash of the packfile
151 * - file checksum
153 if (idx_size != st_add(4 * 256 + hashsz + hashsz, st_mult(nr, hashsz + 4)))
154 return error("wrong index v1 file size in %s", path);
155 } else if (version == 2) {
157 * Minimum size:
158 * - 8 bytes of header
159 * - 256 index entries 4 bytes each
160 * - object ID entry * nr
161 * - 4-byte crc entry * nr
162 * - 4-byte offset entry * nr
163 * - hash of the packfile
164 * - file checksum
165 * And after the 4-byte offset table might be a
166 * variable sized table containing 8-byte entries
167 * for offsets larger than 2^31.
169 size_t min_size = st_add(8 + 4*256 + hashsz + hashsz, st_mult(nr, hashsz + 4 + 4));
170 size_t max_size = min_size;
171 if (nr)
172 max_size = st_add(max_size, st_mult(nr - 1, 8));
173 if (idx_size < min_size || idx_size > max_size)
174 return error("wrong index v2 file size in %s", path);
175 if (idx_size != min_size &&
177 * make sure we can deal with large pack offsets.
178 * 31-bit signed offset won't be enough, neither
179 * 32-bit unsigned one will be.
181 (sizeof(off_t) <= 4))
182 return error("pack too large for current definition of off_t in %s", path);
183 p->crc_offset = 8 + 4 * 256 + nr * hashsz;
186 p->index_version = version;
187 p->index_data = idx_map;
188 p->index_size = idx_size;
189 p->num_objects = nr;
190 return 0;
193 int open_pack_index(struct packed_git *p)
195 char *idx_name;
196 size_t len;
197 int ret;
199 if (p->index_data)
200 return 0;
202 if (!strip_suffix(p->pack_name, ".pack", &len))
203 BUG("pack_name does not end in .pack");
204 idx_name = xstrfmt("%.*s.idx", (int)len, p->pack_name);
205 ret = check_packed_git_idx(idx_name, p);
206 free(idx_name);
207 return ret;
210 uint32_t get_pack_fanout(struct packed_git *p, uint32_t value)
212 const uint32_t *level1_ofs = p->index_data;
214 if (!level1_ofs) {
215 if (open_pack_index(p))
216 return 0;
217 level1_ofs = p->index_data;
220 if (p->index_version > 1) {
221 level1_ofs += 2;
224 return ntohl(level1_ofs[value]);
227 static struct packed_git *alloc_packed_git(int extra)
229 struct packed_git *p = xmalloc(st_add(sizeof(*p), extra));
230 memset(p, 0, sizeof(*p));
231 p->pack_fd = -1;
232 return p;
235 struct packed_git *parse_pack_index(unsigned char *sha1, const char *idx_path)
237 const char *path = sha1_pack_name(sha1);
238 size_t alloc = st_add(strlen(path), 1);
239 struct packed_git *p = alloc_packed_git(alloc);
241 memcpy(p->pack_name, path, alloc); /* includes NUL */
242 hashcpy(p->hash, sha1);
243 if (check_packed_git_idx(idx_path, p)) {
244 free(p);
245 return NULL;
248 return p;
251 static void scan_windows(struct packed_git *p,
252 struct packed_git **lru_p,
253 struct pack_window **lru_w,
254 struct pack_window **lru_l)
256 struct pack_window *w, *w_l;
258 for (w_l = NULL, w = p->windows; w; w = w->next) {
259 if (!w->inuse_cnt) {
260 if (!*lru_w || w->last_used < (*lru_w)->last_used) {
261 *lru_p = p;
262 *lru_w = w;
263 *lru_l = w_l;
266 w_l = w;
270 static int unuse_one_window(struct packed_git *current)
272 struct packed_git *p, *lru_p = NULL;
273 struct pack_window *lru_w = NULL, *lru_l = NULL;
275 if (current)
276 scan_windows(current, &lru_p, &lru_w, &lru_l);
277 for (p = the_repository->objects->packed_git; p; p = p->next)
278 scan_windows(p, &lru_p, &lru_w, &lru_l);
279 if (lru_p) {
280 munmap(lru_w->base, lru_w->len);
281 pack_mapped -= lru_w->len;
282 if (lru_l)
283 lru_l->next = lru_w->next;
284 else
285 lru_p->windows = lru_w->next;
286 free(lru_w);
287 pack_open_windows--;
288 return 1;
290 return 0;
293 void close_pack_windows(struct packed_git *p)
295 while (p->windows) {
296 struct pack_window *w = p->windows;
298 if (w->inuse_cnt)
299 die("pack '%s' still has open windows to it",
300 p->pack_name);
301 munmap(w->base, w->len);
302 pack_mapped -= w->len;
303 pack_open_windows--;
304 p->windows = w->next;
305 free(w);
309 int close_pack_fd(struct packed_git *p)
311 if (p->pack_fd < 0)
312 return 0;
314 close(p->pack_fd);
315 pack_open_fds--;
316 p->pack_fd = -1;
318 return 1;
321 void close_pack_index(struct packed_git *p)
323 if (p->index_data) {
324 munmap((void *)p->index_data, p->index_size);
325 p->index_data = NULL;
329 static void close_pack_revindex(struct packed_git *p)
331 if (!p->revindex_map)
332 return;
334 munmap((void *)p->revindex_map, p->revindex_size);
335 p->revindex_map = NULL;
336 p->revindex_data = NULL;
339 static void close_pack_mtimes(struct packed_git *p)
341 if (!p->mtimes_map)
342 return;
344 munmap((void *)p->mtimes_map, p->mtimes_size);
345 p->mtimes_map = NULL;
348 void close_pack(struct packed_git *p)
350 close_pack_windows(p);
351 close_pack_fd(p);
352 close_pack_index(p);
353 close_pack_revindex(p);
354 close_pack_mtimes(p);
355 oidset_clear(&p->bad_objects);
358 void close_object_store(struct raw_object_store *o)
360 struct packed_git *p;
362 for (p = o->packed_git; p; p = p->next)
363 if (p->do_not_close)
364 BUG("want to close pack marked 'do-not-close'");
365 else
366 close_pack(p);
368 if (o->multi_pack_index) {
369 close_midx(o->multi_pack_index);
370 o->multi_pack_index = NULL;
373 close_commit_graph(o);
376 void unlink_pack_path(const char *pack_name, int force_delete)
378 static const char *exts[] = {".pack", ".idx", ".rev", ".keep", ".bitmap", ".promisor", ".mtimes"};
379 int i;
380 struct strbuf buf = STRBUF_INIT;
381 size_t plen;
383 strbuf_addstr(&buf, pack_name);
384 strip_suffix_mem(buf.buf, &buf.len, ".pack");
385 plen = buf.len;
387 if (!force_delete) {
388 strbuf_addstr(&buf, ".keep");
389 if (!access(buf.buf, F_OK)) {
390 strbuf_release(&buf);
391 return;
395 for (i = 0; i < ARRAY_SIZE(exts); i++) {
396 strbuf_setlen(&buf, plen);
397 strbuf_addstr(&buf, exts[i]);
398 unlink(buf.buf);
401 strbuf_release(&buf);
405 * The LRU pack is the one with the oldest MRU window, preferring packs
406 * with no used windows, or the oldest mtime if it has no windows allocated.
408 static void find_lru_pack(struct packed_git *p, struct packed_git **lru_p, struct pack_window **mru_w, int *accept_windows_inuse)
410 struct pack_window *w, *this_mru_w;
411 int has_windows_inuse = 0;
414 * Reject this pack if it has windows and the previously selected
415 * one does not. If this pack does not have windows, reject
416 * it if the pack file is newer than the previously selected one.
418 if (*lru_p && !*mru_w && (p->windows || p->mtime > (*lru_p)->mtime))
419 return;
421 for (w = this_mru_w = p->windows; w; w = w->next) {
423 * Reject this pack if any of its windows are in use,
424 * but the previously selected pack did not have any
425 * inuse windows. Otherwise, record that this pack
426 * has windows in use.
428 if (w->inuse_cnt) {
429 if (*accept_windows_inuse)
430 has_windows_inuse = 1;
431 else
432 return;
435 if (w->last_used > this_mru_w->last_used)
436 this_mru_w = w;
439 * Reject this pack if it has windows that have been
440 * used more recently than the previously selected pack.
441 * If the previously selected pack had windows inuse and
442 * we have not encountered a window in this pack that is
443 * inuse, skip this check since we prefer a pack with no
444 * inuse windows to one that has inuse windows.
446 if (*mru_w && *accept_windows_inuse == has_windows_inuse &&
447 this_mru_w->last_used > (*mru_w)->last_used)
448 return;
452 * Select this pack.
454 *mru_w = this_mru_w;
455 *lru_p = p;
456 *accept_windows_inuse = has_windows_inuse;
459 static int close_one_pack(void)
461 struct packed_git *p, *lru_p = NULL;
462 struct pack_window *mru_w = NULL;
463 int accept_windows_inuse = 1;
465 for (p = the_repository->objects->packed_git; p; p = p->next) {
466 if (p->pack_fd == -1)
467 continue;
468 find_lru_pack(p, &lru_p, &mru_w, &accept_windows_inuse);
471 if (lru_p)
472 return close_pack_fd(lru_p);
474 return 0;
477 static unsigned int get_max_fd_limit(void)
479 #ifdef RLIMIT_NOFILE
481 struct rlimit lim;
483 if (!getrlimit(RLIMIT_NOFILE, &lim))
484 return lim.rlim_cur;
486 #endif
488 #ifdef _SC_OPEN_MAX
490 long open_max = sysconf(_SC_OPEN_MAX);
491 if (0 < open_max)
492 return open_max;
494 * Otherwise, we got -1 for one of the two
495 * reasons:
497 * (1) sysconf() did not understand _SC_OPEN_MAX
498 * and signaled an error with -1; or
499 * (2) sysconf() said there is no limit.
501 * We _could_ clear errno before calling sysconf() to
502 * tell these two cases apart and return a huge number
503 * in the latter case to let the caller cap it to a
504 * value that is not so selfish, but letting the
505 * fallback OPEN_MAX codepath take care of these cases
506 * is a lot simpler.
509 #endif
511 #ifdef OPEN_MAX
512 return OPEN_MAX;
513 #else
514 return 1; /* see the caller ;-) */
515 #endif
518 const char *pack_basename(struct packed_git *p)
520 const char *ret = strrchr(p->pack_name, '/');
521 if (ret)
522 ret = ret + 1; /* skip past slash */
523 else
524 ret = p->pack_name; /* we only have a base */
525 return ret;
529 * Do not call this directly as this leaks p->pack_fd on error return;
530 * call open_packed_git() instead.
532 static int open_packed_git_1(struct packed_git *p)
534 struct stat st;
535 struct pack_header hdr;
536 unsigned char hash[GIT_MAX_RAWSZ];
537 unsigned char *idx_hash;
538 ssize_t read_result;
539 const unsigned hashsz = the_hash_algo->rawsz;
541 if (open_pack_index(p))
542 return error("packfile %s index unavailable", p->pack_name);
544 if (!pack_max_fds) {
545 unsigned int max_fds = get_max_fd_limit();
547 /* Save 3 for stdin/stdout/stderr, 22 for work */
548 if (25 < max_fds)
549 pack_max_fds = max_fds - 25;
550 else
551 pack_max_fds = 1;
554 while (pack_max_fds <= pack_open_fds && close_one_pack())
555 ; /* nothing */
557 p->pack_fd = git_open(p->pack_name);
558 if (p->pack_fd < 0 || fstat(p->pack_fd, &st))
559 return -1;
560 pack_open_fds++;
562 /* If we created the struct before we had the pack we lack size. */
563 if (!p->pack_size) {
564 if (!S_ISREG(st.st_mode))
565 return error("packfile %s not a regular file", p->pack_name);
566 p->pack_size = st.st_size;
567 } else if (p->pack_size != st.st_size)
568 return error("packfile %s size changed", p->pack_name);
570 /* Verify we recognize this pack file format. */
571 read_result = read_in_full(p->pack_fd, &hdr, sizeof(hdr));
572 if (read_result < 0)
573 return error_errno("error reading from %s", p->pack_name);
574 if (read_result != sizeof(hdr))
575 return error("file %s is far too short to be a packfile", p->pack_name);
576 if (hdr.hdr_signature != htonl(PACK_SIGNATURE))
577 return error("file %s is not a GIT packfile", p->pack_name);
578 if (!pack_version_ok(hdr.hdr_version))
579 return error("packfile %s is version %"PRIu32" and not"
580 " supported (try upgrading GIT to a newer version)",
581 p->pack_name, ntohl(hdr.hdr_version));
583 /* Verify the pack matches its index. */
584 if (p->num_objects != ntohl(hdr.hdr_entries))
585 return error("packfile %s claims to have %"PRIu32" objects"
586 " while index indicates %"PRIu32" objects",
587 p->pack_name, ntohl(hdr.hdr_entries),
588 p->num_objects);
589 read_result = pread_in_full(p->pack_fd, hash, hashsz,
590 p->pack_size - hashsz);
591 if (read_result < 0)
592 return error_errno("error reading from %s", p->pack_name);
593 if (read_result != hashsz)
594 return error("packfile %s signature is unavailable", p->pack_name);
595 idx_hash = ((unsigned char *)p->index_data) + p->index_size - hashsz * 2;
596 if (!hasheq(hash, idx_hash))
597 return error("packfile %s does not match index", p->pack_name);
598 return 0;
601 static int open_packed_git(struct packed_git *p)
603 if (!open_packed_git_1(p))
604 return 0;
605 close_pack_fd(p);
606 return -1;
609 static int in_window(struct pack_window *win, off_t offset)
611 /* We must promise at least one full hash after the
612 * offset is available from this window, otherwise the offset
613 * is not actually in this window and a different window (which
614 * has that one hash excess) must be used. This is to support
615 * the object header and delta base parsing routines below.
617 off_t win_off = win->offset;
618 return win_off <= offset
619 && (offset + the_hash_algo->rawsz) <= (win_off + win->len);
622 unsigned char *use_pack(struct packed_git *p,
623 struct pack_window **w_cursor,
624 off_t offset,
625 unsigned long *left)
627 struct pack_window *win = *w_cursor;
629 /* Since packfiles end in a hash of their content and it's
630 * pointless to ask for an offset into the middle of that
631 * hash, and the in_window function above wouldn't match
632 * don't allow an offset too close to the end of the file.
634 if (!p->pack_size && p->pack_fd == -1 && open_packed_git(p))
635 die("packfile %s cannot be accessed", p->pack_name);
636 if (offset > (p->pack_size - the_hash_algo->rawsz))
637 die("offset beyond end of packfile (truncated pack?)");
638 if (offset < 0)
639 die(_("offset before end of packfile (broken .idx?)"));
641 if (!win || !in_window(win, offset)) {
642 if (win)
643 win->inuse_cnt--;
644 for (win = p->windows; win; win = win->next) {
645 if (in_window(win, offset))
646 break;
648 if (!win) {
649 size_t window_align = packed_git_window_size / 2;
650 off_t len;
652 if (p->pack_fd == -1 && open_packed_git(p))
653 die("packfile %s cannot be accessed", p->pack_name);
655 CALLOC_ARRAY(win, 1);
656 win->offset = (offset / window_align) * window_align;
657 len = p->pack_size - win->offset;
658 if (len > packed_git_window_size)
659 len = packed_git_window_size;
660 win->len = (size_t)len;
661 pack_mapped += win->len;
662 while (packed_git_limit < pack_mapped
663 && unuse_one_window(p))
664 ; /* nothing */
665 win->base = xmmap_gently(NULL, win->len,
666 PROT_READ, MAP_PRIVATE,
667 p->pack_fd, win->offset);
668 if (win->base == MAP_FAILED)
669 die_errno(_("packfile %s cannot be mapped%s"),
670 p->pack_name, mmap_os_err());
671 if (!win->offset && win->len == p->pack_size
672 && !p->do_not_close)
673 close_pack_fd(p);
674 pack_mmap_calls++;
675 pack_open_windows++;
676 if (pack_mapped > peak_pack_mapped)
677 peak_pack_mapped = pack_mapped;
678 if (pack_open_windows > peak_pack_open_windows)
679 peak_pack_open_windows = pack_open_windows;
680 win->next = p->windows;
681 p->windows = win;
684 if (win != *w_cursor) {
685 win->last_used = pack_used_ctr++;
686 win->inuse_cnt++;
687 *w_cursor = win;
689 offset -= win->offset;
690 if (left)
691 *left = win->len - xsize_t(offset);
692 return win->base + offset;
695 void unuse_pack(struct pack_window **w_cursor)
697 struct pack_window *w = *w_cursor;
698 if (w) {
699 w->inuse_cnt--;
700 *w_cursor = NULL;
704 struct packed_git *add_packed_git(const char *path, size_t path_len, int local)
706 struct stat st;
707 size_t alloc;
708 struct packed_git *p;
711 * Make sure a corresponding .pack file exists and that
712 * the index looks sane.
714 if (!strip_suffix_mem(path, &path_len, ".idx"))
715 return NULL;
718 * ".promisor" is long enough to hold any suffix we're adding (and
719 * the use xsnprintf double-checks that)
721 alloc = st_add3(path_len, strlen(".promisor"), 1);
722 p = alloc_packed_git(alloc);
723 memcpy(p->pack_name, path, path_len);
725 xsnprintf(p->pack_name + path_len, alloc - path_len, ".keep");
726 if (!access(p->pack_name, F_OK))
727 p->pack_keep = 1;
729 xsnprintf(p->pack_name + path_len, alloc - path_len, ".promisor");
730 if (!access(p->pack_name, F_OK))
731 p->pack_promisor = 1;
733 xsnprintf(p->pack_name + path_len, alloc - path_len, ".mtimes");
734 if (!access(p->pack_name, F_OK))
735 p->is_cruft = 1;
737 xsnprintf(p->pack_name + path_len, alloc - path_len, ".pack");
738 if (stat(p->pack_name, &st) || !S_ISREG(st.st_mode)) {
739 free(p);
740 return NULL;
743 /* ok, it looks sane as far as we can check without
744 * actually mapping the pack file.
746 p->pack_size = st.st_size;
747 p->pack_local = local;
748 p->mtime = st.st_mtime;
749 if (path_len < the_hash_algo->hexsz ||
750 get_sha1_hex(path + path_len - the_hash_algo->hexsz, p->hash))
751 hashclr(p->hash);
752 return p;
755 void install_packed_git(struct repository *r, struct packed_git *pack)
757 if (pack->pack_fd != -1)
758 pack_open_fds++;
760 pack->next = r->objects->packed_git;
761 r->objects->packed_git = pack;
763 hashmap_entry_init(&pack->packmap_ent, strhash(pack->pack_name));
764 hashmap_add(&r->objects->pack_map, &pack->packmap_ent);
767 void (*report_garbage)(unsigned seen_bits, const char *path);
769 static void report_helper(const struct string_list *list,
770 int seen_bits, int first, int last)
772 if (seen_bits == (PACKDIR_FILE_PACK|PACKDIR_FILE_IDX))
773 return;
775 for (; first < last; first++)
776 report_garbage(seen_bits, list->items[first].string);
779 static void report_pack_garbage(struct string_list *list)
781 int i, baselen = -1, first = 0, seen_bits = 0;
783 if (!report_garbage)
784 return;
786 string_list_sort(list);
788 for (i = 0; i < list->nr; i++) {
789 const char *path = list->items[i].string;
790 if (baselen != -1 &&
791 strncmp(path, list->items[first].string, baselen)) {
792 report_helper(list, seen_bits, first, i);
793 baselen = -1;
794 seen_bits = 0;
796 if (baselen == -1) {
797 const char *dot = strrchr(path, '.');
798 if (!dot) {
799 report_garbage(PACKDIR_FILE_GARBAGE, path);
800 continue;
802 baselen = dot - path + 1;
803 first = i;
805 if (!strcmp(path + baselen, "pack"))
806 seen_bits |= 1;
807 else if (!strcmp(path + baselen, "idx"))
808 seen_bits |= 2;
810 report_helper(list, seen_bits, first, list->nr);
813 void for_each_file_in_pack_dir(const char *objdir,
814 each_file_in_pack_dir_fn fn,
815 void *data)
817 struct strbuf path = STRBUF_INIT;
818 size_t dirnamelen;
819 DIR *dir;
820 struct dirent *de;
822 strbuf_addstr(&path, objdir);
823 strbuf_addstr(&path, "/pack");
824 dir = opendir(path.buf);
825 if (!dir) {
826 if (errno != ENOENT)
827 error_errno("unable to open object pack directory: %s",
828 path.buf);
829 strbuf_release(&path);
830 return;
832 strbuf_addch(&path, '/');
833 dirnamelen = path.len;
834 while ((de = readdir_skip_dot_and_dotdot(dir)) != NULL) {
835 strbuf_setlen(&path, dirnamelen);
836 strbuf_addstr(&path, de->d_name);
838 fn(path.buf, path.len, de->d_name, data);
841 closedir(dir);
842 strbuf_release(&path);
845 struct prepare_pack_data {
846 struct repository *r;
847 struct string_list *garbage;
848 int local;
849 struct multi_pack_index *m;
852 static void prepare_pack(const char *full_name, size_t full_name_len,
853 const char *file_name, void *_data)
855 struct prepare_pack_data *data = (struct prepare_pack_data *)_data;
856 struct packed_git *p;
857 size_t base_len = full_name_len;
859 if (strip_suffix_mem(full_name, &base_len, ".idx") &&
860 !(data->m && midx_contains_pack(data->m, file_name))) {
861 struct hashmap_entry hent;
862 char *pack_name = xstrfmt("%.*s.pack", (int)base_len, full_name);
863 unsigned int hash = strhash(pack_name);
864 hashmap_entry_init(&hent, hash);
866 /* Don't reopen a pack we already have. */
867 if (!hashmap_get(&data->r->objects->pack_map, &hent, pack_name)) {
868 p = add_packed_git(full_name, full_name_len, data->local);
869 if (p)
870 install_packed_git(data->r, p);
872 free(pack_name);
875 if (!report_garbage)
876 return;
878 if (!strcmp(file_name, "multi-pack-index"))
879 return;
880 if (starts_with(file_name, "multi-pack-index") &&
881 (ends_with(file_name, ".bitmap") || ends_with(file_name, ".rev")))
882 return;
883 if (ends_with(file_name, ".idx") ||
884 ends_with(file_name, ".rev") ||
885 ends_with(file_name, ".pack") ||
886 ends_with(file_name, ".bitmap") ||
887 ends_with(file_name, ".keep") ||
888 ends_with(file_name, ".promisor") ||
889 ends_with(file_name, ".mtimes"))
890 string_list_append(data->garbage, full_name);
891 else
892 report_garbage(PACKDIR_FILE_GARBAGE, full_name);
895 static void prepare_packed_git_one(struct repository *r, char *objdir, int local)
897 struct prepare_pack_data data;
898 struct string_list garbage = STRING_LIST_INIT_DUP;
900 data.m = r->objects->multi_pack_index;
902 /* look for the multi-pack-index for this object directory */
903 while (data.m && strcmp(data.m->object_dir, objdir))
904 data.m = data.m->next;
906 data.r = r;
907 data.garbage = &garbage;
908 data.local = local;
910 for_each_file_in_pack_dir(objdir, prepare_pack, &data);
912 report_pack_garbage(data.garbage);
913 string_list_clear(data.garbage, 0);
916 static void prepare_packed_git(struct repository *r);
918 * Give a fast, rough count of the number of objects in the repository. This
919 * ignores loose objects completely. If you have a lot of them, then either
920 * you should repack because your performance will be awful, or they are
921 * all unreachable objects about to be pruned, in which case they're not really
922 * interesting as a measure of repo size in the first place.
924 unsigned long repo_approximate_object_count(struct repository *r)
926 if (!r->objects->approximate_object_count_valid) {
927 unsigned long count;
928 struct multi_pack_index *m;
929 struct packed_git *p;
931 prepare_packed_git(r);
932 count = 0;
933 for (m = get_multi_pack_index(r); m; m = m->next)
934 count += m->num_objects;
935 for (p = r->objects->packed_git; p; p = p->next) {
936 if (open_pack_index(p))
937 continue;
938 count += p->num_objects;
940 r->objects->approximate_object_count = count;
941 r->objects->approximate_object_count_valid = 1;
943 return r->objects->approximate_object_count;
946 DEFINE_LIST_SORT(static, sort_packs, struct packed_git, next);
948 static int sort_pack(const struct packed_git *a, const struct packed_git *b)
950 int st;
953 * Local packs tend to contain objects specific to our
954 * variant of the project than remote ones. In addition,
955 * remote ones could be on a network mounted filesystem.
956 * Favor local ones for these reasons.
958 st = a->pack_local - b->pack_local;
959 if (st)
960 return -st;
963 * Younger packs tend to contain more recent objects,
964 * and more recent objects tend to get accessed more
965 * often.
967 if (a->mtime < b->mtime)
968 return 1;
969 else if (a->mtime == b->mtime)
970 return 0;
971 return -1;
974 static void rearrange_packed_git(struct repository *r)
976 sort_packs(&r->objects->packed_git, sort_pack);
979 static void prepare_packed_git_mru(struct repository *r)
981 struct packed_git *p;
983 INIT_LIST_HEAD(&r->objects->packed_git_mru);
985 for (p = r->objects->packed_git; p; p = p->next)
986 list_add_tail(&p->mru, &r->objects->packed_git_mru);
989 static void prepare_packed_git(struct repository *r)
991 struct object_directory *odb;
993 if (r->objects->packed_git_initialized)
994 return;
996 prepare_alt_odb(r);
997 for (odb = r->objects->odb; odb; odb = odb->next) {
998 int local = (odb == r->objects->odb);
999 prepare_multi_pack_index_one(r, odb->path, local);
1000 prepare_packed_git_one(r, odb->path, local);
1002 rearrange_packed_git(r);
1004 prepare_packed_git_mru(r);
1005 r->objects->packed_git_initialized = 1;
1008 void reprepare_packed_git(struct repository *r)
1010 struct object_directory *odb;
1012 obj_read_lock();
1015 * Reprepare alt odbs, in case the alternates file was modified
1016 * during the course of this process. This only _adds_ odbs to
1017 * the linked list, so existing odbs will continue to exist for
1018 * the lifetime of the process.
1020 r->objects->loaded_alternates = 0;
1021 prepare_alt_odb(r);
1023 for (odb = r->objects->odb; odb; odb = odb->next)
1024 odb_clear_loose_cache(odb);
1026 r->objects->approximate_object_count_valid = 0;
1027 r->objects->packed_git_initialized = 0;
1028 prepare_packed_git(r);
1029 obj_read_unlock();
1032 struct packed_git *get_packed_git(struct repository *r)
1034 prepare_packed_git(r);
1035 return r->objects->packed_git;
1038 struct multi_pack_index *get_multi_pack_index(struct repository *r)
1040 prepare_packed_git(r);
1041 return r->objects->multi_pack_index;
1044 struct multi_pack_index *get_local_multi_pack_index(struct repository *r)
1046 struct multi_pack_index *m = get_multi_pack_index(r);
1048 /* no need to iterate; we always put the local one first (if any) */
1049 if (m && m->local)
1050 return m;
1052 return NULL;
1055 struct packed_git *get_all_packs(struct repository *r)
1057 struct multi_pack_index *m;
1059 prepare_packed_git(r);
1060 for (m = r->objects->multi_pack_index; m; m = m->next) {
1061 uint32_t i;
1062 for (i = 0; i < m->num_packs; i++)
1063 prepare_midx_pack(r, m, i);
1066 return r->objects->packed_git;
1069 struct list_head *get_packed_git_mru(struct repository *r)
1071 prepare_packed_git(r);
1072 return &r->objects->packed_git_mru;
1075 unsigned long unpack_object_header_buffer(const unsigned char *buf,
1076 unsigned long len, enum object_type *type, unsigned long *sizep)
1078 unsigned shift;
1079 size_t size, c;
1080 unsigned long used = 0;
1082 c = buf[used++];
1083 *type = (c >> 4) & 7;
1084 size = c & 15;
1085 shift = 4;
1086 while (c & 0x80) {
1087 if (len <= used || (bitsizeof(long) - 7) < shift) {
1088 error("bad object header");
1089 size = used = 0;
1090 break;
1092 c = buf[used++];
1093 size = st_add(size, st_left_shift(c & 0x7f, shift));
1094 shift += 7;
1096 *sizep = cast_size_t_to_ulong(size);
1097 return used;
1100 unsigned long get_size_from_delta(struct packed_git *p,
1101 struct pack_window **w_curs,
1102 off_t curpos)
1104 const unsigned char *data;
1105 unsigned char delta_head[20], *in;
1106 git_zstream stream;
1107 int st;
1109 memset(&stream, 0, sizeof(stream));
1110 stream.next_out = delta_head;
1111 stream.avail_out = sizeof(delta_head);
1113 git_inflate_init(&stream);
1114 do {
1115 in = use_pack(p, w_curs, curpos, &stream.avail_in);
1116 stream.next_in = in;
1118 * Note: the window section returned by use_pack() must be
1119 * available throughout git_inflate()'s unlocked execution. To
1120 * ensure no other thread will modify the window in the
1121 * meantime, we rely on the packed_window.inuse_cnt. This
1122 * counter is incremented before window reading and checked
1123 * before window disposal.
1125 * Other worrying sections could be the call to close_pack_fd(),
1126 * which can close packs even with in-use windows, and to
1127 * reprepare_packed_git(). Regarding the former, mmap doc says:
1128 * "closing the file descriptor does not unmap the region". And
1129 * for the latter, it won't re-open already available packs.
1131 obj_read_unlock();
1132 st = git_inflate(&stream, Z_FINISH);
1133 obj_read_lock();
1134 curpos += stream.next_in - in;
1135 } while ((st == Z_OK || st == Z_BUF_ERROR) &&
1136 stream.total_out < sizeof(delta_head));
1137 git_inflate_end(&stream);
1138 if ((st != Z_STREAM_END) && stream.total_out != sizeof(delta_head)) {
1139 error("delta data unpack-initial failed");
1140 return 0;
1143 /* Examine the initial part of the delta to figure out
1144 * the result size.
1146 data = delta_head;
1148 /* ignore base size */
1149 get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1151 /* Read the result size */
1152 return get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1155 int unpack_object_header(struct packed_git *p,
1156 struct pack_window **w_curs,
1157 off_t *curpos,
1158 unsigned long *sizep)
1160 unsigned char *base;
1161 unsigned long left;
1162 unsigned long used;
1163 enum object_type type;
1165 /* use_pack() assures us we have [base, base + 20) available
1166 * as a range that we can look at. (Its actually the hash
1167 * size that is assured.) With our object header encoding
1168 * the maximum deflated object size is 2^137, which is just
1169 * insane, so we know won't exceed what we have been given.
1171 base = use_pack(p, w_curs, *curpos, &left);
1172 used = unpack_object_header_buffer(base, left, &type, sizep);
1173 if (!used) {
1174 type = OBJ_BAD;
1175 } else
1176 *curpos += used;
1178 return type;
1181 void mark_bad_packed_object(struct packed_git *p, const struct object_id *oid)
1183 oidset_insert(&p->bad_objects, oid);
1186 const struct packed_git *has_packed_and_bad(struct repository *r,
1187 const struct object_id *oid)
1189 struct packed_git *p;
1191 for (p = r->objects->packed_git; p; p = p->next)
1192 if (oidset_contains(&p->bad_objects, oid))
1193 return p;
1194 return NULL;
1197 off_t get_delta_base(struct packed_git *p,
1198 struct pack_window **w_curs,
1199 off_t *curpos,
1200 enum object_type type,
1201 off_t delta_obj_offset)
1203 unsigned char *base_info = use_pack(p, w_curs, *curpos, NULL);
1204 off_t base_offset;
1206 /* use_pack() assured us we have [base_info, base_info + 20)
1207 * as a range that we can look at without walking off the
1208 * end of the mapped window. Its actually the hash size
1209 * that is assured. An OFS_DELTA longer than the hash size
1210 * is stupid, as then a REF_DELTA would be smaller to store.
1212 if (type == OBJ_OFS_DELTA) {
1213 unsigned used = 0;
1214 unsigned char c = base_info[used++];
1215 base_offset = c & 127;
1216 while (c & 128) {
1217 base_offset += 1;
1218 if (!base_offset || MSB(base_offset, 7))
1219 return 0; /* overflow */
1220 c = base_info[used++];
1221 base_offset = (base_offset << 7) + (c & 127);
1223 base_offset = delta_obj_offset - base_offset;
1224 if (base_offset <= 0 || base_offset >= delta_obj_offset)
1225 return 0; /* out of bound */
1226 *curpos += used;
1227 } else if (type == OBJ_REF_DELTA) {
1228 /* The base entry _must_ be in the same pack */
1229 base_offset = find_pack_entry_one(base_info, p);
1230 *curpos += the_hash_algo->rawsz;
1231 } else
1232 die("I am totally screwed");
1233 return base_offset;
1237 * Like get_delta_base above, but we return the sha1 instead of the pack
1238 * offset. This means it is cheaper for REF deltas (we do not have to do
1239 * the final object lookup), but more expensive for OFS deltas (we
1240 * have to load the revidx to convert the offset back into a sha1).
1242 static int get_delta_base_oid(struct packed_git *p,
1243 struct pack_window **w_curs,
1244 off_t curpos,
1245 struct object_id *oid,
1246 enum object_type type,
1247 off_t delta_obj_offset)
1249 if (type == OBJ_REF_DELTA) {
1250 unsigned char *base = use_pack(p, w_curs, curpos, NULL);
1251 oidread(oid, base);
1252 return 0;
1253 } else if (type == OBJ_OFS_DELTA) {
1254 uint32_t base_pos;
1255 off_t base_offset = get_delta_base(p, w_curs, &curpos,
1256 type, delta_obj_offset);
1258 if (!base_offset)
1259 return -1;
1261 if (offset_to_pack_pos(p, base_offset, &base_pos) < 0)
1262 return -1;
1264 return nth_packed_object_id(oid, p,
1265 pack_pos_to_index(p, base_pos));
1266 } else
1267 return -1;
1270 static int retry_bad_packed_offset(struct repository *r,
1271 struct packed_git *p,
1272 off_t obj_offset)
1274 int type;
1275 uint32_t pos;
1276 struct object_id oid;
1277 if (offset_to_pack_pos(p, obj_offset, &pos) < 0)
1278 return OBJ_BAD;
1279 nth_packed_object_id(&oid, p, pack_pos_to_index(p, pos));
1280 mark_bad_packed_object(p, &oid);
1281 type = oid_object_info(r, &oid, NULL);
1282 if (type <= OBJ_NONE)
1283 return OBJ_BAD;
1284 return type;
1287 #define POI_STACK_PREALLOC 64
1289 static enum object_type packed_to_object_type(struct repository *r,
1290 struct packed_git *p,
1291 off_t obj_offset,
1292 enum object_type type,
1293 struct pack_window **w_curs,
1294 off_t curpos)
1296 off_t small_poi_stack[POI_STACK_PREALLOC];
1297 off_t *poi_stack = small_poi_stack;
1298 int poi_stack_nr = 0, poi_stack_alloc = POI_STACK_PREALLOC;
1300 while (type == OBJ_OFS_DELTA || type == OBJ_REF_DELTA) {
1301 off_t base_offset;
1302 unsigned long size;
1303 /* Push the object we're going to leave behind */
1304 if (poi_stack_nr >= poi_stack_alloc && poi_stack == small_poi_stack) {
1305 poi_stack_alloc = alloc_nr(poi_stack_nr);
1306 ALLOC_ARRAY(poi_stack, poi_stack_alloc);
1307 COPY_ARRAY(poi_stack, small_poi_stack, poi_stack_nr);
1308 } else {
1309 ALLOC_GROW(poi_stack, poi_stack_nr+1, poi_stack_alloc);
1311 poi_stack[poi_stack_nr++] = obj_offset;
1312 /* If parsing the base offset fails, just unwind */
1313 base_offset = get_delta_base(p, w_curs, &curpos, type, obj_offset);
1314 if (!base_offset)
1315 goto unwind;
1316 curpos = obj_offset = base_offset;
1317 type = unpack_object_header(p, w_curs, &curpos, &size);
1318 if (type <= OBJ_NONE) {
1319 /* If getting the base itself fails, we first
1320 * retry the base, otherwise unwind */
1321 type = retry_bad_packed_offset(r, p, base_offset);
1322 if (type > OBJ_NONE)
1323 goto out;
1324 goto unwind;
1328 switch (type) {
1329 case OBJ_BAD:
1330 case OBJ_COMMIT:
1331 case OBJ_TREE:
1332 case OBJ_BLOB:
1333 case OBJ_TAG:
1334 break;
1335 default:
1336 error("unknown object type %i at offset %"PRIuMAX" in %s",
1337 type, (uintmax_t)obj_offset, p->pack_name);
1338 type = OBJ_BAD;
1341 out:
1342 if (poi_stack != small_poi_stack)
1343 free(poi_stack);
1344 return type;
1346 unwind:
1347 while (poi_stack_nr) {
1348 obj_offset = poi_stack[--poi_stack_nr];
1349 type = retry_bad_packed_offset(r, p, obj_offset);
1350 if (type > OBJ_NONE)
1351 goto out;
1353 type = OBJ_BAD;
1354 goto out;
1357 static struct hashmap delta_base_cache;
1358 static size_t delta_base_cached;
1360 static LIST_HEAD(delta_base_cache_lru);
1362 struct delta_base_cache_key {
1363 struct packed_git *p;
1364 off_t base_offset;
1367 struct delta_base_cache_entry {
1368 struct hashmap_entry ent;
1369 struct delta_base_cache_key key;
1370 struct list_head lru;
1371 void *data;
1372 unsigned long size;
1373 enum object_type type;
1376 static unsigned int pack_entry_hash(struct packed_git *p, off_t base_offset)
1378 unsigned int hash;
1380 hash = (unsigned int)(intptr_t)p + (unsigned int)base_offset;
1381 hash += (hash >> 8) + (hash >> 16);
1382 return hash;
1385 static struct delta_base_cache_entry *
1386 get_delta_base_cache_entry(struct packed_git *p, off_t base_offset)
1388 struct hashmap_entry entry, *e;
1389 struct delta_base_cache_key key;
1391 if (!delta_base_cache.cmpfn)
1392 return NULL;
1394 hashmap_entry_init(&entry, pack_entry_hash(p, base_offset));
1395 key.p = p;
1396 key.base_offset = base_offset;
1397 e = hashmap_get(&delta_base_cache, &entry, &key);
1398 return e ? container_of(e, struct delta_base_cache_entry, ent) : NULL;
1401 static int delta_base_cache_key_eq(const struct delta_base_cache_key *a,
1402 const struct delta_base_cache_key *b)
1404 return a->p == b->p && a->base_offset == b->base_offset;
1407 static int delta_base_cache_hash_cmp(const void *cmp_data UNUSED,
1408 const struct hashmap_entry *va,
1409 const struct hashmap_entry *vb,
1410 const void *vkey)
1412 const struct delta_base_cache_entry *a, *b;
1413 const struct delta_base_cache_key *key = vkey;
1415 a = container_of(va, const struct delta_base_cache_entry, ent);
1416 b = container_of(vb, const struct delta_base_cache_entry, ent);
1418 if (key)
1419 return !delta_base_cache_key_eq(&a->key, key);
1420 else
1421 return !delta_base_cache_key_eq(&a->key, &b->key);
1424 static int in_delta_base_cache(struct packed_git *p, off_t base_offset)
1426 return !!get_delta_base_cache_entry(p, base_offset);
1430 * Remove the entry from the cache, but do _not_ free the associated
1431 * entry data. The caller takes ownership of the "data" buffer, and
1432 * should copy out any fields it wants before detaching.
1434 static void detach_delta_base_cache_entry(struct delta_base_cache_entry *ent)
1436 hashmap_remove(&delta_base_cache, &ent->ent, &ent->key);
1437 list_del(&ent->lru);
1438 delta_base_cached -= ent->size;
1439 free(ent);
1442 static void *cache_or_unpack_entry(struct repository *r, struct packed_git *p,
1443 off_t base_offset, unsigned long *base_size,
1444 enum object_type *type)
1446 struct delta_base_cache_entry *ent;
1448 ent = get_delta_base_cache_entry(p, base_offset);
1449 if (!ent)
1450 return unpack_entry(r, p, base_offset, type, base_size);
1452 if (type)
1453 *type = ent->type;
1454 if (base_size)
1455 *base_size = ent->size;
1456 return xmemdupz(ent->data, ent->size);
1459 static inline void release_delta_base_cache(struct delta_base_cache_entry *ent)
1461 free(ent->data);
1462 detach_delta_base_cache_entry(ent);
1465 void clear_delta_base_cache(void)
1467 struct list_head *lru, *tmp;
1468 list_for_each_safe(lru, tmp, &delta_base_cache_lru) {
1469 struct delta_base_cache_entry *entry =
1470 list_entry(lru, struct delta_base_cache_entry, lru);
1471 release_delta_base_cache(entry);
1475 static void add_delta_base_cache(struct packed_git *p, off_t base_offset,
1476 void *base, unsigned long base_size, enum object_type type)
1478 struct delta_base_cache_entry *ent;
1479 struct list_head *lru, *tmp;
1482 * Check required to avoid redundant entries when more than one thread
1483 * is unpacking the same object, in unpack_entry() (since its phases I
1484 * and III might run concurrently across multiple threads).
1486 if (in_delta_base_cache(p, base_offset)) {
1487 free(base);
1488 return;
1491 delta_base_cached += base_size;
1493 list_for_each_safe(lru, tmp, &delta_base_cache_lru) {
1494 struct delta_base_cache_entry *f =
1495 list_entry(lru, struct delta_base_cache_entry, lru);
1496 if (delta_base_cached <= delta_base_cache_limit)
1497 break;
1498 release_delta_base_cache(f);
1501 ent = xmalloc(sizeof(*ent));
1502 ent->key.p = p;
1503 ent->key.base_offset = base_offset;
1504 ent->type = type;
1505 ent->data = base;
1506 ent->size = base_size;
1507 list_add_tail(&ent->lru, &delta_base_cache_lru);
1509 if (!delta_base_cache.cmpfn)
1510 hashmap_init(&delta_base_cache, delta_base_cache_hash_cmp, NULL, 0);
1511 hashmap_entry_init(&ent->ent, pack_entry_hash(p, base_offset));
1512 hashmap_add(&delta_base_cache, &ent->ent);
1515 int packed_object_info(struct repository *r, struct packed_git *p,
1516 off_t obj_offset, struct object_info *oi)
1518 struct pack_window *w_curs = NULL;
1519 unsigned long size;
1520 off_t curpos = obj_offset;
1521 enum object_type type;
1524 * We always get the representation type, but only convert it to
1525 * a "real" type later if the caller is interested.
1527 if (oi->contentp) {
1528 *oi->contentp = cache_or_unpack_entry(r, p, obj_offset, oi->sizep,
1529 &type);
1530 if (!*oi->contentp)
1531 type = OBJ_BAD;
1532 } else {
1533 type = unpack_object_header(p, &w_curs, &curpos, &size);
1536 if (!oi->contentp && oi->sizep) {
1537 if (type == OBJ_OFS_DELTA || type == OBJ_REF_DELTA) {
1538 off_t tmp_pos = curpos;
1539 off_t base_offset = get_delta_base(p, &w_curs, &tmp_pos,
1540 type, obj_offset);
1541 if (!base_offset) {
1542 type = OBJ_BAD;
1543 goto out;
1545 *oi->sizep = get_size_from_delta(p, &w_curs, tmp_pos);
1546 if (*oi->sizep == 0) {
1547 type = OBJ_BAD;
1548 goto out;
1550 } else {
1551 *oi->sizep = size;
1555 if (oi->disk_sizep) {
1556 uint32_t pos;
1557 if (offset_to_pack_pos(p, obj_offset, &pos) < 0) {
1558 error("could not find object at offset %"PRIuMAX" "
1559 "in pack %s", (uintmax_t)obj_offset, p->pack_name);
1560 type = OBJ_BAD;
1561 goto out;
1564 *oi->disk_sizep = pack_pos_to_offset(p, pos + 1) - obj_offset;
1567 if (oi->typep || oi->type_name) {
1568 enum object_type ptot;
1569 ptot = packed_to_object_type(r, p, obj_offset,
1570 type, &w_curs, curpos);
1571 if (oi->typep)
1572 *oi->typep = ptot;
1573 if (oi->type_name) {
1574 const char *tn = type_name(ptot);
1575 if (tn)
1576 strbuf_addstr(oi->type_name, tn);
1578 if (ptot < 0) {
1579 type = OBJ_BAD;
1580 goto out;
1584 if (oi->delta_base_oid) {
1585 if (type == OBJ_OFS_DELTA || type == OBJ_REF_DELTA) {
1586 if (get_delta_base_oid(p, &w_curs, curpos,
1587 oi->delta_base_oid,
1588 type, obj_offset) < 0) {
1589 type = OBJ_BAD;
1590 goto out;
1592 } else
1593 oidclr(oi->delta_base_oid);
1596 oi->whence = in_delta_base_cache(p, obj_offset) ? OI_DBCACHED :
1597 OI_PACKED;
1599 out:
1600 unuse_pack(&w_curs);
1601 return type;
1604 static void *unpack_compressed_entry(struct packed_git *p,
1605 struct pack_window **w_curs,
1606 off_t curpos,
1607 unsigned long size)
1609 int st;
1610 git_zstream stream;
1611 unsigned char *buffer, *in;
1613 buffer = xmallocz_gently(size);
1614 if (!buffer)
1615 return NULL;
1616 memset(&stream, 0, sizeof(stream));
1617 stream.next_out = buffer;
1618 stream.avail_out = size + 1;
1620 git_inflate_init(&stream);
1621 do {
1622 in = use_pack(p, w_curs, curpos, &stream.avail_in);
1623 stream.next_in = in;
1625 * Note: we must ensure the window section returned by
1626 * use_pack() will be available throughout git_inflate()'s
1627 * unlocked execution. Please refer to the comment at
1628 * get_size_from_delta() to see how this is done.
1630 obj_read_unlock();
1631 st = git_inflate(&stream, Z_FINISH);
1632 obj_read_lock();
1633 if (!stream.avail_out)
1634 break; /* the payload is larger than it should be */
1635 curpos += stream.next_in - in;
1636 } while (st == Z_OK || st == Z_BUF_ERROR);
1637 git_inflate_end(&stream);
1638 if ((st != Z_STREAM_END) || stream.total_out != size) {
1639 free(buffer);
1640 return NULL;
1643 /* versions of zlib can clobber unconsumed portion of outbuf */
1644 buffer[size] = '\0';
1646 return buffer;
1649 static void write_pack_access_log(struct packed_git *p, off_t obj_offset)
1651 static struct trace_key pack_access = TRACE_KEY_INIT(PACK_ACCESS);
1652 trace_printf_key(&pack_access, "%s %"PRIuMAX"\n",
1653 p->pack_name, (uintmax_t)obj_offset);
1656 int do_check_packed_object_crc;
1658 #define UNPACK_ENTRY_STACK_PREALLOC 64
1659 struct unpack_entry_stack_ent {
1660 off_t obj_offset;
1661 off_t curpos;
1662 unsigned long size;
1665 void *unpack_entry(struct repository *r, struct packed_git *p, off_t obj_offset,
1666 enum object_type *final_type, unsigned long *final_size)
1668 struct pack_window *w_curs = NULL;
1669 off_t curpos = obj_offset;
1670 void *data = NULL;
1671 unsigned long size;
1672 enum object_type type;
1673 struct unpack_entry_stack_ent small_delta_stack[UNPACK_ENTRY_STACK_PREALLOC];
1674 struct unpack_entry_stack_ent *delta_stack = small_delta_stack;
1675 int delta_stack_nr = 0, delta_stack_alloc = UNPACK_ENTRY_STACK_PREALLOC;
1676 int base_from_cache = 0;
1678 write_pack_access_log(p, obj_offset);
1680 /* PHASE 1: drill down to the innermost base object */
1681 for (;;) {
1682 off_t base_offset;
1683 int i;
1684 struct delta_base_cache_entry *ent;
1686 ent = get_delta_base_cache_entry(p, curpos);
1687 if (ent) {
1688 type = ent->type;
1689 data = ent->data;
1690 size = ent->size;
1691 detach_delta_base_cache_entry(ent);
1692 base_from_cache = 1;
1693 break;
1696 if (do_check_packed_object_crc && p->index_version > 1) {
1697 uint32_t pack_pos, index_pos;
1698 off_t len;
1700 if (offset_to_pack_pos(p, obj_offset, &pack_pos) < 0) {
1701 error("could not find object at offset %"PRIuMAX" in pack %s",
1702 (uintmax_t)obj_offset, p->pack_name);
1703 data = NULL;
1704 goto out;
1707 len = pack_pos_to_offset(p, pack_pos + 1) - obj_offset;
1708 index_pos = pack_pos_to_index(p, pack_pos);
1709 if (check_pack_crc(p, &w_curs, obj_offset, len, index_pos)) {
1710 struct object_id oid;
1711 nth_packed_object_id(&oid, p, index_pos);
1712 error("bad packed object CRC for %s",
1713 oid_to_hex(&oid));
1714 mark_bad_packed_object(p, &oid);
1715 data = NULL;
1716 goto out;
1720 type = unpack_object_header(p, &w_curs, &curpos, &size);
1721 if (type != OBJ_OFS_DELTA && type != OBJ_REF_DELTA)
1722 break;
1724 base_offset = get_delta_base(p, &w_curs, &curpos, type, obj_offset);
1725 if (!base_offset) {
1726 error("failed to validate delta base reference "
1727 "at offset %"PRIuMAX" from %s",
1728 (uintmax_t)curpos, p->pack_name);
1729 /* bail to phase 2, in hopes of recovery */
1730 data = NULL;
1731 break;
1734 /* push object, proceed to base */
1735 if (delta_stack_nr >= delta_stack_alloc
1736 && delta_stack == small_delta_stack) {
1737 delta_stack_alloc = alloc_nr(delta_stack_nr);
1738 ALLOC_ARRAY(delta_stack, delta_stack_alloc);
1739 COPY_ARRAY(delta_stack, small_delta_stack,
1740 delta_stack_nr);
1741 } else {
1742 ALLOC_GROW(delta_stack, delta_stack_nr+1, delta_stack_alloc);
1744 i = delta_stack_nr++;
1745 delta_stack[i].obj_offset = obj_offset;
1746 delta_stack[i].curpos = curpos;
1747 delta_stack[i].size = size;
1749 curpos = obj_offset = base_offset;
1752 /* PHASE 2: handle the base */
1753 switch (type) {
1754 case OBJ_OFS_DELTA:
1755 case OBJ_REF_DELTA:
1756 if (data)
1757 BUG("unpack_entry: left loop at a valid delta");
1758 break;
1759 case OBJ_COMMIT:
1760 case OBJ_TREE:
1761 case OBJ_BLOB:
1762 case OBJ_TAG:
1763 if (!base_from_cache)
1764 data = unpack_compressed_entry(p, &w_curs, curpos, size);
1765 break;
1766 default:
1767 data = NULL;
1768 error("unknown object type %i at offset %"PRIuMAX" in %s",
1769 type, (uintmax_t)obj_offset, p->pack_name);
1772 /* PHASE 3: apply deltas in order */
1774 /* invariants:
1775 * 'data' holds the base data, or NULL if there was corruption
1777 while (delta_stack_nr) {
1778 void *delta_data;
1779 void *base = data;
1780 void *external_base = NULL;
1781 unsigned long delta_size, base_size = size;
1782 int i;
1783 off_t base_obj_offset = obj_offset;
1785 data = NULL;
1787 if (!base) {
1789 * We're probably in deep shit, but let's try to fetch
1790 * the required base anyway from another pack or loose.
1791 * This is costly but should happen only in the presence
1792 * of a corrupted pack, and is better than failing outright.
1794 uint32_t pos;
1795 struct object_id base_oid;
1796 if (!(offset_to_pack_pos(p, obj_offset, &pos))) {
1797 struct object_info oi = OBJECT_INFO_INIT;
1799 nth_packed_object_id(&base_oid, p,
1800 pack_pos_to_index(p, pos));
1801 error("failed to read delta base object %s"
1802 " at offset %"PRIuMAX" from %s",
1803 oid_to_hex(&base_oid), (uintmax_t)obj_offset,
1804 p->pack_name);
1805 mark_bad_packed_object(p, &base_oid);
1807 oi.typep = &type;
1808 oi.sizep = &base_size;
1809 oi.contentp = &base;
1810 if (oid_object_info_extended(r, &base_oid, &oi, 0) < 0)
1811 base = NULL;
1813 external_base = base;
1817 i = --delta_stack_nr;
1818 obj_offset = delta_stack[i].obj_offset;
1819 curpos = delta_stack[i].curpos;
1820 delta_size = delta_stack[i].size;
1822 if (!base)
1823 continue;
1825 delta_data = unpack_compressed_entry(p, &w_curs, curpos, delta_size);
1827 if (!delta_data) {
1828 error("failed to unpack compressed delta "
1829 "at offset %"PRIuMAX" from %s",
1830 (uintmax_t)curpos, p->pack_name);
1831 data = NULL;
1832 } else {
1833 data = patch_delta(base, base_size, delta_data,
1834 delta_size, &size);
1837 * We could not apply the delta; warn the user, but
1838 * keep going. Our failure will be noticed either in
1839 * the next iteration of the loop, or if this is the
1840 * final delta, in the caller when we return NULL.
1841 * Those code paths will take care of making a more
1842 * explicit warning and retrying with another copy of
1843 * the object.
1845 if (!data)
1846 error("failed to apply delta");
1850 * We delay adding `base` to the cache until the end of the loop
1851 * because unpack_compressed_entry() momentarily releases the
1852 * obj_read_mutex, giving another thread the chance to access
1853 * the cache. Therefore, if `base` was already there, this other
1854 * thread could free() it (e.g. to make space for another entry)
1855 * before we are done using it.
1857 if (!external_base)
1858 add_delta_base_cache(p, base_obj_offset, base, base_size, type);
1860 free(delta_data);
1861 free(external_base);
1864 if (final_type)
1865 *final_type = type;
1866 if (final_size)
1867 *final_size = size;
1869 out:
1870 unuse_pack(&w_curs);
1872 if (delta_stack != small_delta_stack)
1873 free(delta_stack);
1875 return data;
1878 int bsearch_pack(const struct object_id *oid, const struct packed_git *p, uint32_t *result)
1880 const unsigned char *index_fanout = p->index_data;
1881 const unsigned char *index_lookup;
1882 const unsigned int hashsz = the_hash_algo->rawsz;
1883 int index_lookup_width;
1885 if (!index_fanout)
1886 BUG("bsearch_pack called without a valid pack-index");
1888 index_lookup = index_fanout + 4 * 256;
1889 if (p->index_version == 1) {
1890 index_lookup_width = hashsz + 4;
1891 index_lookup += 4;
1892 } else {
1893 index_lookup_width = hashsz;
1894 index_fanout += 8;
1895 index_lookup += 8;
1898 return bsearch_hash(oid->hash, (const uint32_t*)index_fanout,
1899 index_lookup, index_lookup_width, result);
1902 int nth_packed_object_id(struct object_id *oid,
1903 struct packed_git *p,
1904 uint32_t n)
1906 const unsigned char *index = p->index_data;
1907 const unsigned int hashsz = the_hash_algo->rawsz;
1908 if (!index) {
1909 if (open_pack_index(p))
1910 return -1;
1911 index = p->index_data;
1913 if (n >= p->num_objects)
1914 return -1;
1915 index += 4 * 256;
1916 if (p->index_version == 1) {
1917 oidread(oid, index + (hashsz + 4) * n + 4);
1918 } else {
1919 index += 8;
1920 oidread(oid, index + hashsz * n);
1922 return 0;
1925 void check_pack_index_ptr(const struct packed_git *p, const void *vptr)
1927 const unsigned char *ptr = vptr;
1928 const unsigned char *start = p->index_data;
1929 const unsigned char *end = start + p->index_size;
1930 if (ptr < start)
1931 die(_("offset before start of pack index for %s (corrupt index?)"),
1932 p->pack_name);
1933 /* No need to check for underflow; .idx files must be at least 8 bytes */
1934 if (ptr >= end - 8)
1935 die(_("offset beyond end of pack index for %s (truncated index?)"),
1936 p->pack_name);
1939 off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
1941 const unsigned char *index = p->index_data;
1942 const unsigned int hashsz = the_hash_algo->rawsz;
1943 index += 4 * 256;
1944 if (p->index_version == 1) {
1945 return ntohl(*((uint32_t *)(index + (hashsz + 4) * (size_t)n)));
1946 } else {
1947 uint32_t off;
1948 index += 8 + (size_t)p->num_objects * (hashsz + 4);
1949 off = ntohl(*((uint32_t *)(index + 4 * n)));
1950 if (!(off & 0x80000000))
1951 return off;
1952 index += (size_t)p->num_objects * 4 + (off & 0x7fffffff) * 8;
1953 check_pack_index_ptr(p, index);
1954 return get_be64(index);
1958 off_t find_pack_entry_one(const unsigned char *sha1,
1959 struct packed_git *p)
1961 const unsigned char *index = p->index_data;
1962 struct object_id oid;
1963 uint32_t result;
1965 if (!index) {
1966 if (open_pack_index(p))
1967 return 0;
1970 hashcpy(oid.hash, sha1);
1971 if (bsearch_pack(&oid, p, &result))
1972 return nth_packed_object_offset(p, result);
1973 return 0;
1976 int is_pack_valid(struct packed_git *p)
1978 /* An already open pack is known to be valid. */
1979 if (p->pack_fd != -1)
1980 return 1;
1982 /* If the pack has one window completely covering the
1983 * file size, the pack is known to be valid even if
1984 * the descriptor is not currently open.
1986 if (p->windows) {
1987 struct pack_window *w = p->windows;
1989 if (!w->offset && w->len == p->pack_size)
1990 return 1;
1993 /* Force the pack to open to prove its valid. */
1994 return !open_packed_git(p);
1997 struct packed_git *find_sha1_pack(const unsigned char *sha1,
1998 struct packed_git *packs)
2000 struct packed_git *p;
2002 for (p = packs; p; p = p->next) {
2003 if (find_pack_entry_one(sha1, p))
2004 return p;
2006 return NULL;
2010 static int fill_pack_entry(const struct object_id *oid,
2011 struct pack_entry *e,
2012 struct packed_git *p)
2014 off_t offset;
2016 if (oidset_size(&p->bad_objects) &&
2017 oidset_contains(&p->bad_objects, oid))
2018 return 0;
2020 offset = find_pack_entry_one(oid->hash, p);
2021 if (!offset)
2022 return 0;
2025 * We are about to tell the caller where they can locate the
2026 * requested object. We better make sure the packfile is
2027 * still here and can be accessed before supplying that
2028 * answer, as it may have been deleted since the index was
2029 * loaded!
2031 if (!is_pack_valid(p))
2032 return 0;
2033 e->offset = offset;
2034 e->p = p;
2035 return 1;
2038 int find_pack_entry(struct repository *r, const struct object_id *oid, struct pack_entry *e)
2040 struct list_head *pos;
2041 struct multi_pack_index *m;
2043 prepare_packed_git(r);
2044 if (!r->objects->packed_git && !r->objects->multi_pack_index)
2045 return 0;
2047 for (m = r->objects->multi_pack_index; m; m = m->next) {
2048 if (fill_midx_entry(r, oid, e, m))
2049 return 1;
2052 list_for_each(pos, &r->objects->packed_git_mru) {
2053 struct packed_git *p = list_entry(pos, struct packed_git, mru);
2054 if (!p->multi_pack_index && fill_pack_entry(oid, e, p)) {
2055 list_move(&p->mru, &r->objects->packed_git_mru);
2056 return 1;
2059 return 0;
2062 static void maybe_invalidate_kept_pack_cache(struct repository *r,
2063 unsigned flags)
2065 if (!r->objects->kept_pack_cache.packs)
2066 return;
2067 if (r->objects->kept_pack_cache.flags == flags)
2068 return;
2069 FREE_AND_NULL(r->objects->kept_pack_cache.packs);
2070 r->objects->kept_pack_cache.flags = 0;
2073 static struct packed_git **kept_pack_cache(struct repository *r, unsigned flags)
2075 maybe_invalidate_kept_pack_cache(r, flags);
2077 if (!r->objects->kept_pack_cache.packs) {
2078 struct packed_git **packs = NULL;
2079 size_t nr = 0, alloc = 0;
2080 struct packed_git *p;
2083 * We want "all" packs here, because we need to cover ones that
2084 * are used by a midx, as well. We need to look in every one of
2085 * them (instead of the midx itself) to cover duplicates. It's
2086 * possible that an object is found in two packs that the midx
2087 * covers, one kept and one not kept, but the midx returns only
2088 * the non-kept version.
2090 for (p = get_all_packs(r); p; p = p->next) {
2091 if ((p->pack_keep && (flags & ON_DISK_KEEP_PACKS)) ||
2092 (p->pack_keep_in_core && (flags & IN_CORE_KEEP_PACKS))) {
2093 ALLOC_GROW(packs, nr + 1, alloc);
2094 packs[nr++] = p;
2097 ALLOC_GROW(packs, nr + 1, alloc);
2098 packs[nr] = NULL;
2100 r->objects->kept_pack_cache.packs = packs;
2101 r->objects->kept_pack_cache.flags = flags;
2104 return r->objects->kept_pack_cache.packs;
2107 int find_kept_pack_entry(struct repository *r,
2108 const struct object_id *oid,
2109 unsigned flags,
2110 struct pack_entry *e)
2112 struct packed_git **cache;
2114 for (cache = kept_pack_cache(r, flags); *cache; cache++) {
2115 struct packed_git *p = *cache;
2116 if (fill_pack_entry(oid, e, p))
2117 return 1;
2120 return 0;
2123 int has_object_pack(const struct object_id *oid)
2125 struct pack_entry e;
2126 return find_pack_entry(the_repository, oid, &e);
2129 int has_object_kept_pack(const struct object_id *oid, unsigned flags)
2131 struct pack_entry e;
2132 return find_kept_pack_entry(the_repository, oid, flags, &e);
2135 int has_pack_index(const unsigned char *sha1)
2137 struct stat st;
2138 if (stat(sha1_pack_index_name(sha1), &st))
2139 return 0;
2140 return 1;
2143 int for_each_object_in_pack(struct packed_git *p,
2144 each_packed_object_fn cb, void *data,
2145 enum for_each_object_flags flags)
2147 uint32_t i;
2148 int r = 0;
2150 if (flags & FOR_EACH_OBJECT_PACK_ORDER) {
2151 if (load_pack_revindex(p))
2152 return -1;
2155 for (i = 0; i < p->num_objects; i++) {
2156 uint32_t index_pos;
2157 struct object_id oid;
2160 * We are iterating "i" from 0 up to num_objects, but its
2161 * meaning may be different, depending on the requested output
2162 * order:
2164 * - in object-name order, it is the same as the index order
2165 * used by nth_packed_object_id(), so we can pass it
2166 * directly
2168 * - in pack-order, it is pack position, which we must
2169 * convert to an index position in order to get the oid.
2171 if (flags & FOR_EACH_OBJECT_PACK_ORDER)
2172 index_pos = pack_pos_to_index(p, i);
2173 else
2174 index_pos = i;
2176 if (nth_packed_object_id(&oid, p, index_pos) < 0)
2177 return error("unable to get sha1 of object %u in %s",
2178 index_pos, p->pack_name);
2180 r = cb(&oid, p, index_pos, data);
2181 if (r)
2182 break;
2184 return r;
2187 int for_each_packed_object(each_packed_object_fn cb, void *data,
2188 enum for_each_object_flags flags)
2190 struct packed_git *p;
2191 int r = 0;
2192 int pack_errors = 0;
2194 prepare_packed_git(the_repository);
2195 for (p = get_all_packs(the_repository); p; p = p->next) {
2196 if ((flags & FOR_EACH_OBJECT_LOCAL_ONLY) && !p->pack_local)
2197 continue;
2198 if ((flags & FOR_EACH_OBJECT_PROMISOR_ONLY) &&
2199 !p->pack_promisor)
2200 continue;
2201 if ((flags & FOR_EACH_OBJECT_SKIP_IN_CORE_KEPT_PACKS) &&
2202 p->pack_keep_in_core)
2203 continue;
2204 if ((flags & FOR_EACH_OBJECT_SKIP_ON_DISK_KEPT_PACKS) &&
2205 p->pack_keep)
2206 continue;
2207 if (open_pack_index(p)) {
2208 pack_errors = 1;
2209 continue;
2211 r = for_each_object_in_pack(p, cb, data, flags);
2212 if (r)
2213 break;
2215 return r ? r : pack_errors;
2218 static int add_promisor_object(const struct object_id *oid,
2219 struct packed_git *pack UNUSED,
2220 uint32_t pos UNUSED,
2221 void *set_)
2223 struct oidset *set = set_;
2224 struct object *obj;
2225 int we_parsed_object;
2227 obj = lookup_object(the_repository, oid);
2228 if (obj && obj->parsed) {
2229 we_parsed_object = 0;
2230 } else {
2231 we_parsed_object = 1;
2232 obj = parse_object(the_repository, oid);
2235 if (!obj)
2236 return 1;
2238 oidset_insert(set, oid);
2241 * If this is a tree, commit, or tag, the objects it refers
2242 * to are also promisor objects. (Blobs refer to no objects->)
2244 if (obj->type == OBJ_TREE) {
2245 struct tree *tree = (struct tree *)obj;
2246 struct tree_desc desc;
2247 struct name_entry entry;
2248 if (init_tree_desc_gently(&desc, tree->buffer, tree->size, 0))
2250 * Error messages are given when packs are
2251 * verified, so do not print any here.
2253 return 0;
2254 while (tree_entry_gently(&desc, &entry))
2255 oidset_insert(set, &entry.oid);
2256 if (we_parsed_object)
2257 free_tree_buffer(tree);
2258 } else if (obj->type == OBJ_COMMIT) {
2259 struct commit *commit = (struct commit *) obj;
2260 struct commit_list *parents = commit->parents;
2262 oidset_insert(set, get_commit_tree_oid(commit));
2263 for (; parents; parents = parents->next)
2264 oidset_insert(set, &parents->item->object.oid);
2265 } else if (obj->type == OBJ_TAG) {
2266 struct tag *tag = (struct tag *) obj;
2267 oidset_insert(set, get_tagged_oid(tag));
2269 return 0;
2272 int is_promisor_object(const struct object_id *oid)
2274 static struct oidset promisor_objects;
2275 static int promisor_objects_prepared;
2277 if (!promisor_objects_prepared) {
2278 if (has_promisor_remote()) {
2279 for_each_packed_object(add_promisor_object,
2280 &promisor_objects,
2281 FOR_EACH_OBJECT_PROMISOR_ONLY |
2282 FOR_EACH_OBJECT_PACK_ORDER);
2284 promisor_objects_prepared = 1;
2286 return oidset_contains(&promisor_objects, oid);