Merge branch 'bb/unicode-width-table-15'
[git.git] / object-file.c
blob8fab8dbe80bb33cd09f8d31fead747095cce3288
1 /*
2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 * This handles basic git object files - packing, unpacking,
7 * creation etc.
8 */
9 #include "git-compat-util.h"
10 #include "alloc.h"
11 #include "config.h"
12 #include "hex.h"
13 #include "string-list.h"
14 #include "lockfile.h"
15 #include "delta.h"
16 #include "pack.h"
17 #include "blob.h"
18 #include "commit.h"
19 #include "run-command.h"
20 #include "tag.h"
21 #include "tree.h"
22 #include "tree-walk.h"
23 #include "refs.h"
24 #include "pack-revindex.h"
25 #include "hash-lookup.h"
26 #include "bulk-checkin.h"
27 #include "repository.h"
28 #include "replace-object.h"
29 #include "streaming.h"
30 #include "dir.h"
31 #include "list.h"
32 #include "mergesort.h"
33 #include "quote.h"
34 #include "packfile.h"
35 #include "object-store.h"
36 #include "promisor-remote.h"
37 #include "submodule.h"
38 #include "fsck.h"
40 /* The maximum size for an object header. */
41 #define MAX_HEADER_LEN 32
44 #define EMPTY_TREE_SHA1_BIN_LITERAL \
45 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60" \
46 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04"
47 #define EMPTY_TREE_SHA256_BIN_LITERAL \
48 "\x6e\xf1\x9b\x41\x22\x5c\x53\x69\xf1\xc1" \
49 "\x04\xd4\x5d\x8d\x85\xef\xa9\xb0\x57\xb5" \
50 "\x3b\x14\xb4\xb9\xb9\x39\xdd\x74\xde\xcc" \
51 "\x53\x21"
53 #define EMPTY_BLOB_SHA1_BIN_LITERAL \
54 "\xe6\x9d\xe2\x9b\xb2\xd1\xd6\x43\x4b\x8b" \
55 "\x29\xae\x77\x5a\xd8\xc2\xe4\x8c\x53\x91"
56 #define EMPTY_BLOB_SHA256_BIN_LITERAL \
57 "\x47\x3a\x0f\x4c\x3b\xe8\xa9\x36\x81\xa2" \
58 "\x67\xe3\xb1\xe9\xa7\xdc\xda\x11\x85\x43" \
59 "\x6f\xe1\x41\xf7\x74\x91\x20\xa3\x03\x72" \
60 "\x18\x13"
62 static const struct object_id empty_tree_oid = {
63 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
64 .algo = GIT_HASH_SHA1,
66 static const struct object_id empty_blob_oid = {
67 .hash = EMPTY_BLOB_SHA1_BIN_LITERAL,
68 .algo = GIT_HASH_SHA1,
70 static const struct object_id null_oid_sha1 = {
71 .hash = {0},
72 .algo = GIT_HASH_SHA1,
74 static const struct object_id empty_tree_oid_sha256 = {
75 .hash = EMPTY_TREE_SHA256_BIN_LITERAL,
76 .algo = GIT_HASH_SHA256,
78 static const struct object_id empty_blob_oid_sha256 = {
79 .hash = EMPTY_BLOB_SHA256_BIN_LITERAL,
80 .algo = GIT_HASH_SHA256,
82 static const struct object_id null_oid_sha256 = {
83 .hash = {0},
84 .algo = GIT_HASH_SHA256,
87 static void git_hash_sha1_init(git_hash_ctx *ctx)
89 git_SHA1_Init(&ctx->sha1);
92 static void git_hash_sha1_clone(git_hash_ctx *dst, const git_hash_ctx *src)
94 git_SHA1_Clone(&dst->sha1, &src->sha1);
97 static void git_hash_sha1_update(git_hash_ctx *ctx, const void *data, size_t len)
99 git_SHA1_Update(&ctx->sha1, data, len);
102 static void git_hash_sha1_final(unsigned char *hash, git_hash_ctx *ctx)
104 git_SHA1_Final(hash, &ctx->sha1);
107 static void git_hash_sha1_final_oid(struct object_id *oid, git_hash_ctx *ctx)
109 git_SHA1_Final(oid->hash, &ctx->sha1);
110 memset(oid->hash + GIT_SHA1_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA1_RAWSZ);
111 oid->algo = GIT_HASH_SHA1;
115 static void git_hash_sha256_init(git_hash_ctx *ctx)
117 git_SHA256_Init(&ctx->sha256);
120 static void git_hash_sha256_clone(git_hash_ctx *dst, const git_hash_ctx *src)
122 git_SHA256_Clone(&dst->sha256, &src->sha256);
125 static void git_hash_sha256_update(git_hash_ctx *ctx, const void *data, size_t len)
127 git_SHA256_Update(&ctx->sha256, data, len);
130 static void git_hash_sha256_final(unsigned char *hash, git_hash_ctx *ctx)
132 git_SHA256_Final(hash, &ctx->sha256);
135 static void git_hash_sha256_final_oid(struct object_id *oid, git_hash_ctx *ctx)
137 git_SHA256_Final(oid->hash, &ctx->sha256);
139 * This currently does nothing, so the compiler should optimize it out,
140 * but keep it in case we extend the hash size again.
142 memset(oid->hash + GIT_SHA256_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA256_RAWSZ);
143 oid->algo = GIT_HASH_SHA256;
146 static void git_hash_unknown_init(git_hash_ctx *ctx UNUSED)
148 BUG("trying to init unknown hash");
151 static void git_hash_unknown_clone(git_hash_ctx *dst UNUSED,
152 const git_hash_ctx *src UNUSED)
154 BUG("trying to clone unknown hash");
157 static void git_hash_unknown_update(git_hash_ctx *ctx UNUSED,
158 const void *data UNUSED,
159 size_t len UNUSED)
161 BUG("trying to update unknown hash");
164 static void git_hash_unknown_final(unsigned char *hash UNUSED,
165 git_hash_ctx *ctx UNUSED)
167 BUG("trying to finalize unknown hash");
170 static void git_hash_unknown_final_oid(struct object_id *oid UNUSED,
171 git_hash_ctx *ctx UNUSED)
173 BUG("trying to finalize unknown hash");
176 const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
178 .name = NULL,
179 .format_id = 0x00000000,
180 .rawsz = 0,
181 .hexsz = 0,
182 .blksz = 0,
183 .init_fn = git_hash_unknown_init,
184 .clone_fn = git_hash_unknown_clone,
185 .update_fn = git_hash_unknown_update,
186 .final_fn = git_hash_unknown_final,
187 .final_oid_fn = git_hash_unknown_final_oid,
188 .empty_tree = NULL,
189 .empty_blob = NULL,
190 .null_oid = NULL,
193 .name = "sha1",
194 .format_id = GIT_SHA1_FORMAT_ID,
195 .rawsz = GIT_SHA1_RAWSZ,
196 .hexsz = GIT_SHA1_HEXSZ,
197 .blksz = GIT_SHA1_BLKSZ,
198 .init_fn = git_hash_sha1_init,
199 .clone_fn = git_hash_sha1_clone,
200 .update_fn = git_hash_sha1_update,
201 .final_fn = git_hash_sha1_final,
202 .final_oid_fn = git_hash_sha1_final_oid,
203 .empty_tree = &empty_tree_oid,
204 .empty_blob = &empty_blob_oid,
205 .null_oid = &null_oid_sha1,
208 .name = "sha256",
209 .format_id = GIT_SHA256_FORMAT_ID,
210 .rawsz = GIT_SHA256_RAWSZ,
211 .hexsz = GIT_SHA256_HEXSZ,
212 .blksz = GIT_SHA256_BLKSZ,
213 .init_fn = git_hash_sha256_init,
214 .clone_fn = git_hash_sha256_clone,
215 .update_fn = git_hash_sha256_update,
216 .final_fn = git_hash_sha256_final,
217 .final_oid_fn = git_hash_sha256_final_oid,
218 .empty_tree = &empty_tree_oid_sha256,
219 .empty_blob = &empty_blob_oid_sha256,
220 .null_oid = &null_oid_sha256,
224 const struct object_id *null_oid(void)
226 return the_hash_algo->null_oid;
229 const char *empty_tree_oid_hex(void)
231 static char buf[GIT_MAX_HEXSZ + 1];
232 return oid_to_hex_r(buf, the_hash_algo->empty_tree);
235 const char *empty_blob_oid_hex(void)
237 static char buf[GIT_MAX_HEXSZ + 1];
238 return oid_to_hex_r(buf, the_hash_algo->empty_blob);
241 int hash_algo_by_name(const char *name)
243 int i;
244 if (!name)
245 return GIT_HASH_UNKNOWN;
246 for (i = 1; i < GIT_HASH_NALGOS; i++)
247 if (!strcmp(name, hash_algos[i].name))
248 return i;
249 return GIT_HASH_UNKNOWN;
252 int hash_algo_by_id(uint32_t format_id)
254 int i;
255 for (i = 1; i < GIT_HASH_NALGOS; i++)
256 if (format_id == hash_algos[i].format_id)
257 return i;
258 return GIT_HASH_UNKNOWN;
261 int hash_algo_by_length(int len)
263 int i;
264 for (i = 1; i < GIT_HASH_NALGOS; i++)
265 if (len == hash_algos[i].rawsz)
266 return i;
267 return GIT_HASH_UNKNOWN;
271 * This is meant to hold a *small* number of objects that you would
272 * want read_object_file() to be able to return, but yet you do not want
273 * to write them into the object store (e.g. a browse-only
274 * application).
276 static struct cached_object {
277 struct object_id oid;
278 enum object_type type;
279 void *buf;
280 unsigned long size;
281 } *cached_objects;
282 static int cached_object_nr, cached_object_alloc;
284 static struct cached_object empty_tree = {
285 .oid = {
286 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
288 .type = OBJ_TREE,
289 .buf = "",
292 static struct cached_object *find_cached_object(const struct object_id *oid)
294 int i;
295 struct cached_object *co = cached_objects;
297 for (i = 0; i < cached_object_nr; i++, co++) {
298 if (oideq(&co->oid, oid))
299 return co;
301 if (oideq(oid, the_hash_algo->empty_tree))
302 return &empty_tree;
303 return NULL;
307 static int get_conv_flags(unsigned flags)
309 if (flags & HASH_RENORMALIZE)
310 return CONV_EOL_RENORMALIZE;
311 else if (flags & HASH_WRITE_OBJECT)
312 return global_conv_flags_eol | CONV_WRITE_OBJECT;
313 else
314 return 0;
318 int mkdir_in_gitdir(const char *path)
320 if (mkdir(path, 0777)) {
321 int saved_errno = errno;
322 struct stat st;
323 struct strbuf sb = STRBUF_INIT;
325 if (errno != EEXIST)
326 return -1;
328 * Are we looking at a path in a symlinked worktree
329 * whose original repository does not yet have it?
330 * e.g. .git/rr-cache pointing at its original
331 * repository in which the user hasn't performed any
332 * conflict resolution yet?
334 if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
335 strbuf_readlink(&sb, path, st.st_size) ||
336 !is_absolute_path(sb.buf) ||
337 mkdir(sb.buf, 0777)) {
338 strbuf_release(&sb);
339 errno = saved_errno;
340 return -1;
342 strbuf_release(&sb);
344 return adjust_shared_perm(path);
347 static enum scld_error safe_create_leading_directories_1(char *path, int share)
349 char *next_component = path + offset_1st_component(path);
350 enum scld_error ret = SCLD_OK;
352 while (ret == SCLD_OK && next_component) {
353 struct stat st;
354 char *slash = next_component, slash_character;
356 while (*slash && !is_dir_sep(*slash))
357 slash++;
359 if (!*slash)
360 break;
362 next_component = slash + 1;
363 while (is_dir_sep(*next_component))
364 next_component++;
365 if (!*next_component)
366 break;
368 slash_character = *slash;
369 *slash = '\0';
370 if (!stat(path, &st)) {
371 /* path exists */
372 if (!S_ISDIR(st.st_mode)) {
373 errno = ENOTDIR;
374 ret = SCLD_EXISTS;
376 } else if (mkdir(path, 0777)) {
377 if (errno == EEXIST &&
378 !stat(path, &st) && S_ISDIR(st.st_mode))
379 ; /* somebody created it since we checked */
380 else if (errno == ENOENT)
382 * Either mkdir() failed because
383 * somebody just pruned the containing
384 * directory, or stat() failed because
385 * the file that was in our way was
386 * just removed. Either way, inform
387 * the caller that it might be worth
388 * trying again:
390 ret = SCLD_VANISHED;
391 else
392 ret = SCLD_FAILED;
393 } else if (share && adjust_shared_perm(path)) {
394 ret = SCLD_PERMS;
396 *slash = slash_character;
398 return ret;
401 enum scld_error safe_create_leading_directories(char *path)
403 return safe_create_leading_directories_1(path, 1);
406 enum scld_error safe_create_leading_directories_no_share(char *path)
408 return safe_create_leading_directories_1(path, 0);
411 enum scld_error safe_create_leading_directories_const(const char *path)
413 int save_errno;
414 /* path points to cache entries, so xstrdup before messing with it */
415 char *buf = xstrdup(path);
416 enum scld_error result = safe_create_leading_directories(buf);
418 save_errno = errno;
419 free(buf);
420 errno = save_errno;
421 return result;
424 static void fill_loose_path(struct strbuf *buf, const struct object_id *oid)
426 int i;
427 for (i = 0; i < the_hash_algo->rawsz; i++) {
428 static char hex[] = "0123456789abcdef";
429 unsigned int val = oid->hash[i];
430 strbuf_addch(buf, hex[val >> 4]);
431 strbuf_addch(buf, hex[val & 0xf]);
432 if (!i)
433 strbuf_addch(buf, '/');
437 static const char *odb_loose_path(struct object_directory *odb,
438 struct strbuf *buf,
439 const struct object_id *oid)
441 strbuf_reset(buf);
442 strbuf_addstr(buf, odb->path);
443 strbuf_addch(buf, '/');
444 fill_loose_path(buf, oid);
445 return buf->buf;
448 const char *loose_object_path(struct repository *r, struct strbuf *buf,
449 const struct object_id *oid)
451 return odb_loose_path(r->objects->odb, buf, oid);
455 * Return non-zero iff the path is usable as an alternate object database.
457 static int alt_odb_usable(struct raw_object_store *o,
458 struct strbuf *path,
459 const char *normalized_objdir, khiter_t *pos)
461 int r;
463 /* Detect cases where alternate disappeared */
464 if (!is_directory(path->buf)) {
465 error(_("object directory %s does not exist; "
466 "check .git/objects/info/alternates"),
467 path->buf);
468 return 0;
472 * Prevent the common mistake of listing the same
473 * thing twice, or object directory itself.
475 if (!o->odb_by_path) {
476 khiter_t p;
478 o->odb_by_path = kh_init_odb_path_map();
479 assert(!o->odb->next);
480 p = kh_put_odb_path_map(o->odb_by_path, o->odb->path, &r);
481 assert(r == 1); /* never used */
482 kh_value(o->odb_by_path, p) = o->odb;
484 if (fspatheq(path->buf, normalized_objdir))
485 return 0;
486 *pos = kh_put_odb_path_map(o->odb_by_path, path->buf, &r);
487 /* r: 0 = exists, 1 = never used, 2 = deleted */
488 return r == 0 ? 0 : 1;
492 * Prepare alternate object database registry.
494 * The variable alt_odb_list points at the list of struct
495 * object_directory. The elements on this list come from
496 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
497 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
498 * whose contents is similar to that environment variable but can be
499 * LF separated. Its base points at a statically allocated buffer that
500 * contains "/the/directory/corresponding/to/.git/objects/...", while
501 * its name points just after the slash at the end of ".git/objects/"
502 * in the example above, and has enough space to hold all hex characters
503 * of the object ID, an extra slash for the first level indirection, and
504 * the terminating NUL.
506 static void read_info_alternates(struct repository *r,
507 const char *relative_base,
508 int depth);
509 static int link_alt_odb_entry(struct repository *r, const struct strbuf *entry,
510 const char *relative_base, int depth, const char *normalized_objdir)
512 struct object_directory *ent;
513 struct strbuf pathbuf = STRBUF_INIT;
514 struct strbuf tmp = STRBUF_INIT;
515 khiter_t pos;
516 int ret = -1;
518 if (!is_absolute_path(entry->buf) && relative_base) {
519 strbuf_realpath(&pathbuf, relative_base, 1);
520 strbuf_addch(&pathbuf, '/');
522 strbuf_addbuf(&pathbuf, entry);
524 if (!strbuf_realpath(&tmp, pathbuf.buf, 0)) {
525 error(_("unable to normalize alternate object path: %s"),
526 pathbuf.buf);
527 goto error;
529 strbuf_swap(&pathbuf, &tmp);
532 * The trailing slash after the directory name is given by
533 * this function at the end. Remove duplicates.
535 while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
536 strbuf_setlen(&pathbuf, pathbuf.len - 1);
538 if (!alt_odb_usable(r->objects, &pathbuf, normalized_objdir, &pos))
539 goto error;
541 CALLOC_ARRAY(ent, 1);
542 /* pathbuf.buf is already in r->objects->odb_by_path */
543 ent->path = strbuf_detach(&pathbuf, NULL);
545 /* add the alternate entry */
546 *r->objects->odb_tail = ent;
547 r->objects->odb_tail = &(ent->next);
548 ent->next = NULL;
549 assert(r->objects->odb_by_path);
550 kh_value(r->objects->odb_by_path, pos) = ent;
552 /* recursively add alternates */
553 read_info_alternates(r, ent->path, depth + 1);
554 ret = 0;
555 error:
556 strbuf_release(&tmp);
557 strbuf_release(&pathbuf);
558 return ret;
561 static const char *parse_alt_odb_entry(const char *string,
562 int sep,
563 struct strbuf *out)
565 const char *end;
567 strbuf_reset(out);
569 if (*string == '#') {
570 /* comment; consume up to next separator */
571 end = strchrnul(string, sep);
572 } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
574 * quoted path; unquote_c_style has copied the
575 * data for us and set "end". Broken quoting (e.g.,
576 * an entry that doesn't end with a quote) falls
577 * back to the unquoted case below.
579 } else {
580 /* normal, unquoted path */
581 end = strchrnul(string, sep);
582 strbuf_add(out, string, end - string);
585 if (*end)
586 end++;
587 return end;
590 static void link_alt_odb_entries(struct repository *r, const char *alt,
591 int sep, const char *relative_base, int depth)
593 struct strbuf objdirbuf = STRBUF_INIT;
594 struct strbuf entry = STRBUF_INIT;
596 if (!alt || !*alt)
597 return;
599 if (depth > 5) {
600 error(_("%s: ignoring alternate object stores, nesting too deep"),
601 relative_base);
602 return;
605 strbuf_realpath(&objdirbuf, r->objects->odb->path, 1);
607 while (*alt) {
608 alt = parse_alt_odb_entry(alt, sep, &entry);
609 if (!entry.len)
610 continue;
611 link_alt_odb_entry(r, &entry,
612 relative_base, depth, objdirbuf.buf);
614 strbuf_release(&entry);
615 strbuf_release(&objdirbuf);
618 static void read_info_alternates(struct repository *r,
619 const char *relative_base,
620 int depth)
622 char *path;
623 struct strbuf buf = STRBUF_INIT;
625 path = xstrfmt("%s/info/alternates", relative_base);
626 if (strbuf_read_file(&buf, path, 1024) < 0) {
627 warn_on_fopen_errors(path);
628 free(path);
629 return;
632 link_alt_odb_entries(r, buf.buf, '\n', relative_base, depth);
633 strbuf_release(&buf);
634 free(path);
637 void add_to_alternates_file(const char *reference)
639 struct lock_file lock = LOCK_INIT;
640 char *alts = git_pathdup("objects/info/alternates");
641 FILE *in, *out;
642 int found = 0;
644 hold_lock_file_for_update(&lock, alts, LOCK_DIE_ON_ERROR);
645 out = fdopen_lock_file(&lock, "w");
646 if (!out)
647 die_errno(_("unable to fdopen alternates lockfile"));
649 in = fopen(alts, "r");
650 if (in) {
651 struct strbuf line = STRBUF_INIT;
653 while (strbuf_getline(&line, in) != EOF) {
654 if (!strcmp(reference, line.buf)) {
655 found = 1;
656 break;
658 fprintf_or_die(out, "%s\n", line.buf);
661 strbuf_release(&line);
662 fclose(in);
664 else if (errno != ENOENT)
665 die_errno(_("unable to read alternates file"));
667 if (found) {
668 rollback_lock_file(&lock);
669 } else {
670 fprintf_or_die(out, "%s\n", reference);
671 if (commit_lock_file(&lock))
672 die_errno(_("unable to move new alternates file into place"));
673 if (the_repository->objects->loaded_alternates)
674 link_alt_odb_entries(the_repository, reference,
675 '\n', NULL, 0);
677 free(alts);
680 void add_to_alternates_memory(const char *reference)
683 * Make sure alternates are initialized, or else our entry may be
684 * overwritten when they are.
686 prepare_alt_odb(the_repository);
688 link_alt_odb_entries(the_repository, reference,
689 '\n', NULL, 0);
692 struct object_directory *set_temporary_primary_odb(const char *dir, int will_destroy)
694 struct object_directory *new_odb;
697 * Make sure alternates are initialized, or else our entry may be
698 * overwritten when they are.
700 prepare_alt_odb(the_repository);
703 * Make a new primary odb and link the old primary ODB in as an
704 * alternate
706 new_odb = xcalloc(1, sizeof(*new_odb));
707 new_odb->path = xstrdup(dir);
710 * Disable ref updates while a temporary odb is active, since
711 * the objects in the database may roll back.
713 new_odb->disable_ref_updates = 1;
714 new_odb->will_destroy = will_destroy;
715 new_odb->next = the_repository->objects->odb;
716 the_repository->objects->odb = new_odb;
717 return new_odb->next;
720 void restore_primary_odb(struct object_directory *restore_odb, const char *old_path)
722 struct object_directory *cur_odb = the_repository->objects->odb;
724 if (strcmp(old_path, cur_odb->path))
725 BUG("expected %s as primary object store; found %s",
726 old_path, cur_odb->path);
728 if (cur_odb->next != restore_odb)
729 BUG("we expect the old primary object store to be the first alternate");
731 the_repository->objects->odb = restore_odb;
732 free_object_directory(cur_odb);
736 * Compute the exact path an alternate is at and returns it. In case of
737 * error NULL is returned and the human readable error is added to `err`
738 * `path` may be relative and should point to $GIT_DIR.
739 * `err` must not be null.
741 char *compute_alternate_path(const char *path, struct strbuf *err)
743 char *ref_git = NULL;
744 const char *repo;
745 int seen_error = 0;
747 ref_git = real_pathdup(path, 0);
748 if (!ref_git) {
749 seen_error = 1;
750 strbuf_addf(err, _("path '%s' does not exist"), path);
751 goto out;
754 repo = read_gitfile(ref_git);
755 if (!repo)
756 repo = read_gitfile(mkpath("%s/.git", ref_git));
757 if (repo) {
758 free(ref_git);
759 ref_git = xstrdup(repo);
762 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
763 char *ref_git_git = mkpathdup("%s/.git", ref_git);
764 free(ref_git);
765 ref_git = ref_git_git;
766 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
767 struct strbuf sb = STRBUF_INIT;
768 seen_error = 1;
769 if (get_common_dir(&sb, ref_git)) {
770 strbuf_addf(err,
771 _("reference repository '%s' as a linked "
772 "checkout is not supported yet."),
773 path);
774 goto out;
777 strbuf_addf(err, _("reference repository '%s' is not a "
778 "local repository."), path);
779 goto out;
782 if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
783 strbuf_addf(err, _("reference repository '%s' is shallow"),
784 path);
785 seen_error = 1;
786 goto out;
789 if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
790 strbuf_addf(err,
791 _("reference repository '%s' is grafted"),
792 path);
793 seen_error = 1;
794 goto out;
797 out:
798 if (seen_error) {
799 FREE_AND_NULL(ref_git);
802 return ref_git;
805 struct object_directory *find_odb(struct repository *r, const char *obj_dir)
807 struct object_directory *odb;
808 char *obj_dir_real = real_pathdup(obj_dir, 1);
809 struct strbuf odb_path_real = STRBUF_INIT;
811 prepare_alt_odb(r);
812 for (odb = r->objects->odb; odb; odb = odb->next) {
813 strbuf_realpath(&odb_path_real, odb->path, 1);
814 if (!strcmp(obj_dir_real, odb_path_real.buf))
815 break;
818 free(obj_dir_real);
819 strbuf_release(&odb_path_real);
821 if (!odb)
822 die(_("could not find object directory matching %s"), obj_dir);
823 return odb;
826 static void fill_alternate_refs_command(struct child_process *cmd,
827 const char *repo_path)
829 const char *value;
831 if (!git_config_get_value("core.alternateRefsCommand", &value)) {
832 cmd->use_shell = 1;
834 strvec_push(&cmd->args, value);
835 strvec_push(&cmd->args, repo_path);
836 } else {
837 cmd->git_cmd = 1;
839 strvec_pushf(&cmd->args, "--git-dir=%s", repo_path);
840 strvec_push(&cmd->args, "for-each-ref");
841 strvec_push(&cmd->args, "--format=%(objectname)");
843 if (!git_config_get_value("core.alternateRefsPrefixes", &value)) {
844 strvec_push(&cmd->args, "--");
845 strvec_split(&cmd->args, value);
849 strvec_pushv(&cmd->env, (const char **)local_repo_env);
850 cmd->out = -1;
853 static void read_alternate_refs(const char *path,
854 alternate_ref_fn *cb,
855 void *data)
857 struct child_process cmd = CHILD_PROCESS_INIT;
858 struct strbuf line = STRBUF_INIT;
859 FILE *fh;
861 fill_alternate_refs_command(&cmd, path);
863 if (start_command(&cmd))
864 return;
866 fh = xfdopen(cmd.out, "r");
867 while (strbuf_getline_lf(&line, fh) != EOF) {
868 struct object_id oid;
869 const char *p;
871 if (parse_oid_hex(line.buf, &oid, &p) || *p) {
872 warning(_("invalid line while parsing alternate refs: %s"),
873 line.buf);
874 break;
877 cb(&oid, data);
880 fclose(fh);
881 finish_command(&cmd);
882 strbuf_release(&line);
885 struct alternate_refs_data {
886 alternate_ref_fn *fn;
887 void *data;
890 static int refs_from_alternate_cb(struct object_directory *e,
891 void *data)
893 struct strbuf path = STRBUF_INIT;
894 size_t base_len;
895 struct alternate_refs_data *cb = data;
897 if (!strbuf_realpath(&path, e->path, 0))
898 goto out;
899 if (!strbuf_strip_suffix(&path, "/objects"))
900 goto out;
901 base_len = path.len;
903 /* Is this a git repository with refs? */
904 strbuf_addstr(&path, "/refs");
905 if (!is_directory(path.buf))
906 goto out;
907 strbuf_setlen(&path, base_len);
909 read_alternate_refs(path.buf, cb->fn, cb->data);
911 out:
912 strbuf_release(&path);
913 return 0;
916 void for_each_alternate_ref(alternate_ref_fn fn, void *data)
918 struct alternate_refs_data cb;
919 cb.fn = fn;
920 cb.data = data;
921 foreach_alt_odb(refs_from_alternate_cb, &cb);
924 int foreach_alt_odb(alt_odb_fn fn, void *cb)
926 struct object_directory *ent;
927 int r = 0;
929 prepare_alt_odb(the_repository);
930 for (ent = the_repository->objects->odb->next; ent; ent = ent->next) {
931 r = fn(ent, cb);
932 if (r)
933 break;
935 return r;
938 void prepare_alt_odb(struct repository *r)
940 if (r->objects->loaded_alternates)
941 return;
943 link_alt_odb_entries(r, r->objects->alternate_db, PATH_SEP, NULL, 0);
945 read_info_alternates(r, r->objects->odb->path, 0);
946 r->objects->loaded_alternates = 1;
949 /* Returns 1 if we have successfully freshened the file, 0 otherwise. */
950 static int freshen_file(const char *fn)
952 return !utime(fn, NULL);
956 * All of the check_and_freshen functions return 1 if the file exists and was
957 * freshened (if freshening was requested), 0 otherwise. If they return
958 * 0, you should not assume that it is safe to skip a write of the object (it
959 * either does not exist on disk, or has a stale mtime and may be subject to
960 * pruning).
962 int check_and_freshen_file(const char *fn, int freshen)
964 if (access(fn, F_OK))
965 return 0;
966 if (freshen && !freshen_file(fn))
967 return 0;
968 return 1;
971 static int check_and_freshen_odb(struct object_directory *odb,
972 const struct object_id *oid,
973 int freshen)
975 static struct strbuf path = STRBUF_INIT;
976 odb_loose_path(odb, &path, oid);
977 return check_and_freshen_file(path.buf, freshen);
980 static int check_and_freshen_local(const struct object_id *oid, int freshen)
982 return check_and_freshen_odb(the_repository->objects->odb, oid, freshen);
985 static int check_and_freshen_nonlocal(const struct object_id *oid, int freshen)
987 struct object_directory *odb;
989 prepare_alt_odb(the_repository);
990 for (odb = the_repository->objects->odb->next; odb; odb = odb->next) {
991 if (check_and_freshen_odb(odb, oid, freshen))
992 return 1;
994 return 0;
997 static int check_and_freshen(const struct object_id *oid, int freshen)
999 return check_and_freshen_local(oid, freshen) ||
1000 check_and_freshen_nonlocal(oid, freshen);
1003 int has_loose_object_nonlocal(const struct object_id *oid)
1005 return check_and_freshen_nonlocal(oid, 0);
1008 int has_loose_object(const struct object_id *oid)
1010 return check_and_freshen(oid, 0);
1013 static void mmap_limit_check(size_t length)
1015 static size_t limit = 0;
1016 if (!limit) {
1017 limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
1018 if (!limit)
1019 limit = SIZE_MAX;
1021 if (length > limit)
1022 die(_("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX),
1023 (uintmax_t)length, (uintmax_t)limit);
1026 void *xmmap_gently(void *start, size_t length,
1027 int prot, int flags, int fd, off_t offset)
1029 void *ret;
1031 mmap_limit_check(length);
1032 ret = mmap(start, length, prot, flags, fd, offset);
1033 if (ret == MAP_FAILED && !length)
1034 ret = NULL;
1035 return ret;
1038 const char *mmap_os_err(void)
1040 static const char blank[] = "";
1041 #if defined(__linux__)
1042 if (errno == ENOMEM) {
1043 /* this continues an existing error message: */
1044 static const char enomem[] =
1045 ", check sys.vm.max_map_count and/or RLIMIT_DATA";
1046 return enomem;
1048 #endif /* OS-specific bits */
1049 return blank;
1052 void *xmmap(void *start, size_t length,
1053 int prot, int flags, int fd, off_t offset)
1055 void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
1056 if (ret == MAP_FAILED)
1057 die_errno(_("mmap failed%s"), mmap_os_err());
1058 return ret;
1061 static int format_object_header_literally(char *str, size_t size,
1062 const char *type, size_t objsize)
1064 return xsnprintf(str, size, "%s %"PRIuMAX, type, (uintmax_t)objsize) + 1;
1067 int format_object_header(char *str, size_t size, enum object_type type,
1068 size_t objsize)
1070 const char *name = type_name(type);
1072 if (!name)
1073 BUG("could not get a type name for 'enum object_type' value %d", type);
1075 return format_object_header_literally(str, size, name, objsize);
1078 int check_object_signature(struct repository *r, const struct object_id *oid,
1079 void *buf, unsigned long size,
1080 enum object_type type)
1082 struct object_id real_oid;
1084 hash_object_file(r->hash_algo, buf, size, type, &real_oid);
1086 return !oideq(oid, &real_oid) ? -1 : 0;
1089 int stream_object_signature(struct repository *r, const struct object_id *oid)
1091 struct object_id real_oid;
1092 unsigned long size;
1093 enum object_type obj_type;
1094 struct git_istream *st;
1095 git_hash_ctx c;
1096 char hdr[MAX_HEADER_LEN];
1097 int hdrlen;
1099 st = open_istream(r, oid, &obj_type, &size, NULL);
1100 if (!st)
1101 return -1;
1103 /* Generate the header */
1104 hdrlen = format_object_header(hdr, sizeof(hdr), obj_type, size);
1106 /* Sha1.. */
1107 r->hash_algo->init_fn(&c);
1108 r->hash_algo->update_fn(&c, hdr, hdrlen);
1109 for (;;) {
1110 char buf[1024 * 16];
1111 ssize_t readlen = read_istream(st, buf, sizeof(buf));
1113 if (readlen < 0) {
1114 close_istream(st);
1115 return -1;
1117 if (!readlen)
1118 break;
1119 r->hash_algo->update_fn(&c, buf, readlen);
1121 r->hash_algo->final_oid_fn(&real_oid, &c);
1122 close_istream(st);
1123 return !oideq(oid, &real_oid) ? -1 : 0;
1126 int git_open_cloexec(const char *name, int flags)
1128 int fd;
1129 static int o_cloexec = O_CLOEXEC;
1131 fd = open(name, flags | o_cloexec);
1132 if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
1133 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1134 o_cloexec &= ~O_CLOEXEC;
1135 fd = open(name, flags | o_cloexec);
1138 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1140 static int fd_cloexec = FD_CLOEXEC;
1142 if (!o_cloexec && 0 <= fd && fd_cloexec) {
1143 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
1144 int flags = fcntl(fd, F_GETFD);
1145 if (fcntl(fd, F_SETFD, flags | fd_cloexec))
1146 fd_cloexec = 0;
1149 #endif
1150 return fd;
1154 * Find "oid" as a loose object in the local repository or in an alternate.
1155 * Returns 0 on success, negative on failure.
1157 * The "path" out-parameter will give the path of the object we found (if any).
1158 * Note that it may point to static storage and is only valid until another
1159 * call to stat_loose_object().
1161 static int stat_loose_object(struct repository *r, const struct object_id *oid,
1162 struct stat *st, const char **path)
1164 struct object_directory *odb;
1165 static struct strbuf buf = STRBUF_INIT;
1167 prepare_alt_odb(r);
1168 for (odb = r->objects->odb; odb; odb = odb->next) {
1169 *path = odb_loose_path(odb, &buf, oid);
1170 if (!lstat(*path, st))
1171 return 0;
1174 return -1;
1178 * Like stat_loose_object(), but actually open the object and return the
1179 * descriptor. See the caveats on the "path" parameter above.
1181 static int open_loose_object(struct repository *r,
1182 const struct object_id *oid, const char **path)
1184 int fd;
1185 struct object_directory *odb;
1186 int most_interesting_errno = ENOENT;
1187 static struct strbuf buf = STRBUF_INIT;
1189 prepare_alt_odb(r);
1190 for (odb = r->objects->odb; odb; odb = odb->next) {
1191 *path = odb_loose_path(odb, &buf, oid);
1192 fd = git_open(*path);
1193 if (fd >= 0)
1194 return fd;
1196 if (most_interesting_errno == ENOENT)
1197 most_interesting_errno = errno;
1199 errno = most_interesting_errno;
1200 return -1;
1203 static int quick_has_loose(struct repository *r,
1204 const struct object_id *oid)
1206 struct object_directory *odb;
1208 prepare_alt_odb(r);
1209 for (odb = r->objects->odb; odb; odb = odb->next) {
1210 if (oidtree_contains(odb_loose_cache(odb, oid), oid))
1211 return 1;
1213 return 0;
1217 * Map and close the given loose object fd. The path argument is used for
1218 * error reporting.
1220 static void *map_fd(int fd, const char *path, unsigned long *size)
1222 void *map = NULL;
1223 struct stat st;
1225 if (!fstat(fd, &st)) {
1226 *size = xsize_t(st.st_size);
1227 if (!*size) {
1228 /* mmap() is forbidden on empty files */
1229 error(_("object file %s is empty"), path);
1230 close(fd);
1231 return NULL;
1233 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
1235 close(fd);
1236 return map;
1239 void *map_loose_object(struct repository *r,
1240 const struct object_id *oid,
1241 unsigned long *size)
1243 const char *p;
1244 int fd = open_loose_object(r, oid, &p);
1246 if (fd < 0)
1247 return NULL;
1248 return map_fd(fd, p, size);
1251 enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
1252 unsigned char *map,
1253 unsigned long mapsize,
1254 void *buffer,
1255 unsigned long bufsiz,
1256 struct strbuf *header)
1258 int status;
1260 /* Get the data stream */
1261 memset(stream, 0, sizeof(*stream));
1262 stream->next_in = map;
1263 stream->avail_in = mapsize;
1264 stream->next_out = buffer;
1265 stream->avail_out = bufsiz;
1267 git_inflate_init(stream);
1268 obj_read_unlock();
1269 status = git_inflate(stream, 0);
1270 obj_read_lock();
1271 if (status < Z_OK)
1272 return ULHR_BAD;
1275 * Check if entire header is unpacked in the first iteration.
1277 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1278 return ULHR_OK;
1281 * We have a header longer than MAX_HEADER_LEN. The "header"
1282 * here is only non-NULL when we run "cat-file
1283 * --allow-unknown-type".
1285 if (!header)
1286 return ULHR_TOO_LONG;
1289 * buffer[0..bufsiz] was not large enough. Copy the partial
1290 * result out to header, and then append the result of further
1291 * reading the stream.
1293 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1294 stream->next_out = buffer;
1295 stream->avail_out = bufsiz;
1297 do {
1298 obj_read_unlock();
1299 status = git_inflate(stream, 0);
1300 obj_read_lock();
1301 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1302 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1303 return 0;
1304 stream->next_out = buffer;
1305 stream->avail_out = bufsiz;
1306 } while (status != Z_STREAM_END);
1307 return ULHR_TOO_LONG;
1310 static void *unpack_loose_rest(git_zstream *stream,
1311 void *buffer, unsigned long size,
1312 const struct object_id *oid)
1314 int bytes = strlen(buffer) + 1;
1315 unsigned char *buf = xmallocz(size);
1316 unsigned long n;
1317 int status = Z_OK;
1319 n = stream->total_out - bytes;
1320 if (n > size)
1321 n = size;
1322 memcpy(buf, (char *) buffer + bytes, n);
1323 bytes = n;
1324 if (bytes <= size) {
1326 * The above condition must be (bytes <= size), not
1327 * (bytes < size). In other words, even though we
1328 * expect no more output and set avail_out to zero,
1329 * the input zlib stream may have bytes that express
1330 * "this concludes the stream", and we *do* want to
1331 * eat that input.
1333 * Otherwise we would not be able to test that we
1334 * consumed all the input to reach the expected size;
1335 * we also want to check that zlib tells us that all
1336 * went well with status == Z_STREAM_END at the end.
1338 stream->next_out = buf + bytes;
1339 stream->avail_out = size - bytes;
1340 while (status == Z_OK) {
1341 obj_read_unlock();
1342 status = git_inflate(stream, Z_FINISH);
1343 obj_read_lock();
1346 if (status == Z_STREAM_END && !stream->avail_in) {
1347 git_inflate_end(stream);
1348 return buf;
1351 if (status < 0)
1352 error(_("corrupt loose object '%s'"), oid_to_hex(oid));
1353 else if (stream->avail_in)
1354 error(_("garbage at end of loose object '%s'"),
1355 oid_to_hex(oid));
1356 free(buf);
1357 return NULL;
1361 * We used to just use "sscanf()", but that's actually way
1362 * too permissive for what we want to check. So do an anal
1363 * object header parse by hand.
1365 int parse_loose_header(const char *hdr, struct object_info *oi)
1367 const char *type_buf = hdr;
1368 size_t size;
1369 int type, type_len = 0;
1372 * The type can be of any size but is followed by
1373 * a space.
1375 for (;;) {
1376 char c = *hdr++;
1377 if (!c)
1378 return -1;
1379 if (c == ' ')
1380 break;
1381 type_len++;
1384 type = type_from_string_gently(type_buf, type_len, 1);
1385 if (oi->type_name)
1386 strbuf_add(oi->type_name, type_buf, type_len);
1387 if (oi->typep)
1388 *oi->typep = type;
1391 * The length must follow immediately, and be in canonical
1392 * decimal format (ie "010" is not valid).
1394 size = *hdr++ - '0';
1395 if (size > 9)
1396 return -1;
1397 if (size) {
1398 for (;;) {
1399 unsigned long c = *hdr - '0';
1400 if (c > 9)
1401 break;
1402 hdr++;
1403 size = st_add(st_mult(size, 10), c);
1407 if (oi->sizep)
1408 *oi->sizep = cast_size_t_to_ulong(size);
1411 * The length must be followed by a zero byte
1413 if (*hdr)
1414 return -1;
1417 * The format is valid, but the type may still be bogus. The
1418 * Caller needs to check its oi->typep.
1420 return 0;
1423 static int loose_object_info(struct repository *r,
1424 const struct object_id *oid,
1425 struct object_info *oi, int flags)
1427 int status = 0;
1428 int fd;
1429 unsigned long mapsize;
1430 const char *path;
1431 void *map;
1432 git_zstream stream;
1433 char hdr[MAX_HEADER_LEN];
1434 struct strbuf hdrbuf = STRBUF_INIT;
1435 unsigned long size_scratch;
1436 enum object_type type_scratch;
1437 int allow_unknown = flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE;
1439 if (oi->delta_base_oid)
1440 oidclr(oi->delta_base_oid);
1443 * If we don't care about type or size, then we don't
1444 * need to look inside the object at all. Note that we
1445 * do not optimize out the stat call, even if the
1446 * caller doesn't care about the disk-size, since our
1447 * return value implicitly indicates whether the
1448 * object even exists.
1450 if (!oi->typep && !oi->type_name && !oi->sizep && !oi->contentp) {
1451 struct stat st;
1452 if (!oi->disk_sizep && (flags & OBJECT_INFO_QUICK))
1453 return quick_has_loose(r, oid) ? 0 : -1;
1454 if (stat_loose_object(r, oid, &st, &path) < 0)
1455 return -1;
1456 if (oi->disk_sizep)
1457 *oi->disk_sizep = st.st_size;
1458 return 0;
1461 fd = open_loose_object(r, oid, &path);
1462 if (fd < 0) {
1463 if (errno != ENOENT)
1464 error_errno(_("unable to open loose object %s"), oid_to_hex(oid));
1465 return -1;
1467 map = map_fd(fd, path, &mapsize);
1468 if (!map)
1469 return -1;
1471 if (!oi->sizep)
1472 oi->sizep = &size_scratch;
1473 if (!oi->typep)
1474 oi->typep = &type_scratch;
1476 if (oi->disk_sizep)
1477 *oi->disk_sizep = mapsize;
1479 switch (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
1480 allow_unknown ? &hdrbuf : NULL)) {
1481 case ULHR_OK:
1482 if (parse_loose_header(hdrbuf.len ? hdrbuf.buf : hdr, oi) < 0)
1483 status = error(_("unable to parse %s header"), oid_to_hex(oid));
1484 else if (!allow_unknown && *oi->typep < 0)
1485 die(_("invalid object type"));
1487 if (!oi->contentp)
1488 break;
1489 *oi->contentp = unpack_loose_rest(&stream, hdr, *oi->sizep, oid);
1490 if (*oi->contentp)
1491 goto cleanup;
1493 status = -1;
1494 break;
1495 case ULHR_BAD:
1496 status = error(_("unable to unpack %s header"),
1497 oid_to_hex(oid));
1498 break;
1499 case ULHR_TOO_LONG:
1500 status = error(_("header for %s too long, exceeds %d bytes"),
1501 oid_to_hex(oid), MAX_HEADER_LEN);
1502 break;
1505 if (status && (flags & OBJECT_INFO_DIE_IF_CORRUPT))
1506 die(_("loose object %s (stored in %s) is corrupt"),
1507 oid_to_hex(oid), path);
1509 git_inflate_end(&stream);
1510 cleanup:
1511 munmap(map, mapsize);
1512 if (oi->sizep == &size_scratch)
1513 oi->sizep = NULL;
1514 strbuf_release(&hdrbuf);
1515 if (oi->typep == &type_scratch)
1516 oi->typep = NULL;
1517 oi->whence = OI_LOOSE;
1518 return status;
1521 int obj_read_use_lock = 0;
1522 pthread_mutex_t obj_read_mutex;
1524 void enable_obj_read_lock(void)
1526 if (obj_read_use_lock)
1527 return;
1529 obj_read_use_lock = 1;
1530 init_recursive_mutex(&obj_read_mutex);
1533 void disable_obj_read_lock(void)
1535 if (!obj_read_use_lock)
1536 return;
1538 obj_read_use_lock = 0;
1539 pthread_mutex_destroy(&obj_read_mutex);
1542 int fetch_if_missing = 1;
1544 static int do_oid_object_info_extended(struct repository *r,
1545 const struct object_id *oid,
1546 struct object_info *oi, unsigned flags)
1548 static struct object_info blank_oi = OBJECT_INFO_INIT;
1549 struct cached_object *co;
1550 struct pack_entry e;
1551 int rtype;
1552 const struct object_id *real = oid;
1553 int already_retried = 0;
1556 if (flags & OBJECT_INFO_LOOKUP_REPLACE)
1557 real = lookup_replace_object(r, oid);
1559 if (is_null_oid(real))
1560 return -1;
1562 if (!oi)
1563 oi = &blank_oi;
1565 co = find_cached_object(real);
1566 if (co) {
1567 if (oi->typep)
1568 *(oi->typep) = co->type;
1569 if (oi->sizep)
1570 *(oi->sizep) = co->size;
1571 if (oi->disk_sizep)
1572 *(oi->disk_sizep) = 0;
1573 if (oi->delta_base_oid)
1574 oidclr(oi->delta_base_oid);
1575 if (oi->type_name)
1576 strbuf_addstr(oi->type_name, type_name(co->type));
1577 if (oi->contentp)
1578 *oi->contentp = xmemdupz(co->buf, co->size);
1579 oi->whence = OI_CACHED;
1580 return 0;
1583 while (1) {
1584 if (find_pack_entry(r, real, &e))
1585 break;
1587 /* Most likely it's a loose object. */
1588 if (!loose_object_info(r, real, oi, flags))
1589 return 0;
1591 /* Not a loose object; someone else may have just packed it. */
1592 if (!(flags & OBJECT_INFO_QUICK)) {
1593 reprepare_packed_git(r);
1594 if (find_pack_entry(r, real, &e))
1595 break;
1599 * If r is the_repository, this might be an attempt at
1600 * accessing a submodule object as if it were in the_repository
1601 * (having called add_submodule_odb() on that submodule's ODB).
1602 * If any such ODBs exist, register them and try again.
1604 if (r == the_repository &&
1605 register_all_submodule_odb_as_alternates())
1606 /* We added some alternates; retry */
1607 continue;
1609 /* Check if it is a missing object */
1610 if (fetch_if_missing && repo_has_promisor_remote(r) &&
1611 !already_retried &&
1612 !(flags & OBJECT_INFO_SKIP_FETCH_OBJECT)) {
1613 promisor_remote_get_direct(r, real, 1);
1614 already_retried = 1;
1615 continue;
1618 if (flags & OBJECT_INFO_DIE_IF_CORRUPT) {
1619 const struct packed_git *p;
1620 if ((flags & OBJECT_INFO_LOOKUP_REPLACE) && !oideq(real, oid))
1621 die(_("replacement %s not found for %s"),
1622 oid_to_hex(real), oid_to_hex(oid));
1623 if ((p = has_packed_and_bad(r, real)))
1624 die(_("packed object %s (stored in %s) is corrupt"),
1625 oid_to_hex(real), p->pack_name);
1627 return -1;
1630 if (oi == &blank_oi)
1632 * We know that the caller doesn't actually need the
1633 * information below, so return early.
1635 return 0;
1636 rtype = packed_object_info(r, e.p, e.offset, oi);
1637 if (rtype < 0) {
1638 mark_bad_packed_object(e.p, real);
1639 return do_oid_object_info_extended(r, real, oi, 0);
1640 } else if (oi->whence == OI_PACKED) {
1641 oi->u.packed.offset = e.offset;
1642 oi->u.packed.pack = e.p;
1643 oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1644 rtype == OBJ_OFS_DELTA);
1647 return 0;
1650 int oid_object_info_extended(struct repository *r, const struct object_id *oid,
1651 struct object_info *oi, unsigned flags)
1653 int ret;
1654 obj_read_lock();
1655 ret = do_oid_object_info_extended(r, oid, oi, flags);
1656 obj_read_unlock();
1657 return ret;
1661 /* returns enum object_type or negative */
1662 int oid_object_info(struct repository *r,
1663 const struct object_id *oid,
1664 unsigned long *sizep)
1666 enum object_type type;
1667 struct object_info oi = OBJECT_INFO_INIT;
1669 oi.typep = &type;
1670 oi.sizep = sizep;
1671 if (oid_object_info_extended(r, oid, &oi,
1672 OBJECT_INFO_LOOKUP_REPLACE) < 0)
1673 return -1;
1674 return type;
1677 int pretend_object_file(void *buf, unsigned long len, enum object_type type,
1678 struct object_id *oid)
1680 struct cached_object *co;
1682 hash_object_file(the_hash_algo, buf, len, type, oid);
1683 if (has_object_file_with_flags(oid, OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT) ||
1684 find_cached_object(oid))
1685 return 0;
1686 ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
1687 co = &cached_objects[cached_object_nr++];
1688 co->size = len;
1689 co->type = type;
1690 co->buf = xmalloc(len);
1691 memcpy(co->buf, buf, len);
1692 oidcpy(&co->oid, oid);
1693 return 0;
1697 * This function dies on corrupt objects; the callers who want to
1698 * deal with them should arrange to call oid_object_info_extended() and give
1699 * error messages themselves.
1701 void *repo_read_object_file(struct repository *r,
1702 const struct object_id *oid,
1703 enum object_type *type,
1704 unsigned long *size)
1706 struct object_info oi = OBJECT_INFO_INIT;
1707 unsigned flags = OBJECT_INFO_DIE_IF_CORRUPT | OBJECT_INFO_LOOKUP_REPLACE;
1708 void *data;
1710 oi.typep = type;
1711 oi.sizep = size;
1712 oi.contentp = &data;
1713 if (oid_object_info_extended(r, oid, &oi, flags))
1714 return NULL;
1716 return data;
1719 void *read_object_with_reference(struct repository *r,
1720 const struct object_id *oid,
1721 enum object_type required_type,
1722 unsigned long *size,
1723 struct object_id *actual_oid_return)
1725 enum object_type type;
1726 void *buffer;
1727 unsigned long isize;
1728 struct object_id actual_oid;
1730 oidcpy(&actual_oid, oid);
1731 while (1) {
1732 int ref_length = -1;
1733 const char *ref_type = NULL;
1735 buffer = repo_read_object_file(r, &actual_oid, &type, &isize);
1736 if (!buffer)
1737 return NULL;
1738 if (type == required_type) {
1739 *size = isize;
1740 if (actual_oid_return)
1741 oidcpy(actual_oid_return, &actual_oid);
1742 return buffer;
1744 /* Handle references */
1745 else if (type == OBJ_COMMIT)
1746 ref_type = "tree ";
1747 else if (type == OBJ_TAG)
1748 ref_type = "object ";
1749 else {
1750 free(buffer);
1751 return NULL;
1753 ref_length = strlen(ref_type);
1755 if (ref_length + the_hash_algo->hexsz > isize ||
1756 memcmp(buffer, ref_type, ref_length) ||
1757 get_oid_hex((char *) buffer + ref_length, &actual_oid)) {
1758 free(buffer);
1759 return NULL;
1761 free(buffer);
1762 /* Now we have the ID of the referred-to object in
1763 * actual_oid. Check again. */
1767 static void hash_object_body(const struct git_hash_algo *algo, git_hash_ctx *c,
1768 const void *buf, unsigned long len,
1769 struct object_id *oid,
1770 char *hdr, int *hdrlen)
1772 algo->init_fn(c);
1773 algo->update_fn(c, hdr, *hdrlen);
1774 algo->update_fn(c, buf, len);
1775 algo->final_oid_fn(oid, c);
1778 static void write_object_file_prepare(const struct git_hash_algo *algo,
1779 const void *buf, unsigned long len,
1780 enum object_type type, struct object_id *oid,
1781 char *hdr, int *hdrlen)
1783 git_hash_ctx c;
1785 /* Generate the header */
1786 *hdrlen = format_object_header(hdr, *hdrlen, type, len);
1788 /* Sha1.. */
1789 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1792 static void write_object_file_prepare_literally(const struct git_hash_algo *algo,
1793 const void *buf, unsigned long len,
1794 const char *type, struct object_id *oid,
1795 char *hdr, int *hdrlen)
1797 git_hash_ctx c;
1799 *hdrlen = format_object_header_literally(hdr, *hdrlen, type, len);
1800 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1804 * Move the just written object into its final resting place.
1806 int finalize_object_file(const char *tmpfile, const char *filename)
1808 int ret = 0;
1810 if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
1811 goto try_rename;
1812 else if (link(tmpfile, filename))
1813 ret = errno;
1816 * Coda hack - coda doesn't like cross-directory links,
1817 * so we fall back to a rename, which will mean that it
1818 * won't be able to check collisions, but that's not a
1819 * big deal.
1821 * The same holds for FAT formatted media.
1823 * When this succeeds, we just return. We have nothing
1824 * left to unlink.
1826 if (ret && ret != EEXIST) {
1827 try_rename:
1828 if (!rename(tmpfile, filename))
1829 goto out;
1830 ret = errno;
1832 unlink_or_warn(tmpfile);
1833 if (ret) {
1834 if (ret != EEXIST) {
1835 return error_errno(_("unable to write file %s"), filename);
1837 /* FIXME!!! Collision check here ? */
1840 out:
1841 if (adjust_shared_perm(filename))
1842 return error(_("unable to set permission to '%s'"), filename);
1843 return 0;
1846 static void hash_object_file_literally(const struct git_hash_algo *algo,
1847 const void *buf, unsigned long len,
1848 const char *type, struct object_id *oid)
1850 char hdr[MAX_HEADER_LEN];
1851 int hdrlen = sizeof(hdr);
1853 write_object_file_prepare_literally(algo, buf, len, type, oid, hdr, &hdrlen);
1856 void hash_object_file(const struct git_hash_algo *algo, const void *buf,
1857 unsigned long len, enum object_type type,
1858 struct object_id *oid)
1860 hash_object_file_literally(algo, buf, len, type_name(type), oid);
1863 /* Finalize a file on disk, and close it. */
1864 static void close_loose_object(int fd, const char *filename)
1866 if (the_repository->objects->odb->will_destroy)
1867 goto out;
1869 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
1870 fsync_loose_object_bulk_checkin(fd, filename);
1871 else if (fsync_object_files > 0)
1872 fsync_or_die(fd, filename);
1873 else
1874 fsync_component_or_die(FSYNC_COMPONENT_LOOSE_OBJECT, fd,
1875 filename);
1877 out:
1878 if (close(fd) != 0)
1879 die_errno(_("error when closing loose object file"));
1882 /* Size of directory component, including the ending '/' */
1883 static inline int directory_size(const char *filename)
1885 const char *s = strrchr(filename, '/');
1886 if (!s)
1887 return 0;
1888 return s - filename + 1;
1892 * This creates a temporary file in the same directory as the final
1893 * 'filename'
1895 * We want to avoid cross-directory filename renames, because those
1896 * can have problems on various filesystems (FAT, NFS, Coda).
1898 static int create_tmpfile(struct strbuf *tmp, const char *filename)
1900 int fd, dirlen = directory_size(filename);
1902 strbuf_reset(tmp);
1903 strbuf_add(tmp, filename, dirlen);
1904 strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1905 fd = git_mkstemp_mode(tmp->buf, 0444);
1906 if (fd < 0 && dirlen && errno == ENOENT) {
1908 * Make sure the directory exists; note that the contents
1909 * of the buffer are undefined after mkstemp returns an
1910 * error, so we have to rewrite the whole buffer from
1911 * scratch.
1913 strbuf_reset(tmp);
1914 strbuf_add(tmp, filename, dirlen - 1);
1915 if (mkdir(tmp->buf, 0777) && errno != EEXIST)
1916 return -1;
1917 if (adjust_shared_perm(tmp->buf))
1918 return -1;
1920 /* Try again */
1921 strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1922 fd = git_mkstemp_mode(tmp->buf, 0444);
1924 return fd;
1928 * Common steps for loose object writers to start writing loose
1929 * objects:
1931 * - Create tmpfile for the loose object.
1932 * - Setup zlib stream for compression.
1933 * - Start to feed header to zlib stream.
1935 * Returns a "fd", which should later be provided to
1936 * end_loose_object_common().
1938 static int start_loose_object_common(struct strbuf *tmp_file,
1939 const char *filename, unsigned flags,
1940 git_zstream *stream,
1941 unsigned char *buf, size_t buflen,
1942 git_hash_ctx *c,
1943 char *hdr, int hdrlen)
1945 int fd;
1947 fd = create_tmpfile(tmp_file, filename);
1948 if (fd < 0) {
1949 if (flags & HASH_SILENT)
1950 return -1;
1951 else if (errno == EACCES)
1952 return error(_("insufficient permission for adding "
1953 "an object to repository database %s"),
1954 get_object_directory());
1955 else
1956 return error_errno(
1957 _("unable to create temporary file"));
1960 /* Setup zlib stream for compression */
1961 git_deflate_init(stream, zlib_compression_level);
1962 stream->next_out = buf;
1963 stream->avail_out = buflen;
1964 the_hash_algo->init_fn(c);
1966 /* Start to feed header to zlib stream */
1967 stream->next_in = (unsigned char *)hdr;
1968 stream->avail_in = hdrlen;
1969 while (git_deflate(stream, 0) == Z_OK)
1970 ; /* nothing */
1971 the_hash_algo->update_fn(c, hdr, hdrlen);
1973 return fd;
1977 * Common steps for the inner git_deflate() loop for writing loose
1978 * objects. Returns what git_deflate() returns.
1980 static int write_loose_object_common(git_hash_ctx *c,
1981 git_zstream *stream, const int flush,
1982 unsigned char *in0, const int fd,
1983 unsigned char *compressed,
1984 const size_t compressed_len)
1986 int ret;
1988 ret = git_deflate(stream, flush ? Z_FINISH : 0);
1989 the_hash_algo->update_fn(c, in0, stream->next_in - in0);
1990 if (write_in_full(fd, compressed, stream->next_out - compressed) < 0)
1991 die_errno(_("unable to write loose object file"));
1992 stream->next_out = compressed;
1993 stream->avail_out = compressed_len;
1995 return ret;
1999 * Common steps for loose object writers to end writing loose objects:
2001 * - End the compression of zlib stream.
2002 * - Get the calculated oid to "oid".
2004 static int end_loose_object_common(git_hash_ctx *c, git_zstream *stream,
2005 struct object_id *oid)
2007 int ret;
2009 ret = git_deflate_end_gently(stream);
2010 if (ret != Z_OK)
2011 return ret;
2012 the_hash_algo->final_oid_fn(oid, c);
2014 return Z_OK;
2017 static int write_loose_object(const struct object_id *oid, char *hdr,
2018 int hdrlen, const void *buf, unsigned long len,
2019 time_t mtime, unsigned flags)
2021 int fd, ret;
2022 unsigned char compressed[4096];
2023 git_zstream stream;
2024 git_hash_ctx c;
2025 struct object_id parano_oid;
2026 static struct strbuf tmp_file = STRBUF_INIT;
2027 static struct strbuf filename = STRBUF_INIT;
2029 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2030 prepare_loose_object_bulk_checkin();
2032 loose_object_path(the_repository, &filename, oid);
2034 fd = start_loose_object_common(&tmp_file, filename.buf, flags,
2035 &stream, compressed, sizeof(compressed),
2036 &c, hdr, hdrlen);
2037 if (fd < 0)
2038 return -1;
2040 /* Then the data itself.. */
2041 stream.next_in = (void *)buf;
2042 stream.avail_in = len;
2043 do {
2044 unsigned char *in0 = stream.next_in;
2046 ret = write_loose_object_common(&c, &stream, 1, in0, fd,
2047 compressed, sizeof(compressed));
2048 } while (ret == Z_OK);
2050 if (ret != Z_STREAM_END)
2051 die(_("unable to deflate new object %s (%d)"), oid_to_hex(oid),
2052 ret);
2053 ret = end_loose_object_common(&c, &stream, &parano_oid);
2054 if (ret != Z_OK)
2055 die(_("deflateEnd on object %s failed (%d)"), oid_to_hex(oid),
2056 ret);
2057 if (!oideq(oid, &parano_oid))
2058 die(_("confused by unstable object source data for %s"),
2059 oid_to_hex(oid));
2061 close_loose_object(fd, tmp_file.buf);
2063 if (mtime) {
2064 struct utimbuf utb;
2065 utb.actime = mtime;
2066 utb.modtime = mtime;
2067 if (utime(tmp_file.buf, &utb) < 0 &&
2068 !(flags & HASH_SILENT))
2069 warning_errno(_("failed utime() on %s"), tmp_file.buf);
2072 return finalize_object_file(tmp_file.buf, filename.buf);
2075 static int freshen_loose_object(const struct object_id *oid)
2077 return check_and_freshen(oid, 1);
2080 static int freshen_packed_object(const struct object_id *oid)
2082 struct pack_entry e;
2083 if (!find_pack_entry(the_repository, oid, &e))
2084 return 0;
2085 if (e.p->is_cruft)
2086 return 0;
2087 if (e.p->freshened)
2088 return 1;
2089 if (!freshen_file(e.p->pack_name))
2090 return 0;
2091 e.p->freshened = 1;
2092 return 1;
2095 int stream_loose_object(struct input_stream *in_stream, size_t len,
2096 struct object_id *oid)
2098 int fd, ret, err = 0, flush = 0;
2099 unsigned char compressed[4096];
2100 git_zstream stream;
2101 git_hash_ctx c;
2102 struct strbuf tmp_file = STRBUF_INIT;
2103 struct strbuf filename = STRBUF_INIT;
2104 int dirlen;
2105 char hdr[MAX_HEADER_LEN];
2106 int hdrlen;
2108 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2109 prepare_loose_object_bulk_checkin();
2111 /* Since oid is not determined, save tmp file to odb path. */
2112 strbuf_addf(&filename, "%s/", get_object_directory());
2113 hdrlen = format_object_header(hdr, sizeof(hdr), OBJ_BLOB, len);
2116 * Common steps for write_loose_object and stream_loose_object to
2117 * start writing loose objects:
2119 * - Create tmpfile for the loose object.
2120 * - Setup zlib stream for compression.
2121 * - Start to feed header to zlib stream.
2123 fd = start_loose_object_common(&tmp_file, filename.buf, 0,
2124 &stream, compressed, sizeof(compressed),
2125 &c, hdr, hdrlen);
2126 if (fd < 0) {
2127 err = -1;
2128 goto cleanup;
2131 /* Then the data itself.. */
2132 do {
2133 unsigned char *in0 = stream.next_in;
2135 if (!stream.avail_in && !in_stream->is_finished) {
2136 const void *in = in_stream->read(in_stream, &stream.avail_in);
2137 stream.next_in = (void *)in;
2138 in0 = (unsigned char *)in;
2139 /* All data has been read. */
2140 if (in_stream->is_finished)
2141 flush = 1;
2143 ret = write_loose_object_common(&c, &stream, flush, in0, fd,
2144 compressed, sizeof(compressed));
2146 * Unlike write_loose_object(), we do not have the entire
2147 * buffer. If we get Z_BUF_ERROR due to too few input bytes,
2148 * then we'll replenish them in the next input_stream->read()
2149 * call when we loop.
2151 } while (ret == Z_OK || ret == Z_BUF_ERROR);
2153 if (stream.total_in != len + hdrlen)
2154 die(_("write stream object %ld != %"PRIuMAX), stream.total_in,
2155 (uintmax_t)len + hdrlen);
2158 * Common steps for write_loose_object and stream_loose_object to
2159 * end writing loose oject:
2161 * - End the compression of zlib stream.
2162 * - Get the calculated oid.
2164 if (ret != Z_STREAM_END)
2165 die(_("unable to stream deflate new object (%d)"), ret);
2166 ret = end_loose_object_common(&c, &stream, oid);
2167 if (ret != Z_OK)
2168 die(_("deflateEnd on stream object failed (%d)"), ret);
2169 close_loose_object(fd, tmp_file.buf);
2171 if (freshen_packed_object(oid) || freshen_loose_object(oid)) {
2172 unlink_or_warn(tmp_file.buf);
2173 goto cleanup;
2176 loose_object_path(the_repository, &filename, oid);
2178 /* We finally know the object path, and create the missing dir. */
2179 dirlen = directory_size(filename.buf);
2180 if (dirlen) {
2181 struct strbuf dir = STRBUF_INIT;
2182 strbuf_add(&dir, filename.buf, dirlen);
2184 if (mkdir_in_gitdir(dir.buf) && errno != EEXIST) {
2185 err = error_errno(_("unable to create directory %s"), dir.buf);
2186 strbuf_release(&dir);
2187 goto cleanup;
2189 strbuf_release(&dir);
2192 err = finalize_object_file(tmp_file.buf, filename.buf);
2193 cleanup:
2194 strbuf_release(&tmp_file);
2195 strbuf_release(&filename);
2196 return err;
2199 int write_object_file_flags(const void *buf, unsigned long len,
2200 enum object_type type, struct object_id *oid,
2201 unsigned flags)
2203 char hdr[MAX_HEADER_LEN];
2204 int hdrlen = sizeof(hdr);
2206 /* Normally if we have it in the pack then we do not bother writing
2207 * it out into .git/objects/??/?{38} file.
2209 write_object_file_prepare(the_hash_algo, buf, len, type, oid, hdr,
2210 &hdrlen);
2211 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2212 return 0;
2213 return write_loose_object(oid, hdr, hdrlen, buf, len, 0, flags);
2216 int write_object_file_literally(const void *buf, unsigned long len,
2217 const char *type, struct object_id *oid,
2218 unsigned flags)
2220 char *header;
2221 int hdrlen, status = 0;
2223 /* type string, SP, %lu of the length plus NUL must fit this */
2224 hdrlen = strlen(type) + MAX_HEADER_LEN;
2225 header = xmalloc(hdrlen);
2226 write_object_file_prepare_literally(the_hash_algo, buf, len, type,
2227 oid, header, &hdrlen);
2229 if (!(flags & HASH_WRITE_OBJECT))
2230 goto cleanup;
2231 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2232 goto cleanup;
2233 status = write_loose_object(oid, header, hdrlen, buf, len, 0, 0);
2235 cleanup:
2236 free(header);
2237 return status;
2240 int force_object_loose(const struct object_id *oid, time_t mtime)
2242 void *buf;
2243 unsigned long len;
2244 struct object_info oi = OBJECT_INFO_INIT;
2245 enum object_type type;
2246 char hdr[MAX_HEADER_LEN];
2247 int hdrlen;
2248 int ret;
2250 if (has_loose_object(oid))
2251 return 0;
2252 oi.typep = &type;
2253 oi.sizep = &len;
2254 oi.contentp = &buf;
2255 if (oid_object_info_extended(the_repository, oid, &oi, 0))
2256 return error(_("cannot read object for %s"), oid_to_hex(oid));
2257 hdrlen = format_object_header(hdr, sizeof(hdr), type, len);
2258 ret = write_loose_object(oid, hdr, hdrlen, buf, len, mtime, 0);
2259 free(buf);
2261 return ret;
2264 int has_object(struct repository *r, const struct object_id *oid,
2265 unsigned flags)
2267 int quick = !(flags & HAS_OBJECT_RECHECK_PACKED);
2268 unsigned object_info_flags = OBJECT_INFO_SKIP_FETCH_OBJECT |
2269 (quick ? OBJECT_INFO_QUICK : 0);
2271 if (!startup_info->have_repository)
2272 return 0;
2273 return oid_object_info_extended(r, oid, NULL, object_info_flags) >= 0;
2276 int repo_has_object_file_with_flags(struct repository *r,
2277 const struct object_id *oid, int flags)
2279 if (!startup_info->have_repository)
2280 return 0;
2281 return oid_object_info_extended(r, oid, NULL, flags) >= 0;
2284 int repo_has_object_file(struct repository *r,
2285 const struct object_id *oid)
2287 return repo_has_object_file_with_flags(r, oid, 0);
2291 * We can't use the normal fsck_error_function() for index_mem(),
2292 * because we don't yet have a valid oid for it to report. Instead,
2293 * report the minimal fsck error here, and rely on the caller to
2294 * give more context.
2296 static int hash_format_check_report(struct fsck_options *opts,
2297 const struct object_id *oid,
2298 enum object_type object_type,
2299 enum fsck_msg_type msg_type,
2300 enum fsck_msg_id msg_id,
2301 const char *message)
2303 error(_("object fails fsck: %s"), message);
2304 return 1;
2307 static int index_mem(struct index_state *istate,
2308 struct object_id *oid, void *buf, size_t size,
2309 enum object_type type,
2310 const char *path, unsigned flags)
2312 int ret = 0;
2313 int re_allocated = 0;
2314 int write_object = flags & HASH_WRITE_OBJECT;
2316 if (!type)
2317 type = OBJ_BLOB;
2320 * Convert blobs to git internal format
2322 if ((type == OBJ_BLOB) && path) {
2323 struct strbuf nbuf = STRBUF_INIT;
2324 if (convert_to_git(istate, path, buf, size, &nbuf,
2325 get_conv_flags(flags))) {
2326 buf = strbuf_detach(&nbuf, &size);
2327 re_allocated = 1;
2330 if (flags & HASH_FORMAT_CHECK) {
2331 struct fsck_options opts = FSCK_OPTIONS_DEFAULT;
2333 opts.strict = 1;
2334 opts.error_func = hash_format_check_report;
2335 if (fsck_buffer(null_oid(), type, buf, size, &opts))
2336 die(_("refusing to create malformed object"));
2337 fsck_finish(&opts);
2340 if (write_object)
2341 ret = write_object_file(buf, size, type, oid);
2342 else
2343 hash_object_file(the_hash_algo, buf, size, type, oid);
2344 if (re_allocated)
2345 free(buf);
2346 return ret;
2349 static int index_stream_convert_blob(struct index_state *istate,
2350 struct object_id *oid,
2351 int fd,
2352 const char *path,
2353 unsigned flags)
2355 int ret = 0;
2356 const int write_object = flags & HASH_WRITE_OBJECT;
2357 struct strbuf sbuf = STRBUF_INIT;
2359 assert(path);
2360 assert(would_convert_to_git_filter_fd(istate, path));
2362 convert_to_git_filter_fd(istate, path, fd, &sbuf,
2363 get_conv_flags(flags));
2365 if (write_object)
2366 ret = write_object_file(sbuf.buf, sbuf.len, OBJ_BLOB,
2367 oid);
2368 else
2369 hash_object_file(the_hash_algo, sbuf.buf, sbuf.len, OBJ_BLOB,
2370 oid);
2371 strbuf_release(&sbuf);
2372 return ret;
2375 static int index_pipe(struct index_state *istate, struct object_id *oid,
2376 int fd, enum object_type type,
2377 const char *path, unsigned flags)
2379 struct strbuf sbuf = STRBUF_INIT;
2380 int ret;
2382 if (strbuf_read(&sbuf, fd, 4096) >= 0)
2383 ret = index_mem(istate, oid, sbuf.buf, sbuf.len, type, path, flags);
2384 else
2385 ret = -1;
2386 strbuf_release(&sbuf);
2387 return ret;
2390 #define SMALL_FILE_SIZE (32*1024)
2392 static int index_core(struct index_state *istate,
2393 struct object_id *oid, int fd, size_t size,
2394 enum object_type type, const char *path,
2395 unsigned flags)
2397 int ret;
2399 if (!size) {
2400 ret = index_mem(istate, oid, "", size, type, path, flags);
2401 } else if (size <= SMALL_FILE_SIZE) {
2402 char *buf = xmalloc(size);
2403 ssize_t read_result = read_in_full(fd, buf, size);
2404 if (read_result < 0)
2405 ret = error_errno(_("read error while indexing %s"),
2406 path ? path : "<unknown>");
2407 else if (read_result != size)
2408 ret = error(_("short read while indexing %s"),
2409 path ? path : "<unknown>");
2410 else
2411 ret = index_mem(istate, oid, buf, size, type, path, flags);
2412 free(buf);
2413 } else {
2414 void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
2415 ret = index_mem(istate, oid, buf, size, type, path, flags);
2416 munmap(buf, size);
2418 return ret;
2422 * This creates one packfile per large blob unless bulk-checkin
2423 * machinery is "plugged".
2425 * This also bypasses the usual "convert-to-git" dance, and that is on
2426 * purpose. We could write a streaming version of the converting
2427 * functions and insert that before feeding the data to fast-import
2428 * (or equivalent in-core API described above). However, that is
2429 * somewhat complicated, as we do not know the size of the filter
2430 * result, which we need to know beforehand when writing a git object.
2431 * Since the primary motivation for trying to stream from the working
2432 * tree file and to avoid mmaping it in core is to deal with large
2433 * binary blobs, they generally do not want to get any conversion, and
2434 * callers should avoid this code path when filters are requested.
2436 static int index_stream(struct object_id *oid, int fd, size_t size,
2437 enum object_type type, const char *path,
2438 unsigned flags)
2440 return index_bulk_checkin(oid, fd, size, type, path, flags);
2443 int index_fd(struct index_state *istate, struct object_id *oid,
2444 int fd, struct stat *st,
2445 enum object_type type, const char *path, unsigned flags)
2447 int ret;
2450 * Call xsize_t() only when needed to avoid potentially unnecessary
2451 * die() for large files.
2453 if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(istate, path))
2454 ret = index_stream_convert_blob(istate, oid, fd, path, flags);
2455 else if (!S_ISREG(st->st_mode))
2456 ret = index_pipe(istate, oid, fd, type, path, flags);
2457 else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
2458 (path && would_convert_to_git(istate, path)))
2459 ret = index_core(istate, oid, fd, xsize_t(st->st_size),
2460 type, path, flags);
2461 else
2462 ret = index_stream(oid, fd, xsize_t(st->st_size), type, path,
2463 flags);
2464 close(fd);
2465 return ret;
2468 int index_path(struct index_state *istate, struct object_id *oid,
2469 const char *path, struct stat *st, unsigned flags)
2471 int fd;
2472 struct strbuf sb = STRBUF_INIT;
2473 int rc = 0;
2475 switch (st->st_mode & S_IFMT) {
2476 case S_IFREG:
2477 fd = open(path, O_RDONLY);
2478 if (fd < 0)
2479 return error_errno("open(\"%s\")", path);
2480 if (index_fd(istate, oid, fd, st, OBJ_BLOB, path, flags) < 0)
2481 return error(_("%s: failed to insert into database"),
2482 path);
2483 break;
2484 case S_IFLNK:
2485 if (strbuf_readlink(&sb, path, st->st_size))
2486 return error_errno("readlink(\"%s\")", path);
2487 if (!(flags & HASH_WRITE_OBJECT))
2488 hash_object_file(the_hash_algo, sb.buf, sb.len,
2489 OBJ_BLOB, oid);
2490 else if (write_object_file(sb.buf, sb.len, OBJ_BLOB, oid))
2491 rc = error(_("%s: failed to insert into database"), path);
2492 strbuf_release(&sb);
2493 break;
2494 case S_IFDIR:
2495 return resolve_gitlink_ref(path, "HEAD", oid);
2496 default:
2497 return error(_("%s: unsupported file type"), path);
2499 return rc;
2502 int read_pack_header(int fd, struct pack_header *header)
2504 if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
2505 /* "eof before pack header was fully read" */
2506 return PH_ERROR_EOF;
2508 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2509 /* "protocol error (pack signature mismatch detected)" */
2510 return PH_ERROR_PACK_SIGNATURE;
2511 if (!pack_version_ok(header->hdr_version))
2512 /* "protocol error (pack version unsupported)" */
2513 return PH_ERROR_PROTOCOL;
2514 return 0;
2517 void assert_oid_type(const struct object_id *oid, enum object_type expect)
2519 enum object_type type = oid_object_info(the_repository, oid, NULL);
2520 if (type < 0)
2521 die(_("%s is not a valid object"), oid_to_hex(oid));
2522 if (type != expect)
2523 die(_("%s is not a valid '%s' object"), oid_to_hex(oid),
2524 type_name(expect));
2527 int for_each_file_in_obj_subdir(unsigned int subdir_nr,
2528 struct strbuf *path,
2529 each_loose_object_fn obj_cb,
2530 each_loose_cruft_fn cruft_cb,
2531 each_loose_subdir_fn subdir_cb,
2532 void *data)
2534 size_t origlen, baselen;
2535 DIR *dir;
2536 struct dirent *de;
2537 int r = 0;
2538 struct object_id oid;
2540 if (subdir_nr > 0xff)
2541 BUG("invalid loose object subdirectory: %x", subdir_nr);
2543 origlen = path->len;
2544 strbuf_complete(path, '/');
2545 strbuf_addf(path, "%02x", subdir_nr);
2547 dir = opendir(path->buf);
2548 if (!dir) {
2549 if (errno != ENOENT)
2550 r = error_errno(_("unable to open %s"), path->buf);
2551 strbuf_setlen(path, origlen);
2552 return r;
2555 oid.hash[0] = subdir_nr;
2556 strbuf_addch(path, '/');
2557 baselen = path->len;
2559 while ((de = readdir_skip_dot_and_dotdot(dir))) {
2560 size_t namelen;
2562 namelen = strlen(de->d_name);
2563 strbuf_setlen(path, baselen);
2564 strbuf_add(path, de->d_name, namelen);
2565 if (namelen == the_hash_algo->hexsz - 2 &&
2566 !hex_to_bytes(oid.hash + 1, de->d_name,
2567 the_hash_algo->rawsz - 1)) {
2568 oid_set_algo(&oid, the_hash_algo);
2569 if (obj_cb) {
2570 r = obj_cb(&oid, path->buf, data);
2571 if (r)
2572 break;
2574 continue;
2577 if (cruft_cb) {
2578 r = cruft_cb(de->d_name, path->buf, data);
2579 if (r)
2580 break;
2583 closedir(dir);
2585 strbuf_setlen(path, baselen - 1);
2586 if (!r && subdir_cb)
2587 r = subdir_cb(subdir_nr, path->buf, data);
2589 strbuf_setlen(path, origlen);
2591 return r;
2594 int for_each_loose_file_in_objdir_buf(struct strbuf *path,
2595 each_loose_object_fn obj_cb,
2596 each_loose_cruft_fn cruft_cb,
2597 each_loose_subdir_fn subdir_cb,
2598 void *data)
2600 int r = 0;
2601 int i;
2603 for (i = 0; i < 256; i++) {
2604 r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
2605 subdir_cb, data);
2606 if (r)
2607 break;
2610 return r;
2613 int for_each_loose_file_in_objdir(const char *path,
2614 each_loose_object_fn obj_cb,
2615 each_loose_cruft_fn cruft_cb,
2616 each_loose_subdir_fn subdir_cb,
2617 void *data)
2619 struct strbuf buf = STRBUF_INIT;
2620 int r;
2622 strbuf_addstr(&buf, path);
2623 r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
2624 subdir_cb, data);
2625 strbuf_release(&buf);
2627 return r;
2630 int for_each_loose_object(each_loose_object_fn cb, void *data,
2631 enum for_each_object_flags flags)
2633 struct object_directory *odb;
2635 prepare_alt_odb(the_repository);
2636 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
2637 int r = for_each_loose_file_in_objdir(odb->path, cb, NULL,
2638 NULL, data);
2639 if (r)
2640 return r;
2642 if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2643 break;
2646 return 0;
2649 static int append_loose_object(const struct object_id *oid,
2650 const char *path UNUSED,
2651 void *data)
2653 oidtree_insert(data, oid);
2654 return 0;
2657 struct oidtree *odb_loose_cache(struct object_directory *odb,
2658 const struct object_id *oid)
2660 int subdir_nr = oid->hash[0];
2661 struct strbuf buf = STRBUF_INIT;
2662 size_t word_bits = bitsizeof(odb->loose_objects_subdir_seen[0]);
2663 size_t word_index = subdir_nr / word_bits;
2664 size_t mask = (size_t)1u << (subdir_nr % word_bits);
2665 uint32_t *bitmap;
2667 if (subdir_nr < 0 ||
2668 subdir_nr >= bitsizeof(odb->loose_objects_subdir_seen))
2669 BUG("subdir_nr out of range");
2671 bitmap = &odb->loose_objects_subdir_seen[word_index];
2672 if (*bitmap & mask)
2673 return odb->loose_objects_cache;
2674 if (!odb->loose_objects_cache) {
2675 ALLOC_ARRAY(odb->loose_objects_cache, 1);
2676 oidtree_init(odb->loose_objects_cache);
2678 strbuf_addstr(&buf, odb->path);
2679 for_each_file_in_obj_subdir(subdir_nr, &buf,
2680 append_loose_object,
2681 NULL, NULL,
2682 odb->loose_objects_cache);
2683 *bitmap |= mask;
2684 strbuf_release(&buf);
2685 return odb->loose_objects_cache;
2688 void odb_clear_loose_cache(struct object_directory *odb)
2690 oidtree_clear(odb->loose_objects_cache);
2691 FREE_AND_NULL(odb->loose_objects_cache);
2692 memset(&odb->loose_objects_subdir_seen, 0,
2693 sizeof(odb->loose_objects_subdir_seen));
2696 static int check_stream_oid(git_zstream *stream,
2697 const char *hdr,
2698 unsigned long size,
2699 const char *path,
2700 const struct object_id *expected_oid)
2702 git_hash_ctx c;
2703 struct object_id real_oid;
2704 unsigned char buf[4096];
2705 unsigned long total_read;
2706 int status = Z_OK;
2708 the_hash_algo->init_fn(&c);
2709 the_hash_algo->update_fn(&c, hdr, stream->total_out);
2712 * We already read some bytes into hdr, but the ones up to the NUL
2713 * do not count against the object's content size.
2715 total_read = stream->total_out - strlen(hdr) - 1;
2718 * This size comparison must be "<=" to read the final zlib packets;
2719 * see the comment in unpack_loose_rest for details.
2721 while (total_read <= size &&
2722 (status == Z_OK ||
2723 (status == Z_BUF_ERROR && !stream->avail_out))) {
2724 stream->next_out = buf;
2725 stream->avail_out = sizeof(buf);
2726 if (size - total_read < stream->avail_out)
2727 stream->avail_out = size - total_read;
2728 status = git_inflate(stream, Z_FINISH);
2729 the_hash_algo->update_fn(&c, buf, stream->next_out - buf);
2730 total_read += stream->next_out - buf;
2732 git_inflate_end(stream);
2734 if (status != Z_STREAM_END) {
2735 error(_("corrupt loose object '%s'"), oid_to_hex(expected_oid));
2736 return -1;
2738 if (stream->avail_in) {
2739 error(_("garbage at end of loose object '%s'"),
2740 oid_to_hex(expected_oid));
2741 return -1;
2744 the_hash_algo->final_oid_fn(&real_oid, &c);
2745 if (!oideq(expected_oid, &real_oid)) {
2746 error(_("hash mismatch for %s (expected %s)"), path,
2747 oid_to_hex(expected_oid));
2748 return -1;
2751 return 0;
2754 int read_loose_object(const char *path,
2755 const struct object_id *expected_oid,
2756 struct object_id *real_oid,
2757 void **contents,
2758 struct object_info *oi)
2760 int ret = -1;
2761 int fd;
2762 void *map = NULL;
2763 unsigned long mapsize;
2764 git_zstream stream;
2765 char hdr[MAX_HEADER_LEN];
2766 unsigned long *size = oi->sizep;
2768 fd = git_open(path);
2769 if (fd >= 0)
2770 map = map_fd(fd, path, &mapsize);
2771 if (!map) {
2772 error_errno(_("unable to mmap %s"), path);
2773 goto out;
2776 if (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
2777 NULL) != ULHR_OK) {
2778 error(_("unable to unpack header of %s"), path);
2779 goto out;
2782 if (parse_loose_header(hdr, oi) < 0) {
2783 error(_("unable to parse header of %s"), path);
2784 git_inflate_end(&stream);
2785 goto out;
2788 if (*oi->typep == OBJ_BLOB && *size > big_file_threshold) {
2789 if (check_stream_oid(&stream, hdr, *size, path, expected_oid) < 0)
2790 goto out;
2791 } else {
2792 *contents = unpack_loose_rest(&stream, hdr, *size, expected_oid);
2793 if (!*contents) {
2794 error(_("unable to unpack contents of %s"), path);
2795 git_inflate_end(&stream);
2796 goto out;
2798 hash_object_file_literally(the_repository->hash_algo,
2799 *contents, *size,
2800 oi->type_name->buf, real_oid);
2801 if (!oideq(expected_oid, real_oid))
2802 goto out;
2805 ret = 0; /* everything checks out */
2807 out:
2808 if (map)
2809 munmap(map, mapsize);
2810 return ret;