2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 * This handles basic git object files - packing, unpacking,
9 #include "git-compat-util.h"
14 #include "environment.h"
17 #include "string-list.h"
23 #include "run-command.h"
26 #include "tree-walk.h"
28 #include "pack-revindex.h"
29 #include "hash-lookup.h"
30 #include "bulk-checkin.h"
31 #include "repository.h"
32 #include "replace-object.h"
33 #include "streaming.h"
36 #include "mergesort.h"
39 #include "object-file.h"
40 #include "object-store.h"
41 #include "promisor-remote.h"
43 #include "submodule.h"
47 /* The maximum size for an object header. */
48 #define MAX_HEADER_LEN 32
51 #define EMPTY_TREE_SHA1_BIN_LITERAL \
52 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60" \
53 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04"
54 #define EMPTY_TREE_SHA256_BIN_LITERAL \
55 "\x6e\xf1\x9b\x41\x22\x5c\x53\x69\xf1\xc1" \
56 "\x04\xd4\x5d\x8d\x85\xef\xa9\xb0\x57\xb5" \
57 "\x3b\x14\xb4\xb9\xb9\x39\xdd\x74\xde\xcc" \
60 #define EMPTY_BLOB_SHA1_BIN_LITERAL \
61 "\xe6\x9d\xe2\x9b\xb2\xd1\xd6\x43\x4b\x8b" \
62 "\x29\xae\x77\x5a\xd8\xc2\xe4\x8c\x53\x91"
63 #define EMPTY_BLOB_SHA256_BIN_LITERAL \
64 "\x47\x3a\x0f\x4c\x3b\xe8\xa9\x36\x81\xa2" \
65 "\x67\xe3\xb1\xe9\xa7\xdc\xda\x11\x85\x43" \
66 "\x6f\xe1\x41\xf7\x74\x91\x20\xa3\x03\x72" \
69 static const struct object_id empty_tree_oid
= {
70 .hash
= EMPTY_TREE_SHA1_BIN_LITERAL
,
71 .algo
= GIT_HASH_SHA1
,
73 static const struct object_id empty_blob_oid
= {
74 .hash
= EMPTY_BLOB_SHA1_BIN_LITERAL
,
75 .algo
= GIT_HASH_SHA1
,
77 static const struct object_id null_oid_sha1
= {
79 .algo
= GIT_HASH_SHA1
,
81 static const struct object_id empty_tree_oid_sha256
= {
82 .hash
= EMPTY_TREE_SHA256_BIN_LITERAL
,
83 .algo
= GIT_HASH_SHA256
,
85 static const struct object_id empty_blob_oid_sha256
= {
86 .hash
= EMPTY_BLOB_SHA256_BIN_LITERAL
,
87 .algo
= GIT_HASH_SHA256
,
89 static const struct object_id null_oid_sha256
= {
91 .algo
= GIT_HASH_SHA256
,
94 static void git_hash_sha1_init(git_hash_ctx
*ctx
)
96 git_SHA1_Init(&ctx
->sha1
);
99 static void git_hash_sha1_clone(git_hash_ctx
*dst
, const git_hash_ctx
*src
)
101 git_SHA1_Clone(&dst
->sha1
, &src
->sha1
);
104 static void git_hash_sha1_update(git_hash_ctx
*ctx
, const void *data
, size_t len
)
106 git_SHA1_Update(&ctx
->sha1
, data
, len
);
109 static void git_hash_sha1_final(unsigned char *hash
, git_hash_ctx
*ctx
)
111 git_SHA1_Final(hash
, &ctx
->sha1
);
114 static void git_hash_sha1_final_oid(struct object_id
*oid
, git_hash_ctx
*ctx
)
116 git_SHA1_Final(oid
->hash
, &ctx
->sha1
);
117 memset(oid
->hash
+ GIT_SHA1_RAWSZ
, 0, GIT_MAX_RAWSZ
- GIT_SHA1_RAWSZ
);
118 oid
->algo
= GIT_HASH_SHA1
;
122 static void git_hash_sha256_init(git_hash_ctx
*ctx
)
124 git_SHA256_Init(&ctx
->sha256
);
127 static void git_hash_sha256_clone(git_hash_ctx
*dst
, const git_hash_ctx
*src
)
129 git_SHA256_Clone(&dst
->sha256
, &src
->sha256
);
132 static void git_hash_sha256_update(git_hash_ctx
*ctx
, const void *data
, size_t len
)
134 git_SHA256_Update(&ctx
->sha256
, data
, len
);
137 static void git_hash_sha256_final(unsigned char *hash
, git_hash_ctx
*ctx
)
139 git_SHA256_Final(hash
, &ctx
->sha256
);
142 static void git_hash_sha256_final_oid(struct object_id
*oid
, git_hash_ctx
*ctx
)
144 git_SHA256_Final(oid
->hash
, &ctx
->sha256
);
146 * This currently does nothing, so the compiler should optimize it out,
147 * but keep it in case we extend the hash size again.
149 memset(oid
->hash
+ GIT_SHA256_RAWSZ
, 0, GIT_MAX_RAWSZ
- GIT_SHA256_RAWSZ
);
150 oid
->algo
= GIT_HASH_SHA256
;
153 static void git_hash_unknown_init(git_hash_ctx
*ctx UNUSED
)
155 BUG("trying to init unknown hash");
158 static void git_hash_unknown_clone(git_hash_ctx
*dst UNUSED
,
159 const git_hash_ctx
*src UNUSED
)
161 BUG("trying to clone unknown hash");
164 static void git_hash_unknown_update(git_hash_ctx
*ctx UNUSED
,
165 const void *data UNUSED
,
168 BUG("trying to update unknown hash");
171 static void git_hash_unknown_final(unsigned char *hash UNUSED
,
172 git_hash_ctx
*ctx UNUSED
)
174 BUG("trying to finalize unknown hash");
177 static void git_hash_unknown_final_oid(struct object_id
*oid UNUSED
,
178 git_hash_ctx
*ctx UNUSED
)
180 BUG("trying to finalize unknown hash");
183 const struct git_hash_algo hash_algos
[GIT_HASH_NALGOS
] = {
186 .format_id
= 0x00000000,
190 .init_fn
= git_hash_unknown_init
,
191 .clone_fn
= git_hash_unknown_clone
,
192 .update_fn
= git_hash_unknown_update
,
193 .final_fn
= git_hash_unknown_final
,
194 .final_oid_fn
= git_hash_unknown_final_oid
,
201 .format_id
= GIT_SHA1_FORMAT_ID
,
202 .rawsz
= GIT_SHA1_RAWSZ
,
203 .hexsz
= GIT_SHA1_HEXSZ
,
204 .blksz
= GIT_SHA1_BLKSZ
,
205 .init_fn
= git_hash_sha1_init
,
206 .clone_fn
= git_hash_sha1_clone
,
207 .update_fn
= git_hash_sha1_update
,
208 .final_fn
= git_hash_sha1_final
,
209 .final_oid_fn
= git_hash_sha1_final_oid
,
210 .empty_tree
= &empty_tree_oid
,
211 .empty_blob
= &empty_blob_oid
,
212 .null_oid
= &null_oid_sha1
,
216 .format_id
= GIT_SHA256_FORMAT_ID
,
217 .rawsz
= GIT_SHA256_RAWSZ
,
218 .hexsz
= GIT_SHA256_HEXSZ
,
219 .blksz
= GIT_SHA256_BLKSZ
,
220 .init_fn
= git_hash_sha256_init
,
221 .clone_fn
= git_hash_sha256_clone
,
222 .update_fn
= git_hash_sha256_update
,
223 .final_fn
= git_hash_sha256_final
,
224 .final_oid_fn
= git_hash_sha256_final_oid
,
225 .empty_tree
= &empty_tree_oid_sha256
,
226 .empty_blob
= &empty_blob_oid_sha256
,
227 .null_oid
= &null_oid_sha256
,
231 const struct object_id
*null_oid(void)
233 return the_hash_algo
->null_oid
;
236 const char *empty_tree_oid_hex(void)
238 static char buf
[GIT_MAX_HEXSZ
+ 1];
239 return oid_to_hex_r(buf
, the_hash_algo
->empty_tree
);
242 const char *empty_blob_oid_hex(void)
244 static char buf
[GIT_MAX_HEXSZ
+ 1];
245 return oid_to_hex_r(buf
, the_hash_algo
->empty_blob
);
248 int hash_algo_by_name(const char *name
)
252 return GIT_HASH_UNKNOWN
;
253 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++)
254 if (!strcmp(name
, hash_algos
[i
].name
))
256 return GIT_HASH_UNKNOWN
;
259 int hash_algo_by_id(uint32_t format_id
)
262 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++)
263 if (format_id
== hash_algos
[i
].format_id
)
265 return GIT_HASH_UNKNOWN
;
268 int hash_algo_by_length(int len
)
271 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++)
272 if (len
== hash_algos
[i
].rawsz
)
274 return GIT_HASH_UNKNOWN
;
278 * This is meant to hold a *small* number of objects that you would
279 * want repo_read_object_file() to be able to return, but yet you do not want
280 * to write them into the object store (e.g. a browse-only
283 static struct cached_object
{
284 struct object_id oid
;
285 enum object_type type
;
289 static int cached_object_nr
, cached_object_alloc
;
291 static struct cached_object empty_tree
= {
293 .hash
= EMPTY_TREE_SHA1_BIN_LITERAL
,
299 static struct cached_object
*find_cached_object(const struct object_id
*oid
)
302 struct cached_object
*co
= cached_objects
;
304 for (i
= 0; i
< cached_object_nr
; i
++, co
++) {
305 if (oideq(&co
->oid
, oid
))
308 if (oideq(oid
, the_hash_algo
->empty_tree
))
314 static int get_conv_flags(unsigned flags
)
316 if (flags
& HASH_RENORMALIZE
)
317 return CONV_EOL_RENORMALIZE
;
318 else if (flags
& HASH_WRITE_OBJECT
)
319 return global_conv_flags_eol
| CONV_WRITE_OBJECT
;
325 int mkdir_in_gitdir(const char *path
)
327 if (mkdir(path
, 0777)) {
328 int saved_errno
= errno
;
330 struct strbuf sb
= STRBUF_INIT
;
335 * Are we looking at a path in a symlinked worktree
336 * whose original repository does not yet have it?
337 * e.g. .git/rr-cache pointing at its original
338 * repository in which the user hasn't performed any
339 * conflict resolution yet?
341 if (lstat(path
, &st
) || !S_ISLNK(st
.st_mode
) ||
342 strbuf_readlink(&sb
, path
, st
.st_size
) ||
343 !is_absolute_path(sb
.buf
) ||
344 mkdir(sb
.buf
, 0777)) {
351 return adjust_shared_perm(path
);
354 static enum scld_error
safe_create_leading_directories_1(char *path
, int share
)
356 char *next_component
= path
+ offset_1st_component(path
);
357 enum scld_error ret
= SCLD_OK
;
359 while (ret
== SCLD_OK
&& next_component
) {
361 char *slash
= next_component
, slash_character
;
363 while (*slash
&& !is_dir_sep(*slash
))
369 next_component
= slash
+ 1;
370 while (is_dir_sep(*next_component
))
372 if (!*next_component
)
375 slash_character
= *slash
;
377 if (!stat(path
, &st
)) {
379 if (!S_ISDIR(st
.st_mode
)) {
383 } else if (mkdir(path
, 0777)) {
384 if (errno
== EEXIST
&&
385 !stat(path
, &st
) && S_ISDIR(st
.st_mode
))
386 ; /* somebody created it since we checked */
387 else if (errno
== ENOENT
)
389 * Either mkdir() failed because
390 * somebody just pruned the containing
391 * directory, or stat() failed because
392 * the file that was in our way was
393 * just removed. Either way, inform
394 * the caller that it might be worth
400 } else if (share
&& adjust_shared_perm(path
)) {
403 *slash
= slash_character
;
408 enum scld_error
safe_create_leading_directories(char *path
)
410 return safe_create_leading_directories_1(path
, 1);
413 enum scld_error
safe_create_leading_directories_no_share(char *path
)
415 return safe_create_leading_directories_1(path
, 0);
418 enum scld_error
safe_create_leading_directories_const(const char *path
)
421 /* path points to cache entries, so xstrdup before messing with it */
422 char *buf
= xstrdup(path
);
423 enum scld_error result
= safe_create_leading_directories(buf
);
431 static void fill_loose_path(struct strbuf
*buf
, const struct object_id
*oid
)
434 for (i
= 0; i
< the_hash_algo
->rawsz
; i
++) {
435 static char hex
[] = "0123456789abcdef";
436 unsigned int val
= oid
->hash
[i
];
437 strbuf_addch(buf
, hex
[val
>> 4]);
438 strbuf_addch(buf
, hex
[val
& 0xf]);
440 strbuf_addch(buf
, '/');
444 static const char *odb_loose_path(struct object_directory
*odb
,
446 const struct object_id
*oid
)
449 strbuf_addstr(buf
, odb
->path
);
450 strbuf_addch(buf
, '/');
451 fill_loose_path(buf
, oid
);
455 const char *loose_object_path(struct repository
*r
, struct strbuf
*buf
,
456 const struct object_id
*oid
)
458 return odb_loose_path(r
->objects
->odb
, buf
, oid
);
462 * Return non-zero iff the path is usable as an alternate object database.
464 static int alt_odb_usable(struct raw_object_store
*o
,
466 const char *normalized_objdir
, khiter_t
*pos
)
470 /* Detect cases where alternate disappeared */
471 if (!is_directory(path
->buf
)) {
472 error(_("object directory %s does not exist; "
473 "check .git/objects/info/alternates"),
479 * Prevent the common mistake of listing the same
480 * thing twice, or object directory itself.
482 if (!o
->odb_by_path
) {
485 o
->odb_by_path
= kh_init_odb_path_map();
486 assert(!o
->odb
->next
);
487 p
= kh_put_odb_path_map(o
->odb_by_path
, o
->odb
->path
, &r
);
488 assert(r
== 1); /* never used */
489 kh_value(o
->odb_by_path
, p
) = o
->odb
;
491 if (fspatheq(path
->buf
, normalized_objdir
))
493 *pos
= kh_put_odb_path_map(o
->odb_by_path
, path
->buf
, &r
);
494 /* r: 0 = exists, 1 = never used, 2 = deleted */
495 return r
== 0 ? 0 : 1;
499 * Prepare alternate object database registry.
501 * The variable alt_odb_list points at the list of struct
502 * object_directory. The elements on this list come from
503 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
504 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
505 * whose contents is similar to that environment variable but can be
506 * LF separated. Its base points at a statically allocated buffer that
507 * contains "/the/directory/corresponding/to/.git/objects/...", while
508 * its name points just after the slash at the end of ".git/objects/"
509 * in the example above, and has enough space to hold all hex characters
510 * of the object ID, an extra slash for the first level indirection, and
511 * the terminating NUL.
513 static void read_info_alternates(struct repository
*r
,
514 const char *relative_base
,
516 static int link_alt_odb_entry(struct repository
*r
, const struct strbuf
*entry
,
517 const char *relative_base
, int depth
, const char *normalized_objdir
)
519 struct object_directory
*ent
;
520 struct strbuf pathbuf
= STRBUF_INIT
;
521 struct strbuf tmp
= STRBUF_INIT
;
525 if (!is_absolute_path(entry
->buf
) && relative_base
) {
526 strbuf_realpath(&pathbuf
, relative_base
, 1);
527 strbuf_addch(&pathbuf
, '/');
529 strbuf_addbuf(&pathbuf
, entry
);
531 if (!strbuf_realpath(&tmp
, pathbuf
.buf
, 0)) {
532 error(_("unable to normalize alternate object path: %s"),
536 strbuf_swap(&pathbuf
, &tmp
);
539 * The trailing slash after the directory name is given by
540 * this function at the end. Remove duplicates.
542 while (pathbuf
.len
&& pathbuf
.buf
[pathbuf
.len
- 1] == '/')
543 strbuf_setlen(&pathbuf
, pathbuf
.len
- 1);
545 if (!alt_odb_usable(r
->objects
, &pathbuf
, normalized_objdir
, &pos
))
548 CALLOC_ARRAY(ent
, 1);
549 /* pathbuf.buf is already in r->objects->odb_by_path */
550 ent
->path
= strbuf_detach(&pathbuf
, NULL
);
552 /* add the alternate entry */
553 *r
->objects
->odb_tail
= ent
;
554 r
->objects
->odb_tail
= &(ent
->next
);
556 assert(r
->objects
->odb_by_path
);
557 kh_value(r
->objects
->odb_by_path
, pos
) = ent
;
559 /* recursively add alternates */
560 read_info_alternates(r
, ent
->path
, depth
+ 1);
563 strbuf_release(&tmp
);
564 strbuf_release(&pathbuf
);
568 static const char *parse_alt_odb_entry(const char *string
,
576 if (*string
== '#') {
577 /* comment; consume up to next separator */
578 end
= strchrnul(string
, sep
);
579 } else if (*string
== '"' && !unquote_c_style(out
, string
, &end
)) {
581 * quoted path; unquote_c_style has copied the
582 * data for us and set "end". Broken quoting (e.g.,
583 * an entry that doesn't end with a quote) falls
584 * back to the unquoted case below.
587 /* normal, unquoted path */
588 end
= strchrnul(string
, sep
);
589 strbuf_add(out
, string
, end
- string
);
597 static void link_alt_odb_entries(struct repository
*r
, const char *alt
,
598 int sep
, const char *relative_base
, int depth
)
600 struct strbuf objdirbuf
= STRBUF_INIT
;
601 struct strbuf entry
= STRBUF_INIT
;
607 error(_("%s: ignoring alternate object stores, nesting too deep"),
612 strbuf_realpath(&objdirbuf
, r
->objects
->odb
->path
, 1);
615 alt
= parse_alt_odb_entry(alt
, sep
, &entry
);
618 link_alt_odb_entry(r
, &entry
,
619 relative_base
, depth
, objdirbuf
.buf
);
621 strbuf_release(&entry
);
622 strbuf_release(&objdirbuf
);
625 static void read_info_alternates(struct repository
*r
,
626 const char *relative_base
,
630 struct strbuf buf
= STRBUF_INIT
;
632 path
= xstrfmt("%s/info/alternates", relative_base
);
633 if (strbuf_read_file(&buf
, path
, 1024) < 0) {
634 warn_on_fopen_errors(path
);
639 link_alt_odb_entries(r
, buf
.buf
, '\n', relative_base
, depth
);
640 strbuf_release(&buf
);
644 void add_to_alternates_file(const char *reference
)
646 struct lock_file lock
= LOCK_INIT
;
647 char *alts
= git_pathdup("objects/info/alternates");
651 hold_lock_file_for_update(&lock
, alts
, LOCK_DIE_ON_ERROR
);
652 out
= fdopen_lock_file(&lock
, "w");
654 die_errno(_("unable to fdopen alternates lockfile"));
656 in
= fopen(alts
, "r");
658 struct strbuf line
= STRBUF_INIT
;
660 while (strbuf_getline(&line
, in
) != EOF
) {
661 if (!strcmp(reference
, line
.buf
)) {
665 fprintf_or_die(out
, "%s\n", line
.buf
);
668 strbuf_release(&line
);
671 else if (errno
!= ENOENT
)
672 die_errno(_("unable to read alternates file"));
675 rollback_lock_file(&lock
);
677 fprintf_or_die(out
, "%s\n", reference
);
678 if (commit_lock_file(&lock
))
679 die_errno(_("unable to move new alternates file into place"));
680 if (the_repository
->objects
->loaded_alternates
)
681 link_alt_odb_entries(the_repository
, reference
,
687 void add_to_alternates_memory(const char *reference
)
690 * Make sure alternates are initialized, or else our entry may be
691 * overwritten when they are.
693 prepare_alt_odb(the_repository
);
695 link_alt_odb_entries(the_repository
, reference
,
699 struct object_directory
*set_temporary_primary_odb(const char *dir
, int will_destroy
)
701 struct object_directory
*new_odb
;
704 * Make sure alternates are initialized, or else our entry may be
705 * overwritten when they are.
707 prepare_alt_odb(the_repository
);
710 * Make a new primary odb and link the old primary ODB in as an
713 new_odb
= xcalloc(1, sizeof(*new_odb
));
714 new_odb
->path
= xstrdup(dir
);
717 * Disable ref updates while a temporary odb is active, since
718 * the objects in the database may roll back.
720 new_odb
->disable_ref_updates
= 1;
721 new_odb
->will_destroy
= will_destroy
;
722 new_odb
->next
= the_repository
->objects
->odb
;
723 the_repository
->objects
->odb
= new_odb
;
724 return new_odb
->next
;
727 void restore_primary_odb(struct object_directory
*restore_odb
, const char *old_path
)
729 struct object_directory
*cur_odb
= the_repository
->objects
->odb
;
731 if (strcmp(old_path
, cur_odb
->path
))
732 BUG("expected %s as primary object store; found %s",
733 old_path
, cur_odb
->path
);
735 if (cur_odb
->next
!= restore_odb
)
736 BUG("we expect the old primary object store to be the first alternate");
738 the_repository
->objects
->odb
= restore_odb
;
739 free_object_directory(cur_odb
);
743 * Compute the exact path an alternate is at and returns it. In case of
744 * error NULL is returned and the human readable error is added to `err`
745 * `path` may be relative and should point to $GIT_DIR.
746 * `err` must not be null.
748 char *compute_alternate_path(const char *path
, struct strbuf
*err
)
750 char *ref_git
= NULL
;
754 ref_git
= real_pathdup(path
, 0);
757 strbuf_addf(err
, _("path '%s' does not exist"), path
);
761 repo
= read_gitfile(ref_git
);
763 repo
= read_gitfile(mkpath("%s/.git", ref_git
));
766 ref_git
= xstrdup(repo
);
769 if (!repo
&& is_directory(mkpath("%s/.git/objects", ref_git
))) {
770 char *ref_git_git
= mkpathdup("%s/.git", ref_git
);
772 ref_git
= ref_git_git
;
773 } else if (!is_directory(mkpath("%s/objects", ref_git
))) {
774 struct strbuf sb
= STRBUF_INIT
;
776 if (get_common_dir(&sb
, ref_git
)) {
778 _("reference repository '%s' as a linked "
779 "checkout is not supported yet."),
784 strbuf_addf(err
, _("reference repository '%s' is not a "
785 "local repository."), path
);
789 if (!access(mkpath("%s/shallow", ref_git
), F_OK
)) {
790 strbuf_addf(err
, _("reference repository '%s' is shallow"),
796 if (!access(mkpath("%s/info/grafts", ref_git
), F_OK
)) {
798 _("reference repository '%s' is grafted"),
806 FREE_AND_NULL(ref_git
);
812 struct object_directory
*find_odb(struct repository
*r
, const char *obj_dir
)
814 struct object_directory
*odb
;
815 char *obj_dir_real
= real_pathdup(obj_dir
, 1);
816 struct strbuf odb_path_real
= STRBUF_INIT
;
819 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
820 strbuf_realpath(&odb_path_real
, odb
->path
, 1);
821 if (!strcmp(obj_dir_real
, odb_path_real
.buf
))
826 strbuf_release(&odb_path_real
);
829 die(_("could not find object directory matching %s"), obj_dir
);
833 static void fill_alternate_refs_command(struct child_process
*cmd
,
834 const char *repo_path
)
838 if (!git_config_get_value("core.alternateRefsCommand", &value
)) {
841 strvec_push(&cmd
->args
, value
);
842 strvec_push(&cmd
->args
, repo_path
);
846 strvec_pushf(&cmd
->args
, "--git-dir=%s", repo_path
);
847 strvec_push(&cmd
->args
, "for-each-ref");
848 strvec_push(&cmd
->args
, "--format=%(objectname)");
850 if (!git_config_get_value("core.alternateRefsPrefixes", &value
)) {
851 strvec_push(&cmd
->args
, "--");
852 strvec_split(&cmd
->args
, value
);
856 strvec_pushv(&cmd
->env
, (const char **)local_repo_env
);
860 static void read_alternate_refs(const char *path
,
861 alternate_ref_fn
*cb
,
864 struct child_process cmd
= CHILD_PROCESS_INIT
;
865 struct strbuf line
= STRBUF_INIT
;
868 fill_alternate_refs_command(&cmd
, path
);
870 if (start_command(&cmd
))
873 fh
= xfdopen(cmd
.out
, "r");
874 while (strbuf_getline_lf(&line
, fh
) != EOF
) {
875 struct object_id oid
;
878 if (parse_oid_hex(line
.buf
, &oid
, &p
) || *p
) {
879 warning(_("invalid line while parsing alternate refs: %s"),
888 finish_command(&cmd
);
889 strbuf_release(&line
);
892 struct alternate_refs_data
{
893 alternate_ref_fn
*fn
;
897 static int refs_from_alternate_cb(struct object_directory
*e
,
900 struct strbuf path
= STRBUF_INIT
;
902 struct alternate_refs_data
*cb
= data
;
904 if (!strbuf_realpath(&path
, e
->path
, 0))
906 if (!strbuf_strip_suffix(&path
, "/objects"))
910 /* Is this a git repository with refs? */
911 strbuf_addstr(&path
, "/refs");
912 if (!is_directory(path
.buf
))
914 strbuf_setlen(&path
, base_len
);
916 read_alternate_refs(path
.buf
, cb
->fn
, cb
->data
);
919 strbuf_release(&path
);
923 void for_each_alternate_ref(alternate_ref_fn fn
, void *data
)
925 struct alternate_refs_data cb
;
928 foreach_alt_odb(refs_from_alternate_cb
, &cb
);
931 int foreach_alt_odb(alt_odb_fn fn
, void *cb
)
933 struct object_directory
*ent
;
936 prepare_alt_odb(the_repository
);
937 for (ent
= the_repository
->objects
->odb
->next
; ent
; ent
= ent
->next
) {
945 void prepare_alt_odb(struct repository
*r
)
947 if (r
->objects
->loaded_alternates
)
950 link_alt_odb_entries(r
, r
->objects
->alternate_db
, PATH_SEP
, NULL
, 0);
952 read_info_alternates(r
, r
->objects
->odb
->path
, 0);
953 r
->objects
->loaded_alternates
= 1;
956 /* Returns 1 if we have successfully freshened the file, 0 otherwise. */
957 static int freshen_file(const char *fn
)
959 return !utime(fn
, NULL
);
963 * All of the check_and_freshen functions return 1 if the file exists and was
964 * freshened (if freshening was requested), 0 otherwise. If they return
965 * 0, you should not assume that it is safe to skip a write of the object (it
966 * either does not exist on disk, or has a stale mtime and may be subject to
969 int check_and_freshen_file(const char *fn
, int freshen
)
971 if (access(fn
, F_OK
))
973 if (freshen
&& !freshen_file(fn
))
978 static int check_and_freshen_odb(struct object_directory
*odb
,
979 const struct object_id
*oid
,
982 static struct strbuf path
= STRBUF_INIT
;
983 odb_loose_path(odb
, &path
, oid
);
984 return check_and_freshen_file(path
.buf
, freshen
);
987 static int check_and_freshen_local(const struct object_id
*oid
, int freshen
)
989 return check_and_freshen_odb(the_repository
->objects
->odb
, oid
, freshen
);
992 static int check_and_freshen_nonlocal(const struct object_id
*oid
, int freshen
)
994 struct object_directory
*odb
;
996 prepare_alt_odb(the_repository
);
997 for (odb
= the_repository
->objects
->odb
->next
; odb
; odb
= odb
->next
) {
998 if (check_and_freshen_odb(odb
, oid
, freshen
))
1004 static int check_and_freshen(const struct object_id
*oid
, int freshen
)
1006 return check_and_freshen_local(oid
, freshen
) ||
1007 check_and_freshen_nonlocal(oid
, freshen
);
1010 int has_loose_object_nonlocal(const struct object_id
*oid
)
1012 return check_and_freshen_nonlocal(oid
, 0);
1015 int has_loose_object(const struct object_id
*oid
)
1017 return check_and_freshen(oid
, 0);
1020 static void mmap_limit_check(size_t length
)
1022 static size_t limit
= 0;
1024 limit
= git_env_ulong("GIT_MMAP_LIMIT", 0);
1029 die(_("attempting to mmap %"PRIuMAX
" over limit %"PRIuMAX
),
1030 (uintmax_t)length
, (uintmax_t)limit
);
1033 void *xmmap_gently(void *start
, size_t length
,
1034 int prot
, int flags
, int fd
, off_t offset
)
1038 mmap_limit_check(length
);
1039 ret
= mmap(start
, length
, prot
, flags
, fd
, offset
);
1040 if (ret
== MAP_FAILED
&& !length
)
1045 const char *mmap_os_err(void)
1047 static const char blank
[] = "";
1048 #if defined(__linux__)
1049 if (errno
== ENOMEM
) {
1050 /* this continues an existing error message: */
1051 static const char enomem
[] =
1052 ", check sys.vm.max_map_count and/or RLIMIT_DATA";
1055 #endif /* OS-specific bits */
1059 void *xmmap(void *start
, size_t length
,
1060 int prot
, int flags
, int fd
, off_t offset
)
1062 void *ret
= xmmap_gently(start
, length
, prot
, flags
, fd
, offset
);
1063 if (ret
== MAP_FAILED
)
1064 die_errno(_("mmap failed%s"), mmap_os_err());
1068 static int format_object_header_literally(char *str
, size_t size
,
1069 const char *type
, size_t objsize
)
1071 return xsnprintf(str
, size
, "%s %"PRIuMAX
, type
, (uintmax_t)objsize
) + 1;
1074 int format_object_header(char *str
, size_t size
, enum object_type type
,
1077 const char *name
= type_name(type
);
1080 BUG("could not get a type name for 'enum object_type' value %d", type
);
1082 return format_object_header_literally(str
, size
, name
, objsize
);
1085 int check_object_signature(struct repository
*r
, const struct object_id
*oid
,
1086 void *buf
, unsigned long size
,
1087 enum object_type type
)
1089 struct object_id real_oid
;
1091 hash_object_file(r
->hash_algo
, buf
, size
, type
, &real_oid
);
1093 return !oideq(oid
, &real_oid
) ? -1 : 0;
1096 int stream_object_signature(struct repository
*r
, const struct object_id
*oid
)
1098 struct object_id real_oid
;
1100 enum object_type obj_type
;
1101 struct git_istream
*st
;
1103 char hdr
[MAX_HEADER_LEN
];
1106 st
= open_istream(r
, oid
, &obj_type
, &size
, NULL
);
1110 /* Generate the header */
1111 hdrlen
= format_object_header(hdr
, sizeof(hdr
), obj_type
, size
);
1114 r
->hash_algo
->init_fn(&c
);
1115 r
->hash_algo
->update_fn(&c
, hdr
, hdrlen
);
1117 char buf
[1024 * 16];
1118 ssize_t readlen
= read_istream(st
, buf
, sizeof(buf
));
1126 r
->hash_algo
->update_fn(&c
, buf
, readlen
);
1128 r
->hash_algo
->final_oid_fn(&real_oid
, &c
);
1130 return !oideq(oid
, &real_oid
) ? -1 : 0;
1133 int git_open_cloexec(const char *name
, int flags
)
1136 static int o_cloexec
= O_CLOEXEC
;
1138 fd
= open(name
, flags
| o_cloexec
);
1139 if ((o_cloexec
& O_CLOEXEC
) && fd
< 0 && errno
== EINVAL
) {
1140 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1141 o_cloexec
&= ~O_CLOEXEC
;
1142 fd
= open(name
, flags
| o_cloexec
);
1145 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1147 static int fd_cloexec
= FD_CLOEXEC
;
1149 if (!o_cloexec
&& 0 <= fd
&& fd_cloexec
) {
1150 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
1151 int flags
= fcntl(fd
, F_GETFD
);
1152 if (fcntl(fd
, F_SETFD
, flags
| fd_cloexec
))
1161 * Find "oid" as a loose object in the local repository or in an alternate.
1162 * Returns 0 on success, negative on failure.
1164 * The "path" out-parameter will give the path of the object we found (if any).
1165 * Note that it may point to static storage and is only valid until another
1166 * call to stat_loose_object().
1168 static int stat_loose_object(struct repository
*r
, const struct object_id
*oid
,
1169 struct stat
*st
, const char **path
)
1171 struct object_directory
*odb
;
1172 static struct strbuf buf
= STRBUF_INIT
;
1175 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
1176 *path
= odb_loose_path(odb
, &buf
, oid
);
1177 if (!lstat(*path
, st
))
1185 * Like stat_loose_object(), but actually open the object and return the
1186 * descriptor. See the caveats on the "path" parameter above.
1188 static int open_loose_object(struct repository
*r
,
1189 const struct object_id
*oid
, const char **path
)
1192 struct object_directory
*odb
;
1193 int most_interesting_errno
= ENOENT
;
1194 static struct strbuf buf
= STRBUF_INIT
;
1197 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
1198 *path
= odb_loose_path(odb
, &buf
, oid
);
1199 fd
= git_open(*path
);
1203 if (most_interesting_errno
== ENOENT
)
1204 most_interesting_errno
= errno
;
1206 errno
= most_interesting_errno
;
1210 static int quick_has_loose(struct repository
*r
,
1211 const struct object_id
*oid
)
1213 struct object_directory
*odb
;
1216 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
1217 if (oidtree_contains(odb_loose_cache(odb
, oid
), oid
))
1224 * Map and close the given loose object fd. The path argument is used for
1227 static void *map_fd(int fd
, const char *path
, unsigned long *size
)
1232 if (!fstat(fd
, &st
)) {
1233 *size
= xsize_t(st
.st_size
);
1235 /* mmap() is forbidden on empty files */
1236 error(_("object file %s is empty"), path
);
1240 map
= xmmap(NULL
, *size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1246 void *map_loose_object(struct repository
*r
,
1247 const struct object_id
*oid
,
1248 unsigned long *size
)
1251 int fd
= open_loose_object(r
, oid
, &p
);
1255 return map_fd(fd
, p
, size
);
1258 enum unpack_loose_header_result
unpack_loose_header(git_zstream
*stream
,
1260 unsigned long mapsize
,
1262 unsigned long bufsiz
,
1263 struct strbuf
*header
)
1267 /* Get the data stream */
1268 memset(stream
, 0, sizeof(*stream
));
1269 stream
->next_in
= map
;
1270 stream
->avail_in
= mapsize
;
1271 stream
->next_out
= buffer
;
1272 stream
->avail_out
= bufsiz
;
1274 git_inflate_init(stream
);
1276 status
= git_inflate(stream
, 0);
1282 * Check if entire header is unpacked in the first iteration.
1284 if (memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
1288 * We have a header longer than MAX_HEADER_LEN. The "header"
1289 * here is only non-NULL when we run "cat-file
1290 * --allow-unknown-type".
1293 return ULHR_TOO_LONG
;
1296 * buffer[0..bufsiz] was not large enough. Copy the partial
1297 * result out to header, and then append the result of further
1298 * reading the stream.
1300 strbuf_add(header
, buffer
, stream
->next_out
- (unsigned char *)buffer
);
1301 stream
->next_out
= buffer
;
1302 stream
->avail_out
= bufsiz
;
1306 status
= git_inflate(stream
, 0);
1308 strbuf_add(header
, buffer
, stream
->next_out
- (unsigned char *)buffer
);
1309 if (memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
1311 stream
->next_out
= buffer
;
1312 stream
->avail_out
= bufsiz
;
1313 } while (status
!= Z_STREAM_END
);
1314 return ULHR_TOO_LONG
;
1317 static void *unpack_loose_rest(git_zstream
*stream
,
1318 void *buffer
, unsigned long size
,
1319 const struct object_id
*oid
)
1321 int bytes
= strlen(buffer
) + 1;
1322 unsigned char *buf
= xmallocz(size
);
1326 n
= stream
->total_out
- bytes
;
1329 memcpy(buf
, (char *) buffer
+ bytes
, n
);
1331 if (bytes
<= size
) {
1333 * The above condition must be (bytes <= size), not
1334 * (bytes < size). In other words, even though we
1335 * expect no more output and set avail_out to zero,
1336 * the input zlib stream may have bytes that express
1337 * "this concludes the stream", and we *do* want to
1340 * Otherwise we would not be able to test that we
1341 * consumed all the input to reach the expected size;
1342 * we also want to check that zlib tells us that all
1343 * went well with status == Z_STREAM_END at the end.
1345 stream
->next_out
= buf
+ bytes
;
1346 stream
->avail_out
= size
- bytes
;
1347 while (status
== Z_OK
) {
1349 status
= git_inflate(stream
, Z_FINISH
);
1353 if (status
== Z_STREAM_END
&& !stream
->avail_in
) {
1354 git_inflate_end(stream
);
1359 error(_("corrupt loose object '%s'"), oid_to_hex(oid
));
1360 else if (stream
->avail_in
)
1361 error(_("garbage at end of loose object '%s'"),
1368 * We used to just use "sscanf()", but that's actually way
1369 * too permissive for what we want to check. So do an anal
1370 * object header parse by hand.
1372 int parse_loose_header(const char *hdr
, struct object_info
*oi
)
1374 const char *type_buf
= hdr
;
1376 int type
, type_len
= 0;
1379 * The type can be of any size but is followed by
1391 type
= type_from_string_gently(type_buf
, type_len
, 1);
1393 strbuf_add(oi
->type_name
, type_buf
, type_len
);
1398 * The length must follow immediately, and be in canonical
1399 * decimal format (ie "010" is not valid).
1401 size
= *hdr
++ - '0';
1406 unsigned long c
= *hdr
- '0';
1410 size
= st_add(st_mult(size
, 10), c
);
1415 *oi
->sizep
= cast_size_t_to_ulong(size
);
1418 * The length must be followed by a zero byte
1424 * The format is valid, but the type may still be bogus. The
1425 * Caller needs to check its oi->typep.
1430 static int loose_object_info(struct repository
*r
,
1431 const struct object_id
*oid
,
1432 struct object_info
*oi
, int flags
)
1436 unsigned long mapsize
;
1440 char hdr
[MAX_HEADER_LEN
];
1441 struct strbuf hdrbuf
= STRBUF_INIT
;
1442 unsigned long size_scratch
;
1443 enum object_type type_scratch
;
1444 int allow_unknown
= flags
& OBJECT_INFO_ALLOW_UNKNOWN_TYPE
;
1446 if (oi
->delta_base_oid
)
1447 oidclr(oi
->delta_base_oid
);
1450 * If we don't care about type or size, then we don't
1451 * need to look inside the object at all. Note that we
1452 * do not optimize out the stat call, even if the
1453 * caller doesn't care about the disk-size, since our
1454 * return value implicitly indicates whether the
1455 * object even exists.
1457 if (!oi
->typep
&& !oi
->type_name
&& !oi
->sizep
&& !oi
->contentp
) {
1459 if (!oi
->disk_sizep
&& (flags
& OBJECT_INFO_QUICK
))
1460 return quick_has_loose(r
, oid
) ? 0 : -1;
1461 if (stat_loose_object(r
, oid
, &st
, &path
) < 0)
1464 *oi
->disk_sizep
= st
.st_size
;
1468 fd
= open_loose_object(r
, oid
, &path
);
1470 if (errno
!= ENOENT
)
1471 error_errno(_("unable to open loose object %s"), oid_to_hex(oid
));
1474 map
= map_fd(fd
, path
, &mapsize
);
1479 oi
->sizep
= &size_scratch
;
1481 oi
->typep
= &type_scratch
;
1484 *oi
->disk_sizep
= mapsize
;
1486 switch (unpack_loose_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
),
1487 allow_unknown
? &hdrbuf
: NULL
)) {
1489 if (parse_loose_header(hdrbuf
.len
? hdrbuf
.buf
: hdr
, oi
) < 0)
1490 status
= error(_("unable to parse %s header"), oid_to_hex(oid
));
1491 else if (!allow_unknown
&& *oi
->typep
< 0)
1492 die(_("invalid object type"));
1496 *oi
->contentp
= unpack_loose_rest(&stream
, hdr
, *oi
->sizep
, oid
);
1503 status
= error(_("unable to unpack %s header"),
1507 status
= error(_("header for %s too long, exceeds %d bytes"),
1508 oid_to_hex(oid
), MAX_HEADER_LEN
);
1512 if (status
&& (flags
& OBJECT_INFO_DIE_IF_CORRUPT
))
1513 die(_("loose object %s (stored in %s) is corrupt"),
1514 oid_to_hex(oid
), path
);
1516 git_inflate_end(&stream
);
1518 munmap(map
, mapsize
);
1519 if (oi
->sizep
== &size_scratch
)
1521 strbuf_release(&hdrbuf
);
1522 if (oi
->typep
== &type_scratch
)
1524 oi
->whence
= OI_LOOSE
;
1528 int obj_read_use_lock
= 0;
1529 pthread_mutex_t obj_read_mutex
;
1531 void enable_obj_read_lock(void)
1533 if (obj_read_use_lock
)
1536 obj_read_use_lock
= 1;
1537 init_recursive_mutex(&obj_read_mutex
);
1540 void disable_obj_read_lock(void)
1542 if (!obj_read_use_lock
)
1545 obj_read_use_lock
= 0;
1546 pthread_mutex_destroy(&obj_read_mutex
);
1549 int fetch_if_missing
= 1;
1551 static int do_oid_object_info_extended(struct repository
*r
,
1552 const struct object_id
*oid
,
1553 struct object_info
*oi
, unsigned flags
)
1555 static struct object_info blank_oi
= OBJECT_INFO_INIT
;
1556 struct cached_object
*co
;
1557 struct pack_entry e
;
1559 const struct object_id
*real
= oid
;
1560 int already_retried
= 0;
1563 if (flags
& OBJECT_INFO_LOOKUP_REPLACE
)
1564 real
= lookup_replace_object(r
, oid
);
1566 if (is_null_oid(real
))
1572 co
= find_cached_object(real
);
1575 *(oi
->typep
) = co
->type
;
1577 *(oi
->sizep
) = co
->size
;
1579 *(oi
->disk_sizep
) = 0;
1580 if (oi
->delta_base_oid
)
1581 oidclr(oi
->delta_base_oid
);
1583 strbuf_addstr(oi
->type_name
, type_name(co
->type
));
1585 *oi
->contentp
= xmemdupz(co
->buf
, co
->size
);
1586 oi
->whence
= OI_CACHED
;
1591 if (find_pack_entry(r
, real
, &e
))
1594 /* Most likely it's a loose object. */
1595 if (!loose_object_info(r
, real
, oi
, flags
))
1598 /* Not a loose object; someone else may have just packed it. */
1599 if (!(flags
& OBJECT_INFO_QUICK
)) {
1600 reprepare_packed_git(r
);
1601 if (find_pack_entry(r
, real
, &e
))
1606 * If r is the_repository, this might be an attempt at
1607 * accessing a submodule object as if it were in the_repository
1608 * (having called add_submodule_odb() on that submodule's ODB).
1609 * If any such ODBs exist, register them and try again.
1611 if (r
== the_repository
&&
1612 register_all_submodule_odb_as_alternates())
1613 /* We added some alternates; retry */
1616 /* Check if it is a missing object */
1617 if (fetch_if_missing
&& repo_has_promisor_remote(r
) &&
1619 !(flags
& OBJECT_INFO_SKIP_FETCH_OBJECT
)) {
1620 promisor_remote_get_direct(r
, real
, 1);
1621 already_retried
= 1;
1625 if (flags
& OBJECT_INFO_DIE_IF_CORRUPT
) {
1626 const struct packed_git
*p
;
1627 if ((flags
& OBJECT_INFO_LOOKUP_REPLACE
) && !oideq(real
, oid
))
1628 die(_("replacement %s not found for %s"),
1629 oid_to_hex(real
), oid_to_hex(oid
));
1630 if ((p
= has_packed_and_bad(r
, real
)))
1631 die(_("packed object %s (stored in %s) is corrupt"),
1632 oid_to_hex(real
), p
->pack_name
);
1637 if (oi
== &blank_oi
)
1639 * We know that the caller doesn't actually need the
1640 * information below, so return early.
1643 rtype
= packed_object_info(r
, e
.p
, e
.offset
, oi
);
1645 mark_bad_packed_object(e
.p
, real
);
1646 return do_oid_object_info_extended(r
, real
, oi
, 0);
1647 } else if (oi
->whence
== OI_PACKED
) {
1648 oi
->u
.packed
.offset
= e
.offset
;
1649 oi
->u
.packed
.pack
= e
.p
;
1650 oi
->u
.packed
.is_delta
= (rtype
== OBJ_REF_DELTA
||
1651 rtype
== OBJ_OFS_DELTA
);
1657 int oid_object_info_extended(struct repository
*r
, const struct object_id
*oid
,
1658 struct object_info
*oi
, unsigned flags
)
1662 ret
= do_oid_object_info_extended(r
, oid
, oi
, flags
);
1668 /* returns enum object_type or negative */
1669 int oid_object_info(struct repository
*r
,
1670 const struct object_id
*oid
,
1671 unsigned long *sizep
)
1673 enum object_type type
;
1674 struct object_info oi
= OBJECT_INFO_INIT
;
1678 if (oid_object_info_extended(r
, oid
, &oi
,
1679 OBJECT_INFO_LOOKUP_REPLACE
) < 0)
1684 int pretend_object_file(void *buf
, unsigned long len
, enum object_type type
,
1685 struct object_id
*oid
)
1687 struct cached_object
*co
;
1689 hash_object_file(the_hash_algo
, buf
, len
, type
, oid
);
1690 if (repo_has_object_file_with_flags(the_repository
, oid
, OBJECT_INFO_QUICK
| OBJECT_INFO_SKIP_FETCH_OBJECT
) ||
1691 find_cached_object(oid
))
1693 ALLOC_GROW(cached_objects
, cached_object_nr
+ 1, cached_object_alloc
);
1694 co
= &cached_objects
[cached_object_nr
++];
1697 co
->buf
= xmalloc(len
);
1698 memcpy(co
->buf
, buf
, len
);
1699 oidcpy(&co
->oid
, oid
);
1704 * This function dies on corrupt objects; the callers who want to
1705 * deal with them should arrange to call oid_object_info_extended() and give
1706 * error messages themselves.
1708 void *repo_read_object_file(struct repository
*r
,
1709 const struct object_id
*oid
,
1710 enum object_type
*type
,
1711 unsigned long *size
)
1713 struct object_info oi
= OBJECT_INFO_INIT
;
1714 unsigned flags
= OBJECT_INFO_DIE_IF_CORRUPT
| OBJECT_INFO_LOOKUP_REPLACE
;
1719 oi
.contentp
= &data
;
1720 if (oid_object_info_extended(r
, oid
, &oi
, flags
))
1726 void *read_object_with_reference(struct repository
*r
,
1727 const struct object_id
*oid
,
1728 enum object_type required_type
,
1729 unsigned long *size
,
1730 struct object_id
*actual_oid_return
)
1732 enum object_type type
;
1734 unsigned long isize
;
1735 struct object_id actual_oid
;
1737 oidcpy(&actual_oid
, oid
);
1739 int ref_length
= -1;
1740 const char *ref_type
= NULL
;
1742 buffer
= repo_read_object_file(r
, &actual_oid
, &type
, &isize
);
1745 if (type
== required_type
) {
1747 if (actual_oid_return
)
1748 oidcpy(actual_oid_return
, &actual_oid
);
1751 /* Handle references */
1752 else if (type
== OBJ_COMMIT
)
1754 else if (type
== OBJ_TAG
)
1755 ref_type
= "object ";
1760 ref_length
= strlen(ref_type
);
1762 if (ref_length
+ the_hash_algo
->hexsz
> isize
||
1763 memcmp(buffer
, ref_type
, ref_length
) ||
1764 get_oid_hex((char *) buffer
+ ref_length
, &actual_oid
)) {
1769 /* Now we have the ID of the referred-to object in
1770 * actual_oid. Check again. */
1774 static void hash_object_body(const struct git_hash_algo
*algo
, git_hash_ctx
*c
,
1775 const void *buf
, unsigned long len
,
1776 struct object_id
*oid
,
1777 char *hdr
, int *hdrlen
)
1780 algo
->update_fn(c
, hdr
, *hdrlen
);
1781 algo
->update_fn(c
, buf
, len
);
1782 algo
->final_oid_fn(oid
, c
);
1785 static void write_object_file_prepare(const struct git_hash_algo
*algo
,
1786 const void *buf
, unsigned long len
,
1787 enum object_type type
, struct object_id
*oid
,
1788 char *hdr
, int *hdrlen
)
1792 /* Generate the header */
1793 *hdrlen
= format_object_header(hdr
, *hdrlen
, type
, len
);
1796 hash_object_body(algo
, &c
, buf
, len
, oid
, hdr
, hdrlen
);
1799 static void write_object_file_prepare_literally(const struct git_hash_algo
*algo
,
1800 const void *buf
, unsigned long len
,
1801 const char *type
, struct object_id
*oid
,
1802 char *hdr
, int *hdrlen
)
1806 *hdrlen
= format_object_header_literally(hdr
, *hdrlen
, type
, len
);
1807 hash_object_body(algo
, &c
, buf
, len
, oid
, hdr
, hdrlen
);
1811 * Move the just written object into its final resting place.
1813 int finalize_object_file(const char *tmpfile
, const char *filename
)
1817 if (object_creation_mode
== OBJECT_CREATION_USES_RENAMES
)
1819 else if (link(tmpfile
, filename
))
1823 * Coda hack - coda doesn't like cross-directory links,
1824 * so we fall back to a rename, which will mean that it
1825 * won't be able to check collisions, but that's not a
1828 * The same holds for FAT formatted media.
1830 * When this succeeds, we just return. We have nothing
1833 if (ret
&& ret
!= EEXIST
) {
1835 if (!rename(tmpfile
, filename
))
1839 unlink_or_warn(tmpfile
);
1841 if (ret
!= EEXIST
) {
1842 return error_errno(_("unable to write file %s"), filename
);
1844 /* FIXME!!! Collision check here ? */
1848 if (adjust_shared_perm(filename
))
1849 return error(_("unable to set permission to '%s'"), filename
);
1853 static void hash_object_file_literally(const struct git_hash_algo
*algo
,
1854 const void *buf
, unsigned long len
,
1855 const char *type
, struct object_id
*oid
)
1857 char hdr
[MAX_HEADER_LEN
];
1858 int hdrlen
= sizeof(hdr
);
1860 write_object_file_prepare_literally(algo
, buf
, len
, type
, oid
, hdr
, &hdrlen
);
1863 void hash_object_file(const struct git_hash_algo
*algo
, const void *buf
,
1864 unsigned long len
, enum object_type type
,
1865 struct object_id
*oid
)
1867 hash_object_file_literally(algo
, buf
, len
, type_name(type
), oid
);
1870 /* Finalize a file on disk, and close it. */
1871 static void close_loose_object(int fd
, const char *filename
)
1873 if (the_repository
->objects
->odb
->will_destroy
)
1876 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT
))
1877 fsync_loose_object_bulk_checkin(fd
, filename
);
1878 else if (fsync_object_files
> 0)
1879 fsync_or_die(fd
, filename
);
1881 fsync_component_or_die(FSYNC_COMPONENT_LOOSE_OBJECT
, fd
,
1886 die_errno(_("error when closing loose object file"));
1889 /* Size of directory component, including the ending '/' */
1890 static inline int directory_size(const char *filename
)
1892 const char *s
= strrchr(filename
, '/');
1895 return s
- filename
+ 1;
1899 * This creates a temporary file in the same directory as the final
1902 * We want to avoid cross-directory filename renames, because those
1903 * can have problems on various filesystems (FAT, NFS, Coda).
1905 static int create_tmpfile(struct strbuf
*tmp
, const char *filename
)
1907 int fd
, dirlen
= directory_size(filename
);
1910 strbuf_add(tmp
, filename
, dirlen
);
1911 strbuf_addstr(tmp
, "tmp_obj_XXXXXX");
1912 fd
= git_mkstemp_mode(tmp
->buf
, 0444);
1913 if (fd
< 0 && dirlen
&& errno
== ENOENT
) {
1915 * Make sure the directory exists; note that the contents
1916 * of the buffer are undefined after mkstemp returns an
1917 * error, so we have to rewrite the whole buffer from
1921 strbuf_add(tmp
, filename
, dirlen
- 1);
1922 if (mkdir(tmp
->buf
, 0777) && errno
!= EEXIST
)
1924 if (adjust_shared_perm(tmp
->buf
))
1928 strbuf_addstr(tmp
, "/tmp_obj_XXXXXX");
1929 fd
= git_mkstemp_mode(tmp
->buf
, 0444);
1935 * Common steps for loose object writers to start writing loose
1938 * - Create tmpfile for the loose object.
1939 * - Setup zlib stream for compression.
1940 * - Start to feed header to zlib stream.
1942 * Returns a "fd", which should later be provided to
1943 * end_loose_object_common().
1945 static int start_loose_object_common(struct strbuf
*tmp_file
,
1946 const char *filename
, unsigned flags
,
1947 git_zstream
*stream
,
1948 unsigned char *buf
, size_t buflen
,
1950 char *hdr
, int hdrlen
)
1954 fd
= create_tmpfile(tmp_file
, filename
);
1956 if (flags
& HASH_SILENT
)
1958 else if (errno
== EACCES
)
1959 return error(_("insufficient permission for adding "
1960 "an object to repository database %s"),
1961 get_object_directory());
1964 _("unable to create temporary file"));
1967 /* Setup zlib stream for compression */
1968 git_deflate_init(stream
, zlib_compression_level
);
1969 stream
->next_out
= buf
;
1970 stream
->avail_out
= buflen
;
1971 the_hash_algo
->init_fn(c
);
1973 /* Start to feed header to zlib stream */
1974 stream
->next_in
= (unsigned char *)hdr
;
1975 stream
->avail_in
= hdrlen
;
1976 while (git_deflate(stream
, 0) == Z_OK
)
1978 the_hash_algo
->update_fn(c
, hdr
, hdrlen
);
1984 * Common steps for the inner git_deflate() loop for writing loose
1985 * objects. Returns what git_deflate() returns.
1987 static int write_loose_object_common(git_hash_ctx
*c
,
1988 git_zstream
*stream
, const int flush
,
1989 unsigned char *in0
, const int fd
,
1990 unsigned char *compressed
,
1991 const size_t compressed_len
)
1995 ret
= git_deflate(stream
, flush
? Z_FINISH
: 0);
1996 the_hash_algo
->update_fn(c
, in0
, stream
->next_in
- in0
);
1997 if (write_in_full(fd
, compressed
, stream
->next_out
- compressed
) < 0)
1998 die_errno(_("unable to write loose object file"));
1999 stream
->next_out
= compressed
;
2000 stream
->avail_out
= compressed_len
;
2006 * Common steps for loose object writers to end writing loose objects:
2008 * - End the compression of zlib stream.
2009 * - Get the calculated oid to "oid".
2011 static int end_loose_object_common(git_hash_ctx
*c
, git_zstream
*stream
,
2012 struct object_id
*oid
)
2016 ret
= git_deflate_end_gently(stream
);
2019 the_hash_algo
->final_oid_fn(oid
, c
);
2024 static int write_loose_object(const struct object_id
*oid
, char *hdr
,
2025 int hdrlen
, const void *buf
, unsigned long len
,
2026 time_t mtime
, unsigned flags
)
2029 unsigned char compressed
[4096];
2032 struct object_id parano_oid
;
2033 static struct strbuf tmp_file
= STRBUF_INIT
;
2034 static struct strbuf filename
= STRBUF_INIT
;
2036 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT
))
2037 prepare_loose_object_bulk_checkin();
2039 loose_object_path(the_repository
, &filename
, oid
);
2041 fd
= start_loose_object_common(&tmp_file
, filename
.buf
, flags
,
2042 &stream
, compressed
, sizeof(compressed
),
2047 /* Then the data itself.. */
2048 stream
.next_in
= (void *)buf
;
2049 stream
.avail_in
= len
;
2051 unsigned char *in0
= stream
.next_in
;
2053 ret
= write_loose_object_common(&c
, &stream
, 1, in0
, fd
,
2054 compressed
, sizeof(compressed
));
2055 } while (ret
== Z_OK
);
2057 if (ret
!= Z_STREAM_END
)
2058 die(_("unable to deflate new object %s (%d)"), oid_to_hex(oid
),
2060 ret
= end_loose_object_common(&c
, &stream
, ¶no_oid
);
2062 die(_("deflateEnd on object %s failed (%d)"), oid_to_hex(oid
),
2064 if (!oideq(oid
, ¶no_oid
))
2065 die(_("confused by unstable object source data for %s"),
2068 close_loose_object(fd
, tmp_file
.buf
);
2073 utb
.modtime
= mtime
;
2074 if (utime(tmp_file
.buf
, &utb
) < 0 &&
2075 !(flags
& HASH_SILENT
))
2076 warning_errno(_("failed utime() on %s"), tmp_file
.buf
);
2079 return finalize_object_file(tmp_file
.buf
, filename
.buf
);
2082 static int freshen_loose_object(const struct object_id
*oid
)
2084 return check_and_freshen(oid
, 1);
2087 static int freshen_packed_object(const struct object_id
*oid
)
2089 struct pack_entry e
;
2090 if (!find_pack_entry(the_repository
, oid
, &e
))
2096 if (!freshen_file(e
.p
->pack_name
))
2102 int stream_loose_object(struct input_stream
*in_stream
, size_t len
,
2103 struct object_id
*oid
)
2105 int fd
, ret
, err
= 0, flush
= 0;
2106 unsigned char compressed
[4096];
2109 struct strbuf tmp_file
= STRBUF_INIT
;
2110 struct strbuf filename
= STRBUF_INIT
;
2112 char hdr
[MAX_HEADER_LEN
];
2115 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT
))
2116 prepare_loose_object_bulk_checkin();
2118 /* Since oid is not determined, save tmp file to odb path. */
2119 strbuf_addf(&filename
, "%s/", get_object_directory());
2120 hdrlen
= format_object_header(hdr
, sizeof(hdr
), OBJ_BLOB
, len
);
2123 * Common steps for write_loose_object and stream_loose_object to
2124 * start writing loose objects:
2126 * - Create tmpfile for the loose object.
2127 * - Setup zlib stream for compression.
2128 * - Start to feed header to zlib stream.
2130 fd
= start_loose_object_common(&tmp_file
, filename
.buf
, 0,
2131 &stream
, compressed
, sizeof(compressed
),
2138 /* Then the data itself.. */
2140 unsigned char *in0
= stream
.next_in
;
2142 if (!stream
.avail_in
&& !in_stream
->is_finished
) {
2143 const void *in
= in_stream
->read(in_stream
, &stream
.avail_in
);
2144 stream
.next_in
= (void *)in
;
2145 in0
= (unsigned char *)in
;
2146 /* All data has been read. */
2147 if (in_stream
->is_finished
)
2150 ret
= write_loose_object_common(&c
, &stream
, flush
, in0
, fd
,
2151 compressed
, sizeof(compressed
));
2153 * Unlike write_loose_object(), we do not have the entire
2154 * buffer. If we get Z_BUF_ERROR due to too few input bytes,
2155 * then we'll replenish them in the next input_stream->read()
2156 * call when we loop.
2158 } while (ret
== Z_OK
|| ret
== Z_BUF_ERROR
);
2160 if (stream
.total_in
!= len
+ hdrlen
)
2161 die(_("write stream object %ld != %"PRIuMAX
), stream
.total_in
,
2162 (uintmax_t)len
+ hdrlen
);
2165 * Common steps for write_loose_object and stream_loose_object to
2166 * end writing loose oject:
2168 * - End the compression of zlib stream.
2169 * - Get the calculated oid.
2171 if (ret
!= Z_STREAM_END
)
2172 die(_("unable to stream deflate new object (%d)"), ret
);
2173 ret
= end_loose_object_common(&c
, &stream
, oid
);
2175 die(_("deflateEnd on stream object failed (%d)"), ret
);
2176 close_loose_object(fd
, tmp_file
.buf
);
2178 if (freshen_packed_object(oid
) || freshen_loose_object(oid
)) {
2179 unlink_or_warn(tmp_file
.buf
);
2183 loose_object_path(the_repository
, &filename
, oid
);
2185 /* We finally know the object path, and create the missing dir. */
2186 dirlen
= directory_size(filename
.buf
);
2188 struct strbuf dir
= STRBUF_INIT
;
2189 strbuf_add(&dir
, filename
.buf
, dirlen
);
2191 if (mkdir_in_gitdir(dir
.buf
) && errno
!= EEXIST
) {
2192 err
= error_errno(_("unable to create directory %s"), dir
.buf
);
2193 strbuf_release(&dir
);
2196 strbuf_release(&dir
);
2199 err
= finalize_object_file(tmp_file
.buf
, filename
.buf
);
2201 strbuf_release(&tmp_file
);
2202 strbuf_release(&filename
);
2206 int write_object_file_flags(const void *buf
, unsigned long len
,
2207 enum object_type type
, struct object_id
*oid
,
2210 char hdr
[MAX_HEADER_LEN
];
2211 int hdrlen
= sizeof(hdr
);
2213 /* Normally if we have it in the pack then we do not bother writing
2214 * it out into .git/objects/??/?{38} file.
2216 write_object_file_prepare(the_hash_algo
, buf
, len
, type
, oid
, hdr
,
2218 if (freshen_packed_object(oid
) || freshen_loose_object(oid
))
2220 return write_loose_object(oid
, hdr
, hdrlen
, buf
, len
, 0, flags
);
2223 int write_object_file_literally(const void *buf
, unsigned long len
,
2224 const char *type
, struct object_id
*oid
,
2228 int hdrlen
, status
= 0;
2230 /* type string, SP, %lu of the length plus NUL must fit this */
2231 hdrlen
= strlen(type
) + MAX_HEADER_LEN
;
2232 header
= xmalloc(hdrlen
);
2233 write_object_file_prepare_literally(the_hash_algo
, buf
, len
, type
,
2234 oid
, header
, &hdrlen
);
2236 if (!(flags
& HASH_WRITE_OBJECT
))
2238 if (freshen_packed_object(oid
) || freshen_loose_object(oid
))
2240 status
= write_loose_object(oid
, header
, hdrlen
, buf
, len
, 0, 0);
2247 int force_object_loose(const struct object_id
*oid
, time_t mtime
)
2251 struct object_info oi
= OBJECT_INFO_INIT
;
2252 enum object_type type
;
2253 char hdr
[MAX_HEADER_LEN
];
2257 if (has_loose_object(oid
))
2262 if (oid_object_info_extended(the_repository
, oid
, &oi
, 0))
2263 return error(_("cannot read object for %s"), oid_to_hex(oid
));
2264 hdrlen
= format_object_header(hdr
, sizeof(hdr
), type
, len
);
2265 ret
= write_loose_object(oid
, hdr
, hdrlen
, buf
, len
, mtime
, 0);
2271 int has_object(struct repository
*r
, const struct object_id
*oid
,
2274 int quick
= !(flags
& HAS_OBJECT_RECHECK_PACKED
);
2275 unsigned object_info_flags
= OBJECT_INFO_SKIP_FETCH_OBJECT
|
2276 (quick
? OBJECT_INFO_QUICK
: 0);
2278 if (!startup_info
->have_repository
)
2280 return oid_object_info_extended(r
, oid
, NULL
, object_info_flags
) >= 0;
2283 int repo_has_object_file_with_flags(struct repository
*r
,
2284 const struct object_id
*oid
, int flags
)
2286 if (!startup_info
->have_repository
)
2288 return oid_object_info_extended(r
, oid
, NULL
, flags
) >= 0;
2291 int repo_has_object_file(struct repository
*r
,
2292 const struct object_id
*oid
)
2294 return repo_has_object_file_with_flags(r
, oid
, 0);
2298 * We can't use the normal fsck_error_function() for index_mem(),
2299 * because we don't yet have a valid oid for it to report. Instead,
2300 * report the minimal fsck error here, and rely on the caller to
2301 * give more context.
2303 static int hash_format_check_report(struct fsck_options
*opts
,
2304 const struct object_id
*oid
,
2305 enum object_type object_type
,
2306 enum fsck_msg_type msg_type
,
2307 enum fsck_msg_id msg_id
,
2308 const char *message
)
2310 error(_("object fails fsck: %s"), message
);
2314 static int index_mem(struct index_state
*istate
,
2315 struct object_id
*oid
, void *buf
, size_t size
,
2316 enum object_type type
,
2317 const char *path
, unsigned flags
)
2320 int re_allocated
= 0;
2321 int write_object
= flags
& HASH_WRITE_OBJECT
;
2327 * Convert blobs to git internal format
2329 if ((type
== OBJ_BLOB
) && path
) {
2330 struct strbuf nbuf
= STRBUF_INIT
;
2331 if (convert_to_git(istate
, path
, buf
, size
, &nbuf
,
2332 get_conv_flags(flags
))) {
2333 buf
= strbuf_detach(&nbuf
, &size
);
2337 if (flags
& HASH_FORMAT_CHECK
) {
2338 struct fsck_options opts
= FSCK_OPTIONS_DEFAULT
;
2341 opts
.error_func
= hash_format_check_report
;
2342 if (fsck_buffer(null_oid(), type
, buf
, size
, &opts
))
2343 die(_("refusing to create malformed object"));
2348 ret
= write_object_file(buf
, size
, type
, oid
);
2350 hash_object_file(the_hash_algo
, buf
, size
, type
, oid
);
2356 static int index_stream_convert_blob(struct index_state
*istate
,
2357 struct object_id
*oid
,
2363 const int write_object
= flags
& HASH_WRITE_OBJECT
;
2364 struct strbuf sbuf
= STRBUF_INIT
;
2367 assert(would_convert_to_git_filter_fd(istate
, path
));
2369 convert_to_git_filter_fd(istate
, path
, fd
, &sbuf
,
2370 get_conv_flags(flags
));
2373 ret
= write_object_file(sbuf
.buf
, sbuf
.len
, OBJ_BLOB
,
2376 hash_object_file(the_hash_algo
, sbuf
.buf
, sbuf
.len
, OBJ_BLOB
,
2378 strbuf_release(&sbuf
);
2382 static int index_pipe(struct index_state
*istate
, struct object_id
*oid
,
2383 int fd
, enum object_type type
,
2384 const char *path
, unsigned flags
)
2386 struct strbuf sbuf
= STRBUF_INIT
;
2389 if (strbuf_read(&sbuf
, fd
, 4096) >= 0)
2390 ret
= index_mem(istate
, oid
, sbuf
.buf
, sbuf
.len
, type
, path
, flags
);
2393 strbuf_release(&sbuf
);
2397 #define SMALL_FILE_SIZE (32*1024)
2399 static int index_core(struct index_state
*istate
,
2400 struct object_id
*oid
, int fd
, size_t size
,
2401 enum object_type type
, const char *path
,
2407 ret
= index_mem(istate
, oid
, "", size
, type
, path
, flags
);
2408 } else if (size
<= SMALL_FILE_SIZE
) {
2409 char *buf
= xmalloc(size
);
2410 ssize_t read_result
= read_in_full(fd
, buf
, size
);
2411 if (read_result
< 0)
2412 ret
= error_errno(_("read error while indexing %s"),
2413 path
? path
: "<unknown>");
2414 else if (read_result
!= size
)
2415 ret
= error(_("short read while indexing %s"),
2416 path
? path
: "<unknown>");
2418 ret
= index_mem(istate
, oid
, buf
, size
, type
, path
, flags
);
2421 void *buf
= xmmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
2422 ret
= index_mem(istate
, oid
, buf
, size
, type
, path
, flags
);
2429 * This creates one packfile per large blob unless bulk-checkin
2430 * machinery is "plugged".
2432 * This also bypasses the usual "convert-to-git" dance, and that is on
2433 * purpose. We could write a streaming version of the converting
2434 * functions and insert that before feeding the data to fast-import
2435 * (or equivalent in-core API described above). However, that is
2436 * somewhat complicated, as we do not know the size of the filter
2437 * result, which we need to know beforehand when writing a git object.
2438 * Since the primary motivation for trying to stream from the working
2439 * tree file and to avoid mmaping it in core is to deal with large
2440 * binary blobs, they generally do not want to get any conversion, and
2441 * callers should avoid this code path when filters are requested.
2443 static int index_stream(struct object_id
*oid
, int fd
, size_t size
,
2444 enum object_type type
, const char *path
,
2447 return index_bulk_checkin(oid
, fd
, size
, type
, path
, flags
);
2450 int index_fd(struct index_state
*istate
, struct object_id
*oid
,
2451 int fd
, struct stat
*st
,
2452 enum object_type type
, const char *path
, unsigned flags
)
2457 * Call xsize_t() only when needed to avoid potentially unnecessary
2458 * die() for large files.
2460 if (type
== OBJ_BLOB
&& path
&& would_convert_to_git_filter_fd(istate
, path
))
2461 ret
= index_stream_convert_blob(istate
, oid
, fd
, path
, flags
);
2462 else if (!S_ISREG(st
->st_mode
))
2463 ret
= index_pipe(istate
, oid
, fd
, type
, path
, flags
);
2464 else if (st
->st_size
<= big_file_threshold
|| type
!= OBJ_BLOB
||
2465 (path
&& would_convert_to_git(istate
, path
)))
2466 ret
= index_core(istate
, oid
, fd
, xsize_t(st
->st_size
),
2469 ret
= index_stream(oid
, fd
, xsize_t(st
->st_size
), type
, path
,
2475 int index_path(struct index_state
*istate
, struct object_id
*oid
,
2476 const char *path
, struct stat
*st
, unsigned flags
)
2479 struct strbuf sb
= STRBUF_INIT
;
2482 switch (st
->st_mode
& S_IFMT
) {
2484 fd
= open(path
, O_RDONLY
);
2486 return error_errno("open(\"%s\")", path
);
2487 if (index_fd(istate
, oid
, fd
, st
, OBJ_BLOB
, path
, flags
) < 0)
2488 return error(_("%s: failed to insert into database"),
2492 if (strbuf_readlink(&sb
, path
, st
->st_size
))
2493 return error_errno("readlink(\"%s\")", path
);
2494 if (!(flags
& HASH_WRITE_OBJECT
))
2495 hash_object_file(the_hash_algo
, sb
.buf
, sb
.len
,
2497 else if (write_object_file(sb
.buf
, sb
.len
, OBJ_BLOB
, oid
))
2498 rc
= error(_("%s: failed to insert into database"), path
);
2499 strbuf_release(&sb
);
2502 return resolve_gitlink_ref(path
, "HEAD", oid
);
2504 return error(_("%s: unsupported file type"), path
);
2509 int read_pack_header(int fd
, struct pack_header
*header
)
2511 if (read_in_full(fd
, header
, sizeof(*header
)) != sizeof(*header
))
2512 /* "eof before pack header was fully read" */
2513 return PH_ERROR_EOF
;
2515 if (header
->hdr_signature
!= htonl(PACK_SIGNATURE
))
2516 /* "protocol error (pack signature mismatch detected)" */
2517 return PH_ERROR_PACK_SIGNATURE
;
2518 if (!pack_version_ok(header
->hdr_version
))
2519 /* "protocol error (pack version unsupported)" */
2520 return PH_ERROR_PROTOCOL
;
2524 void assert_oid_type(const struct object_id
*oid
, enum object_type expect
)
2526 enum object_type type
= oid_object_info(the_repository
, oid
, NULL
);
2528 die(_("%s is not a valid object"), oid_to_hex(oid
));
2530 die(_("%s is not a valid '%s' object"), oid_to_hex(oid
),
2534 int for_each_file_in_obj_subdir(unsigned int subdir_nr
,
2535 struct strbuf
*path
,
2536 each_loose_object_fn obj_cb
,
2537 each_loose_cruft_fn cruft_cb
,
2538 each_loose_subdir_fn subdir_cb
,
2541 size_t origlen
, baselen
;
2545 struct object_id oid
;
2547 if (subdir_nr
> 0xff)
2548 BUG("invalid loose object subdirectory: %x", subdir_nr
);
2550 origlen
= path
->len
;
2551 strbuf_complete(path
, '/');
2552 strbuf_addf(path
, "%02x", subdir_nr
);
2554 dir
= opendir(path
->buf
);
2556 if (errno
!= ENOENT
)
2557 r
= error_errno(_("unable to open %s"), path
->buf
);
2558 strbuf_setlen(path
, origlen
);
2562 oid
.hash
[0] = subdir_nr
;
2563 strbuf_addch(path
, '/');
2564 baselen
= path
->len
;
2566 while ((de
= readdir_skip_dot_and_dotdot(dir
))) {
2569 namelen
= strlen(de
->d_name
);
2570 strbuf_setlen(path
, baselen
);
2571 strbuf_add(path
, de
->d_name
, namelen
);
2572 if (namelen
== the_hash_algo
->hexsz
- 2 &&
2573 !hex_to_bytes(oid
.hash
+ 1, de
->d_name
,
2574 the_hash_algo
->rawsz
- 1)) {
2575 oid_set_algo(&oid
, the_hash_algo
);
2577 r
= obj_cb(&oid
, path
->buf
, data
);
2585 r
= cruft_cb(de
->d_name
, path
->buf
, data
);
2592 strbuf_setlen(path
, baselen
- 1);
2593 if (!r
&& subdir_cb
)
2594 r
= subdir_cb(subdir_nr
, path
->buf
, data
);
2596 strbuf_setlen(path
, origlen
);
2601 int for_each_loose_file_in_objdir_buf(struct strbuf
*path
,
2602 each_loose_object_fn obj_cb
,
2603 each_loose_cruft_fn cruft_cb
,
2604 each_loose_subdir_fn subdir_cb
,
2610 for (i
= 0; i
< 256; i
++) {
2611 r
= for_each_file_in_obj_subdir(i
, path
, obj_cb
, cruft_cb
,
2620 int for_each_loose_file_in_objdir(const char *path
,
2621 each_loose_object_fn obj_cb
,
2622 each_loose_cruft_fn cruft_cb
,
2623 each_loose_subdir_fn subdir_cb
,
2626 struct strbuf buf
= STRBUF_INIT
;
2629 strbuf_addstr(&buf
, path
);
2630 r
= for_each_loose_file_in_objdir_buf(&buf
, obj_cb
, cruft_cb
,
2632 strbuf_release(&buf
);
2637 int for_each_loose_object(each_loose_object_fn cb
, void *data
,
2638 enum for_each_object_flags flags
)
2640 struct object_directory
*odb
;
2642 prepare_alt_odb(the_repository
);
2643 for (odb
= the_repository
->objects
->odb
; odb
; odb
= odb
->next
) {
2644 int r
= for_each_loose_file_in_objdir(odb
->path
, cb
, NULL
,
2649 if (flags
& FOR_EACH_OBJECT_LOCAL_ONLY
)
2656 static int append_loose_object(const struct object_id
*oid
,
2657 const char *path UNUSED
,
2660 oidtree_insert(data
, oid
);
2664 struct oidtree
*odb_loose_cache(struct object_directory
*odb
,
2665 const struct object_id
*oid
)
2667 int subdir_nr
= oid
->hash
[0];
2668 struct strbuf buf
= STRBUF_INIT
;
2669 size_t word_bits
= bitsizeof(odb
->loose_objects_subdir_seen
[0]);
2670 size_t word_index
= subdir_nr
/ word_bits
;
2671 size_t mask
= (size_t)1u << (subdir_nr
% word_bits
);
2674 if (subdir_nr
< 0 ||
2675 subdir_nr
>= bitsizeof(odb
->loose_objects_subdir_seen
))
2676 BUG("subdir_nr out of range");
2678 bitmap
= &odb
->loose_objects_subdir_seen
[word_index
];
2680 return odb
->loose_objects_cache
;
2681 if (!odb
->loose_objects_cache
) {
2682 ALLOC_ARRAY(odb
->loose_objects_cache
, 1);
2683 oidtree_init(odb
->loose_objects_cache
);
2685 strbuf_addstr(&buf
, odb
->path
);
2686 for_each_file_in_obj_subdir(subdir_nr
, &buf
,
2687 append_loose_object
,
2689 odb
->loose_objects_cache
);
2691 strbuf_release(&buf
);
2692 return odb
->loose_objects_cache
;
2695 void odb_clear_loose_cache(struct object_directory
*odb
)
2697 oidtree_clear(odb
->loose_objects_cache
);
2698 FREE_AND_NULL(odb
->loose_objects_cache
);
2699 memset(&odb
->loose_objects_subdir_seen
, 0,
2700 sizeof(odb
->loose_objects_subdir_seen
));
2703 static int check_stream_oid(git_zstream
*stream
,
2707 const struct object_id
*expected_oid
)
2710 struct object_id real_oid
;
2711 unsigned char buf
[4096];
2712 unsigned long total_read
;
2715 the_hash_algo
->init_fn(&c
);
2716 the_hash_algo
->update_fn(&c
, hdr
, stream
->total_out
);
2719 * We already read some bytes into hdr, but the ones up to the NUL
2720 * do not count against the object's content size.
2722 total_read
= stream
->total_out
- strlen(hdr
) - 1;
2725 * This size comparison must be "<=" to read the final zlib packets;
2726 * see the comment in unpack_loose_rest for details.
2728 while (total_read
<= size
&&
2730 (status
== Z_BUF_ERROR
&& !stream
->avail_out
))) {
2731 stream
->next_out
= buf
;
2732 stream
->avail_out
= sizeof(buf
);
2733 if (size
- total_read
< stream
->avail_out
)
2734 stream
->avail_out
= size
- total_read
;
2735 status
= git_inflate(stream
, Z_FINISH
);
2736 the_hash_algo
->update_fn(&c
, buf
, stream
->next_out
- buf
);
2737 total_read
+= stream
->next_out
- buf
;
2739 git_inflate_end(stream
);
2741 if (status
!= Z_STREAM_END
) {
2742 error(_("corrupt loose object '%s'"), oid_to_hex(expected_oid
));
2745 if (stream
->avail_in
) {
2746 error(_("garbage at end of loose object '%s'"),
2747 oid_to_hex(expected_oid
));
2751 the_hash_algo
->final_oid_fn(&real_oid
, &c
);
2752 if (!oideq(expected_oid
, &real_oid
)) {
2753 error(_("hash mismatch for %s (expected %s)"), path
,
2754 oid_to_hex(expected_oid
));
2761 int read_loose_object(const char *path
,
2762 const struct object_id
*expected_oid
,
2763 struct object_id
*real_oid
,
2765 struct object_info
*oi
)
2770 unsigned long mapsize
;
2772 char hdr
[MAX_HEADER_LEN
];
2773 unsigned long *size
= oi
->sizep
;
2775 fd
= git_open(path
);
2777 map
= map_fd(fd
, path
, &mapsize
);
2779 error_errno(_("unable to mmap %s"), path
);
2783 if (unpack_loose_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
),
2785 error(_("unable to unpack header of %s"), path
);
2789 if (parse_loose_header(hdr
, oi
) < 0) {
2790 error(_("unable to parse header of %s"), path
);
2791 git_inflate_end(&stream
);
2795 if (*oi
->typep
== OBJ_BLOB
&& *size
> big_file_threshold
) {
2796 if (check_stream_oid(&stream
, hdr
, *size
, path
, expected_oid
) < 0)
2799 *contents
= unpack_loose_rest(&stream
, hdr
, *size
, expected_oid
);
2801 error(_("unable to unpack contents of %s"), path
);
2802 git_inflate_end(&stream
);
2805 hash_object_file_literally(the_repository
->hash_algo
,
2807 oi
->type_name
->buf
, real_oid
);
2808 if (!oideq(expected_oid
, real_oid
))
2812 ret
= 0; /* everything checks out */
2816 munmap(map
, mapsize
);