2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 * This handles basic git object files - packing, unpacking,
10 #define USE_THE_REPOSITORY_VARIABLE
12 #include "git-compat-util.h"
16 #include "environment.h"
19 #include "string-list.h"
23 #include "run-command.h"
25 #include "bulk-checkin.h"
26 #include "repository.h"
27 #include "replace-object.h"
28 #include "streaming.h"
33 #include "object-file.h"
34 #include "object-store.h"
37 #include "promisor-remote.h"
39 #include "submodule.h"
42 #include "object-file-convert.h"
44 /* The maximum size for an object header. */
45 #define MAX_HEADER_LEN 32
48 #define EMPTY_TREE_SHA1_BIN_LITERAL \
49 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60" \
50 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04"
51 #define EMPTY_TREE_SHA256_BIN_LITERAL \
52 "\x6e\xf1\x9b\x41\x22\x5c\x53\x69\xf1\xc1" \
53 "\x04\xd4\x5d\x8d\x85\xef\xa9\xb0\x57\xb5" \
54 "\x3b\x14\xb4\xb9\xb9\x39\xdd\x74\xde\xcc" \
57 #define EMPTY_BLOB_SHA1_BIN_LITERAL \
58 "\xe6\x9d\xe2\x9b\xb2\xd1\xd6\x43\x4b\x8b" \
59 "\x29\xae\x77\x5a\xd8\xc2\xe4\x8c\x53\x91"
60 #define EMPTY_BLOB_SHA256_BIN_LITERAL \
61 "\x47\x3a\x0f\x4c\x3b\xe8\xa9\x36\x81\xa2" \
62 "\x67\xe3\xb1\xe9\xa7\xdc\xda\x11\x85\x43" \
63 "\x6f\xe1\x41\xf7\x74\x91\x20\xa3\x03\x72" \
66 static const struct object_id empty_tree_oid
= {
67 .hash
= EMPTY_TREE_SHA1_BIN_LITERAL
,
68 .algo
= GIT_HASH_SHA1
,
70 static const struct object_id empty_blob_oid
= {
71 .hash
= EMPTY_BLOB_SHA1_BIN_LITERAL
,
72 .algo
= GIT_HASH_SHA1
,
74 static const struct object_id null_oid_sha1
= {
76 .algo
= GIT_HASH_SHA1
,
78 static const struct object_id empty_tree_oid_sha256
= {
79 .hash
= EMPTY_TREE_SHA256_BIN_LITERAL
,
80 .algo
= GIT_HASH_SHA256
,
82 static const struct object_id empty_blob_oid_sha256
= {
83 .hash
= EMPTY_BLOB_SHA256_BIN_LITERAL
,
84 .algo
= GIT_HASH_SHA256
,
86 static const struct object_id null_oid_sha256
= {
88 .algo
= GIT_HASH_SHA256
,
91 static void git_hash_sha1_init(git_hash_ctx
*ctx
)
93 git_SHA1_Init(&ctx
->sha1
);
96 static void git_hash_sha1_clone(git_hash_ctx
*dst
, const git_hash_ctx
*src
)
98 git_SHA1_Clone(&dst
->sha1
, &src
->sha1
);
101 static void git_hash_sha1_update(git_hash_ctx
*ctx
, const void *data
, size_t len
)
103 git_SHA1_Update(&ctx
->sha1
, data
, len
);
106 static void git_hash_sha1_final(unsigned char *hash
, git_hash_ctx
*ctx
)
108 git_SHA1_Final(hash
, &ctx
->sha1
);
111 static void git_hash_sha1_final_oid(struct object_id
*oid
, git_hash_ctx
*ctx
)
113 git_SHA1_Final(oid
->hash
, &ctx
->sha1
);
114 memset(oid
->hash
+ GIT_SHA1_RAWSZ
, 0, GIT_MAX_RAWSZ
- GIT_SHA1_RAWSZ
);
115 oid
->algo
= GIT_HASH_SHA1
;
119 static void git_hash_sha256_init(git_hash_ctx
*ctx
)
121 git_SHA256_Init(&ctx
->sha256
);
124 static void git_hash_sha256_clone(git_hash_ctx
*dst
, const git_hash_ctx
*src
)
126 git_SHA256_Clone(&dst
->sha256
, &src
->sha256
);
129 static void git_hash_sha256_update(git_hash_ctx
*ctx
, const void *data
, size_t len
)
131 git_SHA256_Update(&ctx
->sha256
, data
, len
);
134 static void git_hash_sha256_final(unsigned char *hash
, git_hash_ctx
*ctx
)
136 git_SHA256_Final(hash
, &ctx
->sha256
);
139 static void git_hash_sha256_final_oid(struct object_id
*oid
, git_hash_ctx
*ctx
)
141 git_SHA256_Final(oid
->hash
, &ctx
->sha256
);
143 * This currently does nothing, so the compiler should optimize it out,
144 * but keep it in case we extend the hash size again.
146 memset(oid
->hash
+ GIT_SHA256_RAWSZ
, 0, GIT_MAX_RAWSZ
- GIT_SHA256_RAWSZ
);
147 oid
->algo
= GIT_HASH_SHA256
;
150 static void git_hash_unknown_init(git_hash_ctx
*ctx UNUSED
)
152 BUG("trying to init unknown hash");
155 static void git_hash_unknown_clone(git_hash_ctx
*dst UNUSED
,
156 const git_hash_ctx
*src UNUSED
)
158 BUG("trying to clone unknown hash");
161 static void git_hash_unknown_update(git_hash_ctx
*ctx UNUSED
,
162 const void *data UNUSED
,
165 BUG("trying to update unknown hash");
168 static void git_hash_unknown_final(unsigned char *hash UNUSED
,
169 git_hash_ctx
*ctx UNUSED
)
171 BUG("trying to finalize unknown hash");
174 static void git_hash_unknown_final_oid(struct object_id
*oid UNUSED
,
175 git_hash_ctx
*ctx UNUSED
)
177 BUG("trying to finalize unknown hash");
180 const struct git_hash_algo hash_algos
[GIT_HASH_NALGOS
] = {
183 .format_id
= 0x00000000,
187 .init_fn
= git_hash_unknown_init
,
188 .clone_fn
= git_hash_unknown_clone
,
189 .update_fn
= git_hash_unknown_update
,
190 .final_fn
= git_hash_unknown_final
,
191 .final_oid_fn
= git_hash_unknown_final_oid
,
198 .format_id
= GIT_SHA1_FORMAT_ID
,
199 .rawsz
= GIT_SHA1_RAWSZ
,
200 .hexsz
= GIT_SHA1_HEXSZ
,
201 .blksz
= GIT_SHA1_BLKSZ
,
202 .init_fn
= git_hash_sha1_init
,
203 .clone_fn
= git_hash_sha1_clone
,
204 .update_fn
= git_hash_sha1_update
,
205 .final_fn
= git_hash_sha1_final
,
206 .final_oid_fn
= git_hash_sha1_final_oid
,
207 .empty_tree
= &empty_tree_oid
,
208 .empty_blob
= &empty_blob_oid
,
209 .null_oid
= &null_oid_sha1
,
213 .format_id
= GIT_SHA256_FORMAT_ID
,
214 .rawsz
= GIT_SHA256_RAWSZ
,
215 .hexsz
= GIT_SHA256_HEXSZ
,
216 .blksz
= GIT_SHA256_BLKSZ
,
217 .init_fn
= git_hash_sha256_init
,
218 .clone_fn
= git_hash_sha256_clone
,
219 .update_fn
= git_hash_sha256_update
,
220 .final_fn
= git_hash_sha256_final
,
221 .final_oid_fn
= git_hash_sha256_final_oid
,
222 .empty_tree
= &empty_tree_oid_sha256
,
223 .empty_blob
= &empty_blob_oid_sha256
,
224 .null_oid
= &null_oid_sha256
,
228 const struct object_id
*null_oid(void)
230 return the_hash_algo
->null_oid
;
233 const char *empty_tree_oid_hex(const struct git_hash_algo
*algop
)
235 static char buf
[GIT_MAX_HEXSZ
+ 1];
236 return oid_to_hex_r(buf
, algop
->empty_tree
);
239 int hash_algo_by_name(const char *name
)
243 return GIT_HASH_UNKNOWN
;
244 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++)
245 if (!strcmp(name
, hash_algos
[i
].name
))
247 return GIT_HASH_UNKNOWN
;
250 int hash_algo_by_id(uint32_t format_id
)
253 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++)
254 if (format_id
== hash_algos
[i
].format_id
)
256 return GIT_HASH_UNKNOWN
;
259 int hash_algo_by_length(int len
)
262 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++)
263 if (len
== hash_algos
[i
].rawsz
)
265 return GIT_HASH_UNKNOWN
;
269 * This is meant to hold a *small* number of objects that you would
270 * want repo_read_object_file() to be able to return, but yet you do not want
271 * to write them into the object store (e.g. a browse-only
274 static struct cached_object
{
275 struct object_id oid
;
276 enum object_type type
;
280 static int cached_object_nr
, cached_object_alloc
;
282 static struct cached_object empty_tree
= {
284 .hash
= EMPTY_TREE_SHA1_BIN_LITERAL
,
290 static struct cached_object
*find_cached_object(const struct object_id
*oid
)
293 struct cached_object
*co
= cached_objects
;
295 for (i
= 0; i
< cached_object_nr
; i
++, co
++) {
296 if (oideq(&co
->oid
, oid
))
299 if (oideq(oid
, the_hash_algo
->empty_tree
))
305 static int get_conv_flags(unsigned flags
)
307 if (flags
& HASH_RENORMALIZE
)
308 return CONV_EOL_RENORMALIZE
;
309 else if (flags
& HASH_WRITE_OBJECT
)
310 return global_conv_flags_eol
| CONV_WRITE_OBJECT
;
316 int mkdir_in_gitdir(const char *path
)
318 if (mkdir(path
, 0777)) {
319 int saved_errno
= errno
;
321 struct strbuf sb
= STRBUF_INIT
;
326 * Are we looking at a path in a symlinked worktree
327 * whose original repository does not yet have it?
328 * e.g. .git/rr-cache pointing at its original
329 * repository in which the user hasn't performed any
330 * conflict resolution yet?
332 if (lstat(path
, &st
) || !S_ISLNK(st
.st_mode
) ||
333 strbuf_readlink(&sb
, path
, st
.st_size
) ||
334 !is_absolute_path(sb
.buf
) ||
335 mkdir(sb
.buf
, 0777)) {
342 return adjust_shared_perm(path
);
345 static enum scld_error
safe_create_leading_directories_1(char *path
, int share
)
347 char *next_component
= path
+ offset_1st_component(path
);
348 enum scld_error ret
= SCLD_OK
;
350 while (ret
== SCLD_OK
&& next_component
) {
352 char *slash
= next_component
, slash_character
;
354 while (*slash
&& !is_dir_sep(*slash
))
360 next_component
= slash
+ 1;
361 while (is_dir_sep(*next_component
))
363 if (!*next_component
)
366 slash_character
= *slash
;
368 if (!stat(path
, &st
)) {
370 if (!S_ISDIR(st
.st_mode
)) {
374 } else if (mkdir(path
, 0777)) {
375 if (errno
== EEXIST
&&
376 !stat(path
, &st
) && S_ISDIR(st
.st_mode
))
377 ; /* somebody created it since we checked */
378 else if (errno
== ENOENT
)
380 * Either mkdir() failed because
381 * somebody just pruned the containing
382 * directory, or stat() failed because
383 * the file that was in our way was
384 * just removed. Either way, inform
385 * the caller that it might be worth
391 } else if (share
&& adjust_shared_perm(path
)) {
394 *slash
= slash_character
;
399 enum scld_error
safe_create_leading_directories(char *path
)
401 return safe_create_leading_directories_1(path
, 1);
404 enum scld_error
safe_create_leading_directories_no_share(char *path
)
406 return safe_create_leading_directories_1(path
, 0);
409 enum scld_error
safe_create_leading_directories_const(const char *path
)
412 /* path points to cache entries, so xstrdup before messing with it */
413 char *buf
= xstrdup(path
);
414 enum scld_error result
= safe_create_leading_directories(buf
);
422 static void fill_loose_path(struct strbuf
*buf
, const struct object_id
*oid
)
425 for (i
= 0; i
< the_hash_algo
->rawsz
; i
++) {
426 static char hex
[] = "0123456789abcdef";
427 unsigned int val
= oid
->hash
[i
];
428 strbuf_addch(buf
, hex
[val
>> 4]);
429 strbuf_addch(buf
, hex
[val
& 0xf]);
431 strbuf_addch(buf
, '/');
435 static const char *odb_loose_path(struct object_directory
*odb
,
437 const struct object_id
*oid
)
440 strbuf_addstr(buf
, odb
->path
);
441 strbuf_addch(buf
, '/');
442 fill_loose_path(buf
, oid
);
446 const char *loose_object_path(struct repository
*r
, struct strbuf
*buf
,
447 const struct object_id
*oid
)
449 return odb_loose_path(r
->objects
->odb
, buf
, oid
);
453 * Return non-zero iff the path is usable as an alternate object database.
455 static int alt_odb_usable(struct raw_object_store
*o
,
457 const char *normalized_objdir
, khiter_t
*pos
)
461 /* Detect cases where alternate disappeared */
462 if (!is_directory(path
->buf
)) {
463 error(_("object directory %s does not exist; "
464 "check .git/objects/info/alternates"),
470 * Prevent the common mistake of listing the same
471 * thing twice, or object directory itself.
473 if (!o
->odb_by_path
) {
476 o
->odb_by_path
= kh_init_odb_path_map();
477 assert(!o
->odb
->next
);
478 p
= kh_put_odb_path_map(o
->odb_by_path
, o
->odb
->path
, &r
);
479 assert(r
== 1); /* never used */
480 kh_value(o
->odb_by_path
, p
) = o
->odb
;
482 if (fspatheq(path
->buf
, normalized_objdir
))
484 *pos
= kh_put_odb_path_map(o
->odb_by_path
, path
->buf
, &r
);
485 /* r: 0 = exists, 1 = never used, 2 = deleted */
486 return r
== 0 ? 0 : 1;
490 * Prepare alternate object database registry.
492 * The variable alt_odb_list points at the list of struct
493 * object_directory. The elements on this list come from
494 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
495 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
496 * whose contents is similar to that environment variable but can be
497 * LF separated. Its base points at a statically allocated buffer that
498 * contains "/the/directory/corresponding/to/.git/objects/...", while
499 * its name points just after the slash at the end of ".git/objects/"
500 * in the example above, and has enough space to hold all hex characters
501 * of the object ID, an extra slash for the first level indirection, and
502 * the terminating NUL.
504 static void read_info_alternates(struct repository
*r
,
505 const char *relative_base
,
507 static int link_alt_odb_entry(struct repository
*r
, const struct strbuf
*entry
,
508 const char *relative_base
, int depth
, const char *normalized_objdir
)
510 struct object_directory
*ent
;
511 struct strbuf pathbuf
= STRBUF_INIT
;
512 struct strbuf tmp
= STRBUF_INIT
;
516 if (!is_absolute_path(entry
->buf
) && relative_base
) {
517 strbuf_realpath(&pathbuf
, relative_base
, 1);
518 strbuf_addch(&pathbuf
, '/');
520 strbuf_addbuf(&pathbuf
, entry
);
522 if (!strbuf_realpath(&tmp
, pathbuf
.buf
, 0)) {
523 error(_("unable to normalize alternate object path: %s"),
527 strbuf_swap(&pathbuf
, &tmp
);
530 * The trailing slash after the directory name is given by
531 * this function at the end. Remove duplicates.
533 while (pathbuf
.len
&& pathbuf
.buf
[pathbuf
.len
- 1] == '/')
534 strbuf_setlen(&pathbuf
, pathbuf
.len
- 1);
536 if (!alt_odb_usable(r
->objects
, &pathbuf
, normalized_objdir
, &pos
))
539 CALLOC_ARRAY(ent
, 1);
540 /* pathbuf.buf is already in r->objects->odb_by_path */
541 ent
->path
= strbuf_detach(&pathbuf
, NULL
);
543 /* add the alternate entry */
544 *r
->objects
->odb_tail
= ent
;
545 r
->objects
->odb_tail
= &(ent
->next
);
547 assert(r
->objects
->odb_by_path
);
548 kh_value(r
->objects
->odb_by_path
, pos
) = ent
;
550 /* recursively add alternates */
551 read_info_alternates(r
, ent
->path
, depth
+ 1);
554 strbuf_release(&tmp
);
555 strbuf_release(&pathbuf
);
559 static const char *parse_alt_odb_entry(const char *string
,
567 if (*string
== '#') {
568 /* comment; consume up to next separator */
569 end
= strchrnul(string
, sep
);
570 } else if (*string
== '"' && !unquote_c_style(out
, string
, &end
)) {
572 * quoted path; unquote_c_style has copied the
573 * data for us and set "end". Broken quoting (e.g.,
574 * an entry that doesn't end with a quote) falls
575 * back to the unquoted case below.
578 /* normal, unquoted path */
579 end
= strchrnul(string
, sep
);
580 strbuf_add(out
, string
, end
- string
);
588 static void link_alt_odb_entries(struct repository
*r
, const char *alt
,
589 int sep
, const char *relative_base
, int depth
)
591 struct strbuf objdirbuf
= STRBUF_INIT
;
592 struct strbuf entry
= STRBUF_INIT
;
598 error(_("%s: ignoring alternate object stores, nesting too deep"),
603 strbuf_realpath(&objdirbuf
, r
->objects
->odb
->path
, 1);
606 alt
= parse_alt_odb_entry(alt
, sep
, &entry
);
609 link_alt_odb_entry(r
, &entry
,
610 relative_base
, depth
, objdirbuf
.buf
);
612 strbuf_release(&entry
);
613 strbuf_release(&objdirbuf
);
616 static void read_info_alternates(struct repository
*r
,
617 const char *relative_base
,
621 struct strbuf buf
= STRBUF_INIT
;
623 path
= xstrfmt("%s/info/alternates", relative_base
);
624 if (strbuf_read_file(&buf
, path
, 1024) < 0) {
625 warn_on_fopen_errors(path
);
630 link_alt_odb_entries(r
, buf
.buf
, '\n', relative_base
, depth
);
631 strbuf_release(&buf
);
635 void add_to_alternates_file(const char *reference
)
637 struct lock_file lock
= LOCK_INIT
;
638 char *alts
= git_pathdup("objects/info/alternates");
642 hold_lock_file_for_update(&lock
, alts
, LOCK_DIE_ON_ERROR
);
643 out
= fdopen_lock_file(&lock
, "w");
645 die_errno(_("unable to fdopen alternates lockfile"));
647 in
= fopen(alts
, "r");
649 struct strbuf line
= STRBUF_INIT
;
651 while (strbuf_getline(&line
, in
) != EOF
) {
652 if (!strcmp(reference
, line
.buf
)) {
656 fprintf_or_die(out
, "%s\n", line
.buf
);
659 strbuf_release(&line
);
662 else if (errno
!= ENOENT
)
663 die_errno(_("unable to read alternates file"));
666 rollback_lock_file(&lock
);
668 fprintf_or_die(out
, "%s\n", reference
);
669 if (commit_lock_file(&lock
))
670 die_errno(_("unable to move new alternates file into place"));
671 if (the_repository
->objects
->loaded_alternates
)
672 link_alt_odb_entries(the_repository
, reference
,
678 void add_to_alternates_memory(const char *reference
)
681 * Make sure alternates are initialized, or else our entry may be
682 * overwritten when they are.
684 prepare_alt_odb(the_repository
);
686 link_alt_odb_entries(the_repository
, reference
,
690 struct object_directory
*set_temporary_primary_odb(const char *dir
, int will_destroy
)
692 struct object_directory
*new_odb
;
695 * Make sure alternates are initialized, or else our entry may be
696 * overwritten when they are.
698 prepare_alt_odb(the_repository
);
701 * Make a new primary odb and link the old primary ODB in as an
704 new_odb
= xcalloc(1, sizeof(*new_odb
));
705 new_odb
->path
= xstrdup(dir
);
708 * Disable ref updates while a temporary odb is active, since
709 * the objects in the database may roll back.
711 new_odb
->disable_ref_updates
= 1;
712 new_odb
->will_destroy
= will_destroy
;
713 new_odb
->next
= the_repository
->objects
->odb
;
714 the_repository
->objects
->odb
= new_odb
;
715 return new_odb
->next
;
718 void restore_primary_odb(struct object_directory
*restore_odb
, const char *old_path
)
720 struct object_directory
*cur_odb
= the_repository
->objects
->odb
;
722 if (strcmp(old_path
, cur_odb
->path
))
723 BUG("expected %s as primary object store; found %s",
724 old_path
, cur_odb
->path
);
726 if (cur_odb
->next
!= restore_odb
)
727 BUG("we expect the old primary object store to be the first alternate");
729 the_repository
->objects
->odb
= restore_odb
;
730 free_object_directory(cur_odb
);
734 * Compute the exact path an alternate is at and returns it. In case of
735 * error NULL is returned and the human readable error is added to `err`
736 * `path` may be relative and should point to $GIT_DIR.
737 * `err` must not be null.
739 char *compute_alternate_path(const char *path
, struct strbuf
*err
)
741 char *ref_git
= NULL
;
745 ref_git
= real_pathdup(path
, 0);
748 strbuf_addf(err
, _("path '%s' does not exist"), path
);
752 repo
= read_gitfile(ref_git
);
754 repo
= read_gitfile(mkpath("%s/.git", ref_git
));
757 ref_git
= xstrdup(repo
);
760 if (!repo
&& is_directory(mkpath("%s/.git/objects", ref_git
))) {
761 char *ref_git_git
= mkpathdup("%s/.git", ref_git
);
763 ref_git
= ref_git_git
;
764 } else if (!is_directory(mkpath("%s/objects", ref_git
))) {
765 struct strbuf sb
= STRBUF_INIT
;
767 if (get_common_dir(&sb
, ref_git
)) {
769 _("reference repository '%s' as a linked "
770 "checkout is not supported yet."),
775 strbuf_addf(err
, _("reference repository '%s' is not a "
776 "local repository."), path
);
780 if (!access(mkpath("%s/shallow", ref_git
), F_OK
)) {
781 strbuf_addf(err
, _("reference repository '%s' is shallow"),
787 if (!access(mkpath("%s/info/grafts", ref_git
), F_OK
)) {
789 _("reference repository '%s' is grafted"),
797 FREE_AND_NULL(ref_git
);
803 struct object_directory
*find_odb(struct repository
*r
, const char *obj_dir
)
805 struct object_directory
*odb
;
806 char *obj_dir_real
= real_pathdup(obj_dir
, 1);
807 struct strbuf odb_path_real
= STRBUF_INIT
;
810 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
811 strbuf_realpath(&odb_path_real
, odb
->path
, 1);
812 if (!strcmp(obj_dir_real
, odb_path_real
.buf
))
817 strbuf_release(&odb_path_real
);
820 die(_("could not find object directory matching %s"), obj_dir
);
824 static void fill_alternate_refs_command(struct child_process
*cmd
,
825 const char *repo_path
)
829 if (!git_config_get_value("core.alternateRefsCommand", &value
)) {
832 strvec_push(&cmd
->args
, value
);
833 strvec_push(&cmd
->args
, repo_path
);
837 strvec_pushf(&cmd
->args
, "--git-dir=%s", repo_path
);
838 strvec_push(&cmd
->args
, "for-each-ref");
839 strvec_push(&cmd
->args
, "--format=%(objectname)");
841 if (!git_config_get_value("core.alternateRefsPrefixes", &value
)) {
842 strvec_push(&cmd
->args
, "--");
843 strvec_split(&cmd
->args
, value
);
847 strvec_pushv(&cmd
->env
, (const char **)local_repo_env
);
851 static void read_alternate_refs(const char *path
,
852 alternate_ref_fn
*cb
,
855 struct child_process cmd
= CHILD_PROCESS_INIT
;
856 struct strbuf line
= STRBUF_INIT
;
859 fill_alternate_refs_command(&cmd
, path
);
861 if (start_command(&cmd
))
864 fh
= xfdopen(cmd
.out
, "r");
865 while (strbuf_getline_lf(&line
, fh
) != EOF
) {
866 struct object_id oid
;
869 if (parse_oid_hex(line
.buf
, &oid
, &p
) || *p
) {
870 warning(_("invalid line while parsing alternate refs: %s"),
879 finish_command(&cmd
);
880 strbuf_release(&line
);
883 struct alternate_refs_data
{
884 alternate_ref_fn
*fn
;
888 static int refs_from_alternate_cb(struct object_directory
*e
,
891 struct strbuf path
= STRBUF_INIT
;
893 struct alternate_refs_data
*cb
= data
;
895 if (!strbuf_realpath(&path
, e
->path
, 0))
897 if (!strbuf_strip_suffix(&path
, "/objects"))
901 /* Is this a git repository with refs? */
902 strbuf_addstr(&path
, "/refs");
903 if (!is_directory(path
.buf
))
905 strbuf_setlen(&path
, base_len
);
907 read_alternate_refs(path
.buf
, cb
->fn
, cb
->data
);
910 strbuf_release(&path
);
914 void for_each_alternate_ref(alternate_ref_fn fn
, void *data
)
916 struct alternate_refs_data cb
;
919 foreach_alt_odb(refs_from_alternate_cb
, &cb
);
922 int foreach_alt_odb(alt_odb_fn fn
, void *cb
)
924 struct object_directory
*ent
;
927 prepare_alt_odb(the_repository
);
928 for (ent
= the_repository
->objects
->odb
->next
; ent
; ent
= ent
->next
) {
936 void prepare_alt_odb(struct repository
*r
)
938 if (r
->objects
->loaded_alternates
)
941 link_alt_odb_entries(r
, r
->objects
->alternate_db
, PATH_SEP
, NULL
, 0);
943 read_info_alternates(r
, r
->objects
->odb
->path
, 0);
944 r
->objects
->loaded_alternates
= 1;
947 int has_alt_odb(struct repository
*r
)
950 return !!r
->objects
->odb
->next
;
953 /* Returns 1 if we have successfully freshened the file, 0 otherwise. */
954 static int freshen_file(const char *fn
)
956 return !utime(fn
, NULL
);
960 * All of the check_and_freshen functions return 1 if the file exists and was
961 * freshened (if freshening was requested), 0 otherwise. If they return
962 * 0, you should not assume that it is safe to skip a write of the object (it
963 * either does not exist on disk, or has a stale mtime and may be subject to
966 int check_and_freshen_file(const char *fn
, int freshen
)
968 if (access(fn
, F_OK
))
970 if (freshen
&& !freshen_file(fn
))
975 static int check_and_freshen_odb(struct object_directory
*odb
,
976 const struct object_id
*oid
,
979 static struct strbuf path
= STRBUF_INIT
;
980 odb_loose_path(odb
, &path
, oid
);
981 return check_and_freshen_file(path
.buf
, freshen
);
984 static int check_and_freshen_local(const struct object_id
*oid
, int freshen
)
986 return check_and_freshen_odb(the_repository
->objects
->odb
, oid
, freshen
);
989 static int check_and_freshen_nonlocal(const struct object_id
*oid
, int freshen
)
991 struct object_directory
*odb
;
993 prepare_alt_odb(the_repository
);
994 for (odb
= the_repository
->objects
->odb
->next
; odb
; odb
= odb
->next
) {
995 if (check_and_freshen_odb(odb
, oid
, freshen
))
1001 static int check_and_freshen(const struct object_id
*oid
, int freshen
)
1003 return check_and_freshen_local(oid
, freshen
) ||
1004 check_and_freshen_nonlocal(oid
, freshen
);
1007 int has_loose_object_nonlocal(const struct object_id
*oid
)
1009 return check_and_freshen_nonlocal(oid
, 0);
1012 int has_loose_object(const struct object_id
*oid
)
1014 return check_and_freshen(oid
, 0);
1017 static void mmap_limit_check(size_t length
)
1019 static size_t limit
= 0;
1021 limit
= git_env_ulong("GIT_MMAP_LIMIT", 0);
1026 die(_("attempting to mmap %"PRIuMAX
" over limit %"PRIuMAX
),
1027 (uintmax_t)length
, (uintmax_t)limit
);
1030 void *xmmap_gently(void *start
, size_t length
,
1031 int prot
, int flags
, int fd
, off_t offset
)
1035 mmap_limit_check(length
);
1036 ret
= mmap(start
, length
, prot
, flags
, fd
, offset
);
1037 if (ret
== MAP_FAILED
&& !length
)
1042 const char *mmap_os_err(void)
1044 static const char blank
[] = "";
1045 #if defined(__linux__)
1046 if (errno
== ENOMEM
) {
1047 /* this continues an existing error message: */
1048 static const char enomem
[] =
1049 ", check sys.vm.max_map_count and/or RLIMIT_DATA";
1052 #endif /* OS-specific bits */
1056 void *xmmap(void *start
, size_t length
,
1057 int prot
, int flags
, int fd
, off_t offset
)
1059 void *ret
= xmmap_gently(start
, length
, prot
, flags
, fd
, offset
);
1060 if (ret
== MAP_FAILED
)
1061 die_errno(_("mmap failed%s"), mmap_os_err());
1065 static int format_object_header_literally(char *str
, size_t size
,
1066 const char *type
, size_t objsize
)
1068 return xsnprintf(str
, size
, "%s %"PRIuMAX
, type
, (uintmax_t)objsize
) + 1;
1071 int format_object_header(char *str
, size_t size
, enum object_type type
,
1074 const char *name
= type_name(type
);
1077 BUG("could not get a type name for 'enum object_type' value %d", type
);
1079 return format_object_header_literally(str
, size
, name
, objsize
);
1082 int check_object_signature(struct repository
*r
, const struct object_id
*oid
,
1083 void *buf
, unsigned long size
,
1084 enum object_type type
)
1086 const struct git_hash_algo
*algo
=
1087 oid
->algo
? &hash_algos
[oid
->algo
] : r
->hash_algo
;
1088 struct object_id real_oid
;
1090 hash_object_file(algo
, buf
, size
, type
, &real_oid
);
1092 return !oideq(oid
, &real_oid
) ? -1 : 0;
1095 int stream_object_signature(struct repository
*r
, const struct object_id
*oid
)
1097 struct object_id real_oid
;
1099 enum object_type obj_type
;
1100 struct git_istream
*st
;
1102 char hdr
[MAX_HEADER_LEN
];
1105 st
= open_istream(r
, oid
, &obj_type
, &size
, NULL
);
1109 /* Generate the header */
1110 hdrlen
= format_object_header(hdr
, sizeof(hdr
), obj_type
, size
);
1113 r
->hash_algo
->init_fn(&c
);
1114 r
->hash_algo
->update_fn(&c
, hdr
, hdrlen
);
1116 char buf
[1024 * 16];
1117 ssize_t readlen
= read_istream(st
, buf
, sizeof(buf
));
1125 r
->hash_algo
->update_fn(&c
, buf
, readlen
);
1127 r
->hash_algo
->final_oid_fn(&real_oid
, &c
);
1129 return !oideq(oid
, &real_oid
) ? -1 : 0;
1132 int git_open_cloexec(const char *name
, int flags
)
1135 static int o_cloexec
= O_CLOEXEC
;
1137 fd
= open(name
, flags
| o_cloexec
);
1138 if ((o_cloexec
& O_CLOEXEC
) && fd
< 0 && errno
== EINVAL
) {
1139 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1140 o_cloexec
&= ~O_CLOEXEC
;
1141 fd
= open(name
, flags
| o_cloexec
);
1144 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1146 static int fd_cloexec
= FD_CLOEXEC
;
1148 if (!o_cloexec
&& 0 <= fd
&& fd_cloexec
) {
1149 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
1150 int flags
= fcntl(fd
, F_GETFD
);
1151 if (fcntl(fd
, F_SETFD
, flags
| fd_cloexec
))
1160 * Find "oid" as a loose object in the local repository or in an alternate.
1161 * Returns 0 on success, negative on failure.
1163 * The "path" out-parameter will give the path of the object we found (if any).
1164 * Note that it may point to static storage and is only valid until another
1165 * call to stat_loose_object().
1167 static int stat_loose_object(struct repository
*r
, const struct object_id
*oid
,
1168 struct stat
*st
, const char **path
)
1170 struct object_directory
*odb
;
1171 static struct strbuf buf
= STRBUF_INIT
;
1174 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
1175 *path
= odb_loose_path(odb
, &buf
, oid
);
1176 if (!lstat(*path
, st
))
1184 * Like stat_loose_object(), but actually open the object and return the
1185 * descriptor. See the caveats on the "path" parameter above.
1187 static int open_loose_object(struct repository
*r
,
1188 const struct object_id
*oid
, const char **path
)
1191 struct object_directory
*odb
;
1192 int most_interesting_errno
= ENOENT
;
1193 static struct strbuf buf
= STRBUF_INIT
;
1196 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
1197 *path
= odb_loose_path(odb
, &buf
, oid
);
1198 fd
= git_open(*path
);
1202 if (most_interesting_errno
== ENOENT
)
1203 most_interesting_errno
= errno
;
1205 errno
= most_interesting_errno
;
1209 static int quick_has_loose(struct repository
*r
,
1210 const struct object_id
*oid
)
1212 struct object_directory
*odb
;
1215 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
1216 if (oidtree_contains(odb_loose_cache(odb
, oid
), oid
))
1223 * Map and close the given loose object fd. The path argument is used for
1226 static void *map_fd(int fd
, const char *path
, unsigned long *size
)
1231 if (!fstat(fd
, &st
)) {
1232 *size
= xsize_t(st
.st_size
);
1234 /* mmap() is forbidden on empty files */
1235 error(_("object file %s is empty"), path
);
1239 map
= xmmap(NULL
, *size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1245 void *map_loose_object(struct repository
*r
,
1246 const struct object_id
*oid
,
1247 unsigned long *size
)
1250 int fd
= open_loose_object(r
, oid
, &p
);
1254 return map_fd(fd
, p
, size
);
1257 enum unpack_loose_header_result
unpack_loose_header(git_zstream
*stream
,
1259 unsigned long mapsize
,
1261 unsigned long bufsiz
,
1262 struct strbuf
*header
)
1266 /* Get the data stream */
1267 memset(stream
, 0, sizeof(*stream
));
1268 stream
->next_in
= map
;
1269 stream
->avail_in
= mapsize
;
1270 stream
->next_out
= buffer
;
1271 stream
->avail_out
= bufsiz
;
1273 git_inflate_init(stream
);
1275 status
= git_inflate(stream
, 0);
1281 * Check if entire header is unpacked in the first iteration.
1283 if (memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
1287 * We have a header longer than MAX_HEADER_LEN. The "header"
1288 * here is only non-NULL when we run "cat-file
1289 * --allow-unknown-type".
1292 return ULHR_TOO_LONG
;
1295 * buffer[0..bufsiz] was not large enough. Copy the partial
1296 * result out to header, and then append the result of further
1297 * reading the stream.
1299 strbuf_add(header
, buffer
, stream
->next_out
- (unsigned char *)buffer
);
1300 stream
->next_out
= buffer
;
1301 stream
->avail_out
= bufsiz
;
1305 status
= git_inflate(stream
, 0);
1307 strbuf_add(header
, buffer
, stream
->next_out
- (unsigned char *)buffer
);
1308 if (memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
1310 stream
->next_out
= buffer
;
1311 stream
->avail_out
= bufsiz
;
1312 } while (status
!= Z_STREAM_END
);
1313 return ULHR_TOO_LONG
;
1316 static void *unpack_loose_rest(git_zstream
*stream
,
1317 void *buffer
, unsigned long size
,
1318 const struct object_id
*oid
)
1320 int bytes
= strlen(buffer
) + 1;
1321 unsigned char *buf
= xmallocz(size
);
1325 n
= stream
->total_out
- bytes
;
1328 memcpy(buf
, (char *) buffer
+ bytes
, n
);
1330 if (bytes
<= size
) {
1332 * The above condition must be (bytes <= size), not
1333 * (bytes < size). In other words, even though we
1334 * expect no more output and set avail_out to zero,
1335 * the input zlib stream may have bytes that express
1336 * "this concludes the stream", and we *do* want to
1339 * Otherwise we would not be able to test that we
1340 * consumed all the input to reach the expected size;
1341 * we also want to check that zlib tells us that all
1342 * went well with status == Z_STREAM_END at the end.
1344 stream
->next_out
= buf
+ bytes
;
1345 stream
->avail_out
= size
- bytes
;
1346 while (status
== Z_OK
) {
1348 status
= git_inflate(stream
, Z_FINISH
);
1352 if (status
== Z_STREAM_END
&& !stream
->avail_in
) {
1353 git_inflate_end(stream
);
1358 error(_("corrupt loose object '%s'"), oid_to_hex(oid
));
1359 else if (stream
->avail_in
)
1360 error(_("garbage at end of loose object '%s'"),
1367 * We used to just use "sscanf()", but that's actually way
1368 * too permissive for what we want to check. So do an anal
1369 * object header parse by hand.
1371 int parse_loose_header(const char *hdr
, struct object_info
*oi
)
1373 const char *type_buf
= hdr
;
1375 int type
, type_len
= 0;
1378 * The type can be of any size but is followed by
1390 type
= type_from_string_gently(type_buf
, type_len
, 1);
1392 strbuf_add(oi
->type_name
, type_buf
, type_len
);
1397 * The length must follow immediately, and be in canonical
1398 * decimal format (ie "010" is not valid).
1400 size
= *hdr
++ - '0';
1405 unsigned long c
= *hdr
- '0';
1409 size
= st_add(st_mult(size
, 10), c
);
1414 *oi
->sizep
= cast_size_t_to_ulong(size
);
1417 * The length must be followed by a zero byte
1423 * The format is valid, but the type may still be bogus. The
1424 * Caller needs to check its oi->typep.
1429 static int loose_object_info(struct repository
*r
,
1430 const struct object_id
*oid
,
1431 struct object_info
*oi
, int flags
)
1435 unsigned long mapsize
;
1439 char hdr
[MAX_HEADER_LEN
];
1440 struct strbuf hdrbuf
= STRBUF_INIT
;
1441 unsigned long size_scratch
;
1442 enum object_type type_scratch
;
1443 int allow_unknown
= flags
& OBJECT_INFO_ALLOW_UNKNOWN_TYPE
;
1445 if (oi
->delta_base_oid
)
1446 oidclr(oi
->delta_base_oid
, the_repository
->hash_algo
);
1449 * If we don't care about type or size, then we don't
1450 * need to look inside the object at all. Note that we
1451 * do not optimize out the stat call, even if the
1452 * caller doesn't care about the disk-size, since our
1453 * return value implicitly indicates whether the
1454 * object even exists.
1456 if (!oi
->typep
&& !oi
->type_name
&& !oi
->sizep
&& !oi
->contentp
) {
1458 if (!oi
->disk_sizep
&& (flags
& OBJECT_INFO_QUICK
))
1459 return quick_has_loose(r
, oid
) ? 0 : -1;
1460 if (stat_loose_object(r
, oid
, &st
, &path
) < 0)
1463 *oi
->disk_sizep
= st
.st_size
;
1467 fd
= open_loose_object(r
, oid
, &path
);
1469 if (errno
!= ENOENT
)
1470 error_errno(_("unable to open loose object %s"), oid_to_hex(oid
));
1473 map
= map_fd(fd
, path
, &mapsize
);
1478 oi
->sizep
= &size_scratch
;
1480 oi
->typep
= &type_scratch
;
1483 *oi
->disk_sizep
= mapsize
;
1485 switch (unpack_loose_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
),
1486 allow_unknown
? &hdrbuf
: NULL
)) {
1488 if (parse_loose_header(hdrbuf
.len
? hdrbuf
.buf
: hdr
, oi
) < 0)
1489 status
= error(_("unable to parse %s header"), oid_to_hex(oid
));
1490 else if (!allow_unknown
&& *oi
->typep
< 0)
1491 die(_("invalid object type"));
1495 *oi
->contentp
= unpack_loose_rest(&stream
, hdr
, *oi
->sizep
, oid
);
1502 status
= error(_("unable to unpack %s header"),
1506 status
= error(_("header for %s too long, exceeds %d bytes"),
1507 oid_to_hex(oid
), MAX_HEADER_LEN
);
1511 if (status
&& (flags
& OBJECT_INFO_DIE_IF_CORRUPT
))
1512 die(_("loose object %s (stored in %s) is corrupt"),
1513 oid_to_hex(oid
), path
);
1515 git_inflate_end(&stream
);
1517 munmap(map
, mapsize
);
1518 if (oi
->sizep
== &size_scratch
)
1520 strbuf_release(&hdrbuf
);
1521 if (oi
->typep
== &type_scratch
)
1523 oi
->whence
= OI_LOOSE
;
1527 int obj_read_use_lock
= 0;
1528 pthread_mutex_t obj_read_mutex
;
1530 void enable_obj_read_lock(void)
1532 if (obj_read_use_lock
)
1535 obj_read_use_lock
= 1;
1536 init_recursive_mutex(&obj_read_mutex
);
1539 void disable_obj_read_lock(void)
1541 if (!obj_read_use_lock
)
1544 obj_read_use_lock
= 0;
1545 pthread_mutex_destroy(&obj_read_mutex
);
1548 int fetch_if_missing
= 1;
1550 static int do_oid_object_info_extended(struct repository
*r
,
1551 const struct object_id
*oid
,
1552 struct object_info
*oi
, unsigned flags
)
1554 static struct object_info blank_oi
= OBJECT_INFO_INIT
;
1555 struct cached_object
*co
;
1556 struct pack_entry e
;
1558 const struct object_id
*real
= oid
;
1559 int already_retried
= 0;
1562 if (flags
& OBJECT_INFO_LOOKUP_REPLACE
)
1563 real
= lookup_replace_object(r
, oid
);
1565 if (is_null_oid(real
))
1571 co
= find_cached_object(real
);
1574 *(oi
->typep
) = co
->type
;
1576 *(oi
->sizep
) = co
->size
;
1578 *(oi
->disk_sizep
) = 0;
1579 if (oi
->delta_base_oid
)
1580 oidclr(oi
->delta_base_oid
, the_repository
->hash_algo
);
1582 strbuf_addstr(oi
->type_name
, type_name(co
->type
));
1584 *oi
->contentp
= xmemdupz(co
->buf
, co
->size
);
1585 oi
->whence
= OI_CACHED
;
1590 if (find_pack_entry(r
, real
, &e
))
1593 /* Most likely it's a loose object. */
1594 if (!loose_object_info(r
, real
, oi
, flags
))
1597 /* Not a loose object; someone else may have just packed it. */
1598 if (!(flags
& OBJECT_INFO_QUICK
)) {
1599 reprepare_packed_git(r
);
1600 if (find_pack_entry(r
, real
, &e
))
1605 * If r is the_repository, this might be an attempt at
1606 * accessing a submodule object as if it were in the_repository
1607 * (having called add_submodule_odb() on that submodule's ODB).
1608 * If any such ODBs exist, register them and try again.
1610 if (r
== the_repository
&&
1611 register_all_submodule_odb_as_alternates())
1612 /* We added some alternates; retry */
1615 /* Check if it is a missing object */
1616 if (fetch_if_missing
&& repo_has_promisor_remote(r
) &&
1618 !(flags
& OBJECT_INFO_SKIP_FETCH_OBJECT
)) {
1619 promisor_remote_get_direct(r
, real
, 1);
1620 already_retried
= 1;
1624 if (flags
& OBJECT_INFO_DIE_IF_CORRUPT
) {
1625 const struct packed_git
*p
;
1626 if ((flags
& OBJECT_INFO_LOOKUP_REPLACE
) && !oideq(real
, oid
))
1627 die(_("replacement %s not found for %s"),
1628 oid_to_hex(real
), oid_to_hex(oid
));
1629 if ((p
= has_packed_and_bad(r
, real
)))
1630 die(_("packed object %s (stored in %s) is corrupt"),
1631 oid_to_hex(real
), p
->pack_name
);
1636 if (oi
== &blank_oi
)
1638 * We know that the caller doesn't actually need the
1639 * information below, so return early.
1642 rtype
= packed_object_info(r
, e
.p
, e
.offset
, oi
);
1644 mark_bad_packed_object(e
.p
, real
);
1645 return do_oid_object_info_extended(r
, real
, oi
, 0);
1646 } else if (oi
->whence
== OI_PACKED
) {
1647 oi
->u
.packed
.offset
= e
.offset
;
1648 oi
->u
.packed
.pack
= e
.p
;
1649 oi
->u
.packed
.is_delta
= (rtype
== OBJ_REF_DELTA
||
1650 rtype
== OBJ_OFS_DELTA
);
1656 static int oid_object_info_convert(struct repository
*r
,
1657 const struct object_id
*input_oid
,
1658 struct object_info
*input_oi
, unsigned flags
)
1660 const struct git_hash_algo
*input_algo
= &hash_algos
[input_oid
->algo
];
1661 int do_die
= flags
& OBJECT_INFO_DIE_IF_CORRUPT
;
1662 struct strbuf type_name
= STRBUF_INIT
;
1663 struct object_id oid
, delta_base_oid
;
1664 struct object_info new_oi
, *oi
;
1669 if (repo_oid_to_algop(r
, input_oid
, the_hash_algo
, &oid
)) {
1671 die(_("missing mapping of %s to %s"),
1672 oid_to_hex(input_oid
), the_hash_algo
->name
);
1676 /* Is new_oi needed? */
1678 if (input_oi
&& (input_oi
->delta_base_oid
|| input_oi
->sizep
||
1679 input_oi
->contentp
)) {
1681 /* Does delta_base_oid need to be converted? */
1682 if (input_oi
->delta_base_oid
)
1683 new_oi
.delta_base_oid
= &delta_base_oid
;
1684 /* Will the attributes differ when converted? */
1685 if (input_oi
->sizep
|| input_oi
->contentp
) {
1686 new_oi
.contentp
= &content
;
1687 new_oi
.sizep
= &size
;
1688 new_oi
.type_name
= &type_name
;
1693 ret
= oid_object_info_extended(r
, &oid
, oi
, flags
);
1699 if (new_oi
.contentp
) {
1700 struct strbuf outbuf
= STRBUF_INIT
;
1701 enum object_type type
;
1703 type
= type_from_string_gently(type_name
.buf
, type_name
.len
,
1707 if (type
!= OBJ_BLOB
) {
1708 ret
= convert_object_file(&outbuf
,
1709 the_hash_algo
, input_algo
,
1710 content
, size
, type
, !do_die
);
1715 content
= strbuf_detach(&outbuf
, NULL
);
1717 if (input_oi
->sizep
)
1718 *input_oi
->sizep
= size
;
1719 if (input_oi
->contentp
)
1720 *input_oi
->contentp
= content
;
1723 if (input_oi
->type_name
)
1724 *input_oi
->type_name
= type_name
;
1726 strbuf_release(&type_name
);
1728 if (new_oi
.delta_base_oid
== &delta_base_oid
) {
1729 if (repo_oid_to_algop(r
, &delta_base_oid
, input_algo
,
1730 input_oi
->delta_base_oid
)) {
1732 die(_("missing mapping of %s to %s"),
1733 oid_to_hex(&delta_base_oid
),
1738 input_oi
->whence
= new_oi
.whence
;
1739 input_oi
->u
= new_oi
.u
;
1743 int oid_object_info_extended(struct repository
*r
, const struct object_id
*oid
,
1744 struct object_info
*oi
, unsigned flags
)
1748 if (oid
->algo
&& (hash_algo_by_ptr(r
->hash_algo
) != oid
->algo
))
1749 return oid_object_info_convert(r
, oid
, oi
, flags
);
1752 ret
= do_oid_object_info_extended(r
, oid
, oi
, flags
);
1758 /* returns enum object_type or negative */
1759 int oid_object_info(struct repository
*r
,
1760 const struct object_id
*oid
,
1761 unsigned long *sizep
)
1763 enum object_type type
;
1764 struct object_info oi
= OBJECT_INFO_INIT
;
1768 if (oid_object_info_extended(r
, oid
, &oi
,
1769 OBJECT_INFO_LOOKUP_REPLACE
) < 0)
1774 int pretend_object_file(void *buf
, unsigned long len
, enum object_type type
,
1775 struct object_id
*oid
)
1777 struct cached_object
*co
;
1780 hash_object_file(the_hash_algo
, buf
, len
, type
, oid
);
1781 if (repo_has_object_file_with_flags(the_repository
, oid
, OBJECT_INFO_QUICK
| OBJECT_INFO_SKIP_FETCH_OBJECT
) ||
1782 find_cached_object(oid
))
1784 ALLOC_GROW(cached_objects
, cached_object_nr
+ 1, cached_object_alloc
);
1785 co
= &cached_objects
[cached_object_nr
++];
1788 co_buf
= xmalloc(len
);
1789 memcpy(co_buf
, buf
, len
);
1791 oidcpy(&co
->oid
, oid
);
1796 * This function dies on corrupt objects; the callers who want to
1797 * deal with them should arrange to call oid_object_info_extended() and give
1798 * error messages themselves.
1800 void *repo_read_object_file(struct repository
*r
,
1801 const struct object_id
*oid
,
1802 enum object_type
*type
,
1803 unsigned long *size
)
1805 struct object_info oi
= OBJECT_INFO_INIT
;
1806 unsigned flags
= OBJECT_INFO_DIE_IF_CORRUPT
| OBJECT_INFO_LOOKUP_REPLACE
;
1811 oi
.contentp
= &data
;
1812 if (oid_object_info_extended(r
, oid
, &oi
, flags
))
1818 void *read_object_with_reference(struct repository
*r
,
1819 const struct object_id
*oid
,
1820 enum object_type required_type
,
1821 unsigned long *size
,
1822 struct object_id
*actual_oid_return
)
1824 enum object_type type
;
1826 unsigned long isize
;
1827 struct object_id actual_oid
;
1829 oidcpy(&actual_oid
, oid
);
1831 int ref_length
= -1;
1832 const char *ref_type
= NULL
;
1834 buffer
= repo_read_object_file(r
, &actual_oid
, &type
, &isize
);
1837 if (type
== required_type
) {
1839 if (actual_oid_return
)
1840 oidcpy(actual_oid_return
, &actual_oid
);
1843 /* Handle references */
1844 else if (type
== OBJ_COMMIT
)
1846 else if (type
== OBJ_TAG
)
1847 ref_type
= "object ";
1852 ref_length
= strlen(ref_type
);
1854 if (ref_length
+ the_hash_algo
->hexsz
> isize
||
1855 memcmp(buffer
, ref_type
, ref_length
) ||
1856 get_oid_hex((char *) buffer
+ ref_length
, &actual_oid
)) {
1861 /* Now we have the ID of the referred-to object in
1862 * actual_oid. Check again. */
1866 static void hash_object_body(const struct git_hash_algo
*algo
, git_hash_ctx
*c
,
1867 const void *buf
, unsigned long len
,
1868 struct object_id
*oid
,
1869 char *hdr
, int *hdrlen
)
1872 algo
->update_fn(c
, hdr
, *hdrlen
);
1873 algo
->update_fn(c
, buf
, len
);
1874 algo
->final_oid_fn(oid
, c
);
1877 static void write_object_file_prepare(const struct git_hash_algo
*algo
,
1878 const void *buf
, unsigned long len
,
1879 enum object_type type
, struct object_id
*oid
,
1880 char *hdr
, int *hdrlen
)
1884 /* Generate the header */
1885 *hdrlen
= format_object_header(hdr
, *hdrlen
, type
, len
);
1888 hash_object_body(algo
, &c
, buf
, len
, oid
, hdr
, hdrlen
);
1891 static void write_object_file_prepare_literally(const struct git_hash_algo
*algo
,
1892 const void *buf
, unsigned long len
,
1893 const char *type
, struct object_id
*oid
,
1894 char *hdr
, int *hdrlen
)
1898 *hdrlen
= format_object_header_literally(hdr
, *hdrlen
, type
, len
);
1899 hash_object_body(algo
, &c
, buf
, len
, oid
, hdr
, hdrlen
);
1903 * Move the just written object into its final resting place.
1905 int finalize_object_file(const char *tmpfile
, const char *filename
)
1909 if (object_creation_mode
== OBJECT_CREATION_USES_RENAMES
)
1911 else if (link(tmpfile
, filename
))
1915 * Coda hack - coda doesn't like cross-directory links,
1916 * so we fall back to a rename, which will mean that it
1917 * won't be able to check collisions, but that's not a
1920 * The same holds for FAT formatted media.
1922 * When this succeeds, we just return. We have nothing
1925 if (ret
&& ret
!= EEXIST
) {
1927 if (!rename(tmpfile
, filename
))
1931 unlink_or_warn(tmpfile
);
1933 if (ret
!= EEXIST
) {
1934 return error_errno(_("unable to write file %s"), filename
);
1936 /* FIXME!!! Collision check here ? */
1940 if (adjust_shared_perm(filename
))
1941 return error(_("unable to set permission to '%s'"), filename
);
1945 static void hash_object_file_literally(const struct git_hash_algo
*algo
,
1946 const void *buf
, unsigned long len
,
1947 const char *type
, struct object_id
*oid
)
1949 char hdr
[MAX_HEADER_LEN
];
1950 int hdrlen
= sizeof(hdr
);
1952 write_object_file_prepare_literally(algo
, buf
, len
, type
, oid
, hdr
, &hdrlen
);
1955 void hash_object_file(const struct git_hash_algo
*algo
, const void *buf
,
1956 unsigned long len
, enum object_type type
,
1957 struct object_id
*oid
)
1959 hash_object_file_literally(algo
, buf
, len
, type_name(type
), oid
);
1962 /* Finalize a file on disk, and close it. */
1963 static void close_loose_object(int fd
, const char *filename
)
1965 if (the_repository
->objects
->odb
->will_destroy
)
1968 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT
))
1969 fsync_loose_object_bulk_checkin(fd
, filename
);
1970 else if (fsync_object_files
> 0)
1971 fsync_or_die(fd
, filename
);
1973 fsync_component_or_die(FSYNC_COMPONENT_LOOSE_OBJECT
, fd
,
1978 die_errno(_("error when closing loose object file"));
1981 /* Size of directory component, including the ending '/' */
1982 static inline int directory_size(const char *filename
)
1984 const char *s
= strrchr(filename
, '/');
1987 return s
- filename
+ 1;
1991 * This creates a temporary file in the same directory as the final
1994 * We want to avoid cross-directory filename renames, because those
1995 * can have problems on various filesystems (FAT, NFS, Coda).
1997 static int create_tmpfile(struct strbuf
*tmp
, const char *filename
)
1999 int fd
, dirlen
= directory_size(filename
);
2002 strbuf_add(tmp
, filename
, dirlen
);
2003 strbuf_addstr(tmp
, "tmp_obj_XXXXXX");
2004 fd
= git_mkstemp_mode(tmp
->buf
, 0444);
2005 if (fd
< 0 && dirlen
&& errno
== ENOENT
) {
2007 * Make sure the directory exists; note that the contents
2008 * of the buffer are undefined after mkstemp returns an
2009 * error, so we have to rewrite the whole buffer from
2013 strbuf_add(tmp
, filename
, dirlen
- 1);
2014 if (mkdir(tmp
->buf
, 0777) && errno
!= EEXIST
)
2016 if (adjust_shared_perm(tmp
->buf
))
2020 strbuf_addstr(tmp
, "/tmp_obj_XXXXXX");
2021 fd
= git_mkstemp_mode(tmp
->buf
, 0444);
2027 * Common steps for loose object writers to start writing loose
2030 * - Create tmpfile for the loose object.
2031 * - Setup zlib stream for compression.
2032 * - Start to feed header to zlib stream.
2034 * Returns a "fd", which should later be provided to
2035 * end_loose_object_common().
2037 static int start_loose_object_common(struct strbuf
*tmp_file
,
2038 const char *filename
, unsigned flags
,
2039 git_zstream
*stream
,
2040 unsigned char *buf
, size_t buflen
,
2041 git_hash_ctx
*c
, git_hash_ctx
*compat_c
,
2042 char *hdr
, int hdrlen
)
2044 struct repository
*repo
= the_repository
;
2045 const struct git_hash_algo
*algo
= repo
->hash_algo
;
2046 const struct git_hash_algo
*compat
= repo
->compat_hash_algo
;
2049 fd
= create_tmpfile(tmp_file
, filename
);
2051 if (flags
& HASH_SILENT
)
2053 else if (errno
== EACCES
)
2054 return error(_("insufficient permission for adding "
2055 "an object to repository database %s"),
2056 get_object_directory());
2059 _("unable to create temporary file"));
2062 /* Setup zlib stream for compression */
2063 git_deflate_init(stream
, zlib_compression_level
);
2064 stream
->next_out
= buf
;
2065 stream
->avail_out
= buflen
;
2067 if (compat
&& compat_c
)
2068 compat
->init_fn(compat_c
);
2070 /* Start to feed header to zlib stream */
2071 stream
->next_in
= (unsigned char *)hdr
;
2072 stream
->avail_in
= hdrlen
;
2073 while (git_deflate(stream
, 0) == Z_OK
)
2075 algo
->update_fn(c
, hdr
, hdrlen
);
2076 if (compat
&& compat_c
)
2077 compat
->update_fn(compat_c
, hdr
, hdrlen
);
2083 * Common steps for the inner git_deflate() loop for writing loose
2084 * objects. Returns what git_deflate() returns.
2086 static int write_loose_object_common(git_hash_ctx
*c
, git_hash_ctx
*compat_c
,
2087 git_zstream
*stream
, const int flush
,
2088 unsigned char *in0
, const int fd
,
2089 unsigned char *compressed
,
2090 const size_t compressed_len
)
2092 struct repository
*repo
= the_repository
;
2093 const struct git_hash_algo
*algo
= repo
->hash_algo
;
2094 const struct git_hash_algo
*compat
= repo
->compat_hash_algo
;
2097 ret
= git_deflate(stream
, flush
? Z_FINISH
: 0);
2098 algo
->update_fn(c
, in0
, stream
->next_in
- in0
);
2099 if (compat
&& compat_c
)
2100 compat
->update_fn(compat_c
, in0
, stream
->next_in
- in0
);
2101 if (write_in_full(fd
, compressed
, stream
->next_out
- compressed
) < 0)
2102 die_errno(_("unable to write loose object file"));
2103 stream
->next_out
= compressed
;
2104 stream
->avail_out
= compressed_len
;
2110 * Common steps for loose object writers to end writing loose objects:
2112 * - End the compression of zlib stream.
2113 * - Get the calculated oid to "oid".
2115 static int end_loose_object_common(git_hash_ctx
*c
, git_hash_ctx
*compat_c
,
2116 git_zstream
*stream
, struct object_id
*oid
,
2117 struct object_id
*compat_oid
)
2119 struct repository
*repo
= the_repository
;
2120 const struct git_hash_algo
*algo
= repo
->hash_algo
;
2121 const struct git_hash_algo
*compat
= repo
->compat_hash_algo
;
2124 ret
= git_deflate_end_gently(stream
);
2127 algo
->final_oid_fn(oid
, c
);
2128 if (compat
&& compat_c
)
2129 compat
->final_oid_fn(compat_oid
, compat_c
);
2134 static int write_loose_object(const struct object_id
*oid
, char *hdr
,
2135 int hdrlen
, const void *buf
, unsigned long len
,
2136 time_t mtime
, unsigned flags
)
2139 unsigned char compressed
[4096];
2142 struct object_id parano_oid
;
2143 static struct strbuf tmp_file
= STRBUF_INIT
;
2144 static struct strbuf filename
= STRBUF_INIT
;
2146 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT
))
2147 prepare_loose_object_bulk_checkin();
2149 loose_object_path(the_repository
, &filename
, oid
);
2151 fd
= start_loose_object_common(&tmp_file
, filename
.buf
, flags
,
2152 &stream
, compressed
, sizeof(compressed
),
2153 &c
, NULL
, hdr
, hdrlen
);
2157 /* Then the data itself.. */
2158 stream
.next_in
= (void *)buf
;
2159 stream
.avail_in
= len
;
2161 unsigned char *in0
= stream
.next_in
;
2163 ret
= write_loose_object_common(&c
, NULL
, &stream
, 1, in0
, fd
,
2164 compressed
, sizeof(compressed
));
2165 } while (ret
== Z_OK
);
2167 if (ret
!= Z_STREAM_END
)
2168 die(_("unable to deflate new object %s (%d)"), oid_to_hex(oid
),
2170 ret
= end_loose_object_common(&c
, NULL
, &stream
, ¶no_oid
, NULL
);
2172 die(_("deflateEnd on object %s failed (%d)"), oid_to_hex(oid
),
2174 if (!oideq(oid
, ¶no_oid
))
2175 die(_("confused by unstable object source data for %s"),
2178 close_loose_object(fd
, tmp_file
.buf
);
2183 utb
.modtime
= mtime
;
2184 if (utime(tmp_file
.buf
, &utb
) < 0 &&
2185 !(flags
& HASH_SILENT
))
2186 warning_errno(_("failed utime() on %s"), tmp_file
.buf
);
2189 return finalize_object_file(tmp_file
.buf
, filename
.buf
);
2192 static int freshen_loose_object(const struct object_id
*oid
)
2194 return check_and_freshen(oid
, 1);
2197 static int freshen_packed_object(const struct object_id
*oid
)
2199 struct pack_entry e
;
2200 if (!find_pack_entry(the_repository
, oid
, &e
))
2206 if (!freshen_file(e
.p
->pack_name
))
2212 int stream_loose_object(struct input_stream
*in_stream
, size_t len
,
2213 struct object_id
*oid
)
2215 const struct git_hash_algo
*compat
= the_repository
->compat_hash_algo
;
2216 struct object_id compat_oid
;
2217 int fd
, ret
, err
= 0, flush
= 0;
2218 unsigned char compressed
[4096];
2220 git_hash_ctx c
, compat_c
;
2221 struct strbuf tmp_file
= STRBUF_INIT
;
2222 struct strbuf filename
= STRBUF_INIT
;
2224 char hdr
[MAX_HEADER_LEN
];
2227 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT
))
2228 prepare_loose_object_bulk_checkin();
2230 /* Since oid is not determined, save tmp file to odb path. */
2231 strbuf_addf(&filename
, "%s/", get_object_directory());
2232 hdrlen
= format_object_header(hdr
, sizeof(hdr
), OBJ_BLOB
, len
);
2235 * Common steps for write_loose_object and stream_loose_object to
2236 * start writing loose objects:
2238 * - Create tmpfile for the loose object.
2239 * - Setup zlib stream for compression.
2240 * - Start to feed header to zlib stream.
2242 fd
= start_loose_object_common(&tmp_file
, filename
.buf
, 0,
2243 &stream
, compressed
, sizeof(compressed
),
2244 &c
, &compat_c
, hdr
, hdrlen
);
2250 /* Then the data itself.. */
2252 unsigned char *in0
= stream
.next_in
;
2254 if (!stream
.avail_in
&& !in_stream
->is_finished
) {
2255 const void *in
= in_stream
->read(in_stream
, &stream
.avail_in
);
2256 stream
.next_in
= (void *)in
;
2257 in0
= (unsigned char *)in
;
2258 /* All data has been read. */
2259 if (in_stream
->is_finished
)
2262 ret
= write_loose_object_common(&c
, &compat_c
, &stream
, flush
, in0
, fd
,
2263 compressed
, sizeof(compressed
));
2265 * Unlike write_loose_object(), we do not have the entire
2266 * buffer. If we get Z_BUF_ERROR due to too few input bytes,
2267 * then we'll replenish them in the next input_stream->read()
2268 * call when we loop.
2270 } while (ret
== Z_OK
|| ret
== Z_BUF_ERROR
);
2272 if (stream
.total_in
!= len
+ hdrlen
)
2273 die(_("write stream object %ld != %"PRIuMAX
), stream
.total_in
,
2274 (uintmax_t)len
+ hdrlen
);
2277 * Common steps for write_loose_object and stream_loose_object to
2278 * end writing loose oject:
2280 * - End the compression of zlib stream.
2281 * - Get the calculated oid.
2283 if (ret
!= Z_STREAM_END
)
2284 die(_("unable to stream deflate new object (%d)"), ret
);
2285 ret
= end_loose_object_common(&c
, &compat_c
, &stream
, oid
, &compat_oid
);
2287 die(_("deflateEnd on stream object failed (%d)"), ret
);
2288 close_loose_object(fd
, tmp_file
.buf
);
2290 if (freshen_packed_object(oid
) || freshen_loose_object(oid
)) {
2291 unlink_or_warn(tmp_file
.buf
);
2295 loose_object_path(the_repository
, &filename
, oid
);
2297 /* We finally know the object path, and create the missing dir. */
2298 dirlen
= directory_size(filename
.buf
);
2300 struct strbuf dir
= STRBUF_INIT
;
2301 strbuf_add(&dir
, filename
.buf
, dirlen
);
2303 if (mkdir_in_gitdir(dir
.buf
) && errno
!= EEXIST
) {
2304 err
= error_errno(_("unable to create directory %s"), dir
.buf
);
2305 strbuf_release(&dir
);
2308 strbuf_release(&dir
);
2311 err
= finalize_object_file(tmp_file
.buf
, filename
.buf
);
2313 err
= repo_add_loose_object_map(the_repository
, oid
, &compat_oid
);
2315 strbuf_release(&tmp_file
);
2316 strbuf_release(&filename
);
2320 int write_object_file_flags(const void *buf
, unsigned long len
,
2321 enum object_type type
, struct object_id
*oid
,
2322 struct object_id
*compat_oid_in
, unsigned flags
)
2324 struct repository
*repo
= the_repository
;
2325 const struct git_hash_algo
*algo
= repo
->hash_algo
;
2326 const struct git_hash_algo
*compat
= repo
->compat_hash_algo
;
2327 struct object_id compat_oid
;
2328 char hdr
[MAX_HEADER_LEN
];
2329 int hdrlen
= sizeof(hdr
);
2331 /* Generate compat_oid */
2334 oidcpy(&compat_oid
, compat_oid_in
);
2335 else if (type
== OBJ_BLOB
)
2336 hash_object_file(compat
, buf
, len
, type
, &compat_oid
);
2338 struct strbuf converted
= STRBUF_INIT
;
2339 convert_object_file(&converted
, algo
, compat
,
2341 hash_object_file(compat
, converted
.buf
, converted
.len
,
2343 strbuf_release(&converted
);
2347 /* Normally if we have it in the pack then we do not bother writing
2348 * it out into .git/objects/??/?{38} file.
2350 write_object_file_prepare(algo
, buf
, len
, type
, oid
, hdr
, &hdrlen
);
2351 if (freshen_packed_object(oid
) || freshen_loose_object(oid
))
2353 if (write_loose_object(oid
, hdr
, hdrlen
, buf
, len
, 0, flags
))
2356 return repo_add_loose_object_map(repo
, oid
, &compat_oid
);
2360 int write_object_file_literally(const void *buf
, unsigned long len
,
2361 const char *type
, struct object_id
*oid
,
2365 struct repository
*repo
= the_repository
;
2366 const struct git_hash_algo
*algo
= repo
->hash_algo
;
2367 const struct git_hash_algo
*compat
= repo
->compat_hash_algo
;
2368 struct object_id compat_oid
;
2369 int hdrlen
, status
= 0;
2370 int compat_type
= -1;
2373 compat_type
= type_from_string_gently(type
, -1, 1);
2374 if (compat_type
== OBJ_BLOB
)
2375 hash_object_file(compat
, buf
, len
, compat_type
,
2377 else if (compat_type
!= -1) {
2378 struct strbuf converted
= STRBUF_INIT
;
2379 convert_object_file(&converted
, algo
, compat
,
2380 buf
, len
, compat_type
, 0);
2381 hash_object_file(compat
, converted
.buf
, converted
.len
,
2382 compat_type
, &compat_oid
);
2383 strbuf_release(&converted
);
2387 /* type string, SP, %lu of the length plus NUL must fit this */
2388 hdrlen
= strlen(type
) + MAX_HEADER_LEN
;
2389 header
= xmalloc(hdrlen
);
2390 write_object_file_prepare_literally(the_hash_algo
, buf
, len
, type
,
2391 oid
, header
, &hdrlen
);
2393 if (!(flags
& HASH_WRITE_OBJECT
))
2395 if (freshen_packed_object(oid
) || freshen_loose_object(oid
))
2397 status
= write_loose_object(oid
, header
, hdrlen
, buf
, len
, 0, 0);
2398 if (compat_type
!= -1)
2399 return repo_add_loose_object_map(repo
, oid
, &compat_oid
);
2406 int force_object_loose(const struct object_id
*oid
, time_t mtime
)
2408 struct repository
*repo
= the_repository
;
2409 const struct git_hash_algo
*compat
= repo
->compat_hash_algo
;
2412 struct object_info oi
= OBJECT_INFO_INIT
;
2413 struct object_id compat_oid
;
2414 enum object_type type
;
2415 char hdr
[MAX_HEADER_LEN
];
2419 if (has_loose_object(oid
))
2424 if (oid_object_info_extended(the_repository
, oid
, &oi
, 0))
2425 return error(_("cannot read object for %s"), oid_to_hex(oid
));
2427 if (repo_oid_to_algop(repo
, oid
, compat
, &compat_oid
))
2428 return error(_("cannot map object %s to %s"),
2429 oid_to_hex(oid
), compat
->name
);
2431 hdrlen
= format_object_header(hdr
, sizeof(hdr
), type
, len
);
2432 ret
= write_loose_object(oid
, hdr
, hdrlen
, buf
, len
, mtime
, 0);
2434 ret
= repo_add_loose_object_map(the_repository
, oid
, &compat_oid
);
2440 int has_object(struct repository
*r
, const struct object_id
*oid
,
2443 int quick
= !(flags
& HAS_OBJECT_RECHECK_PACKED
);
2444 unsigned object_info_flags
= OBJECT_INFO_SKIP_FETCH_OBJECT
|
2445 (quick
? OBJECT_INFO_QUICK
: 0);
2447 if (!startup_info
->have_repository
)
2449 return oid_object_info_extended(r
, oid
, NULL
, object_info_flags
) >= 0;
2452 int repo_has_object_file_with_flags(struct repository
*r
,
2453 const struct object_id
*oid
, int flags
)
2455 if (!startup_info
->have_repository
)
2457 return oid_object_info_extended(r
, oid
, NULL
, flags
) >= 0;
2460 int repo_has_object_file(struct repository
*r
,
2461 const struct object_id
*oid
)
2463 return repo_has_object_file_with_flags(r
, oid
, 0);
2467 * We can't use the normal fsck_error_function() for index_mem(),
2468 * because we don't yet have a valid oid for it to report. Instead,
2469 * report the minimal fsck error here, and rely on the caller to
2470 * give more context.
2472 static int hash_format_check_report(struct fsck_options
*opts UNUSED
,
2473 const struct object_id
*oid UNUSED
,
2474 enum object_type object_type UNUSED
,
2475 enum fsck_msg_type msg_type UNUSED
,
2476 enum fsck_msg_id msg_id UNUSED
,
2477 const char *message
)
2479 error(_("object fails fsck: %s"), message
);
2483 static int index_mem(struct index_state
*istate
,
2484 struct object_id
*oid
,
2485 const void *buf
, size_t size
,
2486 enum object_type type
,
2487 const char *path
, unsigned flags
)
2489 struct strbuf nbuf
= STRBUF_INIT
;
2491 int write_object
= flags
& HASH_WRITE_OBJECT
;
2497 * Convert blobs to git internal format
2499 if ((type
== OBJ_BLOB
) && path
) {
2500 if (convert_to_git(istate
, path
, buf
, size
, &nbuf
,
2501 get_conv_flags(flags
))) {
2506 if (flags
& HASH_FORMAT_CHECK
) {
2507 struct fsck_options opts
= FSCK_OPTIONS_DEFAULT
;
2510 opts
.error_func
= hash_format_check_report
;
2511 if (fsck_buffer(null_oid(), type
, buf
, size
, &opts
))
2512 die(_("refusing to create malformed object"));
2517 ret
= write_object_file(buf
, size
, type
, oid
);
2519 hash_object_file(the_hash_algo
, buf
, size
, type
, oid
);
2521 strbuf_release(&nbuf
);
2525 static int index_stream_convert_blob(struct index_state
*istate
,
2526 struct object_id
*oid
,
2532 const int write_object
= flags
& HASH_WRITE_OBJECT
;
2533 struct strbuf sbuf
= STRBUF_INIT
;
2536 assert(would_convert_to_git_filter_fd(istate
, path
));
2538 convert_to_git_filter_fd(istate
, path
, fd
, &sbuf
,
2539 get_conv_flags(flags
));
2542 ret
= write_object_file(sbuf
.buf
, sbuf
.len
, OBJ_BLOB
,
2545 hash_object_file(the_hash_algo
, sbuf
.buf
, sbuf
.len
, OBJ_BLOB
,
2547 strbuf_release(&sbuf
);
2551 static int index_pipe(struct index_state
*istate
, struct object_id
*oid
,
2552 int fd
, enum object_type type
,
2553 const char *path
, unsigned flags
)
2555 struct strbuf sbuf
= STRBUF_INIT
;
2558 if (strbuf_read(&sbuf
, fd
, 4096) >= 0)
2559 ret
= index_mem(istate
, oid
, sbuf
.buf
, sbuf
.len
, type
, path
, flags
);
2562 strbuf_release(&sbuf
);
2566 #define SMALL_FILE_SIZE (32*1024)
2568 static int index_core(struct index_state
*istate
,
2569 struct object_id
*oid
, int fd
, size_t size
,
2570 enum object_type type
, const char *path
,
2576 ret
= index_mem(istate
, oid
, "", size
, type
, path
, flags
);
2577 } else if (size
<= SMALL_FILE_SIZE
) {
2578 char *buf
= xmalloc(size
);
2579 ssize_t read_result
= read_in_full(fd
, buf
, size
);
2580 if (read_result
< 0)
2581 ret
= error_errno(_("read error while indexing %s"),
2582 path
? path
: "<unknown>");
2583 else if (read_result
!= size
)
2584 ret
= error(_("short read while indexing %s"),
2585 path
? path
: "<unknown>");
2587 ret
= index_mem(istate
, oid
, buf
, size
, type
, path
, flags
);
2590 void *buf
= xmmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
2591 ret
= index_mem(istate
, oid
, buf
, size
, type
, path
, flags
);
2598 * This creates one packfile per large blob unless bulk-checkin
2599 * machinery is "plugged".
2601 * This also bypasses the usual "convert-to-git" dance, and that is on
2602 * purpose. We could write a streaming version of the converting
2603 * functions and insert that before feeding the data to fast-import
2604 * (or equivalent in-core API described above). However, that is
2605 * somewhat complicated, as we do not know the size of the filter
2606 * result, which we need to know beforehand when writing a git object.
2607 * Since the primary motivation for trying to stream from the working
2608 * tree file and to avoid mmaping it in core is to deal with large
2609 * binary blobs, they generally do not want to get any conversion, and
2610 * callers should avoid this code path when filters are requested.
2612 static int index_blob_stream(struct object_id
*oid
, int fd
, size_t size
,
2616 return index_blob_bulk_checkin(oid
, fd
, size
, path
, flags
);
2619 int index_fd(struct index_state
*istate
, struct object_id
*oid
,
2620 int fd
, struct stat
*st
,
2621 enum object_type type
, const char *path
, unsigned flags
)
2626 * Call xsize_t() only when needed to avoid potentially unnecessary
2627 * die() for large files.
2629 if (type
== OBJ_BLOB
&& path
&& would_convert_to_git_filter_fd(istate
, path
))
2630 ret
= index_stream_convert_blob(istate
, oid
, fd
, path
, flags
);
2631 else if (!S_ISREG(st
->st_mode
))
2632 ret
= index_pipe(istate
, oid
, fd
, type
, path
, flags
);
2633 else if (st
->st_size
<= big_file_threshold
|| type
!= OBJ_BLOB
||
2634 (path
&& would_convert_to_git(istate
, path
)))
2635 ret
= index_core(istate
, oid
, fd
, xsize_t(st
->st_size
),
2638 ret
= index_blob_stream(oid
, fd
, xsize_t(st
->st_size
), path
,
2644 int index_path(struct index_state
*istate
, struct object_id
*oid
,
2645 const char *path
, struct stat
*st
, unsigned flags
)
2648 struct strbuf sb
= STRBUF_INIT
;
2651 switch (st
->st_mode
& S_IFMT
) {
2653 fd
= open(path
, O_RDONLY
);
2655 return error_errno("open(\"%s\")", path
);
2656 if (index_fd(istate
, oid
, fd
, st
, OBJ_BLOB
, path
, flags
) < 0)
2657 return error(_("%s: failed to insert into database"),
2661 if (strbuf_readlink(&sb
, path
, st
->st_size
))
2662 return error_errno("readlink(\"%s\")", path
);
2663 if (!(flags
& HASH_WRITE_OBJECT
))
2664 hash_object_file(the_hash_algo
, sb
.buf
, sb
.len
,
2666 else if (write_object_file(sb
.buf
, sb
.len
, OBJ_BLOB
, oid
))
2667 rc
= error(_("%s: failed to insert into database"), path
);
2668 strbuf_release(&sb
);
2671 return repo_resolve_gitlink_ref(the_repository
, path
, "HEAD", oid
);
2673 return error(_("%s: unsupported file type"), path
);
2678 int read_pack_header(int fd
, struct pack_header
*header
)
2680 if (read_in_full(fd
, header
, sizeof(*header
)) != sizeof(*header
))
2681 /* "eof before pack header was fully read" */
2682 return PH_ERROR_EOF
;
2684 if (header
->hdr_signature
!= htonl(PACK_SIGNATURE
))
2685 /* "protocol error (pack signature mismatch detected)" */
2686 return PH_ERROR_PACK_SIGNATURE
;
2687 if (!pack_version_ok(header
->hdr_version
))
2688 /* "protocol error (pack version unsupported)" */
2689 return PH_ERROR_PROTOCOL
;
2693 void assert_oid_type(const struct object_id
*oid
, enum object_type expect
)
2695 enum object_type type
= oid_object_info(the_repository
, oid
, NULL
);
2697 die(_("%s is not a valid object"), oid_to_hex(oid
));
2699 die(_("%s is not a valid '%s' object"), oid_to_hex(oid
),
2703 int for_each_file_in_obj_subdir(unsigned int subdir_nr
,
2704 struct strbuf
*path
,
2705 each_loose_object_fn obj_cb
,
2706 each_loose_cruft_fn cruft_cb
,
2707 each_loose_subdir_fn subdir_cb
,
2710 size_t origlen
, baselen
;
2714 struct object_id oid
;
2716 if (subdir_nr
> 0xff)
2717 BUG("invalid loose object subdirectory: %x", subdir_nr
);
2719 origlen
= path
->len
;
2720 strbuf_complete(path
, '/');
2721 strbuf_addf(path
, "%02x", subdir_nr
);
2723 dir
= opendir(path
->buf
);
2725 if (errno
!= ENOENT
)
2726 r
= error_errno(_("unable to open %s"), path
->buf
);
2727 strbuf_setlen(path
, origlen
);
2731 oid
.hash
[0] = subdir_nr
;
2732 strbuf_addch(path
, '/');
2733 baselen
= path
->len
;
2735 while ((de
= readdir_skip_dot_and_dotdot(dir
))) {
2738 namelen
= strlen(de
->d_name
);
2739 strbuf_setlen(path
, baselen
);
2740 strbuf_add(path
, de
->d_name
, namelen
);
2741 if (namelen
== the_hash_algo
->hexsz
- 2 &&
2742 !hex_to_bytes(oid
.hash
+ 1, de
->d_name
,
2743 the_hash_algo
->rawsz
- 1)) {
2744 oid_set_algo(&oid
, the_hash_algo
);
2745 memset(oid
.hash
+ the_hash_algo
->rawsz
, 0,
2746 GIT_MAX_RAWSZ
- the_hash_algo
->rawsz
);
2748 r
= obj_cb(&oid
, path
->buf
, data
);
2756 r
= cruft_cb(de
->d_name
, path
->buf
, data
);
2763 strbuf_setlen(path
, baselen
- 1);
2764 if (!r
&& subdir_cb
)
2765 r
= subdir_cb(subdir_nr
, path
->buf
, data
);
2767 strbuf_setlen(path
, origlen
);
2772 int for_each_loose_file_in_objdir_buf(struct strbuf
*path
,
2773 each_loose_object_fn obj_cb
,
2774 each_loose_cruft_fn cruft_cb
,
2775 each_loose_subdir_fn subdir_cb
,
2781 for (i
= 0; i
< 256; i
++) {
2782 r
= for_each_file_in_obj_subdir(i
, path
, obj_cb
, cruft_cb
,
2791 int for_each_loose_file_in_objdir(const char *path
,
2792 each_loose_object_fn obj_cb
,
2793 each_loose_cruft_fn cruft_cb
,
2794 each_loose_subdir_fn subdir_cb
,
2797 struct strbuf buf
= STRBUF_INIT
;
2800 strbuf_addstr(&buf
, path
);
2801 r
= for_each_loose_file_in_objdir_buf(&buf
, obj_cb
, cruft_cb
,
2803 strbuf_release(&buf
);
2808 int for_each_loose_object(each_loose_object_fn cb
, void *data
,
2809 enum for_each_object_flags flags
)
2811 struct object_directory
*odb
;
2813 prepare_alt_odb(the_repository
);
2814 for (odb
= the_repository
->objects
->odb
; odb
; odb
= odb
->next
) {
2815 int r
= for_each_loose_file_in_objdir(odb
->path
, cb
, NULL
,
2820 if (flags
& FOR_EACH_OBJECT_LOCAL_ONLY
)
2827 static int append_loose_object(const struct object_id
*oid
,
2828 const char *path UNUSED
,
2831 oidtree_insert(data
, oid
);
2835 struct oidtree
*odb_loose_cache(struct object_directory
*odb
,
2836 const struct object_id
*oid
)
2838 int subdir_nr
= oid
->hash
[0];
2839 struct strbuf buf
= STRBUF_INIT
;
2840 size_t word_bits
= bitsizeof(odb
->loose_objects_subdir_seen
[0]);
2841 size_t word_index
= subdir_nr
/ word_bits
;
2842 size_t mask
= (size_t)1u << (subdir_nr
% word_bits
);
2845 if (subdir_nr
< 0 ||
2846 subdir_nr
>= bitsizeof(odb
->loose_objects_subdir_seen
))
2847 BUG("subdir_nr out of range");
2849 bitmap
= &odb
->loose_objects_subdir_seen
[word_index
];
2851 return odb
->loose_objects_cache
;
2852 if (!odb
->loose_objects_cache
) {
2853 ALLOC_ARRAY(odb
->loose_objects_cache
, 1);
2854 oidtree_init(odb
->loose_objects_cache
);
2856 strbuf_addstr(&buf
, odb
->path
);
2857 for_each_file_in_obj_subdir(subdir_nr
, &buf
,
2858 append_loose_object
,
2860 odb
->loose_objects_cache
);
2862 strbuf_release(&buf
);
2863 return odb
->loose_objects_cache
;
2866 void odb_clear_loose_cache(struct object_directory
*odb
)
2868 oidtree_clear(odb
->loose_objects_cache
);
2869 FREE_AND_NULL(odb
->loose_objects_cache
);
2870 memset(&odb
->loose_objects_subdir_seen
, 0,
2871 sizeof(odb
->loose_objects_subdir_seen
));
2874 static int check_stream_oid(git_zstream
*stream
,
2878 const struct object_id
*expected_oid
)
2881 struct object_id real_oid
;
2882 unsigned char buf
[4096];
2883 unsigned long total_read
;
2886 the_hash_algo
->init_fn(&c
);
2887 the_hash_algo
->update_fn(&c
, hdr
, stream
->total_out
);
2890 * We already read some bytes into hdr, but the ones up to the NUL
2891 * do not count against the object's content size.
2893 total_read
= stream
->total_out
- strlen(hdr
) - 1;
2896 * This size comparison must be "<=" to read the final zlib packets;
2897 * see the comment in unpack_loose_rest for details.
2899 while (total_read
<= size
&&
2901 (status
== Z_BUF_ERROR
&& !stream
->avail_out
))) {
2902 stream
->next_out
= buf
;
2903 stream
->avail_out
= sizeof(buf
);
2904 if (size
- total_read
< stream
->avail_out
)
2905 stream
->avail_out
= size
- total_read
;
2906 status
= git_inflate(stream
, Z_FINISH
);
2907 the_hash_algo
->update_fn(&c
, buf
, stream
->next_out
- buf
);
2908 total_read
+= stream
->next_out
- buf
;
2910 git_inflate_end(stream
);
2912 if (status
!= Z_STREAM_END
) {
2913 error(_("corrupt loose object '%s'"), oid_to_hex(expected_oid
));
2916 if (stream
->avail_in
) {
2917 error(_("garbage at end of loose object '%s'"),
2918 oid_to_hex(expected_oid
));
2922 the_hash_algo
->final_oid_fn(&real_oid
, &c
);
2923 if (!oideq(expected_oid
, &real_oid
)) {
2924 error(_("hash mismatch for %s (expected %s)"), path
,
2925 oid_to_hex(expected_oid
));
2932 int read_loose_object(const char *path
,
2933 const struct object_id
*expected_oid
,
2934 struct object_id
*real_oid
,
2936 struct object_info
*oi
)
2941 unsigned long mapsize
;
2943 char hdr
[MAX_HEADER_LEN
];
2944 unsigned long *size
= oi
->sizep
;
2946 fd
= git_open(path
);
2948 map
= map_fd(fd
, path
, &mapsize
);
2950 error_errno(_("unable to mmap %s"), path
);
2954 if (unpack_loose_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
),
2956 error(_("unable to unpack header of %s"), path
);
2960 if (parse_loose_header(hdr
, oi
) < 0) {
2961 error(_("unable to parse header of %s"), path
);
2962 git_inflate_end(&stream
);
2966 if (*oi
->typep
== OBJ_BLOB
&& *size
> big_file_threshold
) {
2967 if (check_stream_oid(&stream
, hdr
, *size
, path
, expected_oid
) < 0)
2970 *contents
= unpack_loose_rest(&stream
, hdr
, *size
, expected_oid
);
2972 error(_("unable to unpack contents of %s"), path
);
2973 git_inflate_end(&stream
);
2976 hash_object_file_literally(the_repository
->hash_algo
,
2978 oi
->type_name
->buf
, real_oid
);
2979 if (!oideq(expected_oid
, real_oid
))
2983 ret
= 0; /* everything checks out */
2987 munmap(map
, mapsize
);