2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 * This handles basic git sha1 object files - packing, unpacking,
11 #include "string-list.h"
17 #include "run-command.h"
20 #include "tree-walk.h"
22 #include "pack-revindex.h"
23 #include "sha1-lookup.h"
24 #include "bulk-checkin.h"
25 #include "streaming.h"
29 #include "mergesort.h"
33 #define SZ_FMT PRIuMAX
34 static inline uintmax_t sz_fmt(size_t s
) { return s
; }
36 const unsigned char null_sha1
[20];
37 const struct object_id null_oid
;
38 const struct object_id empty_tree_oid
= {
39 EMPTY_TREE_SHA1_BIN_LITERAL
41 const struct object_id empty_blob_oid
= {
42 EMPTY_BLOB_SHA1_BIN_LITERAL
46 * This is meant to hold a *small* number of objects that you would
47 * want read_sha1_file() to be able to return, but yet you do not want
48 * to write them into the object store (e.g. a browse-only
51 static struct cached_object
{
52 unsigned char sha1
[20];
53 enum object_type type
;
57 static int cached_object_nr
, cached_object_alloc
;
59 static struct cached_object empty_tree
= {
60 EMPTY_TREE_SHA1_BIN_LITERAL
,
66 static struct cached_object
*find_cached_object(const unsigned char *sha1
)
69 struct cached_object
*co
= cached_objects
;
71 for (i
= 0; i
< cached_object_nr
; i
++, co
++) {
72 if (!hashcmp(co
->sha1
, sha1
))
75 if (!hashcmp(sha1
, empty_tree
.sha1
))
80 int mkdir_in_gitdir(const char *path
)
82 if (mkdir(path
, 0777)) {
83 int saved_errno
= errno
;
85 struct strbuf sb
= STRBUF_INIT
;
90 * Are we looking at a path in a symlinked worktree
91 * whose original repository does not yet have it?
92 * e.g. .git/rr-cache pointing at its original
93 * repository in which the user hasn't performed any
94 * conflict resolution yet?
96 if (lstat(path
, &st
) || !S_ISLNK(st
.st_mode
) ||
97 strbuf_readlink(&sb
, path
, st
.st_size
) ||
98 !is_absolute_path(sb
.buf
) ||
99 mkdir(sb
.buf
, 0777)) {
106 return adjust_shared_perm(path
);
109 enum scld_error
safe_create_leading_directories(char *path
)
111 char *next_component
= path
+ offset_1st_component(path
);
112 enum scld_error ret
= SCLD_OK
;
114 while (ret
== SCLD_OK
&& next_component
) {
116 char *slash
= next_component
, slash_character
;
118 while (*slash
&& !is_dir_sep(*slash
))
124 next_component
= slash
+ 1;
125 while (is_dir_sep(*next_component
))
127 if (!*next_component
)
130 slash_character
= *slash
;
132 if (!stat(path
, &st
)) {
134 if (!S_ISDIR(st
.st_mode
)) {
138 } else if (mkdir(path
, 0777)) {
139 if (errno
== EEXIST
&&
140 !stat(path
, &st
) && S_ISDIR(st
.st_mode
))
141 ; /* somebody created it since we checked */
142 else if (errno
== ENOENT
)
144 * Either mkdir() failed because
145 * somebody just pruned the containing
146 * directory, or stat() failed because
147 * the file that was in our way was
148 * just removed. Either way, inform
149 * the caller that it might be worth
155 } else if (adjust_shared_perm(path
)) {
158 *slash
= slash_character
;
163 enum scld_error
safe_create_leading_directories_const(const char *path
)
166 /* path points to cache entries, so xstrdup before messing with it */
167 char *buf
= xstrdup(path
);
168 enum scld_error result
= safe_create_leading_directories(buf
);
176 int raceproof_create_file(const char *path
, create_file_fn fn
, void *cb
)
179 * The number of times we will try to remove empty directories
180 * in the way of path. This is only 1 because if another
181 * process is racily creating directories that conflict with
182 * us, we don't want to fight against them.
184 int remove_directories_remaining
= 1;
187 * The number of times that we will try to create the
188 * directories containing path. We are willing to attempt this
189 * more than once, because another process could be trying to
190 * clean up empty directories at the same time as we are
191 * trying to create them.
193 int create_directories_remaining
= 3;
195 /* A scratch copy of path, filled lazily if we need it: */
196 struct strbuf path_copy
= STRBUF_INIT
;
209 if (errno
== EISDIR
&& remove_directories_remaining
-- > 0) {
211 * A directory is in the way. Maybe it is empty; try
215 strbuf_addstr(&path_copy
, path
);
217 if (!remove_dir_recursively(&path_copy
, REMOVE_DIR_EMPTY_ONLY
))
219 } else if (errno
== ENOENT
&& create_directories_remaining
-- > 0) {
221 * Maybe the containing directory didn't exist, or
222 * maybe it was just deleted by a process that is
223 * racing with us to clean up empty directories. Try
226 enum scld_error scld_result
;
229 strbuf_addstr(&path_copy
, path
);
232 scld_result
= safe_create_leading_directories(path_copy
.buf
);
233 if (scld_result
== SCLD_OK
)
235 } while (scld_result
== SCLD_VANISHED
&& create_directories_remaining
-- > 0);
239 strbuf_release(&path_copy
);
244 static void fill_sha1_path(struct strbuf
*buf
, const unsigned char *sha1
)
247 for (i
= 0; i
< 20; i
++) {
248 static char hex
[] = "0123456789abcdef";
249 unsigned int val
= sha1
[i
];
250 strbuf_addch(buf
, hex
[val
>> 4]);
251 strbuf_addch(buf
, hex
[val
& 0xf]);
253 strbuf_addch(buf
, '/');
257 const char *sha1_file_name(const unsigned char *sha1
)
259 static struct strbuf buf
= STRBUF_INIT
;
262 strbuf_addf(&buf
, "%s/", get_object_directory());
264 fill_sha1_path(&buf
, sha1
);
268 struct strbuf
*alt_scratch_buf(struct alternate_object_database
*alt
)
270 strbuf_setlen(&alt
->scratch
, alt
->base_len
);
271 return &alt
->scratch
;
274 static const char *alt_sha1_path(struct alternate_object_database
*alt
,
275 const unsigned char *sha1
)
277 struct strbuf
*buf
= alt_scratch_buf(alt
);
278 fill_sha1_path(buf
, sha1
);
282 struct alternate_object_database
*alt_odb_list
;
283 static struct alternate_object_database
**alt_odb_tail
;
286 * Return non-zero iff the path is usable as an alternate object database.
288 static int alt_odb_usable(struct strbuf
*path
, const char *normalized_objdir
)
290 struct alternate_object_database
*alt
;
292 /* Detect cases where alternate disappeared */
293 if (!is_directory(path
->buf
)) {
294 error("object directory %s does not exist; "
295 "check .git/objects/info/alternates.",
301 * Prevent the common mistake of listing the same
302 * thing twice, or object directory itself.
304 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
305 if (!fspathcmp(path
->buf
, alt
->path
))
308 if (!fspathcmp(path
->buf
, normalized_objdir
))
315 * Prepare alternate object database registry.
317 * The variable alt_odb_list points at the list of struct
318 * alternate_object_database. The elements on this list come from
319 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
320 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
321 * whose contents is similar to that environment variable but can be
322 * LF separated. Its base points at a statically allocated buffer that
323 * contains "/the/directory/corresponding/to/.git/objects/...", while
324 * its name points just after the slash at the end of ".git/objects/"
325 * in the example above, and has enough space to hold 40-byte hex
326 * SHA1, an extra slash for the first level indirection, and the
329 static void read_info_alternates(const char * relative_base
, int depth
);
330 static int link_alt_odb_entry(const char *entry
, const char *relative_base
,
331 int depth
, const char *normalized_objdir
)
333 struct alternate_object_database
*ent
;
334 struct strbuf pathbuf
= STRBUF_INIT
;
336 if (!is_absolute_path(entry
) && relative_base
) {
337 strbuf_realpath(&pathbuf
, relative_base
, 1);
338 strbuf_addch(&pathbuf
, '/');
340 strbuf_addstr(&pathbuf
, entry
);
342 if (strbuf_normalize_path(&pathbuf
) < 0 && relative_base
) {
343 error("unable to normalize alternate object path: %s",
345 strbuf_release(&pathbuf
);
350 * The trailing slash after the directory name is given by
351 * this function at the end. Remove duplicates.
353 while (pathbuf
.len
&& pathbuf
.buf
[pathbuf
.len
- 1] == '/')
354 strbuf_setlen(&pathbuf
, pathbuf
.len
- 1);
356 if (!alt_odb_usable(&pathbuf
, normalized_objdir
)) {
357 strbuf_release(&pathbuf
);
361 ent
= alloc_alt_odb(pathbuf
.buf
);
363 /* add the alternate entry */
365 alt_odb_tail
= &(ent
->next
);
368 /* recursively add alternates */
369 read_info_alternates(pathbuf
.buf
, depth
+ 1);
371 strbuf_release(&pathbuf
);
375 static const char *parse_alt_odb_entry(const char *string
,
383 if (*string
== '#') {
384 /* comment; consume up to next separator */
385 end
= strchrnul(string
, sep
);
386 } else if (*string
== '"' && !unquote_c_style(out
, string
, &end
)) {
388 * quoted path; unquote_c_style has copied the
389 * data for us and set "end". Broken quoting (e.g.,
390 * an entry that doesn't end with a quote) falls
391 * back to the unquoted case below.
394 /* normal, unquoted path */
395 end
= strchrnul(string
, sep
);
396 strbuf_add(out
, string
, end
- string
);
404 static void link_alt_odb_entries(const char *alt
, int len
, int sep
,
405 const char *relative_base
, int depth
)
407 struct strbuf objdirbuf
= STRBUF_INIT
;
408 struct strbuf entry
= STRBUF_INIT
;
411 error("%s: ignoring alternate object stores, nesting too deep.",
416 strbuf_add_absolute_path(&objdirbuf
, get_object_directory());
417 if (strbuf_normalize_path(&objdirbuf
) < 0)
418 die("unable to normalize object directory: %s",
422 alt
= parse_alt_odb_entry(alt
, sep
, &entry
);
425 link_alt_odb_entry(entry
.buf
, relative_base
, depth
, objdirbuf
.buf
);
427 strbuf_release(&entry
);
428 strbuf_release(&objdirbuf
);
431 static void read_info_alternates(const char * relative_base
, int depth
)
439 path
= xstrfmt("%s/info/alternates", relative_base
);
444 if (fstat(fd
, &st
) || (st
.st_size
== 0)) {
448 mapsz
= xsize_t(st
.st_size
);
449 map
= xmmap(NULL
, mapsz
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
452 link_alt_odb_entries(map
, mapsz
, '\n', relative_base
, depth
);
457 struct alternate_object_database
*alloc_alt_odb(const char *dir
)
459 struct alternate_object_database
*ent
;
461 FLEX_ALLOC_STR(ent
, path
, dir
);
462 strbuf_init(&ent
->scratch
, 0);
463 strbuf_addf(&ent
->scratch
, "%s/", dir
);
464 ent
->base_len
= ent
->scratch
.len
;
469 void add_to_alternates_file(const char *reference
)
471 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
472 char *alts
= git_pathdup("objects/info/alternates");
475 hold_lock_file_for_update(lock
, alts
, LOCK_DIE_ON_ERROR
);
476 out
= fdopen_lock_file(lock
, "w");
478 die_errno("unable to fdopen alternates lockfile");
480 in
= fopen(alts
, "r");
482 struct strbuf line
= STRBUF_INIT
;
485 while (strbuf_getline(&line
, in
) != EOF
) {
486 if (!strcmp(reference
, line
.buf
)) {
490 fprintf_or_die(out
, "%s\n", line
.buf
);
493 strbuf_release(&line
);
497 rollback_lock_file(lock
);
501 else if (errno
!= ENOENT
)
502 die_errno("unable to read alternates file");
505 fprintf_or_die(out
, "%s\n", reference
);
506 if (commit_lock_file(lock
))
507 die_errno("unable to move new alternates file into place");
509 link_alt_odb_entries(reference
, strlen(reference
), '\n', NULL
, 0);
514 void add_to_alternates_memory(const char *reference
)
517 * Make sure alternates are initialized, or else our entry may be
518 * overwritten when they are.
522 link_alt_odb_entries(reference
, strlen(reference
), '\n', NULL
, 0);
526 * Compute the exact path an alternate is at and returns it. In case of
527 * error NULL is returned and the human readable error is added to `err`
528 * `path` may be relative and should point to $GITDIR.
529 * `err` must not be null.
531 char *compute_alternate_path(const char *path
, struct strbuf
*err
)
533 char *ref_git
= NULL
;
534 const char *repo
, *ref_git_s
;
537 ref_git_s
= real_path_if_valid(path
);
540 strbuf_addf(err
, _("path '%s' does not exist"), path
);
544 * Beware: read_gitfile(), real_path() and mkpath()
545 * return static buffer
547 ref_git
= xstrdup(ref_git_s
);
549 repo
= read_gitfile(ref_git
);
551 repo
= read_gitfile(mkpath("%s/.git", ref_git
));
554 ref_git
= xstrdup(repo
);
557 if (!repo
&& is_directory(mkpath("%s/.git/objects", ref_git
))) {
558 char *ref_git_git
= mkpathdup("%s/.git", ref_git
);
560 ref_git
= ref_git_git
;
561 } else if (!is_directory(mkpath("%s/objects", ref_git
))) {
562 struct strbuf sb
= STRBUF_INIT
;
564 if (get_common_dir(&sb
, ref_git
)) {
566 _("reference repository '%s' as a linked "
567 "checkout is not supported yet."),
572 strbuf_addf(err
, _("reference repository '%s' is not a "
573 "local repository."), path
);
577 if (!access(mkpath("%s/shallow", ref_git
), F_OK
)) {
578 strbuf_addf(err
, _("reference repository '%s' is shallow"),
584 if (!access(mkpath("%s/info/grafts", ref_git
), F_OK
)) {
586 _("reference repository '%s' is grafted"),
594 FREE_AND_NULL(ref_git
);
600 int foreach_alt_odb(alt_odb_fn fn
, void *cb
)
602 struct alternate_object_database
*ent
;
606 for (ent
= alt_odb_list
; ent
; ent
= ent
->next
) {
614 void prepare_alt_odb(void)
621 alt
= getenv(ALTERNATE_DB_ENVIRONMENT
);
624 alt_odb_tail
= &alt_odb_list
;
625 link_alt_odb_entries(alt
, strlen(alt
), PATH_SEP
, NULL
, 0);
627 read_info_alternates(get_object_directory(), 0);
630 /* Returns 1 if we have successfully freshened the file, 0 otherwise. */
631 static int freshen_file(const char *fn
)
634 t
.actime
= t
.modtime
= time(NULL
);
635 return !utime(fn
, &t
);
639 * All of the check_and_freshen functions return 1 if the file exists and was
640 * freshened (if freshening was requested), 0 otherwise. If they return
641 * 0, you should not assume that it is safe to skip a write of the object (it
642 * either does not exist on disk, or has a stale mtime and may be subject to
645 int check_and_freshen_file(const char *fn
, int freshen
)
647 if (access(fn
, F_OK
))
649 if (freshen
&& !freshen_file(fn
))
654 static int check_and_freshen_local(const unsigned char *sha1
, int freshen
)
656 return check_and_freshen_file(sha1_file_name(sha1
), freshen
);
659 static int check_and_freshen_nonlocal(const unsigned char *sha1
, int freshen
)
661 struct alternate_object_database
*alt
;
663 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
664 const char *path
= alt_sha1_path(alt
, sha1
);
665 if (check_and_freshen_file(path
, freshen
))
671 static int check_and_freshen(const unsigned char *sha1
, int freshen
)
673 return check_and_freshen_local(sha1
, freshen
) ||
674 check_and_freshen_nonlocal(sha1
, freshen
);
677 int has_loose_object_nonlocal(const unsigned char *sha1
)
679 return check_and_freshen_nonlocal(sha1
, 0);
682 static int has_loose_object(const unsigned char *sha1
)
684 return check_and_freshen(sha1
, 0);
687 void pack_report(void)
690 "pack_report: getpagesize() = %10" SZ_FMT
"\n"
691 "pack_report: core.packedGitWindowSize = %10" SZ_FMT
"\n"
692 "pack_report: core.packedGitLimit = %10" SZ_FMT
"\n",
693 sz_fmt(getpagesize()),
694 sz_fmt(packed_git_window_size
),
695 sz_fmt(packed_git_limit
));
697 "pack_report: pack_used_ctr = %10u\n"
698 "pack_report: pack_mmap_calls = %10u\n"
699 "pack_report: pack_open_windows = %10u / %10u\n"
700 "pack_report: pack_mapped = "
701 "%10" SZ_FMT
" / %10" SZ_FMT
"\n",
704 pack_open_windows
, peak_pack_open_windows
,
705 sz_fmt(pack_mapped
), sz_fmt(peak_pack_mapped
));
709 * Open and mmap the index file at path, perform a couple of
710 * consistency checks, then record its information to p. Return 0 on
713 static int check_packed_git_idx(const char *path
, struct packed_git
*p
)
716 struct pack_idx_header
*hdr
;
718 uint32_t version
, nr
, i
, *index
;
719 int fd
= git_open(path
);
724 if (fstat(fd
, &st
)) {
728 idx_size
= xsize_t(st
.st_size
);
729 if (idx_size
< 4 * 256 + 20 + 20) {
731 return error("index file %s is too small", path
);
733 idx_map
= xmmap(NULL
, idx_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
737 if (hdr
->idx_signature
== htonl(PACK_IDX_SIGNATURE
)) {
738 version
= ntohl(hdr
->idx_version
);
739 if (version
< 2 || version
> 2) {
740 munmap(idx_map
, idx_size
);
741 return error("index file %s is version %"PRIu32
742 " and is not supported by this binary"
743 " (try upgrading GIT to a newer version)",
752 index
+= 2; /* skip index header */
753 for (i
= 0; i
< 256; i
++) {
754 uint32_t n
= ntohl(index
[i
]);
756 munmap(idx_map
, idx_size
);
757 return error("non-monotonic index %s", path
);
765 * - 256 index entries 4 bytes each
766 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
767 * - 20-byte SHA1 of the packfile
768 * - 20-byte SHA1 file checksum
770 if (idx_size
!= 4*256 + nr
* 24 + 20 + 20) {
771 munmap(idx_map
, idx_size
);
772 return error("wrong index v1 file size in %s", path
);
774 } else if (version
== 2) {
777 * - 8 bytes of header
778 * - 256 index entries 4 bytes each
779 * - 20-byte sha1 entry * nr
780 * - 4-byte crc entry * nr
781 * - 4-byte offset entry * nr
782 * - 20-byte SHA1 of the packfile
783 * - 20-byte SHA1 file checksum
784 * And after the 4-byte offset table might be a
785 * variable sized table containing 8-byte entries
786 * for offsets larger than 2^31.
788 unsigned long min_size
= 8 + 4*256 + nr
*(20 + 4 + 4) + 20 + 20;
789 unsigned long max_size
= min_size
;
791 max_size
+= (nr
- 1)*8;
792 if (idx_size
< min_size
|| idx_size
> max_size
) {
793 munmap(idx_map
, idx_size
);
794 return error("wrong index v2 file size in %s", path
);
796 if (idx_size
!= min_size
&&
798 * make sure we can deal with large pack offsets.
799 * 31-bit signed offset won't be enough, neither
800 * 32-bit unsigned one will be.
802 (sizeof(off_t
) <= 4)) {
803 munmap(idx_map
, idx_size
);
804 return error("pack too large for current definition of off_t in %s", path
);
808 p
->index_version
= version
;
809 p
->index_data
= idx_map
;
810 p
->index_size
= idx_size
;
815 int open_pack_index(struct packed_git
*p
)
824 if (!strip_suffix(p
->pack_name
, ".pack", &len
))
825 die("BUG: pack_name does not end in .pack");
826 idx_name
= xstrfmt("%.*s.idx", (int)len
, p
->pack_name
);
827 ret
= check_packed_git_idx(idx_name
, p
);
832 static void scan_windows(struct packed_git
*p
,
833 struct packed_git
**lru_p
,
834 struct pack_window
**lru_w
,
835 struct pack_window
**lru_l
)
837 struct pack_window
*w
, *w_l
;
839 for (w_l
= NULL
, w
= p
->windows
; w
; w
= w
->next
) {
841 if (!*lru_w
|| w
->last_used
< (*lru_w
)->last_used
) {
851 static int unuse_one_window(struct packed_git
*current
)
853 struct packed_git
*p
, *lru_p
= NULL
;
854 struct pack_window
*lru_w
= NULL
, *lru_l
= NULL
;
857 scan_windows(current
, &lru_p
, &lru_w
, &lru_l
);
858 for (p
= packed_git
; p
; p
= p
->next
)
859 scan_windows(p
, &lru_p
, &lru_w
, &lru_l
);
861 munmap(lru_w
->base
, lru_w
->len
);
862 pack_mapped
-= lru_w
->len
;
864 lru_l
->next
= lru_w
->next
;
866 lru_p
->windows
= lru_w
->next
;
874 void release_pack_memory(size_t need
)
876 size_t cur
= pack_mapped
;
877 while (need
>= (cur
- pack_mapped
) && unuse_one_window(NULL
))
881 static void mmap_limit_check(size_t length
)
883 static size_t limit
= 0;
885 limit
= git_env_ulong("GIT_MMAP_LIMIT", 0);
890 die("attempting to mmap %"PRIuMAX
" over limit %"PRIuMAX
,
891 (uintmax_t)length
, (uintmax_t)limit
);
894 void *xmmap_gently(void *start
, size_t length
,
895 int prot
, int flags
, int fd
, off_t offset
)
899 mmap_limit_check(length
);
900 ret
= mmap(start
, length
, prot
, flags
, fd
, offset
);
901 if (ret
== MAP_FAILED
) {
904 release_pack_memory(length
);
905 ret
= mmap(start
, length
, prot
, flags
, fd
, offset
);
910 void *xmmap(void *start
, size_t length
,
911 int prot
, int flags
, int fd
, off_t offset
)
913 void *ret
= xmmap_gently(start
, length
, prot
, flags
, fd
, offset
);
914 if (ret
== MAP_FAILED
)
915 die_errno("mmap failed");
919 void close_pack_windows(struct packed_git
*p
)
922 struct pack_window
*w
= p
->windows
;
925 die("pack '%s' still has open windows to it",
927 munmap(w
->base
, w
->len
);
928 pack_mapped
-= w
->len
;
930 p
->windows
= w
->next
;
935 static int close_pack_fd(struct packed_git
*p
)
947 static void close_pack(struct packed_git
*p
)
949 close_pack_windows(p
);
954 void close_all_packs(void)
956 struct packed_git
*p
;
958 for (p
= packed_git
; p
; p
= p
->next
)
960 die("BUG: want to close pack marked 'do-not-close'");
967 * The LRU pack is the one with the oldest MRU window, preferring packs
968 * with no used windows, or the oldest mtime if it has no windows allocated.
970 static void find_lru_pack(struct packed_git
*p
, struct packed_git
**lru_p
, struct pack_window
**mru_w
, int *accept_windows_inuse
)
972 struct pack_window
*w
, *this_mru_w
;
973 int has_windows_inuse
= 0;
976 * Reject this pack if it has windows and the previously selected
977 * one does not. If this pack does not have windows, reject
978 * it if the pack file is newer than the previously selected one.
980 if (*lru_p
&& !*mru_w
&& (p
->windows
|| p
->mtime
> (*lru_p
)->mtime
))
983 for (w
= this_mru_w
= p
->windows
; w
; w
= w
->next
) {
985 * Reject this pack if any of its windows are in use,
986 * but the previously selected pack did not have any
987 * inuse windows. Otherwise, record that this pack
988 * has windows in use.
991 if (*accept_windows_inuse
)
992 has_windows_inuse
= 1;
997 if (w
->last_used
> this_mru_w
->last_used
)
1001 * Reject this pack if it has windows that have been
1002 * used more recently than the previously selected pack.
1003 * If the previously selected pack had windows inuse and
1004 * we have not encountered a window in this pack that is
1005 * inuse, skip this check since we prefer a pack with no
1006 * inuse windows to one that has inuse windows.
1008 if (*mru_w
&& *accept_windows_inuse
== has_windows_inuse
&&
1009 this_mru_w
->last_used
> (*mru_w
)->last_used
)
1016 *mru_w
= this_mru_w
;
1018 *accept_windows_inuse
= has_windows_inuse
;
1021 static int close_one_pack(void)
1023 struct packed_git
*p
, *lru_p
= NULL
;
1024 struct pack_window
*mru_w
= NULL
;
1025 int accept_windows_inuse
= 1;
1027 for (p
= packed_git
; p
; p
= p
->next
) {
1028 if (p
->pack_fd
== -1)
1030 find_lru_pack(p
, &lru_p
, &mru_w
, &accept_windows_inuse
);
1034 return close_pack_fd(lru_p
);
1039 void unuse_pack(struct pack_window
**w_cursor
)
1041 struct pack_window
*w
= *w_cursor
;
1048 void close_pack_index(struct packed_git
*p
)
1050 if (p
->index_data
) {
1051 munmap((void *)p
->index_data
, p
->index_size
);
1052 p
->index_data
= NULL
;
1056 static unsigned int get_max_fd_limit(void)
1058 #ifdef RLIMIT_NOFILE
1062 if (!getrlimit(RLIMIT_NOFILE
, &lim
))
1063 return lim
.rlim_cur
;
1069 long open_max
= sysconf(_SC_OPEN_MAX
);
1073 * Otherwise, we got -1 for one of the two
1076 * (1) sysconf() did not understand _SC_OPEN_MAX
1077 * and signaled an error with -1; or
1078 * (2) sysconf() said there is no limit.
1080 * We _could_ clear errno before calling sysconf() to
1081 * tell these two cases apart and return a huge number
1082 * in the latter case to let the caller cap it to a
1083 * value that is not so selfish, but letting the
1084 * fallback OPEN_MAX codepath take care of these cases
1093 return 1; /* see the caller ;-) */
1098 * Do not call this directly as this leaks p->pack_fd on error return;
1099 * call open_packed_git() instead.
1101 static int open_packed_git_1(struct packed_git
*p
)
1104 struct pack_header hdr
;
1105 unsigned char sha1
[20];
1106 unsigned char *idx_sha1
;
1109 if (!p
->index_data
&& open_pack_index(p
))
1110 return error("packfile %s index unavailable", p
->pack_name
);
1112 if (!pack_max_fds
) {
1113 unsigned int max_fds
= get_max_fd_limit();
1115 /* Save 3 for stdin/stdout/stderr, 22 for work */
1117 pack_max_fds
= max_fds
- 25;
1122 while (pack_max_fds
<= pack_open_fds
&& close_one_pack())
1125 p
->pack_fd
= git_open(p
->pack_name
);
1126 if (p
->pack_fd
< 0 || fstat(p
->pack_fd
, &st
))
1130 /* If we created the struct before we had the pack we lack size. */
1131 if (!p
->pack_size
) {
1132 if (!S_ISREG(st
.st_mode
))
1133 return error("packfile %s not a regular file", p
->pack_name
);
1134 p
->pack_size
= st
.st_size
;
1135 } else if (p
->pack_size
!= st
.st_size
)
1136 return error("packfile %s size changed", p
->pack_name
);
1138 /* We leave these file descriptors open with sliding mmap;
1139 * there is no point keeping them open across exec(), though.
1141 fd_flag
= fcntl(p
->pack_fd
, F_GETFD
, 0);
1143 return error("cannot determine file descriptor flags");
1144 fd_flag
|= FD_CLOEXEC
;
1145 if (fcntl(p
->pack_fd
, F_SETFD
, fd_flag
) == -1)
1146 return error("cannot set FD_CLOEXEC");
1148 /* Verify we recognize this pack file format. */
1149 if (read_in_full(p
->pack_fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
))
1150 return error("file %s is far too short to be a packfile", p
->pack_name
);
1151 if (hdr
.hdr_signature
!= htonl(PACK_SIGNATURE
))
1152 return error("file %s is not a GIT packfile", p
->pack_name
);
1153 if (!pack_version_ok(hdr
.hdr_version
))
1154 return error("packfile %s is version %"PRIu32
" and not"
1155 " supported (try upgrading GIT to a newer version)",
1156 p
->pack_name
, ntohl(hdr
.hdr_version
));
1158 /* Verify the pack matches its index. */
1159 if (p
->num_objects
!= ntohl(hdr
.hdr_entries
))
1160 return error("packfile %s claims to have %"PRIu32
" objects"
1161 " while index indicates %"PRIu32
" objects",
1162 p
->pack_name
, ntohl(hdr
.hdr_entries
),
1164 if (lseek(p
->pack_fd
, p
->pack_size
- sizeof(sha1
), SEEK_SET
) == -1)
1165 return error("end of packfile %s is unavailable", p
->pack_name
);
1166 if (read_in_full(p
->pack_fd
, sha1
, sizeof(sha1
)) != sizeof(sha1
))
1167 return error("packfile %s signature is unavailable", p
->pack_name
);
1168 idx_sha1
= ((unsigned char *)p
->index_data
) + p
->index_size
- 40;
1169 if (hashcmp(sha1
, idx_sha1
))
1170 return error("packfile %s does not match index", p
->pack_name
);
1174 static int open_packed_git(struct packed_git
*p
)
1176 if (!open_packed_git_1(p
))
1182 static int in_window(struct pack_window
*win
, off_t offset
)
1184 /* We must promise at least 20 bytes (one hash) after the
1185 * offset is available from this window, otherwise the offset
1186 * is not actually in this window and a different window (which
1187 * has that one hash excess) must be used. This is to support
1188 * the object header and delta base parsing routines below.
1190 off_t win_off
= win
->offset
;
1191 return win_off
<= offset
1192 && (offset
+ 20) <= (win_off
+ win
->len
);
1195 unsigned char *use_pack(struct packed_git
*p
,
1196 struct pack_window
**w_cursor
,
1198 unsigned long *left
)
1200 struct pack_window
*win
= *w_cursor
;
1202 /* Since packfiles end in a hash of their content and it's
1203 * pointless to ask for an offset into the middle of that
1204 * hash, and the in_window function above wouldn't match
1205 * don't allow an offset too close to the end of the file.
1207 if (!p
->pack_size
&& p
->pack_fd
== -1 && open_packed_git(p
))
1208 die("packfile %s cannot be accessed", p
->pack_name
);
1209 if (offset
> (p
->pack_size
- 20))
1210 die("offset beyond end of packfile (truncated pack?)");
1212 die(_("offset before end of packfile (broken .idx?)"));
1214 if (!win
|| !in_window(win
, offset
)) {
1217 for (win
= p
->windows
; win
; win
= win
->next
) {
1218 if (in_window(win
, offset
))
1222 size_t window_align
= packed_git_window_size
/ 2;
1225 if (p
->pack_fd
== -1 && open_packed_git(p
))
1226 die("packfile %s cannot be accessed", p
->pack_name
);
1228 win
= xcalloc(1, sizeof(*win
));
1229 win
->offset
= (offset
/ window_align
) * window_align
;
1230 len
= p
->pack_size
- win
->offset
;
1231 if (len
> packed_git_window_size
)
1232 len
= packed_git_window_size
;
1233 win
->len
= (size_t)len
;
1234 pack_mapped
+= win
->len
;
1235 while (packed_git_limit
< pack_mapped
1236 && unuse_one_window(p
))
1238 win
->base
= xmmap(NULL
, win
->len
,
1239 PROT_READ
, MAP_PRIVATE
,
1240 p
->pack_fd
, win
->offset
);
1241 if (win
->base
== MAP_FAILED
)
1242 die_errno("packfile %s cannot be mapped",
1244 if (!win
->offset
&& win
->len
== p
->pack_size
1245 && !p
->do_not_close
)
1248 pack_open_windows
++;
1249 if (pack_mapped
> peak_pack_mapped
)
1250 peak_pack_mapped
= pack_mapped
;
1251 if (pack_open_windows
> peak_pack_open_windows
)
1252 peak_pack_open_windows
= pack_open_windows
;
1253 win
->next
= p
->windows
;
1257 if (win
!= *w_cursor
) {
1258 win
->last_used
= pack_used_ctr
++;
1262 offset
-= win
->offset
;
1264 *left
= win
->len
- xsize_t(offset
);
1265 return win
->base
+ offset
;
1268 static struct packed_git
*alloc_packed_git(int extra
)
1270 struct packed_git
*p
= xmalloc(st_add(sizeof(*p
), extra
));
1271 memset(p
, 0, sizeof(*p
));
1276 static void try_to_free_pack_memory(size_t size
)
1278 release_pack_memory(size
);
1281 struct packed_git
*add_packed_git(const char *path
, size_t path_len
, int local
)
1283 static int have_set_try_to_free_routine
;
1286 struct packed_git
*p
;
1288 if (!have_set_try_to_free_routine
) {
1289 have_set_try_to_free_routine
= 1;
1290 set_try_to_free_routine(try_to_free_pack_memory
);
1294 * Make sure a corresponding .pack file exists and that
1295 * the index looks sane.
1297 if (!strip_suffix_mem(path
, &path_len
, ".idx"))
1301 * ".pack" is long enough to hold any suffix we're adding (and
1302 * the use xsnprintf double-checks that)
1304 alloc
= st_add3(path_len
, strlen(".pack"), 1);
1305 p
= alloc_packed_git(alloc
);
1306 memcpy(p
->pack_name
, path
, path_len
);
1308 xsnprintf(p
->pack_name
+ path_len
, alloc
- path_len
, ".keep");
1309 if (!access(p
->pack_name
, F_OK
))
1312 xsnprintf(p
->pack_name
+ path_len
, alloc
- path_len
, ".pack");
1313 if (stat(p
->pack_name
, &st
) || !S_ISREG(st
.st_mode
)) {
1318 /* ok, it looks sane as far as we can check without
1319 * actually mapping the pack file.
1321 p
->pack_size
= st
.st_size
;
1322 p
->pack_local
= local
;
1323 p
->mtime
= st
.st_mtime
;
1324 if (path_len
< 40 || get_sha1_hex(path
+ path_len
- 40, p
->sha1
))
1329 struct packed_git
*parse_pack_index(unsigned char *sha1
, const char *idx_path
)
1331 const char *path
= sha1_pack_name(sha1
);
1332 size_t alloc
= st_add(strlen(path
), 1);
1333 struct packed_git
*p
= alloc_packed_git(alloc
);
1335 memcpy(p
->pack_name
, path
, alloc
); /* includes NUL */
1336 hashcpy(p
->sha1
, sha1
);
1337 if (check_packed_git_idx(idx_path
, p
)) {
1345 void install_packed_git(struct packed_git
*pack
)
1347 if (pack
->pack_fd
!= -1)
1350 pack
->next
= packed_git
;
1354 void (*report_garbage
)(unsigned seen_bits
, const char *path
);
1356 static void report_helper(const struct string_list
*list
,
1357 int seen_bits
, int first
, int last
)
1359 if (seen_bits
== (PACKDIR_FILE_PACK
|PACKDIR_FILE_IDX
))
1362 for (; first
< last
; first
++)
1363 report_garbage(seen_bits
, list
->items
[first
].string
);
1366 static void report_pack_garbage(struct string_list
*list
)
1368 int i
, baselen
= -1, first
= 0, seen_bits
= 0;
1370 if (!report_garbage
)
1373 string_list_sort(list
);
1375 for (i
= 0; i
< list
->nr
; i
++) {
1376 const char *path
= list
->items
[i
].string
;
1377 if (baselen
!= -1 &&
1378 strncmp(path
, list
->items
[first
].string
, baselen
)) {
1379 report_helper(list
, seen_bits
, first
, i
);
1383 if (baselen
== -1) {
1384 const char *dot
= strrchr(path
, '.');
1386 report_garbage(PACKDIR_FILE_GARBAGE
, path
);
1389 baselen
= dot
- path
+ 1;
1392 if (!strcmp(path
+ baselen
, "pack"))
1394 else if (!strcmp(path
+ baselen
, "idx"))
1397 report_helper(list
, seen_bits
, first
, list
->nr
);
1400 static void prepare_packed_git_one(char *objdir
, int local
)
1402 struct strbuf path
= STRBUF_INIT
;
1406 struct string_list garbage
= STRING_LIST_INIT_DUP
;
1408 strbuf_addstr(&path
, objdir
);
1409 strbuf_addstr(&path
, "/pack");
1410 dir
= opendir(path
.buf
);
1412 if (errno
!= ENOENT
)
1413 error_errno("unable to open object pack directory: %s",
1415 strbuf_release(&path
);
1418 strbuf_addch(&path
, '/');
1419 dirnamelen
= path
.len
;
1420 while ((de
= readdir(dir
)) != NULL
) {
1421 struct packed_git
*p
;
1424 if (is_dot_or_dotdot(de
->d_name
))
1427 strbuf_setlen(&path
, dirnamelen
);
1428 strbuf_addstr(&path
, de
->d_name
);
1430 base_len
= path
.len
;
1431 if (strip_suffix_mem(path
.buf
, &base_len
, ".idx")) {
1432 /* Don't reopen a pack we already have. */
1433 for (p
= packed_git
; p
; p
= p
->next
) {
1435 if (strip_suffix(p
->pack_name
, ".pack", &len
) &&
1437 !memcmp(p
->pack_name
, path
.buf
, len
))
1442 * See if it really is a valid .idx file with
1443 * corresponding .pack file that we can map.
1445 (p
= add_packed_git(path
.buf
, path
.len
, local
)) != NULL
)
1446 install_packed_git(p
);
1449 if (!report_garbage
)
1452 if (ends_with(de
->d_name
, ".idx") ||
1453 ends_with(de
->d_name
, ".pack") ||
1454 ends_with(de
->d_name
, ".bitmap") ||
1455 ends_with(de
->d_name
, ".keep"))
1456 string_list_append(&garbage
, path
.buf
);
1458 report_garbage(PACKDIR_FILE_GARBAGE
, path
.buf
);
1461 report_pack_garbage(&garbage
);
1462 string_list_clear(&garbage
, 0);
1463 strbuf_release(&path
);
1466 static int approximate_object_count_valid
;
1469 * Give a fast, rough count of the number of objects in the repository. This
1470 * ignores loose objects completely. If you have a lot of them, then either
1471 * you should repack because your performance will be awful, or they are
1472 * all unreachable objects about to be pruned, in which case they're not really
1473 * interesting as a measure of repo size in the first place.
1475 unsigned long approximate_object_count(void)
1477 static unsigned long count
;
1478 if (!approximate_object_count_valid
) {
1479 struct packed_git
*p
;
1481 prepare_packed_git();
1483 for (p
= packed_git
; p
; p
= p
->next
) {
1484 if (open_pack_index(p
))
1486 count
+= p
->num_objects
;
1492 static void *get_next_packed_git(const void *p
)
1494 return ((const struct packed_git
*)p
)->next
;
1497 static void set_next_packed_git(void *p
, void *next
)
1499 ((struct packed_git
*)p
)->next
= next
;
1502 static int sort_pack(const void *a_
, const void *b_
)
1504 const struct packed_git
*a
= a_
;
1505 const struct packed_git
*b
= b_
;
1509 * Local packs tend to contain objects specific to our
1510 * variant of the project than remote ones. In addition,
1511 * remote ones could be on a network mounted filesystem.
1512 * Favor local ones for these reasons.
1514 st
= a
->pack_local
- b
->pack_local
;
1519 * Younger packs tend to contain more recent objects,
1520 * and more recent objects tend to get accessed more
1523 if (a
->mtime
< b
->mtime
)
1525 else if (a
->mtime
== b
->mtime
)
1530 static void rearrange_packed_git(void)
1532 packed_git
= llist_mergesort(packed_git
, get_next_packed_git
,
1533 set_next_packed_git
, sort_pack
);
1536 static void prepare_packed_git_mru(void)
1538 struct packed_git
*p
;
1540 mru_clear(packed_git_mru
);
1541 for (p
= packed_git
; p
; p
= p
->next
)
1542 mru_append(packed_git_mru
, p
);
1545 static int prepare_packed_git_run_once
= 0;
1546 void prepare_packed_git(void)
1548 struct alternate_object_database
*alt
;
1550 if (prepare_packed_git_run_once
)
1552 prepare_packed_git_one(get_object_directory(), 1);
1554 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
)
1555 prepare_packed_git_one(alt
->path
, 0);
1556 rearrange_packed_git();
1557 prepare_packed_git_mru();
1558 prepare_packed_git_run_once
= 1;
1561 void reprepare_packed_git(void)
1563 approximate_object_count_valid
= 0;
1564 prepare_packed_git_run_once
= 0;
1565 prepare_packed_git();
1568 static void mark_bad_packed_object(struct packed_git
*p
,
1569 const unsigned char *sha1
)
1572 for (i
= 0; i
< p
->num_bad_objects
; i
++)
1573 if (!hashcmp(sha1
, p
->bad_object_sha1
+ GIT_SHA1_RAWSZ
* i
))
1575 p
->bad_object_sha1
= xrealloc(p
->bad_object_sha1
,
1576 st_mult(GIT_MAX_RAWSZ
,
1577 st_add(p
->num_bad_objects
, 1)));
1578 hashcpy(p
->bad_object_sha1
+ GIT_SHA1_RAWSZ
* p
->num_bad_objects
, sha1
);
1579 p
->num_bad_objects
++;
1582 static const struct packed_git
*has_packed_and_bad(const unsigned char *sha1
)
1584 struct packed_git
*p
;
1587 for (p
= packed_git
; p
; p
= p
->next
)
1588 for (i
= 0; i
< p
->num_bad_objects
; i
++)
1589 if (!hashcmp(sha1
, p
->bad_object_sha1
+ 20 * i
))
1595 * With an in-core object data in "map", rehash it to make sure the
1596 * object name actually matches "sha1" to detect object corruption.
1597 * With "map" == NULL, try reading the object named with "sha1" using
1598 * the streaming interface and rehash it to do the same.
1600 int check_sha1_signature(const unsigned char *sha1
, void *map
,
1601 unsigned long size
, const char *type
)
1603 unsigned char real_sha1
[20];
1604 enum object_type obj_type
;
1605 struct git_istream
*st
;
1611 hash_sha1_file(map
, size
, type
, real_sha1
);
1612 return hashcmp(sha1
, real_sha1
) ? -1 : 0;
1615 st
= open_istream(sha1
, &obj_type
, &size
, NULL
);
1619 /* Generate the header */
1620 hdrlen
= xsnprintf(hdr
, sizeof(hdr
), "%s %lu", typename(obj_type
), size
) + 1;
1624 git_SHA1_Update(&c
, hdr
, hdrlen
);
1626 char buf
[1024 * 16];
1627 ssize_t readlen
= read_istream(st
, buf
, sizeof(buf
));
1635 git_SHA1_Update(&c
, buf
, readlen
);
1637 git_SHA1_Final(real_sha1
, &c
);
1639 return hashcmp(sha1
, real_sha1
) ? -1 : 0;
1642 int git_open_cloexec(const char *name
, int flags
)
1645 static int o_cloexec
= O_CLOEXEC
;
1647 fd
= open(name
, flags
| o_cloexec
);
1648 if ((o_cloexec
& O_CLOEXEC
) && fd
< 0 && errno
== EINVAL
) {
1649 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1650 o_cloexec
&= ~O_CLOEXEC
;
1651 fd
= open(name
, flags
| o_cloexec
);
1654 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1656 static int fd_cloexec
= FD_CLOEXEC
;
1658 if (!o_cloexec
&& 0 <= fd
&& fd_cloexec
) {
1659 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
1660 int flags
= fcntl(fd
, F_GETFD
);
1661 if (fcntl(fd
, F_SETFD
, flags
| fd_cloexec
))
1670 * Find "sha1" as a loose object in the local repository or in an alternate.
1671 * Returns 0 on success, negative on failure.
1673 * The "path" out-parameter will give the path of the object we found (if any).
1674 * Note that it may point to static storage and is only valid until another
1675 * call to sha1_file_name(), etc.
1677 static int stat_sha1_file(const unsigned char *sha1
, struct stat
*st
,
1680 struct alternate_object_database
*alt
;
1682 *path
= sha1_file_name(sha1
);
1683 if (!lstat(*path
, st
))
1688 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
1689 *path
= alt_sha1_path(alt
, sha1
);
1690 if (!lstat(*path
, st
))
1698 * Like stat_sha1_file(), but actually open the object and return the
1699 * descriptor. See the caveats on the "path" parameter above.
1701 static int open_sha1_file(const unsigned char *sha1
, const char **path
)
1704 struct alternate_object_database
*alt
;
1705 int most_interesting_errno
;
1707 *path
= sha1_file_name(sha1
);
1708 fd
= git_open(*path
);
1711 most_interesting_errno
= errno
;
1714 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
1715 *path
= alt_sha1_path(alt
, sha1
);
1716 fd
= git_open(*path
);
1719 if (most_interesting_errno
== ENOENT
)
1720 most_interesting_errno
= errno
;
1722 errno
= most_interesting_errno
;
1727 * Map the loose object at "path" if it is not NULL, or the path found by
1728 * searching for a loose object named "sha1".
1730 static void *map_sha1_file_1(const char *path
,
1731 const unsigned char *sha1
,
1732 unsigned long *size
)
1738 fd
= git_open(path
);
1740 fd
= open_sha1_file(sha1
, &path
);
1745 if (!fstat(fd
, &st
)) {
1746 *size
= xsize_t(st
.st_size
);
1748 /* mmap() is forbidden on empty files */
1749 error("object file %s is empty", path
);
1752 map
= xmmap(NULL
, *size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1759 void *map_sha1_file(const unsigned char *sha1
, unsigned long *size
)
1761 return map_sha1_file_1(NULL
, sha1
, size
);
1764 unsigned long unpack_object_header_buffer(const unsigned char *buf
,
1765 unsigned long len
, enum object_type
*type
, unsigned long *sizep
)
1768 unsigned long size
, c
;
1769 unsigned long used
= 0;
1772 *type
= (c
>> 4) & 7;
1776 if (len
<= used
|| bitsizeof(long) <= shift
) {
1777 error("bad object header");
1782 size
+= (c
& 0x7f) << shift
;
1789 static int unpack_sha1_short_header(git_zstream
*stream
,
1790 unsigned char *map
, unsigned long mapsize
,
1791 void *buffer
, unsigned long bufsiz
)
1793 /* Get the data stream */
1794 memset(stream
, 0, sizeof(*stream
));
1795 stream
->next_in
= map
;
1796 stream
->avail_in
= mapsize
;
1797 stream
->next_out
= buffer
;
1798 stream
->avail_out
= bufsiz
;
1800 git_inflate_init(stream
);
1801 return git_inflate(stream
, 0);
1804 int unpack_sha1_header(git_zstream
*stream
,
1805 unsigned char *map
, unsigned long mapsize
,
1806 void *buffer
, unsigned long bufsiz
)
1808 int status
= unpack_sha1_short_header(stream
, map
, mapsize
,
1814 /* Make sure we have the terminating NUL */
1815 if (!memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
1820 static int unpack_sha1_header_to_strbuf(git_zstream
*stream
, unsigned char *map
,
1821 unsigned long mapsize
, void *buffer
,
1822 unsigned long bufsiz
, struct strbuf
*header
)
1826 status
= unpack_sha1_short_header(stream
, map
, mapsize
, buffer
, bufsiz
);
1831 * Check if entire header is unpacked in the first iteration.
1833 if (memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
1837 * buffer[0..bufsiz] was not large enough. Copy the partial
1838 * result out to header, and then append the result of further
1839 * reading the stream.
1841 strbuf_add(header
, buffer
, stream
->next_out
- (unsigned char *)buffer
);
1842 stream
->next_out
= buffer
;
1843 stream
->avail_out
= bufsiz
;
1846 status
= git_inflate(stream
, 0);
1847 strbuf_add(header
, buffer
, stream
->next_out
- (unsigned char *)buffer
);
1848 if (memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
1850 stream
->next_out
= buffer
;
1851 stream
->avail_out
= bufsiz
;
1852 } while (status
!= Z_STREAM_END
);
1856 static void *unpack_sha1_rest(git_zstream
*stream
, void *buffer
, unsigned long size
, const unsigned char *sha1
)
1858 int bytes
= strlen(buffer
) + 1;
1859 unsigned char *buf
= xmallocz(size
);
1863 n
= stream
->total_out
- bytes
;
1866 memcpy(buf
, (char *) buffer
+ bytes
, n
);
1868 if (bytes
<= size
) {
1870 * The above condition must be (bytes <= size), not
1871 * (bytes < size). In other words, even though we
1872 * expect no more output and set avail_out to zero,
1873 * the input zlib stream may have bytes that express
1874 * "this concludes the stream", and we *do* want to
1877 * Otherwise we would not be able to test that we
1878 * consumed all the input to reach the expected size;
1879 * we also want to check that zlib tells us that all
1880 * went well with status == Z_STREAM_END at the end.
1882 stream
->next_out
= buf
+ bytes
;
1883 stream
->avail_out
= size
- bytes
;
1884 while (status
== Z_OK
)
1885 status
= git_inflate(stream
, Z_FINISH
);
1887 if (status
== Z_STREAM_END
&& !stream
->avail_in
) {
1888 git_inflate_end(stream
);
1893 error("corrupt loose object '%s'", sha1_to_hex(sha1
));
1894 else if (stream
->avail_in
)
1895 error("garbage at end of loose object '%s'",
1902 * We used to just use "sscanf()", but that's actually way
1903 * too permissive for what we want to check. So do an anal
1904 * object header parse by hand.
1906 static int parse_sha1_header_extended(const char *hdr
, struct object_info
*oi
,
1909 const char *type_buf
= hdr
;
1911 int type
, type_len
= 0;
1914 * The type can be of any size but is followed by
1926 type
= type_from_string_gently(type_buf
, type_len
, 1);
1928 strbuf_add(oi
->typename
, type_buf
, type_len
);
1930 * Set type to 0 if its an unknown object and
1931 * we're obtaining the type using '--allow-unknown-type'
1934 if ((flags
& OBJECT_INFO_ALLOW_UNKNOWN_TYPE
) && (type
< 0))
1937 die("invalid object type");
1942 * The length must follow immediately, and be in canonical
1943 * decimal format (ie "010" is not valid).
1945 size
= *hdr
++ - '0';
1950 unsigned long c
= *hdr
- '0';
1954 size
= size
* 10 + c
;
1962 * The length must be followed by a zero byte
1964 return *hdr
? -1 : type
;
1967 int parse_sha1_header(const char *hdr
, unsigned long *sizep
)
1969 struct object_info oi
= OBJECT_INFO_INIT
;
1972 return parse_sha1_header_extended(hdr
, &oi
, 0);
1975 unsigned long get_size_from_delta(struct packed_git
*p
,
1976 struct pack_window
**w_curs
,
1979 const unsigned char *data
;
1980 unsigned char delta_head
[20], *in
;
1984 memset(&stream
, 0, sizeof(stream
));
1985 stream
.next_out
= delta_head
;
1986 stream
.avail_out
= sizeof(delta_head
);
1988 git_inflate_init(&stream
);
1990 in
= use_pack(p
, w_curs
, curpos
, &stream
.avail_in
);
1991 stream
.next_in
= in
;
1992 st
= git_inflate(&stream
, Z_FINISH
);
1993 curpos
+= stream
.next_in
- in
;
1994 } while ((st
== Z_OK
|| st
== Z_BUF_ERROR
) &&
1995 stream
.total_out
< sizeof(delta_head
));
1996 git_inflate_end(&stream
);
1997 if ((st
!= Z_STREAM_END
) && stream
.total_out
!= sizeof(delta_head
)) {
1998 error("delta data unpack-initial failed");
2002 /* Examine the initial part of the delta to figure out
2007 /* ignore base size */
2008 get_delta_hdr_size(&data
, delta_head
+sizeof(delta_head
));
2010 /* Read the result size */
2011 return get_delta_hdr_size(&data
, delta_head
+sizeof(delta_head
));
2014 static off_t
get_delta_base(struct packed_git
*p
,
2015 struct pack_window
**w_curs
,
2017 enum object_type type
,
2018 off_t delta_obj_offset
)
2020 unsigned char *base_info
= use_pack(p
, w_curs
, *curpos
, NULL
);
2023 /* use_pack() assured us we have [base_info, base_info + 20)
2024 * as a range that we can look at without walking off the
2025 * end of the mapped window. Its actually the hash size
2026 * that is assured. An OFS_DELTA longer than the hash size
2027 * is stupid, as then a REF_DELTA would be smaller to store.
2029 if (type
== OBJ_OFS_DELTA
) {
2031 unsigned char c
= base_info
[used
++];
2032 base_offset
= c
& 127;
2035 if (!base_offset
|| MSB(base_offset
, 7))
2036 return 0; /* overflow */
2037 c
= base_info
[used
++];
2038 base_offset
= (base_offset
<< 7) + (c
& 127);
2040 base_offset
= delta_obj_offset
- base_offset
;
2041 if (base_offset
<= 0 || base_offset
>= delta_obj_offset
)
2042 return 0; /* out of bound */
2044 } else if (type
== OBJ_REF_DELTA
) {
2045 /* The base entry _must_ be in the same pack */
2046 base_offset
= find_pack_entry_one(base_info
, p
);
2049 die("I am totally screwed");
2054 * Like get_delta_base above, but we return the sha1 instead of the pack
2055 * offset. This means it is cheaper for REF deltas (we do not have to do
2056 * the final object lookup), but more expensive for OFS deltas (we
2057 * have to load the revidx to convert the offset back into a sha1).
2059 static const unsigned char *get_delta_base_sha1(struct packed_git
*p
,
2060 struct pack_window
**w_curs
,
2062 enum object_type type
,
2063 off_t delta_obj_offset
)
2065 if (type
== OBJ_REF_DELTA
) {
2066 unsigned char *base
= use_pack(p
, w_curs
, curpos
, NULL
);
2068 } else if (type
== OBJ_OFS_DELTA
) {
2069 struct revindex_entry
*revidx
;
2070 off_t base_offset
= get_delta_base(p
, w_curs
, &curpos
,
2071 type
, delta_obj_offset
);
2076 revidx
= find_pack_revindex(p
, base_offset
);
2080 return nth_packed_object_sha1(p
, revidx
->nr
);
2085 int unpack_object_header(struct packed_git
*p
,
2086 struct pack_window
**w_curs
,
2088 unsigned long *sizep
)
2090 unsigned char *base
;
2093 enum object_type type
;
2095 /* use_pack() assures us we have [base, base + 20) available
2096 * as a range that we can look at. (Its actually the hash
2097 * size that is assured.) With our object header encoding
2098 * the maximum deflated object size is 2^137, which is just
2099 * insane, so we know won't exceed what we have been given.
2101 base
= use_pack(p
, w_curs
, *curpos
, &left
);
2102 used
= unpack_object_header_buffer(base
, left
, &type
, sizep
);
2111 static int retry_bad_packed_offset(struct packed_git
*p
, off_t obj_offset
)
2114 struct revindex_entry
*revidx
;
2115 const unsigned char *sha1
;
2116 revidx
= find_pack_revindex(p
, obj_offset
);
2119 sha1
= nth_packed_object_sha1(p
, revidx
->nr
);
2120 mark_bad_packed_object(p
, sha1
);
2121 type
= sha1_object_info(sha1
, NULL
);
2122 if (type
<= OBJ_NONE
)
2127 #define POI_STACK_PREALLOC 64
2129 static enum object_type
packed_to_object_type(struct packed_git
*p
,
2131 enum object_type type
,
2132 struct pack_window
**w_curs
,
2135 off_t small_poi_stack
[POI_STACK_PREALLOC
];
2136 off_t
*poi_stack
= small_poi_stack
;
2137 int poi_stack_nr
= 0, poi_stack_alloc
= POI_STACK_PREALLOC
;
2139 while (type
== OBJ_OFS_DELTA
|| type
== OBJ_REF_DELTA
) {
2142 /* Push the object we're going to leave behind */
2143 if (poi_stack_nr
>= poi_stack_alloc
&& poi_stack
== small_poi_stack
) {
2144 poi_stack_alloc
= alloc_nr(poi_stack_nr
);
2145 ALLOC_ARRAY(poi_stack
, poi_stack_alloc
);
2146 memcpy(poi_stack
, small_poi_stack
, sizeof(off_t
)*poi_stack_nr
);
2148 ALLOC_GROW(poi_stack
, poi_stack_nr
+1, poi_stack_alloc
);
2150 poi_stack
[poi_stack_nr
++] = obj_offset
;
2151 /* If parsing the base offset fails, just unwind */
2152 base_offset
= get_delta_base(p
, w_curs
, &curpos
, type
, obj_offset
);
2155 curpos
= obj_offset
= base_offset
;
2156 type
= unpack_object_header(p
, w_curs
, &curpos
, &size
);
2157 if (type
<= OBJ_NONE
) {
2158 /* If getting the base itself fails, we first
2159 * retry the base, otherwise unwind */
2160 type
= retry_bad_packed_offset(p
, base_offset
);
2161 if (type
> OBJ_NONE
)
2175 error("unknown object type %i at offset %"PRIuMAX
" in %s",
2176 type
, (uintmax_t)obj_offset
, p
->pack_name
);
2181 if (poi_stack
!= small_poi_stack
)
2186 while (poi_stack_nr
) {
2187 obj_offset
= poi_stack
[--poi_stack_nr
];
2188 type
= retry_bad_packed_offset(p
, obj_offset
);
2189 if (type
> OBJ_NONE
)
2196 static struct hashmap delta_base_cache
;
2197 static size_t delta_base_cached
;
2199 static LIST_HEAD(delta_base_cache_lru
);
2201 struct delta_base_cache_key
{
2202 struct packed_git
*p
;
2206 struct delta_base_cache_entry
{
2207 struct hashmap hash
;
2208 struct delta_base_cache_key key
;
2209 struct list_head lru
;
2212 enum object_type type
;
2215 static unsigned int pack_entry_hash(struct packed_git
*p
, off_t base_offset
)
2219 hash
= (unsigned int)(intptr_t)p
+ (unsigned int)base_offset
;
2220 hash
+= (hash
>> 8) + (hash
>> 16);
2224 static struct delta_base_cache_entry
*
2225 get_delta_base_cache_entry(struct packed_git
*p
, off_t base_offset
)
2227 struct hashmap_entry entry
;
2228 struct delta_base_cache_key key
;
2230 if (!delta_base_cache
.cmpfn
)
2233 hashmap_entry_init(&entry
, pack_entry_hash(p
, base_offset
));
2235 key
.base_offset
= base_offset
;
2236 return hashmap_get(&delta_base_cache
, &entry
, &key
);
2239 static int delta_base_cache_key_eq(const struct delta_base_cache_key
*a
,
2240 const struct delta_base_cache_key
*b
)
2242 return a
->p
== b
->p
&& a
->base_offset
== b
->base_offset
;
2245 static int delta_base_cache_hash_cmp(const void *unused_cmp_data
,
2246 const void *va
, const void *vb
,
2249 const struct delta_base_cache_entry
*a
= va
, *b
= vb
;
2250 const struct delta_base_cache_key
*key
= vkey
;
2252 return !delta_base_cache_key_eq(&a
->key
, key
);
2254 return !delta_base_cache_key_eq(&a
->key
, &b
->key
);
2257 static int in_delta_base_cache(struct packed_git
*p
, off_t base_offset
)
2259 return !!get_delta_base_cache_entry(p
, base_offset
);
2263 * Remove the entry from the cache, but do _not_ free the associated
2264 * entry data. The caller takes ownership of the "data" buffer, and
2265 * should copy out any fields it wants before detaching.
2267 static void detach_delta_base_cache_entry(struct delta_base_cache_entry
*ent
)
2269 hashmap_remove(&delta_base_cache
, ent
, &ent
->key
);
2270 list_del(&ent
->lru
);
2271 delta_base_cached
-= ent
->size
;
2275 static void *cache_or_unpack_entry(struct packed_git
*p
, off_t base_offset
,
2276 unsigned long *base_size
, enum object_type
*type
)
2278 struct delta_base_cache_entry
*ent
;
2280 ent
= get_delta_base_cache_entry(p
, base_offset
);
2282 return unpack_entry(p
, base_offset
, type
, base_size
);
2287 *base_size
= ent
->size
;
2288 return xmemdupz(ent
->data
, ent
->size
);
2291 static inline void release_delta_base_cache(struct delta_base_cache_entry
*ent
)
2294 detach_delta_base_cache_entry(ent
);
2297 void clear_delta_base_cache(void)
2299 struct list_head
*lru
, *tmp
;
2300 list_for_each_safe(lru
, tmp
, &delta_base_cache_lru
) {
2301 struct delta_base_cache_entry
*entry
=
2302 list_entry(lru
, struct delta_base_cache_entry
, lru
);
2303 release_delta_base_cache(entry
);
2307 static void add_delta_base_cache(struct packed_git
*p
, off_t base_offset
,
2308 void *base
, unsigned long base_size
, enum object_type type
)
2310 struct delta_base_cache_entry
*ent
= xmalloc(sizeof(*ent
));
2311 struct list_head
*lru
, *tmp
;
2313 delta_base_cached
+= base_size
;
2315 list_for_each_safe(lru
, tmp
, &delta_base_cache_lru
) {
2316 struct delta_base_cache_entry
*f
=
2317 list_entry(lru
, struct delta_base_cache_entry
, lru
);
2318 if (delta_base_cached
<= delta_base_cache_limit
)
2320 release_delta_base_cache(f
);
2324 ent
->key
.base_offset
= base_offset
;
2327 ent
->size
= base_size
;
2328 list_add_tail(&ent
->lru
, &delta_base_cache_lru
);
2330 if (!delta_base_cache
.cmpfn
)
2331 hashmap_init(&delta_base_cache
, delta_base_cache_hash_cmp
, NULL
, 0);
2332 hashmap_entry_init(ent
, pack_entry_hash(p
, base_offset
));
2333 hashmap_add(&delta_base_cache
, ent
);
2336 int packed_object_info(struct packed_git
*p
, off_t obj_offset
,
2337 struct object_info
*oi
)
2339 struct pack_window
*w_curs
= NULL
;
2341 off_t curpos
= obj_offset
;
2342 enum object_type type
;
2345 * We always get the representation type, but only convert it to
2346 * a "real" type later if the caller is interested.
2349 *oi
->contentp
= cache_or_unpack_entry(p
, obj_offset
, oi
->sizep
,
2354 type
= unpack_object_header(p
, &w_curs
, &curpos
, &size
);
2357 if (!oi
->contentp
&& oi
->sizep
) {
2358 if (type
== OBJ_OFS_DELTA
|| type
== OBJ_REF_DELTA
) {
2359 off_t tmp_pos
= curpos
;
2360 off_t base_offset
= get_delta_base(p
, &w_curs
, &tmp_pos
,
2366 *oi
->sizep
= get_size_from_delta(p
, &w_curs
, tmp_pos
);
2367 if (*oi
->sizep
== 0) {
2376 if (oi
->disk_sizep
) {
2377 struct revindex_entry
*revidx
= find_pack_revindex(p
, obj_offset
);
2378 *oi
->disk_sizep
= revidx
[1].offset
- obj_offset
;
2381 if (oi
->typep
|| oi
->typename
) {
2382 enum object_type ptot
;
2383 ptot
= packed_to_object_type(p
, obj_offset
, type
, &w_curs
,
2388 const char *tn
= typename(ptot
);
2390 strbuf_addstr(oi
->typename
, tn
);
2398 if (oi
->delta_base_sha1
) {
2399 if (type
== OBJ_OFS_DELTA
|| type
== OBJ_REF_DELTA
) {
2400 const unsigned char *base
;
2402 base
= get_delta_base_sha1(p
, &w_curs
, curpos
,
2409 hashcpy(oi
->delta_base_sha1
, base
);
2411 hashclr(oi
->delta_base_sha1
);
2414 oi
->whence
= in_delta_base_cache(p
, obj_offset
) ? OI_DBCACHED
:
2418 unuse_pack(&w_curs
);
2422 static void *unpack_compressed_entry(struct packed_git
*p
,
2423 struct pack_window
**w_curs
,
2429 unsigned char *buffer
, *in
;
2431 buffer
= xmallocz_gently(size
);
2434 memset(&stream
, 0, sizeof(stream
));
2435 stream
.next_out
= buffer
;
2436 stream
.avail_out
= size
+ 1;
2438 git_inflate_init(&stream
);
2440 in
= use_pack(p
, w_curs
, curpos
, &stream
.avail_in
);
2441 stream
.next_in
= in
;
2442 st
= git_inflate(&stream
, Z_FINISH
);
2443 if (!stream
.avail_out
)
2444 break; /* the payload is larger than it should be */
2445 curpos
+= stream
.next_in
- in
;
2446 } while (st
== Z_OK
|| st
== Z_BUF_ERROR
);
2447 git_inflate_end(&stream
);
2448 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= size
) {
2456 static void *read_object(const unsigned char *sha1
, enum object_type
*type
,
2457 unsigned long *size
);
2459 static void write_pack_access_log(struct packed_git
*p
, off_t obj_offset
)
2461 static struct trace_key pack_access
= TRACE_KEY_INIT(PACK_ACCESS
);
2462 trace_printf_key(&pack_access
, "%s %"PRIuMAX
"\n",
2463 p
->pack_name
, (uintmax_t)obj_offset
);
2466 int do_check_packed_object_crc
;
2468 #define UNPACK_ENTRY_STACK_PREALLOC 64
2469 struct unpack_entry_stack_ent
{
2475 void *unpack_entry(struct packed_git
*p
, off_t obj_offset
,
2476 enum object_type
*final_type
, unsigned long *final_size
)
2478 struct pack_window
*w_curs
= NULL
;
2479 off_t curpos
= obj_offset
;
2482 enum object_type type
;
2483 struct unpack_entry_stack_ent small_delta_stack
[UNPACK_ENTRY_STACK_PREALLOC
];
2484 struct unpack_entry_stack_ent
*delta_stack
= small_delta_stack
;
2485 int delta_stack_nr
= 0, delta_stack_alloc
= UNPACK_ENTRY_STACK_PREALLOC
;
2486 int base_from_cache
= 0;
2488 write_pack_access_log(p
, obj_offset
);
2490 /* PHASE 1: drill down to the innermost base object */
2494 struct delta_base_cache_entry
*ent
;
2496 ent
= get_delta_base_cache_entry(p
, curpos
);
2501 detach_delta_base_cache_entry(ent
);
2502 base_from_cache
= 1;
2506 if (do_check_packed_object_crc
&& p
->index_version
> 1) {
2507 struct revindex_entry
*revidx
= find_pack_revindex(p
, obj_offset
);
2508 off_t len
= revidx
[1].offset
- obj_offset
;
2509 if (check_pack_crc(p
, &w_curs
, obj_offset
, len
, revidx
->nr
)) {
2510 const unsigned char *sha1
=
2511 nth_packed_object_sha1(p
, revidx
->nr
);
2512 error("bad packed object CRC for %s",
2514 mark_bad_packed_object(p
, sha1
);
2520 type
= unpack_object_header(p
, &w_curs
, &curpos
, &size
);
2521 if (type
!= OBJ_OFS_DELTA
&& type
!= OBJ_REF_DELTA
)
2524 base_offset
= get_delta_base(p
, &w_curs
, &curpos
, type
, obj_offset
);
2526 error("failed to validate delta base reference "
2527 "at offset %"PRIuMAX
" from %s",
2528 (uintmax_t)curpos
, p
->pack_name
);
2529 /* bail to phase 2, in hopes of recovery */
2534 /* push object, proceed to base */
2535 if (delta_stack_nr
>= delta_stack_alloc
2536 && delta_stack
== small_delta_stack
) {
2537 delta_stack_alloc
= alloc_nr(delta_stack_nr
);
2538 ALLOC_ARRAY(delta_stack
, delta_stack_alloc
);
2539 memcpy(delta_stack
, small_delta_stack
,
2540 sizeof(*delta_stack
)*delta_stack_nr
);
2542 ALLOC_GROW(delta_stack
, delta_stack_nr
+1, delta_stack_alloc
);
2544 i
= delta_stack_nr
++;
2545 delta_stack
[i
].obj_offset
= obj_offset
;
2546 delta_stack
[i
].curpos
= curpos
;
2547 delta_stack
[i
].size
= size
;
2549 curpos
= obj_offset
= base_offset
;
2552 /* PHASE 2: handle the base */
2557 die("BUG: unpack_entry: left loop at a valid delta");
2563 if (!base_from_cache
)
2564 data
= unpack_compressed_entry(p
, &w_curs
, curpos
, size
);
2568 error("unknown object type %i at offset %"PRIuMAX
" in %s",
2569 type
, (uintmax_t)obj_offset
, p
->pack_name
);
2572 /* PHASE 3: apply deltas in order */
2575 * 'data' holds the base data, or NULL if there was corruption
2577 while (delta_stack_nr
) {
2580 void *external_base
= NULL
;
2581 unsigned long delta_size
, base_size
= size
;
2587 add_delta_base_cache(p
, obj_offset
, base
, base_size
, type
);
2591 * We're probably in deep shit, but let's try to fetch
2592 * the required base anyway from another pack or loose.
2593 * This is costly but should happen only in the presence
2594 * of a corrupted pack, and is better than failing outright.
2596 struct revindex_entry
*revidx
;
2597 const unsigned char *base_sha1
;
2598 revidx
= find_pack_revindex(p
, obj_offset
);
2600 base_sha1
= nth_packed_object_sha1(p
, revidx
->nr
);
2601 error("failed to read delta base object %s"
2602 " at offset %"PRIuMAX
" from %s",
2603 sha1_to_hex(base_sha1
), (uintmax_t)obj_offset
,
2605 mark_bad_packed_object(p
, base_sha1
);
2606 base
= read_object(base_sha1
, &type
, &base_size
);
2607 external_base
= base
;
2611 i
= --delta_stack_nr
;
2612 obj_offset
= delta_stack
[i
].obj_offset
;
2613 curpos
= delta_stack
[i
].curpos
;
2614 delta_size
= delta_stack
[i
].size
;
2619 delta_data
= unpack_compressed_entry(p
, &w_curs
, curpos
, delta_size
);
2622 error("failed to unpack compressed delta "
2623 "at offset %"PRIuMAX
" from %s",
2624 (uintmax_t)curpos
, p
->pack_name
);
2626 free(external_base
);
2630 data
= patch_delta(base
, base_size
,
2631 delta_data
, delta_size
,
2635 * We could not apply the delta; warn the user, but keep going.
2636 * Our failure will be noticed either in the next iteration of
2637 * the loop, or if this is the final delta, in the caller when
2638 * we return NULL. Those code paths will take care of making
2639 * a more explicit warning and retrying with another copy of
2643 error("failed to apply delta");
2646 free(external_base
);
2655 unuse_pack(&w_curs
);
2657 if (delta_stack
!= small_delta_stack
)
2663 const unsigned char *nth_packed_object_sha1(struct packed_git
*p
,
2666 const unsigned char *index
= p
->index_data
;
2668 if (open_pack_index(p
))
2670 index
= p
->index_data
;
2672 if (n
>= p
->num_objects
)
2675 if (p
->index_version
== 1) {
2676 return index
+ 24 * n
+ 4;
2679 return index
+ 20 * n
;
2683 const struct object_id
*nth_packed_object_oid(struct object_id
*oid
,
2684 struct packed_git
*p
,
2687 const unsigned char *hash
= nth_packed_object_sha1(p
, n
);
2690 hashcpy(oid
->hash
, hash
);
2694 void check_pack_index_ptr(const struct packed_git
*p
, const void *vptr
)
2696 const unsigned char *ptr
= vptr
;
2697 const unsigned char *start
= p
->index_data
;
2698 const unsigned char *end
= start
+ p
->index_size
;
2700 die(_("offset before start of pack index for %s (corrupt index?)"),
2702 /* No need to check for underflow; .idx files must be at least 8 bytes */
2704 die(_("offset beyond end of pack index for %s (truncated index?)"),
2708 off_t
nth_packed_object_offset(const struct packed_git
*p
, uint32_t n
)
2710 const unsigned char *index
= p
->index_data
;
2712 if (p
->index_version
== 1) {
2713 return ntohl(*((uint32_t *)(index
+ 24 * n
)));
2716 index
+= 8 + p
->num_objects
* (20 + 4);
2717 off
= ntohl(*((uint32_t *)(index
+ 4 * n
)));
2718 if (!(off
& 0x80000000))
2720 index
+= p
->num_objects
* 4 + (off
& 0x7fffffff) * 8;
2721 check_pack_index_ptr(p
, index
);
2722 return (((uint64_t)ntohl(*((uint32_t *)(index
+ 0)))) << 32) |
2723 ntohl(*((uint32_t *)(index
+ 4)));
2727 off_t
find_pack_entry_one(const unsigned char *sha1
,
2728 struct packed_git
*p
)
2730 const uint32_t *level1_ofs
= p
->index_data
;
2731 const unsigned char *index
= p
->index_data
;
2732 unsigned hi
, lo
, stride
;
2733 static int debug_lookup
= -1;
2735 if (debug_lookup
< 0)
2736 debug_lookup
= !!getenv("GIT_DEBUG_LOOKUP");
2739 if (open_pack_index(p
))
2741 level1_ofs
= p
->index_data
;
2742 index
= p
->index_data
;
2744 if (p
->index_version
> 1) {
2749 hi
= ntohl(level1_ofs
[*sha1
]);
2750 lo
= ((*sha1
== 0x0) ? 0 : ntohl(level1_ofs
[*sha1
- 1]));
2751 if (p
->index_version
> 1) {
2759 printf("%02x%02x%02x... lo %u hi %u nr %"PRIu32
"\n",
2760 sha1
[0], sha1
[1], sha1
[2], lo
, hi
, p
->num_objects
);
2763 unsigned mi
= (lo
+ hi
) / 2;
2764 int cmp
= hashcmp(index
+ mi
* stride
, sha1
);
2767 printf("lo %u hi %u rg %u mi %u\n",
2768 lo
, hi
, hi
- lo
, mi
);
2770 return nth_packed_object_offset(p
, mi
);
2779 int is_pack_valid(struct packed_git
*p
)
2781 /* An already open pack is known to be valid. */
2782 if (p
->pack_fd
!= -1)
2785 /* If the pack has one window completely covering the
2786 * file size, the pack is known to be valid even if
2787 * the descriptor is not currently open.
2790 struct pack_window
*w
= p
->windows
;
2792 if (!w
->offset
&& w
->len
== p
->pack_size
)
2796 /* Force the pack to open to prove its valid. */
2797 return !open_packed_git(p
);
2800 static int fill_pack_entry(const unsigned char *sha1
,
2801 struct pack_entry
*e
,
2802 struct packed_git
*p
)
2806 if (p
->num_bad_objects
) {
2808 for (i
= 0; i
< p
->num_bad_objects
; i
++)
2809 if (!hashcmp(sha1
, p
->bad_object_sha1
+ 20 * i
))
2813 offset
= find_pack_entry_one(sha1
, p
);
2818 * We are about to tell the caller where they can locate the
2819 * requested object. We better make sure the packfile is
2820 * still here and can be accessed before supplying that
2821 * answer, as it may have been deleted since the index was
2824 if (!is_pack_valid(p
))
2828 hashcpy(e
->sha1
, sha1
);
2833 * Iff a pack file contains the object named by sha1, return true and
2834 * store its location to e.
2836 static int find_pack_entry(const unsigned char *sha1
, struct pack_entry
*e
)
2838 struct mru_entry
*p
;
2840 prepare_packed_git();
2844 for (p
= packed_git_mru
->head
; p
; p
= p
->next
) {
2845 if (fill_pack_entry(sha1
, e
, p
->item
)) {
2846 mru_mark(packed_git_mru
, p
);
2853 struct packed_git
*find_sha1_pack(const unsigned char *sha1
,
2854 struct packed_git
*packs
)
2856 struct packed_git
*p
;
2858 for (p
= packs
; p
; p
= p
->next
) {
2859 if (find_pack_entry_one(sha1
, p
))
2866 static int sha1_loose_object_info(const unsigned char *sha1
,
2867 struct object_info
*oi
,
2871 unsigned long mapsize
;
2875 struct strbuf hdrbuf
= STRBUF_INIT
;
2876 unsigned long size_scratch
;
2878 if (oi
->delta_base_sha1
)
2879 hashclr(oi
->delta_base_sha1
);
2882 * If we don't care about type or size, then we don't
2883 * need to look inside the object at all. Note that we
2884 * do not optimize out the stat call, even if the
2885 * caller doesn't care about the disk-size, since our
2886 * return value implicitly indicates whether the
2887 * object even exists.
2889 if (!oi
->typep
&& !oi
->typename
&& !oi
->sizep
&& !oi
->contentp
) {
2892 if (stat_sha1_file(sha1
, &st
, &path
) < 0)
2895 *oi
->disk_sizep
= st
.st_size
;
2899 map
= map_sha1_file(sha1
, &mapsize
);
2904 oi
->sizep
= &size_scratch
;
2907 *oi
->disk_sizep
= mapsize
;
2908 if ((flags
& OBJECT_INFO_ALLOW_UNKNOWN_TYPE
)) {
2909 if (unpack_sha1_header_to_strbuf(&stream
, map
, mapsize
, hdr
, sizeof(hdr
), &hdrbuf
) < 0)
2910 status
= error("unable to unpack %s header with --allow-unknown-type",
2912 } else if (unpack_sha1_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
)) < 0)
2913 status
= error("unable to unpack %s header",
2917 else if (hdrbuf
.len
) {
2918 if ((status
= parse_sha1_header_extended(hdrbuf
.buf
, oi
, flags
)) < 0)
2919 status
= error("unable to parse %s header with --allow-unknown-type",
2921 } else if ((status
= parse_sha1_header_extended(hdr
, oi
, flags
)) < 0)
2922 status
= error("unable to parse %s header", sha1_to_hex(sha1
));
2924 if (status
>= 0 && oi
->contentp
)
2925 *oi
->contentp
= unpack_sha1_rest(&stream
, hdr
,
2928 git_inflate_end(&stream
);
2930 munmap(map
, mapsize
);
2931 if (status
&& oi
->typep
)
2932 *oi
->typep
= status
;
2933 if (oi
->sizep
== &size_scratch
)
2935 strbuf_release(&hdrbuf
);
2936 oi
->whence
= OI_LOOSE
;
2937 return (status
< 0) ? status
: 0;
2940 int sha1_object_info_extended(const unsigned char *sha1
, struct object_info
*oi
, unsigned flags
)
2942 static struct object_info blank_oi
= OBJECT_INFO_INIT
;
2943 struct pack_entry e
;
2945 const unsigned char *real
= (flags
& OBJECT_INFO_LOOKUP_REPLACE
) ?
2946 lookup_replace_object(sha1
) :
2952 if (!(flags
& OBJECT_INFO_SKIP_CACHED
)) {
2953 struct cached_object
*co
= find_cached_object(real
);
2956 *(oi
->typep
) = co
->type
;
2958 *(oi
->sizep
) = co
->size
;
2960 *(oi
->disk_sizep
) = 0;
2961 if (oi
->delta_base_sha1
)
2962 hashclr(oi
->delta_base_sha1
);
2964 strbuf_addstr(oi
->typename
, typename(co
->type
));
2966 *oi
->contentp
= xmemdupz(co
->buf
, co
->size
);
2967 oi
->whence
= OI_CACHED
;
2972 if (!find_pack_entry(real
, &e
)) {
2973 /* Most likely it's a loose object. */
2974 if (!sha1_loose_object_info(real
, oi
, flags
))
2977 /* Not a loose object; someone else may have just packed it. */
2978 if (flags
& OBJECT_INFO_QUICK
) {
2981 reprepare_packed_git();
2982 if (!find_pack_entry(real
, &e
))
2987 if (oi
== &blank_oi
)
2989 * We know that the caller doesn't actually need the
2990 * information below, so return early.
2994 rtype
= packed_object_info(e
.p
, e
.offset
, oi
);
2996 mark_bad_packed_object(e
.p
, real
);
2997 return sha1_object_info_extended(real
, oi
, 0);
2998 } else if (oi
->whence
== OI_PACKED
) {
2999 oi
->u
.packed
.offset
= e
.offset
;
3000 oi
->u
.packed
.pack
= e
.p
;
3001 oi
->u
.packed
.is_delta
= (rtype
== OBJ_REF_DELTA
||
3002 rtype
== OBJ_OFS_DELTA
);
3008 /* returns enum object_type or negative */
3009 int sha1_object_info(const unsigned char *sha1
, unsigned long *sizep
)
3011 enum object_type type
;
3012 struct object_info oi
= OBJECT_INFO_INIT
;
3016 if (sha1_object_info_extended(sha1
, &oi
,
3017 OBJECT_INFO_LOOKUP_REPLACE
) < 0)
3022 int pretend_sha1_file(void *buf
, unsigned long len
, enum object_type type
,
3023 unsigned char *sha1
)
3025 struct cached_object
*co
;
3027 hash_sha1_file(buf
, len
, typename(type
), sha1
);
3028 if (has_sha1_file(sha1
) || find_cached_object(sha1
))
3030 ALLOC_GROW(cached_objects
, cached_object_nr
+ 1, cached_object_alloc
);
3031 co
= &cached_objects
[cached_object_nr
++];
3034 co
->buf
= xmalloc(len
);
3035 memcpy(co
->buf
, buf
, len
);
3036 hashcpy(co
->sha1
, sha1
);
3040 static void *read_object(const unsigned char *sha1
, enum object_type
*type
,
3041 unsigned long *size
)
3043 struct object_info oi
= OBJECT_INFO_INIT
;
3047 oi
.contentp
= &content
;
3049 if (sha1_object_info_extended(sha1
, &oi
, 0) < 0)
3055 * This function dies on corrupt objects; the callers who want to
3056 * deal with them should arrange to call read_object() and give error
3057 * messages themselves.
3059 void *read_sha1_file_extended(const unsigned char *sha1
,
3060 enum object_type
*type
,
3061 unsigned long *size
,
3065 const struct packed_git
*p
;
3068 const unsigned char *repl
= lookup_replace
? lookup_replace_object(sha1
)
3072 data
= read_object(repl
, type
, size
);
3076 if (errno
&& errno
!= ENOENT
)
3077 die_errno("failed to read object %s", sha1_to_hex(sha1
));
3079 /* die if we replaced an object with one that does not exist */
3081 die("replacement %s not found for %s",
3082 sha1_to_hex(repl
), sha1_to_hex(sha1
));
3084 if (!stat_sha1_file(repl
, &st
, &path
))
3085 die("loose object %s (stored in %s) is corrupt",
3086 sha1_to_hex(repl
), path
);
3088 if ((p
= has_packed_and_bad(repl
)) != NULL
)
3089 die("packed object %s (stored in %s) is corrupt",
3090 sha1_to_hex(repl
), p
->pack_name
);
3095 void *read_object_with_reference(const unsigned char *sha1
,
3096 const char *required_type_name
,
3097 unsigned long *size
,
3098 unsigned char *actual_sha1_return
)
3100 enum object_type type
, required_type
;
3102 unsigned long isize
;
3103 unsigned char actual_sha1
[20];
3105 required_type
= type_from_string(required_type_name
);
3106 hashcpy(actual_sha1
, sha1
);
3108 int ref_length
= -1;
3109 const char *ref_type
= NULL
;
3111 buffer
= read_sha1_file(actual_sha1
, &type
, &isize
);
3114 if (type
== required_type
) {
3116 if (actual_sha1_return
)
3117 hashcpy(actual_sha1_return
, actual_sha1
);
3120 /* Handle references */
3121 else if (type
== OBJ_COMMIT
)
3123 else if (type
== OBJ_TAG
)
3124 ref_type
= "object ";
3129 ref_length
= strlen(ref_type
);
3131 if (ref_length
+ 40 > isize
||
3132 memcmp(buffer
, ref_type
, ref_length
) ||
3133 get_sha1_hex((char *) buffer
+ ref_length
, actual_sha1
)) {
3138 /* Now we have the ID of the referred-to object in
3139 * actual_sha1. Check again. */
3143 static void write_sha1_file_prepare(const void *buf
, unsigned long len
,
3144 const char *type
, unsigned char *sha1
,
3145 char *hdr
, int *hdrlen
)
3149 /* Generate the header */
3150 *hdrlen
= xsnprintf(hdr
, *hdrlen
, "%s %lu", type
, len
)+1;
3154 git_SHA1_Update(&c
, hdr
, *hdrlen
);
3155 git_SHA1_Update(&c
, buf
, len
);
3156 git_SHA1_Final(sha1
, &c
);
3160 * Move the just written object into its final resting place.
3162 int finalize_object_file(const char *tmpfile
, const char *filename
)
3166 if (object_creation_mode
== OBJECT_CREATION_USES_RENAMES
)
3168 else if (link(tmpfile
, filename
))
3172 * Coda hack - coda doesn't like cross-directory links,
3173 * so we fall back to a rename, which will mean that it
3174 * won't be able to check collisions, but that's not a
3177 * The same holds for FAT formatted media.
3179 * When this succeeds, we just return. We have nothing
3182 if (ret
&& ret
!= EEXIST
) {
3184 if (!rename(tmpfile
, filename
))
3188 unlink_or_warn(tmpfile
);
3190 if (ret
!= EEXIST
) {
3191 return error_errno("unable to write sha1 filename %s", filename
);
3193 /* FIXME!!! Collision check here ? */
3197 if (adjust_shared_perm(filename
))
3198 return error("unable to set permission to '%s'", filename
);
3202 static int write_buffer(int fd
, const void *buf
, size_t len
)
3204 if (write_in_full(fd
, buf
, len
) < 0)
3205 return error_errno("file write error");
3209 int hash_sha1_file(const void *buf
, unsigned long len
, const char *type
,
3210 unsigned char *sha1
)
3213 int hdrlen
= sizeof(hdr
);
3214 write_sha1_file_prepare(buf
, len
, type
, sha1
, hdr
, &hdrlen
);
3218 /* Finalize a file on disk, and close it. */
3219 static void close_sha1_file(int fd
)
3221 if (fsync_object_files
)
3222 fsync_or_die(fd
, "sha1 file");
3224 die_errno("error when closing sha1 file");
3227 /* Size of directory component, including the ending '/' */
3228 static inline int directory_size(const char *filename
)
3230 const char *s
= strrchr(filename
, '/');
3233 return s
- filename
+ 1;
3237 * This creates a temporary file in the same directory as the final
3240 * We want to avoid cross-directory filename renames, because those
3241 * can have problems on various filesystems (FAT, NFS, Coda).
3243 static int create_tmpfile(struct strbuf
*tmp
, const char *filename
)
3245 int fd
, dirlen
= directory_size(filename
);
3248 strbuf_add(tmp
, filename
, dirlen
);
3249 strbuf_addstr(tmp
, "tmp_obj_XXXXXX");
3250 fd
= git_mkstemp_mode(tmp
->buf
, 0444);
3251 if (fd
< 0 && dirlen
&& errno
== ENOENT
) {
3253 * Make sure the directory exists; note that the contents
3254 * of the buffer are undefined after mkstemp returns an
3255 * error, so we have to rewrite the whole buffer from
3259 strbuf_add(tmp
, filename
, dirlen
- 1);
3260 if (mkdir(tmp
->buf
, 0777) && errno
!= EEXIST
)
3262 if (adjust_shared_perm(tmp
->buf
))
3266 strbuf_addstr(tmp
, "/tmp_obj_XXXXXX");
3267 fd
= git_mkstemp_mode(tmp
->buf
, 0444);
3272 static int write_loose_object(const unsigned char *sha1
, char *hdr
, int hdrlen
,
3273 const void *buf
, unsigned long len
, time_t mtime
)
3276 unsigned char compressed
[4096];
3279 unsigned char parano_sha1
[20];
3280 static struct strbuf tmp_file
= STRBUF_INIT
;
3281 const char *filename
= sha1_file_name(sha1
);
3283 fd
= create_tmpfile(&tmp_file
, filename
);
3285 if (errno
== EACCES
)
3286 return error("insufficient permission for adding an object to repository database %s", get_object_directory());
3288 return error_errno("unable to create temporary file");
3292 git_deflate_init(&stream
, zlib_compression_level
);
3293 stream
.next_out
= compressed
;
3294 stream
.avail_out
= sizeof(compressed
);
3297 /* First header.. */
3298 stream
.next_in
= (unsigned char *)hdr
;
3299 stream
.avail_in
= hdrlen
;
3300 while (git_deflate(&stream
, 0) == Z_OK
)
3302 git_SHA1_Update(&c
, hdr
, hdrlen
);
3304 /* Then the data itself.. */
3305 stream
.next_in
= (void *)buf
;
3306 stream
.avail_in
= len
;
3308 unsigned char *in0
= stream
.next_in
;
3309 ret
= git_deflate(&stream
, Z_FINISH
);
3310 git_SHA1_Update(&c
, in0
, stream
.next_in
- in0
);
3311 if (write_buffer(fd
, compressed
, stream
.next_out
- compressed
) < 0)
3312 die("unable to write sha1 file");
3313 stream
.next_out
= compressed
;
3314 stream
.avail_out
= sizeof(compressed
);
3315 } while (ret
== Z_OK
);
3317 if (ret
!= Z_STREAM_END
)
3318 die("unable to deflate new object %s (%d)", sha1_to_hex(sha1
), ret
);
3319 ret
= git_deflate_end_gently(&stream
);
3321 die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1
), ret
);
3322 git_SHA1_Final(parano_sha1
, &c
);
3323 if (hashcmp(sha1
, parano_sha1
) != 0)
3324 die("confused by unstable object source data for %s", sha1_to_hex(sha1
));
3326 close_sha1_file(fd
);
3331 utb
.modtime
= mtime
;
3332 if (utime(tmp_file
.buf
, &utb
) < 0)
3333 warning_errno("failed utime() on %s", tmp_file
.buf
);
3336 return finalize_object_file(tmp_file
.buf
, filename
);
3339 static int freshen_loose_object(const unsigned char *sha1
)
3341 return check_and_freshen(sha1
, 1);
3344 static int freshen_packed_object(const unsigned char *sha1
)
3346 struct pack_entry e
;
3347 if (!find_pack_entry(sha1
, &e
))
3351 if (!freshen_file(e
.p
->pack_name
))
3357 int write_sha1_file(const void *buf
, unsigned long len
, const char *type
, unsigned char *sha1
)
3360 int hdrlen
= sizeof(hdr
);
3362 /* Normally if we have it in the pack then we do not bother writing
3363 * it out into .git/objects/??/?{38} file.
3365 write_sha1_file_prepare(buf
, len
, type
, sha1
, hdr
, &hdrlen
);
3366 if (freshen_packed_object(sha1
) || freshen_loose_object(sha1
))
3368 return write_loose_object(sha1
, hdr
, hdrlen
, buf
, len
, 0);
3371 int hash_sha1_file_literally(const void *buf
, unsigned long len
, const char *type
,
3372 unsigned char *sha1
, unsigned flags
)
3375 int hdrlen
, status
= 0;
3377 /* type string, SP, %lu of the length plus NUL must fit this */
3378 hdrlen
= strlen(type
) + 32;
3379 header
= xmalloc(hdrlen
);
3380 write_sha1_file_prepare(buf
, len
, type
, sha1
, header
, &hdrlen
);
3382 if (!(flags
& HASH_WRITE_OBJECT
))
3384 if (freshen_packed_object(sha1
) || freshen_loose_object(sha1
))
3386 status
= write_loose_object(sha1
, header
, hdrlen
, buf
, len
, 0);
3393 int force_object_loose(const unsigned char *sha1
, time_t mtime
)
3397 enum object_type type
;
3402 if (has_loose_object(sha1
))
3404 buf
= read_object(sha1
, &type
, &len
);
3406 return error("cannot read sha1_file for %s", sha1_to_hex(sha1
));
3407 hdrlen
= xsnprintf(hdr
, sizeof(hdr
), "%s %lu", typename(type
), len
) + 1;
3408 ret
= write_loose_object(sha1
, hdr
, hdrlen
, buf
, len
, mtime
);
3414 int has_pack_index(const unsigned char *sha1
)
3417 if (stat(sha1_pack_index_name(sha1
), &st
))
3422 int has_sha1_pack(const unsigned char *sha1
)
3424 struct pack_entry e
;
3425 return find_pack_entry(sha1
, &e
);
3428 int has_sha1_file_with_flags(const unsigned char *sha1
, int flags
)
3430 if (!startup_info
->have_repository
)
3432 return sha1_object_info_extended(sha1
, NULL
,
3433 flags
| OBJECT_INFO_SKIP_CACHED
) >= 0;
3436 int has_object_file(const struct object_id
*oid
)
3438 return has_sha1_file(oid
->hash
);
3441 int has_object_file_with_flags(const struct object_id
*oid
, int flags
)
3443 return has_sha1_file_with_flags(oid
->hash
, flags
);
3446 static void check_tree(const void *buf
, size_t size
)
3448 struct tree_desc desc
;
3449 struct name_entry entry
;
3451 init_tree_desc(&desc
, buf
, size
);
3452 while (tree_entry(&desc
, &entry
))
3454 * tree_entry() will die() on malformed entries */
3458 static void check_commit(const void *buf
, size_t size
)
3461 memset(&c
, 0, sizeof(c
));
3462 if (parse_commit_buffer(&c
, buf
, size
))
3463 die("corrupt commit");
3466 static void check_tag(const void *buf
, size_t size
)
3469 memset(&t
, 0, sizeof(t
));
3470 if (parse_tag_buffer(&t
, buf
, size
))
3474 static int index_mem(unsigned char *sha1
, void *buf
, size_t size
,
3475 enum object_type type
,
3476 const char *path
, unsigned flags
)
3478 int ret
, re_allocated
= 0;
3479 int write_object
= flags
& HASH_WRITE_OBJECT
;
3485 * Convert blobs to git internal format
3487 if ((type
== OBJ_BLOB
) && path
) {
3488 struct strbuf nbuf
= STRBUF_INIT
;
3489 if (convert_to_git(&the_index
, path
, buf
, size
, &nbuf
,
3490 write_object
? safe_crlf
: SAFE_CRLF_FALSE
)) {
3491 buf
= strbuf_detach(&nbuf
, &size
);
3495 if (flags
& HASH_FORMAT_CHECK
) {
3496 if (type
== OBJ_TREE
)
3497 check_tree(buf
, size
);
3498 if (type
== OBJ_COMMIT
)
3499 check_commit(buf
, size
);
3500 if (type
== OBJ_TAG
)
3501 check_tag(buf
, size
);
3505 ret
= write_sha1_file(buf
, size
, typename(type
), sha1
);
3507 ret
= hash_sha1_file(buf
, size
, typename(type
), sha1
);
3513 static int index_stream_convert_blob(unsigned char *sha1
, int fd
,
3514 const char *path
, unsigned flags
)
3517 const int write_object
= flags
& HASH_WRITE_OBJECT
;
3518 struct strbuf sbuf
= STRBUF_INIT
;
3521 assert(would_convert_to_git_filter_fd(path
));
3523 convert_to_git_filter_fd(&the_index
, path
, fd
, &sbuf
,
3524 write_object
? safe_crlf
: SAFE_CRLF_FALSE
);
3527 ret
= write_sha1_file(sbuf
.buf
, sbuf
.len
, typename(OBJ_BLOB
),
3530 ret
= hash_sha1_file(sbuf
.buf
, sbuf
.len
, typename(OBJ_BLOB
),
3532 strbuf_release(&sbuf
);
3536 static int index_pipe(unsigned char *sha1
, int fd
, enum object_type type
,
3537 const char *path
, unsigned flags
)
3539 struct strbuf sbuf
= STRBUF_INIT
;
3542 if (strbuf_read(&sbuf
, fd
, 4096) >= 0)
3543 ret
= index_mem(sha1
, sbuf
.buf
, sbuf
.len
, type
, path
, flags
);
3546 strbuf_release(&sbuf
);
3550 #define SMALL_FILE_SIZE (32*1024)
3552 static int index_core(unsigned char *sha1
, int fd
, size_t size
,
3553 enum object_type type
, const char *path
,
3559 ret
= index_mem(sha1
, "", size
, type
, path
, flags
);
3560 } else if (size
<= SMALL_FILE_SIZE
) {
3561 char *buf
= xmalloc(size
);
3562 if (size
== read_in_full(fd
, buf
, size
))
3563 ret
= index_mem(sha1
, buf
, size
, type
, path
, flags
);
3565 ret
= error_errno("short read");
3568 void *buf
= xmmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
3569 ret
= index_mem(sha1
, buf
, size
, type
, path
, flags
);
3576 * This creates one packfile per large blob unless bulk-checkin
3577 * machinery is "plugged".
3579 * This also bypasses the usual "convert-to-git" dance, and that is on
3580 * purpose. We could write a streaming version of the converting
3581 * functions and insert that before feeding the data to fast-import
3582 * (or equivalent in-core API described above). However, that is
3583 * somewhat complicated, as we do not know the size of the filter
3584 * result, which we need to know beforehand when writing a git object.
3585 * Since the primary motivation for trying to stream from the working
3586 * tree file and to avoid mmaping it in core is to deal with large
3587 * binary blobs, they generally do not want to get any conversion, and
3588 * callers should avoid this code path when filters are requested.
3590 static int index_stream(unsigned char *sha1
, int fd
, size_t size
,
3591 enum object_type type
, const char *path
,
3594 return index_bulk_checkin(sha1
, fd
, size
, type
, path
, flags
);
3597 int index_fd(unsigned char *sha1
, int fd
, struct stat
*st
,
3598 enum object_type type
, const char *path
, unsigned flags
)
3603 * Call xsize_t() only when needed to avoid potentially unnecessary
3604 * die() for large files.
3606 if (type
== OBJ_BLOB
&& path
&& would_convert_to_git_filter_fd(path
))
3607 ret
= index_stream_convert_blob(sha1
, fd
, path
, flags
);
3608 else if (!S_ISREG(st
->st_mode
))
3609 ret
= index_pipe(sha1
, fd
, type
, path
, flags
);
3610 else if (st
->st_size
<= big_file_threshold
|| type
!= OBJ_BLOB
||
3611 (path
&& would_convert_to_git(&the_index
, path
)))
3612 ret
= index_core(sha1
, fd
, xsize_t(st
->st_size
), type
, path
,
3615 ret
= index_stream(sha1
, fd
, xsize_t(st
->st_size
), type
, path
,
3621 int index_path(unsigned char *sha1
, const char *path
, struct stat
*st
, unsigned flags
)
3624 struct strbuf sb
= STRBUF_INIT
;
3626 switch (st
->st_mode
& S_IFMT
) {
3628 fd
= open(path
, O_RDONLY
);
3630 return error_errno("open(\"%s\")", path
);
3631 if (index_fd(sha1
, fd
, st
, OBJ_BLOB
, path
, flags
) < 0)
3632 return error("%s: failed to insert into database",
3636 if (strbuf_readlink(&sb
, path
, st
->st_size
))
3637 return error_errno("readlink(\"%s\")", path
);
3638 if (!(flags
& HASH_WRITE_OBJECT
))
3639 hash_sha1_file(sb
.buf
, sb
.len
, blob_type
, sha1
);
3640 else if (write_sha1_file(sb
.buf
, sb
.len
, blob_type
, sha1
))
3641 return error("%s: failed to insert into database",
3643 strbuf_release(&sb
);
3646 return resolve_gitlink_ref(path
, "HEAD", sha1
);
3648 return error("%s: unsupported file type", path
);
3653 int read_pack_header(int fd
, struct pack_header
*header
)
3655 if (read_in_full(fd
, header
, sizeof(*header
)) < sizeof(*header
))
3656 /* "eof before pack header was fully read" */
3657 return PH_ERROR_EOF
;
3659 if (header
->hdr_signature
!= htonl(PACK_SIGNATURE
))
3660 /* "protocol error (pack signature mismatch detected)" */
3661 return PH_ERROR_PACK_SIGNATURE
;
3662 if (!pack_version_ok(header
->hdr_version
))
3663 /* "protocol error (pack version unsupported)" */
3664 return PH_ERROR_PROTOCOL
;
3668 void assert_sha1_type(const unsigned char *sha1
, enum object_type expect
)
3670 enum object_type type
= sha1_object_info(sha1
, NULL
);
3672 die("%s is not a valid object", sha1_to_hex(sha1
));
3674 die("%s is not a valid '%s' object", sha1_to_hex(sha1
),
3678 int for_each_file_in_obj_subdir(unsigned int subdir_nr
,
3679 struct strbuf
*path
,
3680 each_loose_object_fn obj_cb
,
3681 each_loose_cruft_fn cruft_cb
,
3682 each_loose_subdir_fn subdir_cb
,
3685 size_t origlen
, baselen
;
3690 if (subdir_nr
> 0xff)
3691 BUG("invalid loose object subdirectory: %x", subdir_nr
);
3693 origlen
= path
->len
;
3694 strbuf_complete(path
, '/');
3695 strbuf_addf(path
, "%02x", subdir_nr
);
3696 baselen
= path
->len
;
3698 dir
= opendir(path
->buf
);
3700 if (errno
!= ENOENT
)
3701 r
= error_errno("unable to open %s", path
->buf
);
3702 strbuf_setlen(path
, origlen
);
3706 while ((de
= readdir(dir
))) {
3707 if (is_dot_or_dotdot(de
->d_name
))
3710 strbuf_setlen(path
, baselen
);
3711 strbuf_addf(path
, "/%s", de
->d_name
);
3713 if (strlen(de
->d_name
) == GIT_SHA1_HEXSZ
- 2) {
3714 char hex
[GIT_MAX_HEXSZ
+1];
3715 struct object_id oid
;
3717 xsnprintf(hex
, sizeof(hex
), "%02x%s",
3718 subdir_nr
, de
->d_name
);
3719 if (!get_oid_hex(hex
, &oid
)) {
3721 r
= obj_cb(&oid
, path
->buf
, data
);
3730 r
= cruft_cb(de
->d_name
, path
->buf
, data
);
3737 strbuf_setlen(path
, baselen
);
3738 if (!r
&& subdir_cb
)
3739 r
= subdir_cb(subdir_nr
, path
->buf
, data
);
3741 strbuf_setlen(path
, origlen
);
3746 int for_each_loose_file_in_objdir_buf(struct strbuf
*path
,
3747 each_loose_object_fn obj_cb
,
3748 each_loose_cruft_fn cruft_cb
,
3749 each_loose_subdir_fn subdir_cb
,
3755 for (i
= 0; i
< 256; i
++) {
3756 r
= for_each_file_in_obj_subdir(i
, path
, obj_cb
, cruft_cb
,
3765 int for_each_loose_file_in_objdir(const char *path
,
3766 each_loose_object_fn obj_cb
,
3767 each_loose_cruft_fn cruft_cb
,
3768 each_loose_subdir_fn subdir_cb
,
3771 struct strbuf buf
= STRBUF_INIT
;
3774 strbuf_addstr(&buf
, path
);
3775 r
= for_each_loose_file_in_objdir_buf(&buf
, obj_cb
, cruft_cb
,
3777 strbuf_release(&buf
);
3782 struct loose_alt_odb_data
{
3783 each_loose_object_fn
*cb
;
3787 static int loose_from_alt_odb(struct alternate_object_database
*alt
,
3790 struct loose_alt_odb_data
*data
= vdata
;
3791 struct strbuf buf
= STRBUF_INIT
;
3794 strbuf_addstr(&buf
, alt
->path
);
3795 r
= for_each_loose_file_in_objdir_buf(&buf
,
3796 data
->cb
, NULL
, NULL
,
3798 strbuf_release(&buf
);
3802 int for_each_loose_object(each_loose_object_fn cb
, void *data
, unsigned flags
)
3804 struct loose_alt_odb_data alt
;
3807 r
= for_each_loose_file_in_objdir(get_object_directory(),
3808 cb
, NULL
, NULL
, data
);
3812 if (flags
& FOR_EACH_OBJECT_LOCAL_ONLY
)
3817 return foreach_alt_odb(loose_from_alt_odb
, &alt
);
3820 static int for_each_object_in_pack(struct packed_git
*p
, each_packed_object_fn cb
, void *data
)
3825 for (i
= 0; i
< p
->num_objects
; i
++) {
3826 struct object_id oid
;
3828 if (!nth_packed_object_oid(&oid
, p
, i
))
3829 return error("unable to get sha1 of object %u in %s",
3832 r
= cb(&oid
, p
, i
, data
);
3839 int for_each_packed_object(each_packed_object_fn cb
, void *data
, unsigned flags
)
3841 struct packed_git
*p
;
3843 int pack_errors
= 0;
3845 prepare_packed_git();
3846 for (p
= packed_git
; p
; p
= p
->next
) {
3847 if ((flags
& FOR_EACH_OBJECT_LOCAL_ONLY
) && !p
->pack_local
)
3849 if (open_pack_index(p
)) {
3853 r
= for_each_object_in_pack(p
, cb
, data
);
3857 return r
? r
: pack_errors
;
3860 static int check_stream_sha1(git_zstream
*stream
,
3864 const unsigned char *expected_sha1
)
3867 unsigned char real_sha1
[GIT_MAX_RAWSZ
];
3868 unsigned char buf
[4096];
3869 unsigned long total_read
;
3873 git_SHA1_Update(&c
, hdr
, stream
->total_out
);
3876 * We already read some bytes into hdr, but the ones up to the NUL
3877 * do not count against the object's content size.
3879 total_read
= stream
->total_out
- strlen(hdr
) - 1;
3882 * This size comparison must be "<=" to read the final zlib packets;
3883 * see the comment in unpack_sha1_rest for details.
3885 while (total_read
<= size
&&
3886 (status
== Z_OK
|| status
== Z_BUF_ERROR
)) {
3887 stream
->next_out
= buf
;
3888 stream
->avail_out
= sizeof(buf
);
3889 if (size
- total_read
< stream
->avail_out
)
3890 stream
->avail_out
= size
- total_read
;
3891 status
= git_inflate(stream
, Z_FINISH
);
3892 git_SHA1_Update(&c
, buf
, stream
->next_out
- buf
);
3893 total_read
+= stream
->next_out
- buf
;
3895 git_inflate_end(stream
);
3897 if (status
!= Z_STREAM_END
) {
3898 error("corrupt loose object '%s'", sha1_to_hex(expected_sha1
));
3901 if (stream
->avail_in
) {
3902 error("garbage at end of loose object '%s'",
3903 sha1_to_hex(expected_sha1
));
3907 git_SHA1_Final(real_sha1
, &c
);
3908 if (hashcmp(expected_sha1
, real_sha1
)) {
3909 error("sha1 mismatch for %s (expected %s)", path
,
3910 sha1_to_hex(expected_sha1
));
3917 int read_loose_object(const char *path
,
3918 const unsigned char *expected_sha1
,
3919 enum object_type
*type
,
3920 unsigned long *size
,
3925 unsigned long mapsize
;
3931 map
= map_sha1_file_1(path
, NULL
, &mapsize
);
3933 error_errno("unable to mmap %s", path
);
3937 if (unpack_sha1_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
)) < 0) {
3938 error("unable to unpack header of %s", path
);
3942 *type
= parse_sha1_header(hdr
, size
);
3944 error("unable to parse header of %s", path
);
3945 git_inflate_end(&stream
);
3949 if (*type
== OBJ_BLOB
) {
3950 if (check_stream_sha1(&stream
, hdr
, *size
, path
, expected_sha1
) < 0)
3953 *contents
= unpack_sha1_rest(&stream
, hdr
, *size
, expected_sha1
);
3955 error("unable to unpack contents of %s", path
);
3956 git_inflate_end(&stream
);
3959 if (check_sha1_signature(expected_sha1
, *contents
,
3960 *size
, typename(*type
))) {
3961 error("sha1 mismatch for %s (expected %s)", path
,
3962 sha1_to_hex(expected_sha1
));
3968 ret
= 0; /* everything checks out */
3972 munmap(map
, mapsize
);