repack: disable writing bitmaps when doing a local repack
[git/gitster.git] / object-file.c
bloba6574b265d230e1f44efc8cc26923243fd68c240
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 "cache.h"
10 #include "config.h"
11 #include "string-list.h"
12 #include "lockfile.h"
13 #include "delta.h"
14 #include "pack.h"
15 #include "blob.h"
16 #include "commit.h"
17 #include "run-command.h"
18 #include "tag.h"
19 #include "tree.h"
20 #include "tree-walk.h"
21 #include "refs.h"
22 #include "pack-revindex.h"
23 #include "hash-lookup.h"
24 #include "bulk-checkin.h"
25 #include "repository.h"
26 #include "replace-object.h"
27 #include "streaming.h"
28 #include "dir.h"
29 #include "list.h"
30 #include "mergesort.h"
31 #include "quote.h"
32 #include "packfile.h"
33 #include "object-store.h"
34 #include "promisor-remote.h"
35 #include "submodule.h"
36 #include "fsck.h"
38 /* The maximum size for an object header. */
39 #define MAX_HEADER_LEN 32
42 #define EMPTY_TREE_SHA1_BIN_LITERAL \
43 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60" \
44 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04"
45 #define EMPTY_TREE_SHA256_BIN_LITERAL \
46 "\x6e\xf1\x9b\x41\x22\x5c\x53\x69\xf1\xc1" \
47 "\x04\xd4\x5d\x8d\x85\xef\xa9\xb0\x57\xb5" \
48 "\x3b\x14\xb4\xb9\xb9\x39\xdd\x74\xde\xcc" \
49 "\x53\x21"
51 #define EMPTY_BLOB_SHA1_BIN_LITERAL \
52 "\xe6\x9d\xe2\x9b\xb2\xd1\xd6\x43\x4b\x8b" \
53 "\x29\xae\x77\x5a\xd8\xc2\xe4\x8c\x53\x91"
54 #define EMPTY_BLOB_SHA256_BIN_LITERAL \
55 "\x47\x3a\x0f\x4c\x3b\xe8\xa9\x36\x81\xa2" \
56 "\x67\xe3\xb1\xe9\xa7\xdc\xda\x11\x85\x43" \
57 "\x6f\xe1\x41\xf7\x74\x91\x20\xa3\x03\x72" \
58 "\x18\x13"
60 static const struct object_id empty_tree_oid = {
61 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
62 .algo = GIT_HASH_SHA1,
64 static const struct object_id empty_blob_oid = {
65 .hash = EMPTY_BLOB_SHA1_BIN_LITERAL,
66 .algo = GIT_HASH_SHA1,
68 static const struct object_id null_oid_sha1 = {
69 .hash = {0},
70 .algo = GIT_HASH_SHA1,
72 static const struct object_id empty_tree_oid_sha256 = {
73 .hash = EMPTY_TREE_SHA256_BIN_LITERAL,
74 .algo = GIT_HASH_SHA256,
76 static const struct object_id empty_blob_oid_sha256 = {
77 .hash = EMPTY_BLOB_SHA256_BIN_LITERAL,
78 .algo = GIT_HASH_SHA256,
80 static const struct object_id null_oid_sha256 = {
81 .hash = {0},
82 .algo = GIT_HASH_SHA256,
85 static void git_hash_sha1_init(git_hash_ctx *ctx)
87 git_SHA1_Init(&ctx->sha1);
90 static void git_hash_sha1_clone(git_hash_ctx *dst, const git_hash_ctx *src)
92 git_SHA1_Clone(&dst->sha1, &src->sha1);
95 static void git_hash_sha1_update(git_hash_ctx *ctx, const void *data, size_t len)
97 git_SHA1_Update(&ctx->sha1, data, len);
100 static void git_hash_sha1_final(unsigned char *hash, git_hash_ctx *ctx)
102 git_SHA1_Final(hash, &ctx->sha1);
105 static void git_hash_sha1_final_oid(struct object_id *oid, git_hash_ctx *ctx)
107 git_SHA1_Final(oid->hash, &ctx->sha1);
108 memset(oid->hash + GIT_SHA1_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA1_RAWSZ);
109 oid->algo = GIT_HASH_SHA1;
113 static void git_hash_sha256_init(git_hash_ctx *ctx)
115 git_SHA256_Init(&ctx->sha256);
118 static void git_hash_sha256_clone(git_hash_ctx *dst, const git_hash_ctx *src)
120 git_SHA256_Clone(&dst->sha256, &src->sha256);
123 static void git_hash_sha256_update(git_hash_ctx *ctx, const void *data, size_t len)
125 git_SHA256_Update(&ctx->sha256, data, len);
128 static void git_hash_sha256_final(unsigned char *hash, git_hash_ctx *ctx)
130 git_SHA256_Final(hash, &ctx->sha256);
133 static void git_hash_sha256_final_oid(struct object_id *oid, git_hash_ctx *ctx)
135 git_SHA256_Final(oid->hash, &ctx->sha256);
137 * This currently does nothing, so the compiler should optimize it out,
138 * but keep it in case we extend the hash size again.
140 memset(oid->hash + GIT_SHA256_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA256_RAWSZ);
141 oid->algo = GIT_HASH_SHA256;
144 static void git_hash_unknown_init(git_hash_ctx *ctx UNUSED)
146 BUG("trying to init unknown hash");
149 static void git_hash_unknown_clone(git_hash_ctx *dst UNUSED,
150 const git_hash_ctx *src UNUSED)
152 BUG("trying to clone unknown hash");
155 static void git_hash_unknown_update(git_hash_ctx *ctx UNUSED,
156 const void *data UNUSED,
157 size_t len UNUSED)
159 BUG("trying to update unknown hash");
162 static void git_hash_unknown_final(unsigned char *hash UNUSED,
163 git_hash_ctx *ctx UNUSED)
165 BUG("trying to finalize unknown hash");
168 static void git_hash_unknown_final_oid(struct object_id *oid UNUSED,
169 git_hash_ctx *ctx UNUSED)
171 BUG("trying to finalize unknown hash");
174 const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
176 .name = NULL,
177 .format_id = 0x00000000,
178 .rawsz = 0,
179 .hexsz = 0,
180 .blksz = 0,
181 .init_fn = git_hash_unknown_init,
182 .clone_fn = git_hash_unknown_clone,
183 .update_fn = git_hash_unknown_update,
184 .final_fn = git_hash_unknown_final,
185 .final_oid_fn = git_hash_unknown_final_oid,
186 .empty_tree = NULL,
187 .empty_blob = NULL,
188 .null_oid = NULL,
191 .name = "sha1",
192 .format_id = GIT_SHA1_FORMAT_ID,
193 .rawsz = GIT_SHA1_RAWSZ,
194 .hexsz = GIT_SHA1_HEXSZ,
195 .blksz = GIT_SHA1_BLKSZ,
196 .init_fn = git_hash_sha1_init,
197 .clone_fn = git_hash_sha1_clone,
198 .update_fn = git_hash_sha1_update,
199 .final_fn = git_hash_sha1_final,
200 .final_oid_fn = git_hash_sha1_final_oid,
201 .empty_tree = &empty_tree_oid,
202 .empty_blob = &empty_blob_oid,
203 .null_oid = &null_oid_sha1,
206 .name = "sha256",
207 .format_id = GIT_SHA256_FORMAT_ID,
208 .rawsz = GIT_SHA256_RAWSZ,
209 .hexsz = GIT_SHA256_HEXSZ,
210 .blksz = GIT_SHA256_BLKSZ,
211 .init_fn = git_hash_sha256_init,
212 .clone_fn = git_hash_sha256_clone,
213 .update_fn = git_hash_sha256_update,
214 .final_fn = git_hash_sha256_final,
215 .final_oid_fn = git_hash_sha256_final_oid,
216 .empty_tree = &empty_tree_oid_sha256,
217 .empty_blob = &empty_blob_oid_sha256,
218 .null_oid = &null_oid_sha256,
222 const struct object_id *null_oid(void)
224 return the_hash_algo->null_oid;
227 const char *empty_tree_oid_hex(void)
229 static char buf[GIT_MAX_HEXSZ + 1];
230 return oid_to_hex_r(buf, the_hash_algo->empty_tree);
233 const char *empty_blob_oid_hex(void)
235 static char buf[GIT_MAX_HEXSZ + 1];
236 return oid_to_hex_r(buf, the_hash_algo->empty_blob);
239 int hash_algo_by_name(const char *name)
241 int i;
242 if (!name)
243 return GIT_HASH_UNKNOWN;
244 for (i = 1; i < GIT_HASH_NALGOS; i++)
245 if (!strcmp(name, hash_algos[i].name))
246 return i;
247 return GIT_HASH_UNKNOWN;
250 int hash_algo_by_id(uint32_t format_id)
252 int i;
253 for (i = 1; i < GIT_HASH_NALGOS; i++)
254 if (format_id == hash_algos[i].format_id)
255 return i;
256 return GIT_HASH_UNKNOWN;
259 int hash_algo_by_length(int len)
261 int i;
262 for (i = 1; i < GIT_HASH_NALGOS; i++)
263 if (len == hash_algos[i].rawsz)
264 return i;
265 return GIT_HASH_UNKNOWN;
269 * This is meant to hold a *small* number of objects that you would
270 * want 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
272 * application).
274 static struct cached_object {
275 struct object_id oid;
276 enum object_type type;
277 void *buf;
278 unsigned long size;
279 } *cached_objects;
280 static int cached_object_nr, cached_object_alloc;
282 static struct cached_object empty_tree = {
283 .oid = {
284 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
286 .type = OBJ_TREE,
287 .buf = "",
290 static struct cached_object *find_cached_object(const struct object_id *oid)
292 int i;
293 struct cached_object *co = cached_objects;
295 for (i = 0; i < cached_object_nr; i++, co++) {
296 if (oideq(&co->oid, oid))
297 return co;
299 if (oideq(oid, the_hash_algo->empty_tree))
300 return &empty_tree;
301 return NULL;
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;
311 else
312 return 0;
316 int mkdir_in_gitdir(const char *path)
318 if (mkdir(path, 0777)) {
319 int saved_errno = errno;
320 struct stat st;
321 struct strbuf sb = STRBUF_INIT;
323 if (errno != EEXIST)
324 return -1;
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)) {
336 strbuf_release(&sb);
337 errno = saved_errno;
338 return -1;
340 strbuf_release(&sb);
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) {
351 struct stat st;
352 char *slash = next_component, slash_character;
354 while (*slash && !is_dir_sep(*slash))
355 slash++;
357 if (!*slash)
358 break;
360 next_component = slash + 1;
361 while (is_dir_sep(*next_component))
362 next_component++;
363 if (!*next_component)
364 break;
366 slash_character = *slash;
367 *slash = '\0';
368 if (!stat(path, &st)) {
369 /* path exists */
370 if (!S_ISDIR(st.st_mode)) {
371 errno = ENOTDIR;
372 ret = SCLD_EXISTS;
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
386 * trying again:
388 ret = SCLD_VANISHED;
389 else
390 ret = SCLD_FAILED;
391 } else if (share && adjust_shared_perm(path)) {
392 ret = SCLD_PERMS;
394 *slash = slash_character;
396 return ret;
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)
411 int save_errno;
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);
416 save_errno = errno;
417 free(buf);
418 errno = save_errno;
419 return result;
422 static void fill_loose_path(struct strbuf *buf, const struct object_id *oid)
424 int i;
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]);
430 if (!i)
431 strbuf_addch(buf, '/');
435 static const char *odb_loose_path(struct object_directory *odb,
436 struct strbuf *buf,
437 const struct object_id *oid)
439 strbuf_reset(buf);
440 strbuf_addstr(buf, odb->path);
441 strbuf_addch(buf, '/');
442 fill_loose_path(buf, oid);
443 return buf->buf;
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,
456 struct strbuf *path,
457 const char *normalized_objdir, khiter_t *pos)
459 int r;
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"),
465 path->buf);
466 return 0;
470 * Prevent the common mistake of listing the same
471 * thing twice, or object directory itself.
473 if (!o->odb_by_path) {
474 khiter_t p;
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))
483 return 0;
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,
506 int depth);
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;
513 khiter_t pos;
514 int ret = -1;
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"),
524 pathbuf.buf);
525 goto error;
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))
537 goto error;
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);
546 ent->next = NULL;
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);
552 ret = 0;
553 error:
554 strbuf_release(&tmp);
555 strbuf_release(&pathbuf);
556 return ret;
559 static const char *parse_alt_odb_entry(const char *string,
560 int sep,
561 struct strbuf *out)
563 const char *end;
565 strbuf_reset(out);
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.
577 } else {
578 /* normal, unquoted path */
579 end = strchrnul(string, sep);
580 strbuf_add(out, string, end - string);
583 if (*end)
584 end++;
585 return end;
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;
594 if (!alt || !*alt)
595 return;
597 if (depth > 5) {
598 error(_("%s: ignoring alternate object stores, nesting too deep"),
599 relative_base);
600 return;
603 strbuf_realpath(&objdirbuf, r->objects->odb->path, 1);
605 while (*alt) {
606 alt = parse_alt_odb_entry(alt, sep, &entry);
607 if (!entry.len)
608 continue;
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,
618 int depth)
620 char *path;
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);
626 free(path);
627 return;
630 link_alt_odb_entries(r, buf.buf, '\n', relative_base, depth);
631 strbuf_release(&buf);
632 free(path);
635 void add_to_alternates_file(const char *reference)
637 struct lock_file lock = LOCK_INIT;
638 char *alts = git_pathdup("objects/info/alternates");
639 FILE *in, *out;
640 int found = 0;
642 hold_lock_file_for_update(&lock, alts, LOCK_DIE_ON_ERROR);
643 out = fdopen_lock_file(&lock, "w");
644 if (!out)
645 die_errno(_("unable to fdopen alternates lockfile"));
647 in = fopen(alts, "r");
648 if (in) {
649 struct strbuf line = STRBUF_INIT;
651 while (strbuf_getline(&line, in) != EOF) {
652 if (!strcmp(reference, line.buf)) {
653 found = 1;
654 break;
656 fprintf_or_die(out, "%s\n", line.buf);
659 strbuf_release(&line);
660 fclose(in);
662 else if (errno != ENOENT)
663 die_errno(_("unable to read alternates file"));
665 if (found) {
666 rollback_lock_file(&lock);
667 } else {
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,
673 '\n', NULL, 0);
675 free(alts);
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,
687 '\n', NULL, 0);
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
702 * alternate
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;
742 const char *repo;
743 int seen_error = 0;
745 ref_git = real_pathdup(path, 0);
746 if (!ref_git) {
747 seen_error = 1;
748 strbuf_addf(err, _("path '%s' does not exist"), path);
749 goto out;
752 repo = read_gitfile(ref_git);
753 if (!repo)
754 repo = read_gitfile(mkpath("%s/.git", ref_git));
755 if (repo) {
756 free(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);
762 free(ref_git);
763 ref_git = ref_git_git;
764 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
765 struct strbuf sb = STRBUF_INIT;
766 seen_error = 1;
767 if (get_common_dir(&sb, ref_git)) {
768 strbuf_addf(err,
769 _("reference repository '%s' as a linked "
770 "checkout is not supported yet."),
771 path);
772 goto out;
775 strbuf_addf(err, _("reference repository '%s' is not a "
776 "local repository."), path);
777 goto out;
780 if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
781 strbuf_addf(err, _("reference repository '%s' is shallow"),
782 path);
783 seen_error = 1;
784 goto out;
787 if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
788 strbuf_addf(err,
789 _("reference repository '%s' is grafted"),
790 path);
791 seen_error = 1;
792 goto out;
795 out:
796 if (seen_error) {
797 FREE_AND_NULL(ref_git);
800 return 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;
809 prepare_alt_odb(r);
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))
813 break;
816 free(obj_dir_real);
817 strbuf_release(&odb_path_real);
819 if (!odb)
820 die(_("could not find object directory matching %s"), obj_dir);
821 return odb;
824 static void fill_alternate_refs_command(struct child_process *cmd,
825 const char *repo_path)
827 const char *value;
829 if (!git_config_get_value("core.alternateRefsCommand", &value)) {
830 cmd->use_shell = 1;
832 strvec_push(&cmd->args, value);
833 strvec_push(&cmd->args, repo_path);
834 } else {
835 cmd->git_cmd = 1;
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);
848 cmd->out = -1;
851 static void read_alternate_refs(const char *path,
852 alternate_ref_fn *cb,
853 void *data)
855 struct child_process cmd = CHILD_PROCESS_INIT;
856 struct strbuf line = STRBUF_INIT;
857 FILE *fh;
859 fill_alternate_refs_command(&cmd, path);
861 if (start_command(&cmd))
862 return;
864 fh = xfdopen(cmd.out, "r");
865 while (strbuf_getline_lf(&line, fh) != EOF) {
866 struct object_id oid;
867 const char *p;
869 if (parse_oid_hex(line.buf, &oid, &p) || *p) {
870 warning(_("invalid line while parsing alternate refs: %s"),
871 line.buf);
872 break;
875 cb(&oid, data);
878 fclose(fh);
879 finish_command(&cmd);
880 strbuf_release(&line);
883 struct alternate_refs_data {
884 alternate_ref_fn *fn;
885 void *data;
888 static int refs_from_alternate_cb(struct object_directory *e,
889 void *data)
891 struct strbuf path = STRBUF_INIT;
892 size_t base_len;
893 struct alternate_refs_data *cb = data;
895 if (!strbuf_realpath(&path, e->path, 0))
896 goto out;
897 if (!strbuf_strip_suffix(&path, "/objects"))
898 goto out;
899 base_len = path.len;
901 /* Is this a git repository with refs? */
902 strbuf_addstr(&path, "/refs");
903 if (!is_directory(path.buf))
904 goto out;
905 strbuf_setlen(&path, base_len);
907 read_alternate_refs(path.buf, cb->fn, cb->data);
909 out:
910 strbuf_release(&path);
911 return 0;
914 void for_each_alternate_ref(alternate_ref_fn fn, void *data)
916 struct alternate_refs_data cb;
917 cb.fn = fn;
918 cb.data = data;
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;
925 int r = 0;
927 prepare_alt_odb(the_repository);
928 for (ent = the_repository->objects->odb->next; ent; ent = ent->next) {
929 r = fn(ent, cb);
930 if (r)
931 break;
933 return r;
936 void prepare_alt_odb(struct repository *r)
938 if (r->objects->loaded_alternates)
939 return;
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)
949 prepare_alt_odb(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
964 * pruning).
966 int check_and_freshen_file(const char *fn, int freshen)
968 if (access(fn, F_OK))
969 return 0;
970 if (freshen && !freshen_file(fn))
971 return 0;
972 return 1;
975 static int check_and_freshen_odb(struct object_directory *odb,
976 const struct object_id *oid,
977 int freshen)
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))
996 return 1;
998 return 0;
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;
1020 if (!limit) {
1021 limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
1022 if (!limit)
1023 limit = SIZE_MAX;
1025 if (length > limit)
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)
1033 void *ret;
1035 mmap_limit_check(length);
1036 ret = mmap(start, length, prot, flags, fd, offset);
1037 if (ret == MAP_FAILED && !length)
1038 ret = NULL;
1039 return ret;
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";
1050 return enomem;
1052 #endif /* OS-specific bits */
1053 return blank;
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());
1062 return ret;
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,
1072 size_t objsize)
1074 const char *name = type_name(type);
1076 if (!name)
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 struct object_id real_oid;
1088 hash_object_file(r->hash_algo, buf, size, type, &real_oid);
1090 return !oideq(oid, &real_oid) ? -1 : 0;
1093 int stream_object_signature(struct repository *r, const struct object_id *oid)
1095 struct object_id real_oid;
1096 unsigned long size;
1097 enum object_type obj_type;
1098 struct git_istream *st;
1099 git_hash_ctx c;
1100 char hdr[MAX_HEADER_LEN];
1101 int hdrlen;
1103 st = open_istream(r, oid, &obj_type, &size, NULL);
1104 if (!st)
1105 return -1;
1107 /* Generate the header */
1108 hdrlen = format_object_header(hdr, sizeof(hdr), obj_type, size);
1110 /* Sha1.. */
1111 r->hash_algo->init_fn(&c);
1112 r->hash_algo->update_fn(&c, hdr, hdrlen);
1113 for (;;) {
1114 char buf[1024 * 16];
1115 ssize_t readlen = read_istream(st, buf, sizeof(buf));
1117 if (readlen < 0) {
1118 close_istream(st);
1119 return -1;
1121 if (!readlen)
1122 break;
1123 r->hash_algo->update_fn(&c, buf, readlen);
1125 r->hash_algo->final_oid_fn(&real_oid, &c);
1126 close_istream(st);
1127 return !oideq(oid, &real_oid) ? -1 : 0;
1130 int git_open_cloexec(const char *name, int flags)
1132 int fd;
1133 static int o_cloexec = O_CLOEXEC;
1135 fd = open(name, flags | o_cloexec);
1136 if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
1137 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1138 o_cloexec &= ~O_CLOEXEC;
1139 fd = open(name, flags | o_cloexec);
1142 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1144 static int fd_cloexec = FD_CLOEXEC;
1146 if (!o_cloexec && 0 <= fd && fd_cloexec) {
1147 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
1148 int flags = fcntl(fd, F_GETFD);
1149 if (fcntl(fd, F_SETFD, flags | fd_cloexec))
1150 fd_cloexec = 0;
1153 #endif
1154 return fd;
1158 * Find "oid" as a loose object in the local repository or in an alternate.
1159 * Returns 0 on success, negative on failure.
1161 * The "path" out-parameter will give the path of the object we found (if any).
1162 * Note that it may point to static storage and is only valid until another
1163 * call to stat_loose_object().
1165 static int stat_loose_object(struct repository *r, const struct object_id *oid,
1166 struct stat *st, const char **path)
1168 struct object_directory *odb;
1169 static struct strbuf buf = STRBUF_INIT;
1171 prepare_alt_odb(r);
1172 for (odb = r->objects->odb; odb; odb = odb->next) {
1173 *path = odb_loose_path(odb, &buf, oid);
1174 if (!lstat(*path, st))
1175 return 0;
1178 return -1;
1182 * Like stat_loose_object(), but actually open the object and return the
1183 * descriptor. See the caveats on the "path" parameter above.
1185 static int open_loose_object(struct repository *r,
1186 const struct object_id *oid, const char **path)
1188 int fd;
1189 struct object_directory *odb;
1190 int most_interesting_errno = ENOENT;
1191 static struct strbuf buf = STRBUF_INIT;
1193 prepare_alt_odb(r);
1194 for (odb = r->objects->odb; odb; odb = odb->next) {
1195 *path = odb_loose_path(odb, &buf, oid);
1196 fd = git_open(*path);
1197 if (fd >= 0)
1198 return fd;
1200 if (most_interesting_errno == ENOENT)
1201 most_interesting_errno = errno;
1203 errno = most_interesting_errno;
1204 return -1;
1207 static int quick_has_loose(struct repository *r,
1208 const struct object_id *oid)
1210 struct object_directory *odb;
1212 prepare_alt_odb(r);
1213 for (odb = r->objects->odb; odb; odb = odb->next) {
1214 if (oidtree_contains(odb_loose_cache(odb, oid), oid))
1215 return 1;
1217 return 0;
1221 * Map and close the given loose object fd. The path argument is used for
1222 * error reporting.
1224 static void *map_fd(int fd, const char *path, unsigned long *size)
1226 void *map = NULL;
1227 struct stat st;
1229 if (!fstat(fd, &st)) {
1230 *size = xsize_t(st.st_size);
1231 if (!*size) {
1232 /* mmap() is forbidden on empty files */
1233 error(_("object file %s is empty"), path);
1234 close(fd);
1235 return NULL;
1237 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
1239 close(fd);
1240 return map;
1243 void *map_loose_object(struct repository *r,
1244 const struct object_id *oid,
1245 unsigned long *size)
1247 const char *p;
1248 int fd = open_loose_object(r, oid, &p);
1250 if (fd < 0)
1251 return NULL;
1252 return map_fd(fd, p, size);
1255 enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
1256 unsigned char *map,
1257 unsigned long mapsize,
1258 void *buffer,
1259 unsigned long bufsiz,
1260 struct strbuf *header)
1262 int status;
1264 /* Get the data stream */
1265 memset(stream, 0, sizeof(*stream));
1266 stream->next_in = map;
1267 stream->avail_in = mapsize;
1268 stream->next_out = buffer;
1269 stream->avail_out = bufsiz;
1271 git_inflate_init(stream);
1272 obj_read_unlock();
1273 status = git_inflate(stream, 0);
1274 obj_read_lock();
1275 if (status < Z_OK)
1276 return ULHR_BAD;
1279 * Check if entire header is unpacked in the first iteration.
1281 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1282 return ULHR_OK;
1285 * We have a header longer than MAX_HEADER_LEN. The "header"
1286 * here is only non-NULL when we run "cat-file
1287 * --allow-unknown-type".
1289 if (!header)
1290 return ULHR_TOO_LONG;
1293 * buffer[0..bufsiz] was not large enough. Copy the partial
1294 * result out to header, and then append the result of further
1295 * reading the stream.
1297 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1298 stream->next_out = buffer;
1299 stream->avail_out = bufsiz;
1301 do {
1302 obj_read_unlock();
1303 status = git_inflate(stream, 0);
1304 obj_read_lock();
1305 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1306 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1307 return 0;
1308 stream->next_out = buffer;
1309 stream->avail_out = bufsiz;
1310 } while (status != Z_STREAM_END);
1311 return ULHR_TOO_LONG;
1314 static void *unpack_loose_rest(git_zstream *stream,
1315 void *buffer, unsigned long size,
1316 const struct object_id *oid)
1318 int bytes = strlen(buffer) + 1;
1319 unsigned char *buf = xmallocz(size);
1320 unsigned long n;
1321 int status = Z_OK;
1323 n = stream->total_out - bytes;
1324 if (n > size)
1325 n = size;
1326 memcpy(buf, (char *) buffer + bytes, n);
1327 bytes = n;
1328 if (bytes <= size) {
1330 * The above condition must be (bytes <= size), not
1331 * (bytes < size). In other words, even though we
1332 * expect no more output and set avail_out to zero,
1333 * the input zlib stream may have bytes that express
1334 * "this concludes the stream", and we *do* want to
1335 * eat that input.
1337 * Otherwise we would not be able to test that we
1338 * consumed all the input to reach the expected size;
1339 * we also want to check that zlib tells us that all
1340 * went well with status == Z_STREAM_END at the end.
1342 stream->next_out = buf + bytes;
1343 stream->avail_out = size - bytes;
1344 while (status == Z_OK) {
1345 obj_read_unlock();
1346 status = git_inflate(stream, Z_FINISH);
1347 obj_read_lock();
1350 if (status == Z_STREAM_END && !stream->avail_in) {
1351 git_inflate_end(stream);
1352 return buf;
1355 if (status < 0)
1356 error(_("corrupt loose object '%s'"), oid_to_hex(oid));
1357 else if (stream->avail_in)
1358 error(_("garbage at end of loose object '%s'"),
1359 oid_to_hex(oid));
1360 free(buf);
1361 return NULL;
1365 * We used to just use "sscanf()", but that's actually way
1366 * too permissive for what we want to check. So do an anal
1367 * object header parse by hand.
1369 int parse_loose_header(const char *hdr, struct object_info *oi)
1371 const char *type_buf = hdr;
1372 size_t size;
1373 int type, type_len = 0;
1376 * The type can be of any size but is followed by
1377 * a space.
1379 for (;;) {
1380 char c = *hdr++;
1381 if (!c)
1382 return -1;
1383 if (c == ' ')
1384 break;
1385 type_len++;
1388 type = type_from_string_gently(type_buf, type_len, 1);
1389 if (oi->type_name)
1390 strbuf_add(oi->type_name, type_buf, type_len);
1391 if (oi->typep)
1392 *oi->typep = type;
1395 * The length must follow immediately, and be in canonical
1396 * decimal format (ie "010" is not valid).
1398 size = *hdr++ - '0';
1399 if (size > 9)
1400 return -1;
1401 if (size) {
1402 for (;;) {
1403 unsigned long c = *hdr - '0';
1404 if (c > 9)
1405 break;
1406 hdr++;
1407 size = st_add(st_mult(size, 10), c);
1411 if (oi->sizep)
1412 *oi->sizep = cast_size_t_to_ulong(size);
1415 * The length must be followed by a zero byte
1417 if (*hdr)
1418 return -1;
1421 * The format is valid, but the type may still be bogus. The
1422 * Caller needs to check its oi->typep.
1424 return 0;
1427 static int loose_object_info(struct repository *r,
1428 const struct object_id *oid,
1429 struct object_info *oi, int flags)
1431 int status = 0;
1432 int fd;
1433 unsigned long mapsize;
1434 const char *path;
1435 void *map;
1436 git_zstream stream;
1437 char hdr[MAX_HEADER_LEN];
1438 struct strbuf hdrbuf = STRBUF_INIT;
1439 unsigned long size_scratch;
1440 enum object_type type_scratch;
1441 int allow_unknown = flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE;
1443 if (oi->delta_base_oid)
1444 oidclr(oi->delta_base_oid);
1447 * If we don't care about type or size, then we don't
1448 * need to look inside the object at all. Note that we
1449 * do not optimize out the stat call, even if the
1450 * caller doesn't care about the disk-size, since our
1451 * return value implicitly indicates whether the
1452 * object even exists.
1454 if (!oi->typep && !oi->type_name && !oi->sizep && !oi->contentp) {
1455 struct stat st;
1456 if (!oi->disk_sizep && (flags & OBJECT_INFO_QUICK))
1457 return quick_has_loose(r, oid) ? 0 : -1;
1458 if (stat_loose_object(r, oid, &st, &path) < 0)
1459 return -1;
1460 if (oi->disk_sizep)
1461 *oi->disk_sizep = st.st_size;
1462 return 0;
1465 fd = open_loose_object(r, oid, &path);
1466 if (fd < 0) {
1467 if (errno != ENOENT)
1468 error_errno(_("unable to open loose object %s"), oid_to_hex(oid));
1469 return -1;
1471 map = map_fd(fd, path, &mapsize);
1472 if (!map)
1473 return -1;
1475 if (!oi->sizep)
1476 oi->sizep = &size_scratch;
1477 if (!oi->typep)
1478 oi->typep = &type_scratch;
1480 if (oi->disk_sizep)
1481 *oi->disk_sizep = mapsize;
1483 switch (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
1484 allow_unknown ? &hdrbuf : NULL)) {
1485 case ULHR_OK:
1486 if (parse_loose_header(hdrbuf.len ? hdrbuf.buf : hdr, oi) < 0)
1487 status = error(_("unable to parse %s header"), oid_to_hex(oid));
1488 else if (!allow_unknown && *oi->typep < 0)
1489 die(_("invalid object type"));
1491 if (!oi->contentp)
1492 break;
1493 *oi->contentp = unpack_loose_rest(&stream, hdr, *oi->sizep, oid);
1494 if (*oi->contentp)
1495 goto cleanup;
1497 status = -1;
1498 break;
1499 case ULHR_BAD:
1500 status = error(_("unable to unpack %s header"),
1501 oid_to_hex(oid));
1502 break;
1503 case ULHR_TOO_LONG:
1504 status = error(_("header for %s too long, exceeds %d bytes"),
1505 oid_to_hex(oid), MAX_HEADER_LEN);
1506 break;
1509 if (status && (flags & OBJECT_INFO_DIE_IF_CORRUPT))
1510 die(_("loose object %s (stored in %s) is corrupt"),
1511 oid_to_hex(oid), path);
1513 git_inflate_end(&stream);
1514 cleanup:
1515 munmap(map, mapsize);
1516 if (oi->sizep == &size_scratch)
1517 oi->sizep = NULL;
1518 strbuf_release(&hdrbuf);
1519 if (oi->typep == &type_scratch)
1520 oi->typep = NULL;
1521 oi->whence = OI_LOOSE;
1522 return status;
1525 int obj_read_use_lock = 0;
1526 pthread_mutex_t obj_read_mutex;
1528 void enable_obj_read_lock(void)
1530 if (obj_read_use_lock)
1531 return;
1533 obj_read_use_lock = 1;
1534 init_recursive_mutex(&obj_read_mutex);
1537 void disable_obj_read_lock(void)
1539 if (!obj_read_use_lock)
1540 return;
1542 obj_read_use_lock = 0;
1543 pthread_mutex_destroy(&obj_read_mutex);
1546 int fetch_if_missing = 1;
1548 static int do_oid_object_info_extended(struct repository *r,
1549 const struct object_id *oid,
1550 struct object_info *oi, unsigned flags)
1552 static struct object_info blank_oi = OBJECT_INFO_INIT;
1553 struct cached_object *co;
1554 struct pack_entry e;
1555 int rtype;
1556 const struct object_id *real = oid;
1557 int already_retried = 0;
1560 if (flags & OBJECT_INFO_LOOKUP_REPLACE)
1561 real = lookup_replace_object(r, oid);
1563 if (is_null_oid(real))
1564 return -1;
1566 if (!oi)
1567 oi = &blank_oi;
1569 co = find_cached_object(real);
1570 if (co) {
1571 if (oi->typep)
1572 *(oi->typep) = co->type;
1573 if (oi->sizep)
1574 *(oi->sizep) = co->size;
1575 if (oi->disk_sizep)
1576 *(oi->disk_sizep) = 0;
1577 if (oi->delta_base_oid)
1578 oidclr(oi->delta_base_oid);
1579 if (oi->type_name)
1580 strbuf_addstr(oi->type_name, type_name(co->type));
1581 if (oi->contentp)
1582 *oi->contentp = xmemdupz(co->buf, co->size);
1583 oi->whence = OI_CACHED;
1584 return 0;
1587 while (1) {
1588 if (find_pack_entry(r, real, &e))
1589 break;
1591 /* Most likely it's a loose object. */
1592 if (!loose_object_info(r, real, oi, flags))
1593 return 0;
1595 /* Not a loose object; someone else may have just packed it. */
1596 if (!(flags & OBJECT_INFO_QUICK)) {
1597 reprepare_packed_git(r);
1598 if (find_pack_entry(r, real, &e))
1599 break;
1603 * If r is the_repository, this might be an attempt at
1604 * accessing a submodule object as if it were in the_repository
1605 * (having called add_submodule_odb() on that submodule's ODB).
1606 * If any such ODBs exist, register them and try again.
1608 if (r == the_repository &&
1609 register_all_submodule_odb_as_alternates())
1610 /* We added some alternates; retry */
1611 continue;
1613 /* Check if it is a missing object */
1614 if (fetch_if_missing && repo_has_promisor_remote(r) &&
1615 !already_retried &&
1616 !(flags & OBJECT_INFO_SKIP_FETCH_OBJECT)) {
1617 promisor_remote_get_direct(r, real, 1);
1618 already_retried = 1;
1619 continue;
1622 if (flags & OBJECT_INFO_DIE_IF_CORRUPT) {
1623 const struct packed_git *p;
1624 if ((flags & OBJECT_INFO_LOOKUP_REPLACE) && !oideq(real, oid))
1625 die(_("replacement %s not found for %s"),
1626 oid_to_hex(real), oid_to_hex(oid));
1627 if ((p = has_packed_and_bad(r, real)))
1628 die(_("packed object %s (stored in %s) is corrupt"),
1629 oid_to_hex(real), p->pack_name);
1631 return -1;
1634 if (oi == &blank_oi)
1636 * We know that the caller doesn't actually need the
1637 * information below, so return early.
1639 return 0;
1640 rtype = packed_object_info(r, e.p, e.offset, oi);
1641 if (rtype < 0) {
1642 mark_bad_packed_object(e.p, real);
1643 return do_oid_object_info_extended(r, real, oi, 0);
1644 } else if (oi->whence == OI_PACKED) {
1645 oi->u.packed.offset = e.offset;
1646 oi->u.packed.pack = e.p;
1647 oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1648 rtype == OBJ_OFS_DELTA);
1651 return 0;
1654 int oid_object_info_extended(struct repository *r, const struct object_id *oid,
1655 struct object_info *oi, unsigned flags)
1657 int ret;
1658 obj_read_lock();
1659 ret = do_oid_object_info_extended(r, oid, oi, flags);
1660 obj_read_unlock();
1661 return ret;
1665 /* returns enum object_type or negative */
1666 int oid_object_info(struct repository *r,
1667 const struct object_id *oid,
1668 unsigned long *sizep)
1670 enum object_type type;
1671 struct object_info oi = OBJECT_INFO_INIT;
1673 oi.typep = &type;
1674 oi.sizep = sizep;
1675 if (oid_object_info_extended(r, oid, &oi,
1676 OBJECT_INFO_LOOKUP_REPLACE) < 0)
1677 return -1;
1678 return type;
1681 int pretend_object_file(void *buf, unsigned long len, enum object_type type,
1682 struct object_id *oid)
1684 struct cached_object *co;
1686 hash_object_file(the_hash_algo, buf, len, type, oid);
1687 if (has_object_file_with_flags(oid, OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT) ||
1688 find_cached_object(oid))
1689 return 0;
1690 ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
1691 co = &cached_objects[cached_object_nr++];
1692 co->size = len;
1693 co->type = type;
1694 co->buf = xmalloc(len);
1695 memcpy(co->buf, buf, len);
1696 oidcpy(&co->oid, oid);
1697 return 0;
1701 * This function dies on corrupt objects; the callers who want to
1702 * deal with them should arrange to call oid_object_info_extended() and give
1703 * error messages themselves.
1705 void *repo_read_object_file(struct repository *r,
1706 const struct object_id *oid,
1707 enum object_type *type,
1708 unsigned long *size)
1710 struct object_info oi = OBJECT_INFO_INIT;
1711 unsigned flags = OBJECT_INFO_DIE_IF_CORRUPT | OBJECT_INFO_LOOKUP_REPLACE;
1712 void *data;
1714 oi.typep = type;
1715 oi.sizep = size;
1716 oi.contentp = &data;
1717 if (oid_object_info_extended(r, oid, &oi, flags))
1718 return NULL;
1720 return data;
1723 void *read_object_with_reference(struct repository *r,
1724 const struct object_id *oid,
1725 enum object_type required_type,
1726 unsigned long *size,
1727 struct object_id *actual_oid_return)
1729 enum object_type type;
1730 void *buffer;
1731 unsigned long isize;
1732 struct object_id actual_oid;
1734 oidcpy(&actual_oid, oid);
1735 while (1) {
1736 int ref_length = -1;
1737 const char *ref_type = NULL;
1739 buffer = repo_read_object_file(r, &actual_oid, &type, &isize);
1740 if (!buffer)
1741 return NULL;
1742 if (type == required_type) {
1743 *size = isize;
1744 if (actual_oid_return)
1745 oidcpy(actual_oid_return, &actual_oid);
1746 return buffer;
1748 /* Handle references */
1749 else if (type == OBJ_COMMIT)
1750 ref_type = "tree ";
1751 else if (type == OBJ_TAG)
1752 ref_type = "object ";
1753 else {
1754 free(buffer);
1755 return NULL;
1757 ref_length = strlen(ref_type);
1759 if (ref_length + the_hash_algo->hexsz > isize ||
1760 memcmp(buffer, ref_type, ref_length) ||
1761 get_oid_hex((char *) buffer + ref_length, &actual_oid)) {
1762 free(buffer);
1763 return NULL;
1765 free(buffer);
1766 /* Now we have the ID of the referred-to object in
1767 * actual_oid. Check again. */
1771 static void hash_object_body(const struct git_hash_algo *algo, git_hash_ctx *c,
1772 const void *buf, unsigned long len,
1773 struct object_id *oid,
1774 char *hdr, int *hdrlen)
1776 algo->init_fn(c);
1777 algo->update_fn(c, hdr, *hdrlen);
1778 algo->update_fn(c, buf, len);
1779 algo->final_oid_fn(oid, c);
1782 static void write_object_file_prepare(const struct git_hash_algo *algo,
1783 const void *buf, unsigned long len,
1784 enum object_type type, struct object_id *oid,
1785 char *hdr, int *hdrlen)
1787 git_hash_ctx c;
1789 /* Generate the header */
1790 *hdrlen = format_object_header(hdr, *hdrlen, type, len);
1792 /* Sha1.. */
1793 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1796 static void write_object_file_prepare_literally(const struct git_hash_algo *algo,
1797 const void *buf, unsigned long len,
1798 const char *type, struct object_id *oid,
1799 char *hdr, int *hdrlen)
1801 git_hash_ctx c;
1803 *hdrlen = format_object_header_literally(hdr, *hdrlen, type, len);
1804 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1808 * Move the just written object into its final resting place.
1810 int finalize_object_file(const char *tmpfile, const char *filename)
1812 int ret = 0;
1814 if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
1815 goto try_rename;
1816 else if (link(tmpfile, filename))
1817 ret = errno;
1820 * Coda hack - coda doesn't like cross-directory links,
1821 * so we fall back to a rename, which will mean that it
1822 * won't be able to check collisions, but that's not a
1823 * big deal.
1825 * The same holds for FAT formatted media.
1827 * When this succeeds, we just return. We have nothing
1828 * left to unlink.
1830 if (ret && ret != EEXIST) {
1831 try_rename:
1832 if (!rename(tmpfile, filename))
1833 goto out;
1834 ret = errno;
1836 unlink_or_warn(tmpfile);
1837 if (ret) {
1838 if (ret != EEXIST) {
1839 return error_errno(_("unable to write file %s"), filename);
1841 /* FIXME!!! Collision check here ? */
1844 out:
1845 if (adjust_shared_perm(filename))
1846 return error(_("unable to set permission to '%s'"), filename);
1847 return 0;
1850 static void hash_object_file_literally(const struct git_hash_algo *algo,
1851 const void *buf, unsigned long len,
1852 const char *type, struct object_id *oid)
1854 char hdr[MAX_HEADER_LEN];
1855 int hdrlen = sizeof(hdr);
1857 write_object_file_prepare_literally(algo, buf, len, type, oid, hdr, &hdrlen);
1860 void hash_object_file(const struct git_hash_algo *algo, const void *buf,
1861 unsigned long len, enum object_type type,
1862 struct object_id *oid)
1864 hash_object_file_literally(algo, buf, len, type_name(type), oid);
1867 /* Finalize a file on disk, and close it. */
1868 static void close_loose_object(int fd, const char *filename)
1870 if (the_repository->objects->odb->will_destroy)
1871 goto out;
1873 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
1874 fsync_loose_object_bulk_checkin(fd, filename);
1875 else if (fsync_object_files > 0)
1876 fsync_or_die(fd, filename);
1877 else
1878 fsync_component_or_die(FSYNC_COMPONENT_LOOSE_OBJECT, fd,
1879 filename);
1881 out:
1882 if (close(fd) != 0)
1883 die_errno(_("error when closing loose object file"));
1886 /* Size of directory component, including the ending '/' */
1887 static inline int directory_size(const char *filename)
1889 const char *s = strrchr(filename, '/');
1890 if (!s)
1891 return 0;
1892 return s - filename + 1;
1896 * This creates a temporary file in the same directory as the final
1897 * 'filename'
1899 * We want to avoid cross-directory filename renames, because those
1900 * can have problems on various filesystems (FAT, NFS, Coda).
1902 static int create_tmpfile(struct strbuf *tmp, const char *filename)
1904 int fd, dirlen = directory_size(filename);
1906 strbuf_reset(tmp);
1907 strbuf_add(tmp, filename, dirlen);
1908 strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1909 fd = git_mkstemp_mode(tmp->buf, 0444);
1910 if (fd < 0 && dirlen && errno == ENOENT) {
1912 * Make sure the directory exists; note that the contents
1913 * of the buffer are undefined after mkstemp returns an
1914 * error, so we have to rewrite the whole buffer from
1915 * scratch.
1917 strbuf_reset(tmp);
1918 strbuf_add(tmp, filename, dirlen - 1);
1919 if (mkdir(tmp->buf, 0777) && errno != EEXIST)
1920 return -1;
1921 if (adjust_shared_perm(tmp->buf))
1922 return -1;
1924 /* Try again */
1925 strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1926 fd = git_mkstemp_mode(tmp->buf, 0444);
1928 return fd;
1932 * Common steps for loose object writers to start writing loose
1933 * objects:
1935 * - Create tmpfile for the loose object.
1936 * - Setup zlib stream for compression.
1937 * - Start to feed header to zlib stream.
1939 * Returns a "fd", which should later be provided to
1940 * end_loose_object_common().
1942 static int start_loose_object_common(struct strbuf *tmp_file,
1943 const char *filename, unsigned flags,
1944 git_zstream *stream,
1945 unsigned char *buf, size_t buflen,
1946 git_hash_ctx *c,
1947 char *hdr, int hdrlen)
1949 int fd;
1951 fd = create_tmpfile(tmp_file, filename);
1952 if (fd < 0) {
1953 if (flags & HASH_SILENT)
1954 return -1;
1955 else if (errno == EACCES)
1956 return error(_("insufficient permission for adding "
1957 "an object to repository database %s"),
1958 get_object_directory());
1959 else
1960 return error_errno(
1961 _("unable to create temporary file"));
1964 /* Setup zlib stream for compression */
1965 git_deflate_init(stream, zlib_compression_level);
1966 stream->next_out = buf;
1967 stream->avail_out = buflen;
1968 the_hash_algo->init_fn(c);
1970 /* Start to feed header to zlib stream */
1971 stream->next_in = (unsigned char *)hdr;
1972 stream->avail_in = hdrlen;
1973 while (git_deflate(stream, 0) == Z_OK)
1974 ; /* nothing */
1975 the_hash_algo->update_fn(c, hdr, hdrlen);
1977 return fd;
1981 * Common steps for the inner git_deflate() loop for writing loose
1982 * objects. Returns what git_deflate() returns.
1984 static int write_loose_object_common(git_hash_ctx *c,
1985 git_zstream *stream, const int flush,
1986 unsigned char *in0, const int fd,
1987 unsigned char *compressed,
1988 const size_t compressed_len)
1990 int ret;
1992 ret = git_deflate(stream, flush ? Z_FINISH : 0);
1993 the_hash_algo->update_fn(c, in0, stream->next_in - in0);
1994 if (write_in_full(fd, compressed, stream->next_out - compressed) < 0)
1995 die_errno(_("unable to write loose object file"));
1996 stream->next_out = compressed;
1997 stream->avail_out = compressed_len;
1999 return ret;
2003 * Common steps for loose object writers to end writing loose objects:
2005 * - End the compression of zlib stream.
2006 * - Get the calculated oid to "oid".
2008 static int end_loose_object_common(git_hash_ctx *c, git_zstream *stream,
2009 struct object_id *oid)
2011 int ret;
2013 ret = git_deflate_end_gently(stream);
2014 if (ret != Z_OK)
2015 return ret;
2016 the_hash_algo->final_oid_fn(oid, c);
2018 return Z_OK;
2021 static int write_loose_object(const struct object_id *oid, char *hdr,
2022 int hdrlen, const void *buf, unsigned long len,
2023 time_t mtime, unsigned flags)
2025 int fd, ret;
2026 unsigned char compressed[4096];
2027 git_zstream stream;
2028 git_hash_ctx c;
2029 struct object_id parano_oid;
2030 static struct strbuf tmp_file = STRBUF_INIT;
2031 static struct strbuf filename = STRBUF_INIT;
2033 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2034 prepare_loose_object_bulk_checkin();
2036 loose_object_path(the_repository, &filename, oid);
2038 fd = start_loose_object_common(&tmp_file, filename.buf, flags,
2039 &stream, compressed, sizeof(compressed),
2040 &c, hdr, hdrlen);
2041 if (fd < 0)
2042 return -1;
2044 /* Then the data itself.. */
2045 stream.next_in = (void *)buf;
2046 stream.avail_in = len;
2047 do {
2048 unsigned char *in0 = stream.next_in;
2050 ret = write_loose_object_common(&c, &stream, 1, in0, fd,
2051 compressed, sizeof(compressed));
2052 } while (ret == Z_OK);
2054 if (ret != Z_STREAM_END)
2055 die(_("unable to deflate new object %s (%d)"), oid_to_hex(oid),
2056 ret);
2057 ret = end_loose_object_common(&c, &stream, &parano_oid);
2058 if (ret != Z_OK)
2059 die(_("deflateEnd on object %s failed (%d)"), oid_to_hex(oid),
2060 ret);
2061 if (!oideq(oid, &parano_oid))
2062 die(_("confused by unstable object source data for %s"),
2063 oid_to_hex(oid));
2065 close_loose_object(fd, tmp_file.buf);
2067 if (mtime) {
2068 struct utimbuf utb;
2069 utb.actime = mtime;
2070 utb.modtime = mtime;
2071 if (utime(tmp_file.buf, &utb) < 0 &&
2072 !(flags & HASH_SILENT))
2073 warning_errno(_("failed utime() on %s"), tmp_file.buf);
2076 return finalize_object_file(tmp_file.buf, filename.buf);
2079 static int freshen_loose_object(const struct object_id *oid)
2081 return check_and_freshen(oid, 1);
2084 static int freshen_packed_object(const struct object_id *oid)
2086 struct pack_entry e;
2087 if (!find_pack_entry(the_repository, oid, &e))
2088 return 0;
2089 if (e.p->is_cruft)
2090 return 0;
2091 if (e.p->freshened)
2092 return 1;
2093 if (!freshen_file(e.p->pack_name))
2094 return 0;
2095 e.p->freshened = 1;
2096 return 1;
2099 int stream_loose_object(struct input_stream *in_stream, size_t len,
2100 struct object_id *oid)
2102 int fd, ret, err = 0, flush = 0;
2103 unsigned char compressed[4096];
2104 git_zstream stream;
2105 git_hash_ctx c;
2106 struct strbuf tmp_file = STRBUF_INIT;
2107 struct strbuf filename = STRBUF_INIT;
2108 int dirlen;
2109 char hdr[MAX_HEADER_LEN];
2110 int hdrlen;
2112 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2113 prepare_loose_object_bulk_checkin();
2115 /* Since oid is not determined, save tmp file to odb path. */
2116 strbuf_addf(&filename, "%s/", get_object_directory());
2117 hdrlen = format_object_header(hdr, sizeof(hdr), OBJ_BLOB, len);
2120 * Common steps for write_loose_object and stream_loose_object to
2121 * start writing loose objects:
2123 * - Create tmpfile for the loose object.
2124 * - Setup zlib stream for compression.
2125 * - Start to feed header to zlib stream.
2127 fd = start_loose_object_common(&tmp_file, filename.buf, 0,
2128 &stream, compressed, sizeof(compressed),
2129 &c, hdr, hdrlen);
2130 if (fd < 0) {
2131 err = -1;
2132 goto cleanup;
2135 /* Then the data itself.. */
2136 do {
2137 unsigned char *in0 = stream.next_in;
2139 if (!stream.avail_in && !in_stream->is_finished) {
2140 const void *in = in_stream->read(in_stream, &stream.avail_in);
2141 stream.next_in = (void *)in;
2142 in0 = (unsigned char *)in;
2143 /* All data has been read. */
2144 if (in_stream->is_finished)
2145 flush = 1;
2147 ret = write_loose_object_common(&c, &stream, flush, in0, fd,
2148 compressed, sizeof(compressed));
2150 * Unlike write_loose_object(), we do not have the entire
2151 * buffer. If we get Z_BUF_ERROR due to too few input bytes,
2152 * then we'll replenish them in the next input_stream->read()
2153 * call when we loop.
2155 } while (ret == Z_OK || ret == Z_BUF_ERROR);
2157 if (stream.total_in != len + hdrlen)
2158 die(_("write stream object %ld != %"PRIuMAX), stream.total_in,
2159 (uintmax_t)len + hdrlen);
2162 * Common steps for write_loose_object and stream_loose_object to
2163 * end writing loose oject:
2165 * - End the compression of zlib stream.
2166 * - Get the calculated oid.
2168 if (ret != Z_STREAM_END)
2169 die(_("unable to stream deflate new object (%d)"), ret);
2170 ret = end_loose_object_common(&c, &stream, oid);
2171 if (ret != Z_OK)
2172 die(_("deflateEnd on stream object failed (%d)"), ret);
2173 close_loose_object(fd, tmp_file.buf);
2175 if (freshen_packed_object(oid) || freshen_loose_object(oid)) {
2176 unlink_or_warn(tmp_file.buf);
2177 goto cleanup;
2180 loose_object_path(the_repository, &filename, oid);
2182 /* We finally know the object path, and create the missing dir. */
2183 dirlen = directory_size(filename.buf);
2184 if (dirlen) {
2185 struct strbuf dir = STRBUF_INIT;
2186 strbuf_add(&dir, filename.buf, dirlen);
2188 if (mkdir_in_gitdir(dir.buf) && errno != EEXIST) {
2189 err = error_errno(_("unable to create directory %s"), dir.buf);
2190 strbuf_release(&dir);
2191 goto cleanup;
2193 strbuf_release(&dir);
2196 err = finalize_object_file(tmp_file.buf, filename.buf);
2197 cleanup:
2198 strbuf_release(&tmp_file);
2199 strbuf_release(&filename);
2200 return err;
2203 int write_object_file_flags(const void *buf, unsigned long len,
2204 enum object_type type, struct object_id *oid,
2205 unsigned flags)
2207 char hdr[MAX_HEADER_LEN];
2208 int hdrlen = sizeof(hdr);
2210 /* Normally if we have it in the pack then we do not bother writing
2211 * it out into .git/objects/??/?{38} file.
2213 write_object_file_prepare(the_hash_algo, buf, len, type, oid, hdr,
2214 &hdrlen);
2215 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2216 return 0;
2217 return write_loose_object(oid, hdr, hdrlen, buf, len, 0, flags);
2220 int write_object_file_literally(const void *buf, unsigned long len,
2221 const char *type, struct object_id *oid,
2222 unsigned flags)
2224 char *header;
2225 int hdrlen, status = 0;
2227 /* type string, SP, %lu of the length plus NUL must fit this */
2228 hdrlen = strlen(type) + MAX_HEADER_LEN;
2229 header = xmalloc(hdrlen);
2230 write_object_file_prepare_literally(the_hash_algo, buf, len, type,
2231 oid, header, &hdrlen);
2233 if (!(flags & HASH_WRITE_OBJECT))
2234 goto cleanup;
2235 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2236 goto cleanup;
2237 status = write_loose_object(oid, header, hdrlen, buf, len, 0, 0);
2239 cleanup:
2240 free(header);
2241 return status;
2244 int force_object_loose(const struct object_id *oid, time_t mtime)
2246 void *buf;
2247 unsigned long len;
2248 struct object_info oi = OBJECT_INFO_INIT;
2249 enum object_type type;
2250 char hdr[MAX_HEADER_LEN];
2251 int hdrlen;
2252 int ret;
2254 if (has_loose_object(oid))
2255 return 0;
2256 oi.typep = &type;
2257 oi.sizep = &len;
2258 oi.contentp = &buf;
2259 if (oid_object_info_extended(the_repository, oid, &oi, 0))
2260 return error(_("cannot read object for %s"), oid_to_hex(oid));
2261 hdrlen = format_object_header(hdr, sizeof(hdr), type, len);
2262 ret = write_loose_object(oid, hdr, hdrlen, buf, len, mtime, 0);
2263 free(buf);
2265 return ret;
2268 int has_object(struct repository *r, const struct object_id *oid,
2269 unsigned flags)
2271 int quick = !(flags & HAS_OBJECT_RECHECK_PACKED);
2272 unsigned object_info_flags = OBJECT_INFO_SKIP_FETCH_OBJECT |
2273 (quick ? OBJECT_INFO_QUICK : 0);
2275 if (!startup_info->have_repository)
2276 return 0;
2277 return oid_object_info_extended(r, oid, NULL, object_info_flags) >= 0;
2280 int repo_has_object_file_with_flags(struct repository *r,
2281 const struct object_id *oid, int flags)
2283 if (!startup_info->have_repository)
2284 return 0;
2285 return oid_object_info_extended(r, oid, NULL, flags) >= 0;
2288 int repo_has_object_file(struct repository *r,
2289 const struct object_id *oid)
2291 return repo_has_object_file_with_flags(r, oid, 0);
2295 * We can't use the normal fsck_error_function() for index_mem(),
2296 * because we don't yet have a valid oid for it to report. Instead,
2297 * report the minimal fsck error here, and rely on the caller to
2298 * give more context.
2300 static int hash_format_check_report(struct fsck_options *opts,
2301 const struct object_id *oid,
2302 enum object_type object_type,
2303 enum fsck_msg_type msg_type,
2304 enum fsck_msg_id msg_id,
2305 const char *message)
2307 error(_("object fails fsck: %s"), message);
2308 return 1;
2311 static int index_mem(struct index_state *istate,
2312 struct object_id *oid, void *buf, size_t size,
2313 enum object_type type,
2314 const char *path, unsigned flags)
2316 int ret = 0;
2317 int re_allocated = 0;
2318 int write_object = flags & HASH_WRITE_OBJECT;
2320 if (!type)
2321 type = OBJ_BLOB;
2324 * Convert blobs to git internal format
2326 if ((type == OBJ_BLOB) && path) {
2327 struct strbuf nbuf = STRBUF_INIT;
2328 if (convert_to_git(istate, path, buf, size, &nbuf,
2329 get_conv_flags(flags))) {
2330 buf = strbuf_detach(&nbuf, &size);
2331 re_allocated = 1;
2334 if (flags & HASH_FORMAT_CHECK) {
2335 struct fsck_options opts = FSCK_OPTIONS_DEFAULT;
2337 opts.strict = 1;
2338 opts.error_func = hash_format_check_report;
2339 if (fsck_buffer(null_oid(), type, buf, size, &opts))
2340 die(_("refusing to create malformed object"));
2341 fsck_finish(&opts);
2344 if (write_object)
2345 ret = write_object_file(buf, size, type, oid);
2346 else
2347 hash_object_file(the_hash_algo, buf, size, type, oid);
2348 if (re_allocated)
2349 free(buf);
2350 return ret;
2353 static int index_stream_convert_blob(struct index_state *istate,
2354 struct object_id *oid,
2355 int fd,
2356 const char *path,
2357 unsigned flags)
2359 int ret = 0;
2360 const int write_object = flags & HASH_WRITE_OBJECT;
2361 struct strbuf sbuf = STRBUF_INIT;
2363 assert(path);
2364 assert(would_convert_to_git_filter_fd(istate, path));
2366 convert_to_git_filter_fd(istate, path, fd, &sbuf,
2367 get_conv_flags(flags));
2369 if (write_object)
2370 ret = write_object_file(sbuf.buf, sbuf.len, OBJ_BLOB,
2371 oid);
2372 else
2373 hash_object_file(the_hash_algo, sbuf.buf, sbuf.len, OBJ_BLOB,
2374 oid);
2375 strbuf_release(&sbuf);
2376 return ret;
2379 static int index_pipe(struct index_state *istate, struct object_id *oid,
2380 int fd, enum object_type type,
2381 const char *path, unsigned flags)
2383 struct strbuf sbuf = STRBUF_INIT;
2384 int ret;
2386 if (strbuf_read(&sbuf, fd, 4096) >= 0)
2387 ret = index_mem(istate, oid, sbuf.buf, sbuf.len, type, path, flags);
2388 else
2389 ret = -1;
2390 strbuf_release(&sbuf);
2391 return ret;
2394 #define SMALL_FILE_SIZE (32*1024)
2396 static int index_core(struct index_state *istate,
2397 struct object_id *oid, int fd, size_t size,
2398 enum object_type type, const char *path,
2399 unsigned flags)
2401 int ret;
2403 if (!size) {
2404 ret = index_mem(istate, oid, "", size, type, path, flags);
2405 } else if (size <= SMALL_FILE_SIZE) {
2406 char *buf = xmalloc(size);
2407 ssize_t read_result = read_in_full(fd, buf, size);
2408 if (read_result < 0)
2409 ret = error_errno(_("read error while indexing %s"),
2410 path ? path : "<unknown>");
2411 else if (read_result != size)
2412 ret = error(_("short read while indexing %s"),
2413 path ? path : "<unknown>");
2414 else
2415 ret = index_mem(istate, oid, buf, size, type, path, flags);
2416 free(buf);
2417 } else {
2418 void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
2419 ret = index_mem(istate, oid, buf, size, type, path, flags);
2420 munmap(buf, size);
2422 return ret;
2426 * This creates one packfile per large blob unless bulk-checkin
2427 * machinery is "plugged".
2429 * This also bypasses the usual "convert-to-git" dance, and that is on
2430 * purpose. We could write a streaming version of the converting
2431 * functions and insert that before feeding the data to fast-import
2432 * (or equivalent in-core API described above). However, that is
2433 * somewhat complicated, as we do not know the size of the filter
2434 * result, which we need to know beforehand when writing a git object.
2435 * Since the primary motivation for trying to stream from the working
2436 * tree file and to avoid mmaping it in core is to deal with large
2437 * binary blobs, they generally do not want to get any conversion, and
2438 * callers should avoid this code path when filters are requested.
2440 static int index_stream(struct object_id *oid, int fd, size_t size,
2441 enum object_type type, const char *path,
2442 unsigned flags)
2444 return index_bulk_checkin(oid, fd, size, type, path, flags);
2447 int index_fd(struct index_state *istate, struct object_id *oid,
2448 int fd, struct stat *st,
2449 enum object_type type, const char *path, unsigned flags)
2451 int ret;
2454 * Call xsize_t() only when needed to avoid potentially unnecessary
2455 * die() for large files.
2457 if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(istate, path))
2458 ret = index_stream_convert_blob(istate, oid, fd, path, flags);
2459 else if (!S_ISREG(st->st_mode))
2460 ret = index_pipe(istate, oid, fd, type, path, flags);
2461 else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
2462 (path && would_convert_to_git(istate, path)))
2463 ret = index_core(istate, oid, fd, xsize_t(st->st_size),
2464 type, path, flags);
2465 else
2466 ret = index_stream(oid, fd, xsize_t(st->st_size), type, path,
2467 flags);
2468 close(fd);
2469 return ret;
2472 int index_path(struct index_state *istate, struct object_id *oid,
2473 const char *path, struct stat *st, unsigned flags)
2475 int fd;
2476 struct strbuf sb = STRBUF_INIT;
2477 int rc = 0;
2479 switch (st->st_mode & S_IFMT) {
2480 case S_IFREG:
2481 fd = open(path, O_RDONLY);
2482 if (fd < 0)
2483 return error_errno("open(\"%s\")", path);
2484 if (index_fd(istate, oid, fd, st, OBJ_BLOB, path, flags) < 0)
2485 return error(_("%s: failed to insert into database"),
2486 path);
2487 break;
2488 case S_IFLNK:
2489 if (strbuf_readlink(&sb, path, st->st_size))
2490 return error_errno("readlink(\"%s\")", path);
2491 if (!(flags & HASH_WRITE_OBJECT))
2492 hash_object_file(the_hash_algo, sb.buf, sb.len,
2493 OBJ_BLOB, oid);
2494 else if (write_object_file(sb.buf, sb.len, OBJ_BLOB, oid))
2495 rc = error(_("%s: failed to insert into database"), path);
2496 strbuf_release(&sb);
2497 break;
2498 case S_IFDIR:
2499 return resolve_gitlink_ref(path, "HEAD", oid);
2500 default:
2501 return error(_("%s: unsupported file type"), path);
2503 return rc;
2506 int read_pack_header(int fd, struct pack_header *header)
2508 if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
2509 /* "eof before pack header was fully read" */
2510 return PH_ERROR_EOF;
2512 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2513 /* "protocol error (pack signature mismatch detected)" */
2514 return PH_ERROR_PACK_SIGNATURE;
2515 if (!pack_version_ok(header->hdr_version))
2516 /* "protocol error (pack version unsupported)" */
2517 return PH_ERROR_PROTOCOL;
2518 return 0;
2521 void assert_oid_type(const struct object_id *oid, enum object_type expect)
2523 enum object_type type = oid_object_info(the_repository, oid, NULL);
2524 if (type < 0)
2525 die(_("%s is not a valid object"), oid_to_hex(oid));
2526 if (type != expect)
2527 die(_("%s is not a valid '%s' object"), oid_to_hex(oid),
2528 type_name(expect));
2531 int for_each_file_in_obj_subdir(unsigned int subdir_nr,
2532 struct strbuf *path,
2533 each_loose_object_fn obj_cb,
2534 each_loose_cruft_fn cruft_cb,
2535 each_loose_subdir_fn subdir_cb,
2536 void *data)
2538 size_t origlen, baselen;
2539 DIR *dir;
2540 struct dirent *de;
2541 int r = 0;
2542 struct object_id oid;
2544 if (subdir_nr > 0xff)
2545 BUG("invalid loose object subdirectory: %x", subdir_nr);
2547 origlen = path->len;
2548 strbuf_complete(path, '/');
2549 strbuf_addf(path, "%02x", subdir_nr);
2551 dir = opendir(path->buf);
2552 if (!dir) {
2553 if (errno != ENOENT)
2554 r = error_errno(_("unable to open %s"), path->buf);
2555 strbuf_setlen(path, origlen);
2556 return r;
2559 oid.hash[0] = subdir_nr;
2560 strbuf_addch(path, '/');
2561 baselen = path->len;
2563 while ((de = readdir_skip_dot_and_dotdot(dir))) {
2564 size_t namelen;
2566 namelen = strlen(de->d_name);
2567 strbuf_setlen(path, baselen);
2568 strbuf_add(path, de->d_name, namelen);
2569 if (namelen == the_hash_algo->hexsz - 2 &&
2570 !hex_to_bytes(oid.hash + 1, de->d_name,
2571 the_hash_algo->rawsz - 1)) {
2572 oid_set_algo(&oid, the_hash_algo);
2573 if (obj_cb) {
2574 r = obj_cb(&oid, path->buf, data);
2575 if (r)
2576 break;
2578 continue;
2581 if (cruft_cb) {
2582 r = cruft_cb(de->d_name, path->buf, data);
2583 if (r)
2584 break;
2587 closedir(dir);
2589 strbuf_setlen(path, baselen - 1);
2590 if (!r && subdir_cb)
2591 r = subdir_cb(subdir_nr, path->buf, data);
2593 strbuf_setlen(path, origlen);
2595 return r;
2598 int for_each_loose_file_in_objdir_buf(struct strbuf *path,
2599 each_loose_object_fn obj_cb,
2600 each_loose_cruft_fn cruft_cb,
2601 each_loose_subdir_fn subdir_cb,
2602 void *data)
2604 int r = 0;
2605 int i;
2607 for (i = 0; i < 256; i++) {
2608 r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
2609 subdir_cb, data);
2610 if (r)
2611 break;
2614 return r;
2617 int for_each_loose_file_in_objdir(const char *path,
2618 each_loose_object_fn obj_cb,
2619 each_loose_cruft_fn cruft_cb,
2620 each_loose_subdir_fn subdir_cb,
2621 void *data)
2623 struct strbuf buf = STRBUF_INIT;
2624 int r;
2626 strbuf_addstr(&buf, path);
2627 r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
2628 subdir_cb, data);
2629 strbuf_release(&buf);
2631 return r;
2634 int for_each_loose_object(each_loose_object_fn cb, void *data,
2635 enum for_each_object_flags flags)
2637 struct object_directory *odb;
2639 prepare_alt_odb(the_repository);
2640 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
2641 int r = for_each_loose_file_in_objdir(odb->path, cb, NULL,
2642 NULL, data);
2643 if (r)
2644 return r;
2646 if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2647 break;
2650 return 0;
2653 static int append_loose_object(const struct object_id *oid, const char *path,
2654 void *data)
2656 oidtree_insert(data, oid);
2657 return 0;
2660 struct oidtree *odb_loose_cache(struct object_directory *odb,
2661 const struct object_id *oid)
2663 int subdir_nr = oid->hash[0];
2664 struct strbuf buf = STRBUF_INIT;
2665 size_t word_bits = bitsizeof(odb->loose_objects_subdir_seen[0]);
2666 size_t word_index = subdir_nr / word_bits;
2667 size_t mask = (size_t)1u << (subdir_nr % word_bits);
2668 uint32_t *bitmap;
2670 if (subdir_nr < 0 ||
2671 subdir_nr >= bitsizeof(odb->loose_objects_subdir_seen))
2672 BUG("subdir_nr out of range");
2674 bitmap = &odb->loose_objects_subdir_seen[word_index];
2675 if (*bitmap & mask)
2676 return odb->loose_objects_cache;
2677 if (!odb->loose_objects_cache) {
2678 ALLOC_ARRAY(odb->loose_objects_cache, 1);
2679 oidtree_init(odb->loose_objects_cache);
2681 strbuf_addstr(&buf, odb->path);
2682 for_each_file_in_obj_subdir(subdir_nr, &buf,
2683 append_loose_object,
2684 NULL, NULL,
2685 odb->loose_objects_cache);
2686 *bitmap |= mask;
2687 strbuf_release(&buf);
2688 return odb->loose_objects_cache;
2691 void odb_clear_loose_cache(struct object_directory *odb)
2693 oidtree_clear(odb->loose_objects_cache);
2694 FREE_AND_NULL(odb->loose_objects_cache);
2695 memset(&odb->loose_objects_subdir_seen, 0,
2696 sizeof(odb->loose_objects_subdir_seen));
2699 static int check_stream_oid(git_zstream *stream,
2700 const char *hdr,
2701 unsigned long size,
2702 const char *path,
2703 const struct object_id *expected_oid)
2705 git_hash_ctx c;
2706 struct object_id real_oid;
2707 unsigned char buf[4096];
2708 unsigned long total_read;
2709 int status = Z_OK;
2711 the_hash_algo->init_fn(&c);
2712 the_hash_algo->update_fn(&c, hdr, stream->total_out);
2715 * We already read some bytes into hdr, but the ones up to the NUL
2716 * do not count against the object's content size.
2718 total_read = stream->total_out - strlen(hdr) - 1;
2721 * This size comparison must be "<=" to read the final zlib packets;
2722 * see the comment in unpack_loose_rest for details.
2724 while (total_read <= size &&
2725 (status == Z_OK ||
2726 (status == Z_BUF_ERROR && !stream->avail_out))) {
2727 stream->next_out = buf;
2728 stream->avail_out = sizeof(buf);
2729 if (size - total_read < stream->avail_out)
2730 stream->avail_out = size - total_read;
2731 status = git_inflate(stream, Z_FINISH);
2732 the_hash_algo->update_fn(&c, buf, stream->next_out - buf);
2733 total_read += stream->next_out - buf;
2735 git_inflate_end(stream);
2737 if (status != Z_STREAM_END) {
2738 error(_("corrupt loose object '%s'"), oid_to_hex(expected_oid));
2739 return -1;
2741 if (stream->avail_in) {
2742 error(_("garbage at end of loose object '%s'"),
2743 oid_to_hex(expected_oid));
2744 return -1;
2747 the_hash_algo->final_oid_fn(&real_oid, &c);
2748 if (!oideq(expected_oid, &real_oid)) {
2749 error(_("hash mismatch for %s (expected %s)"), path,
2750 oid_to_hex(expected_oid));
2751 return -1;
2754 return 0;
2757 int read_loose_object(const char *path,
2758 const struct object_id *expected_oid,
2759 struct object_id *real_oid,
2760 void **contents,
2761 struct object_info *oi)
2763 int ret = -1;
2764 int fd;
2765 void *map = NULL;
2766 unsigned long mapsize;
2767 git_zstream stream;
2768 char hdr[MAX_HEADER_LEN];
2769 unsigned long *size = oi->sizep;
2771 fd = git_open(path);
2772 if (fd >= 0)
2773 map = map_fd(fd, path, &mapsize);
2774 if (!map) {
2775 error_errno(_("unable to mmap %s"), path);
2776 goto out;
2779 if (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
2780 NULL) != ULHR_OK) {
2781 error(_("unable to unpack header of %s"), path);
2782 goto out;
2785 if (parse_loose_header(hdr, oi) < 0) {
2786 error(_("unable to parse header of %s"), path);
2787 git_inflate_end(&stream);
2788 goto out;
2791 if (*oi->typep == OBJ_BLOB && *size > big_file_threshold) {
2792 if (check_stream_oid(&stream, hdr, *size, path, expected_oid) < 0)
2793 goto out;
2794 } else {
2795 *contents = unpack_loose_rest(&stream, hdr, *size, expected_oid);
2796 if (!*contents) {
2797 error(_("unable to unpack contents of %s"), path);
2798 git_inflate_end(&stream);
2799 goto out;
2801 hash_object_file_literally(the_repository->hash_algo,
2802 *contents, *size,
2803 oi->type_name->buf, real_oid);
2804 if (!oideq(expected_oid, real_oid))
2805 goto out;
2808 ret = 0; /* everything checks out */
2810 out:
2811 if (map)
2812 munmap(map, mapsize);
2813 return ret;