Merge branch 'ar/typofix-gitattributes-doc'
[git.git] / object-file.c
blob80a0cd3b35183476bc56c8ce510d0863e171069e
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"
37 /* The maximum size for an object header. */
38 #define MAX_HEADER_LEN 32
41 #define EMPTY_TREE_SHA1_BIN_LITERAL \
42 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60" \
43 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04"
44 #define EMPTY_TREE_SHA256_BIN_LITERAL \
45 "\x6e\xf1\x9b\x41\x22\x5c\x53\x69\xf1\xc1" \
46 "\x04\xd4\x5d\x8d\x85\xef\xa9\xb0\x57\xb5" \
47 "\x3b\x14\xb4\xb9\xb9\x39\xdd\x74\xde\xcc" \
48 "\x53\x21"
50 #define EMPTY_BLOB_SHA1_BIN_LITERAL \
51 "\xe6\x9d\xe2\x9b\xb2\xd1\xd6\x43\x4b\x8b" \
52 "\x29\xae\x77\x5a\xd8\xc2\xe4\x8c\x53\x91"
53 #define EMPTY_BLOB_SHA256_BIN_LITERAL \
54 "\x47\x3a\x0f\x4c\x3b\xe8\xa9\x36\x81\xa2" \
55 "\x67\xe3\xb1\xe9\xa7\xdc\xda\x11\x85\x43" \
56 "\x6f\xe1\x41\xf7\x74\x91\x20\xa3\x03\x72" \
57 "\x18\x13"
59 static const struct object_id empty_tree_oid = {
60 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
61 .algo = GIT_HASH_SHA1,
63 static const struct object_id empty_blob_oid = {
64 .hash = EMPTY_BLOB_SHA1_BIN_LITERAL,
65 .algo = GIT_HASH_SHA1,
67 static const struct object_id null_oid_sha1 = {
68 .hash = {0},
69 .algo = GIT_HASH_SHA1,
71 static const struct object_id empty_tree_oid_sha256 = {
72 .hash = EMPTY_TREE_SHA256_BIN_LITERAL,
73 .algo = GIT_HASH_SHA256,
75 static const struct object_id empty_blob_oid_sha256 = {
76 .hash = EMPTY_BLOB_SHA256_BIN_LITERAL,
77 .algo = GIT_HASH_SHA256,
79 static const struct object_id null_oid_sha256 = {
80 .hash = {0},
81 .algo = GIT_HASH_SHA256,
84 static void git_hash_sha1_init(git_hash_ctx *ctx)
86 git_SHA1_Init(&ctx->sha1);
89 static void git_hash_sha1_clone(git_hash_ctx *dst, const git_hash_ctx *src)
91 git_SHA1_Clone(&dst->sha1, &src->sha1);
94 static void git_hash_sha1_update(git_hash_ctx *ctx, const void *data, size_t len)
96 git_SHA1_Update(&ctx->sha1, data, len);
99 static void git_hash_sha1_final(unsigned char *hash, git_hash_ctx *ctx)
101 git_SHA1_Final(hash, &ctx->sha1);
104 static void git_hash_sha1_final_oid(struct object_id *oid, git_hash_ctx *ctx)
106 git_SHA1_Final(oid->hash, &ctx->sha1);
107 memset(oid->hash + GIT_SHA1_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA1_RAWSZ);
108 oid->algo = GIT_HASH_SHA1;
112 static void git_hash_sha256_init(git_hash_ctx *ctx)
114 git_SHA256_Init(&ctx->sha256);
117 static void git_hash_sha256_clone(git_hash_ctx *dst, const git_hash_ctx *src)
119 git_SHA256_Clone(&dst->sha256, &src->sha256);
122 static void git_hash_sha256_update(git_hash_ctx *ctx, const void *data, size_t len)
124 git_SHA256_Update(&ctx->sha256, data, len);
127 static void git_hash_sha256_final(unsigned char *hash, git_hash_ctx *ctx)
129 git_SHA256_Final(hash, &ctx->sha256);
132 static void git_hash_sha256_final_oid(struct object_id *oid, git_hash_ctx *ctx)
134 git_SHA256_Final(oid->hash, &ctx->sha256);
136 * This currently does nothing, so the compiler should optimize it out,
137 * but keep it in case we extend the hash size again.
139 memset(oid->hash + GIT_SHA256_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA256_RAWSZ);
140 oid->algo = GIT_HASH_SHA256;
143 static void git_hash_unknown_init(git_hash_ctx *ctx UNUSED)
145 BUG("trying to init unknown hash");
148 static void git_hash_unknown_clone(git_hash_ctx *dst UNUSED,
149 const git_hash_ctx *src UNUSED)
151 BUG("trying to clone unknown hash");
154 static void git_hash_unknown_update(git_hash_ctx *ctx UNUSED,
155 const void *data UNUSED,
156 size_t len UNUSED)
158 BUG("trying to update unknown hash");
161 static void git_hash_unknown_final(unsigned char *hash UNUSED,
162 git_hash_ctx *ctx UNUSED)
164 BUG("trying to finalize unknown hash");
167 static void git_hash_unknown_final_oid(struct object_id *oid UNUSED,
168 git_hash_ctx *ctx UNUSED)
170 BUG("trying to finalize unknown hash");
173 const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
175 .name = NULL,
176 .format_id = 0x00000000,
177 .rawsz = 0,
178 .hexsz = 0,
179 .blksz = 0,
180 .init_fn = git_hash_unknown_init,
181 .clone_fn = git_hash_unknown_clone,
182 .update_fn = git_hash_unknown_update,
183 .final_fn = git_hash_unknown_final,
184 .final_oid_fn = git_hash_unknown_final_oid,
185 .empty_tree = NULL,
186 .empty_blob = NULL,
187 .null_oid = NULL,
190 .name = "sha1",
191 .format_id = GIT_SHA1_FORMAT_ID,
192 .rawsz = GIT_SHA1_RAWSZ,
193 .hexsz = GIT_SHA1_HEXSZ,
194 .blksz = GIT_SHA1_BLKSZ,
195 .init_fn = git_hash_sha1_init,
196 .clone_fn = git_hash_sha1_clone,
197 .update_fn = git_hash_sha1_update,
198 .final_fn = git_hash_sha1_final,
199 .final_oid_fn = git_hash_sha1_final_oid,
200 .empty_tree = &empty_tree_oid,
201 .empty_blob = &empty_blob_oid,
202 .null_oid = &null_oid_sha1,
205 .name = "sha256",
206 .format_id = GIT_SHA256_FORMAT_ID,
207 .rawsz = GIT_SHA256_RAWSZ,
208 .hexsz = GIT_SHA256_HEXSZ,
209 .blksz = GIT_SHA256_BLKSZ,
210 .init_fn = git_hash_sha256_init,
211 .clone_fn = git_hash_sha256_clone,
212 .update_fn = git_hash_sha256_update,
213 .final_fn = git_hash_sha256_final,
214 .final_oid_fn = git_hash_sha256_final_oid,
215 .empty_tree = &empty_tree_oid_sha256,
216 .empty_blob = &empty_blob_oid_sha256,
217 .null_oid = &null_oid_sha256,
221 const struct object_id *null_oid(void)
223 return the_hash_algo->null_oid;
226 const char *empty_tree_oid_hex(void)
228 static char buf[GIT_MAX_HEXSZ + 1];
229 return oid_to_hex_r(buf, the_hash_algo->empty_tree);
232 const char *empty_blob_oid_hex(void)
234 static char buf[GIT_MAX_HEXSZ + 1];
235 return oid_to_hex_r(buf, the_hash_algo->empty_blob);
238 int hash_algo_by_name(const char *name)
240 int i;
241 if (!name)
242 return GIT_HASH_UNKNOWN;
243 for (i = 1; i < GIT_HASH_NALGOS; i++)
244 if (!strcmp(name, hash_algos[i].name))
245 return i;
246 return GIT_HASH_UNKNOWN;
249 int hash_algo_by_id(uint32_t format_id)
251 int i;
252 for (i = 1; i < GIT_HASH_NALGOS; i++)
253 if (format_id == hash_algos[i].format_id)
254 return i;
255 return GIT_HASH_UNKNOWN;
258 int hash_algo_by_length(int len)
260 int i;
261 for (i = 1; i < GIT_HASH_NALGOS; i++)
262 if (len == hash_algos[i].rawsz)
263 return i;
264 return GIT_HASH_UNKNOWN;
268 * This is meant to hold a *small* number of objects that you would
269 * want read_object_file() to be able to return, but yet you do not want
270 * to write them into the object store (e.g. a browse-only
271 * application).
273 static struct cached_object {
274 struct object_id oid;
275 enum object_type type;
276 void *buf;
277 unsigned long size;
278 } *cached_objects;
279 static int cached_object_nr, cached_object_alloc;
281 static struct cached_object empty_tree = {
282 .oid = {
283 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
285 .type = OBJ_TREE,
286 .buf = "",
289 static struct cached_object *find_cached_object(const struct object_id *oid)
291 int i;
292 struct cached_object *co = cached_objects;
294 for (i = 0; i < cached_object_nr; i++, co++) {
295 if (oideq(&co->oid, oid))
296 return co;
298 if (oideq(oid, the_hash_algo->empty_tree))
299 return &empty_tree;
300 return NULL;
304 static int get_conv_flags(unsigned flags)
306 if (flags & HASH_RENORMALIZE)
307 return CONV_EOL_RENORMALIZE;
308 else if (flags & HASH_WRITE_OBJECT)
309 return global_conv_flags_eol | CONV_WRITE_OBJECT;
310 else
311 return 0;
315 int mkdir_in_gitdir(const char *path)
317 if (mkdir(path, 0777)) {
318 int saved_errno = errno;
319 struct stat st;
320 struct strbuf sb = STRBUF_INIT;
322 if (errno != EEXIST)
323 return -1;
325 * Are we looking at a path in a symlinked worktree
326 * whose original repository does not yet have it?
327 * e.g. .git/rr-cache pointing at its original
328 * repository in which the user hasn't performed any
329 * conflict resolution yet?
331 if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
332 strbuf_readlink(&sb, path, st.st_size) ||
333 !is_absolute_path(sb.buf) ||
334 mkdir(sb.buf, 0777)) {
335 strbuf_release(&sb);
336 errno = saved_errno;
337 return -1;
339 strbuf_release(&sb);
341 return adjust_shared_perm(path);
344 static enum scld_error safe_create_leading_directories_1(char *path, int share)
346 char *next_component = path + offset_1st_component(path);
347 enum scld_error ret = SCLD_OK;
349 while (ret == SCLD_OK && next_component) {
350 struct stat st;
351 char *slash = next_component, slash_character;
353 while (*slash && !is_dir_sep(*slash))
354 slash++;
356 if (!*slash)
357 break;
359 next_component = slash + 1;
360 while (is_dir_sep(*next_component))
361 next_component++;
362 if (!*next_component)
363 break;
365 slash_character = *slash;
366 *slash = '\0';
367 if (!stat(path, &st)) {
368 /* path exists */
369 if (!S_ISDIR(st.st_mode)) {
370 errno = ENOTDIR;
371 ret = SCLD_EXISTS;
373 } else if (mkdir(path, 0777)) {
374 if (errno == EEXIST &&
375 !stat(path, &st) && S_ISDIR(st.st_mode))
376 ; /* somebody created it since we checked */
377 else if (errno == ENOENT)
379 * Either mkdir() failed because
380 * somebody just pruned the containing
381 * directory, or stat() failed because
382 * the file that was in our way was
383 * just removed. Either way, inform
384 * the caller that it might be worth
385 * trying again:
387 ret = SCLD_VANISHED;
388 else
389 ret = SCLD_FAILED;
390 } else if (share && adjust_shared_perm(path)) {
391 ret = SCLD_PERMS;
393 *slash = slash_character;
395 return ret;
398 enum scld_error safe_create_leading_directories(char *path)
400 return safe_create_leading_directories_1(path, 1);
403 enum scld_error safe_create_leading_directories_no_share(char *path)
405 return safe_create_leading_directories_1(path, 0);
408 enum scld_error safe_create_leading_directories_const(const char *path)
410 int save_errno;
411 /* path points to cache entries, so xstrdup before messing with it */
412 char *buf = xstrdup(path);
413 enum scld_error result = safe_create_leading_directories(buf);
415 save_errno = errno;
416 free(buf);
417 errno = save_errno;
418 return result;
421 static void fill_loose_path(struct strbuf *buf, const struct object_id *oid)
423 int i;
424 for (i = 0; i < the_hash_algo->rawsz; i++) {
425 static char hex[] = "0123456789abcdef";
426 unsigned int val = oid->hash[i];
427 strbuf_addch(buf, hex[val >> 4]);
428 strbuf_addch(buf, hex[val & 0xf]);
429 if (!i)
430 strbuf_addch(buf, '/');
434 static const char *odb_loose_path(struct object_directory *odb,
435 struct strbuf *buf,
436 const struct object_id *oid)
438 strbuf_reset(buf);
439 strbuf_addstr(buf, odb->path);
440 strbuf_addch(buf, '/');
441 fill_loose_path(buf, oid);
442 return buf->buf;
445 const char *loose_object_path(struct repository *r, struct strbuf *buf,
446 const struct object_id *oid)
448 return odb_loose_path(r->objects->odb, buf, oid);
452 * Return non-zero iff the path is usable as an alternate object database.
454 static int alt_odb_usable(struct raw_object_store *o,
455 struct strbuf *path,
456 const char *normalized_objdir, khiter_t *pos)
458 int r;
460 /* Detect cases where alternate disappeared */
461 if (!is_directory(path->buf)) {
462 error(_("object directory %s does not exist; "
463 "check .git/objects/info/alternates"),
464 path->buf);
465 return 0;
469 * Prevent the common mistake of listing the same
470 * thing twice, or object directory itself.
472 if (!o->odb_by_path) {
473 khiter_t p;
475 o->odb_by_path = kh_init_odb_path_map();
476 assert(!o->odb->next);
477 p = kh_put_odb_path_map(o->odb_by_path, o->odb->path, &r);
478 assert(r == 1); /* never used */
479 kh_value(o->odb_by_path, p) = o->odb;
481 if (fspatheq(path->buf, normalized_objdir))
482 return 0;
483 *pos = kh_put_odb_path_map(o->odb_by_path, path->buf, &r);
484 /* r: 0 = exists, 1 = never used, 2 = deleted */
485 return r == 0 ? 0 : 1;
489 * Prepare alternate object database registry.
491 * The variable alt_odb_list points at the list of struct
492 * object_directory. The elements on this list come from
493 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
494 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
495 * whose contents is similar to that environment variable but can be
496 * LF separated. Its base points at a statically allocated buffer that
497 * contains "/the/directory/corresponding/to/.git/objects/...", while
498 * its name points just after the slash at the end of ".git/objects/"
499 * in the example above, and has enough space to hold all hex characters
500 * of the object ID, an extra slash for the first level indirection, and
501 * the terminating NUL.
503 static void read_info_alternates(struct repository *r,
504 const char *relative_base,
505 int depth);
506 static int link_alt_odb_entry(struct repository *r, const struct strbuf *entry,
507 const char *relative_base, int depth, const char *normalized_objdir)
509 struct object_directory *ent;
510 struct strbuf pathbuf = STRBUF_INIT;
511 struct strbuf tmp = STRBUF_INIT;
512 khiter_t pos;
513 int ret = -1;
515 if (!is_absolute_path(entry->buf) && relative_base) {
516 strbuf_realpath(&pathbuf, relative_base, 1);
517 strbuf_addch(&pathbuf, '/');
519 strbuf_addbuf(&pathbuf, entry);
521 if (!strbuf_realpath(&tmp, pathbuf.buf, 0)) {
522 error(_("unable to normalize alternate object path: %s"),
523 pathbuf.buf);
524 goto error;
526 strbuf_swap(&pathbuf, &tmp);
529 * The trailing slash after the directory name is given by
530 * this function at the end. Remove duplicates.
532 while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
533 strbuf_setlen(&pathbuf, pathbuf.len - 1);
535 if (!alt_odb_usable(r->objects, &pathbuf, normalized_objdir, &pos))
536 goto error;
538 CALLOC_ARRAY(ent, 1);
539 /* pathbuf.buf is already in r->objects->odb_by_path */
540 ent->path = strbuf_detach(&pathbuf, NULL);
542 /* add the alternate entry */
543 *r->objects->odb_tail = ent;
544 r->objects->odb_tail = &(ent->next);
545 ent->next = NULL;
546 assert(r->objects->odb_by_path);
547 kh_value(r->objects->odb_by_path, pos) = ent;
549 /* recursively add alternates */
550 read_info_alternates(r, ent->path, depth + 1);
551 ret = 0;
552 error:
553 strbuf_release(&tmp);
554 strbuf_release(&pathbuf);
555 return ret;
558 static const char *parse_alt_odb_entry(const char *string,
559 int sep,
560 struct strbuf *out)
562 const char *end;
564 strbuf_reset(out);
566 if (*string == '#') {
567 /* comment; consume up to next separator */
568 end = strchrnul(string, sep);
569 } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
571 * quoted path; unquote_c_style has copied the
572 * data for us and set "end". Broken quoting (e.g.,
573 * an entry that doesn't end with a quote) falls
574 * back to the unquoted case below.
576 } else {
577 /* normal, unquoted path */
578 end = strchrnul(string, sep);
579 strbuf_add(out, string, end - string);
582 if (*end)
583 end++;
584 return end;
587 static void link_alt_odb_entries(struct repository *r, const char *alt,
588 int sep, const char *relative_base, int depth)
590 struct strbuf objdirbuf = STRBUF_INIT;
591 struct strbuf entry = STRBUF_INIT;
593 if (!alt || !*alt)
594 return;
596 if (depth > 5) {
597 error(_("%s: ignoring alternate object stores, nesting too deep"),
598 relative_base);
599 return;
602 strbuf_realpath(&objdirbuf, r->objects->odb->path, 1);
604 while (*alt) {
605 alt = parse_alt_odb_entry(alt, sep, &entry);
606 if (!entry.len)
607 continue;
608 link_alt_odb_entry(r, &entry,
609 relative_base, depth, objdirbuf.buf);
611 strbuf_release(&entry);
612 strbuf_release(&objdirbuf);
615 static void read_info_alternates(struct repository *r,
616 const char *relative_base,
617 int depth)
619 char *path;
620 struct strbuf buf = STRBUF_INIT;
622 path = xstrfmt("%s/info/alternates", relative_base);
623 if (strbuf_read_file(&buf, path, 1024) < 0) {
624 warn_on_fopen_errors(path);
625 free(path);
626 return;
629 link_alt_odb_entries(r, buf.buf, '\n', relative_base, depth);
630 strbuf_release(&buf);
631 free(path);
634 void add_to_alternates_file(const char *reference)
636 struct lock_file lock = LOCK_INIT;
637 char *alts = git_pathdup("objects/info/alternates");
638 FILE *in, *out;
639 int found = 0;
641 hold_lock_file_for_update(&lock, alts, LOCK_DIE_ON_ERROR);
642 out = fdopen_lock_file(&lock, "w");
643 if (!out)
644 die_errno(_("unable to fdopen alternates lockfile"));
646 in = fopen(alts, "r");
647 if (in) {
648 struct strbuf line = STRBUF_INIT;
650 while (strbuf_getline(&line, in) != EOF) {
651 if (!strcmp(reference, line.buf)) {
652 found = 1;
653 break;
655 fprintf_or_die(out, "%s\n", line.buf);
658 strbuf_release(&line);
659 fclose(in);
661 else if (errno != ENOENT)
662 die_errno(_("unable to read alternates file"));
664 if (found) {
665 rollback_lock_file(&lock);
666 } else {
667 fprintf_or_die(out, "%s\n", reference);
668 if (commit_lock_file(&lock))
669 die_errno(_("unable to move new alternates file into place"));
670 if (the_repository->objects->loaded_alternates)
671 link_alt_odb_entries(the_repository, reference,
672 '\n', NULL, 0);
674 free(alts);
677 void add_to_alternates_memory(const char *reference)
680 * Make sure alternates are initialized, or else our entry may be
681 * overwritten when they are.
683 prepare_alt_odb(the_repository);
685 link_alt_odb_entries(the_repository, reference,
686 '\n', NULL, 0);
689 struct object_directory *set_temporary_primary_odb(const char *dir, int will_destroy)
691 struct object_directory *new_odb;
694 * Make sure alternates are initialized, or else our entry may be
695 * overwritten when they are.
697 prepare_alt_odb(the_repository);
700 * Make a new primary odb and link the old primary ODB in as an
701 * alternate
703 new_odb = xcalloc(1, sizeof(*new_odb));
704 new_odb->path = xstrdup(dir);
707 * Disable ref updates while a temporary odb is active, since
708 * the objects in the database may roll back.
710 new_odb->disable_ref_updates = 1;
711 new_odb->will_destroy = will_destroy;
712 new_odb->next = the_repository->objects->odb;
713 the_repository->objects->odb = new_odb;
714 return new_odb->next;
717 void restore_primary_odb(struct object_directory *restore_odb, const char *old_path)
719 struct object_directory *cur_odb = the_repository->objects->odb;
721 if (strcmp(old_path, cur_odb->path))
722 BUG("expected %s as primary object store; found %s",
723 old_path, cur_odb->path);
725 if (cur_odb->next != restore_odb)
726 BUG("we expect the old primary object store to be the first alternate");
728 the_repository->objects->odb = restore_odb;
729 free_object_directory(cur_odb);
733 * Compute the exact path an alternate is at and returns it. In case of
734 * error NULL is returned and the human readable error is added to `err`
735 * `path` may be relative and should point to $GIT_DIR.
736 * `err` must not be null.
738 char *compute_alternate_path(const char *path, struct strbuf *err)
740 char *ref_git = NULL;
741 const char *repo;
742 int seen_error = 0;
744 ref_git = real_pathdup(path, 0);
745 if (!ref_git) {
746 seen_error = 1;
747 strbuf_addf(err, _("path '%s' does not exist"), path);
748 goto out;
751 repo = read_gitfile(ref_git);
752 if (!repo)
753 repo = read_gitfile(mkpath("%s/.git", ref_git));
754 if (repo) {
755 free(ref_git);
756 ref_git = xstrdup(repo);
759 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
760 char *ref_git_git = mkpathdup("%s/.git", ref_git);
761 free(ref_git);
762 ref_git = ref_git_git;
763 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
764 struct strbuf sb = STRBUF_INIT;
765 seen_error = 1;
766 if (get_common_dir(&sb, ref_git)) {
767 strbuf_addf(err,
768 _("reference repository '%s' as a linked "
769 "checkout is not supported yet."),
770 path);
771 goto out;
774 strbuf_addf(err, _("reference repository '%s' is not a "
775 "local repository."), path);
776 goto out;
779 if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
780 strbuf_addf(err, _("reference repository '%s' is shallow"),
781 path);
782 seen_error = 1;
783 goto out;
786 if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
787 strbuf_addf(err,
788 _("reference repository '%s' is grafted"),
789 path);
790 seen_error = 1;
791 goto out;
794 out:
795 if (seen_error) {
796 FREE_AND_NULL(ref_git);
799 return ref_git;
802 struct object_directory *find_odb(struct repository *r, const char *obj_dir)
804 struct object_directory *odb;
805 char *obj_dir_real = real_pathdup(obj_dir, 1);
806 struct strbuf odb_path_real = STRBUF_INIT;
808 prepare_alt_odb(r);
809 for (odb = r->objects->odb; odb; odb = odb->next) {
810 strbuf_realpath(&odb_path_real, odb->path, 1);
811 if (!strcmp(obj_dir_real, odb_path_real.buf))
812 break;
815 free(obj_dir_real);
816 strbuf_release(&odb_path_real);
818 if (!odb)
819 die(_("could not find object directory matching %s"), obj_dir);
820 return odb;
823 static void fill_alternate_refs_command(struct child_process *cmd,
824 const char *repo_path)
826 const char *value;
828 if (!git_config_get_value("core.alternateRefsCommand", &value)) {
829 cmd->use_shell = 1;
831 strvec_push(&cmd->args, value);
832 strvec_push(&cmd->args, repo_path);
833 } else {
834 cmd->git_cmd = 1;
836 strvec_pushf(&cmd->args, "--git-dir=%s", repo_path);
837 strvec_push(&cmd->args, "for-each-ref");
838 strvec_push(&cmd->args, "--format=%(objectname)");
840 if (!git_config_get_value("core.alternateRefsPrefixes", &value)) {
841 strvec_push(&cmd->args, "--");
842 strvec_split(&cmd->args, value);
846 strvec_pushv(&cmd->env, (const char **)local_repo_env);
847 cmd->out = -1;
850 static void read_alternate_refs(const char *path,
851 alternate_ref_fn *cb,
852 void *data)
854 struct child_process cmd = CHILD_PROCESS_INIT;
855 struct strbuf line = STRBUF_INIT;
856 FILE *fh;
858 fill_alternate_refs_command(&cmd, path);
860 if (start_command(&cmd))
861 return;
863 fh = xfdopen(cmd.out, "r");
864 while (strbuf_getline_lf(&line, fh) != EOF) {
865 struct object_id oid;
866 const char *p;
868 if (parse_oid_hex(line.buf, &oid, &p) || *p) {
869 warning(_("invalid line while parsing alternate refs: %s"),
870 line.buf);
871 break;
874 cb(&oid, data);
877 fclose(fh);
878 finish_command(&cmd);
879 strbuf_release(&line);
882 struct alternate_refs_data {
883 alternate_ref_fn *fn;
884 void *data;
887 static int refs_from_alternate_cb(struct object_directory *e,
888 void *data)
890 struct strbuf path = STRBUF_INIT;
891 size_t base_len;
892 struct alternate_refs_data *cb = data;
894 if (!strbuf_realpath(&path, e->path, 0))
895 goto out;
896 if (!strbuf_strip_suffix(&path, "/objects"))
897 goto out;
898 base_len = path.len;
900 /* Is this a git repository with refs? */
901 strbuf_addstr(&path, "/refs");
902 if (!is_directory(path.buf))
903 goto out;
904 strbuf_setlen(&path, base_len);
906 read_alternate_refs(path.buf, cb->fn, cb->data);
908 out:
909 strbuf_release(&path);
910 return 0;
913 void for_each_alternate_ref(alternate_ref_fn fn, void *data)
915 struct alternate_refs_data cb;
916 cb.fn = fn;
917 cb.data = data;
918 foreach_alt_odb(refs_from_alternate_cb, &cb);
921 int foreach_alt_odb(alt_odb_fn fn, void *cb)
923 struct object_directory *ent;
924 int r = 0;
926 prepare_alt_odb(the_repository);
927 for (ent = the_repository->objects->odb->next; ent; ent = ent->next) {
928 r = fn(ent, cb);
929 if (r)
930 break;
932 return r;
935 void prepare_alt_odb(struct repository *r)
937 if (r->objects->loaded_alternates)
938 return;
940 link_alt_odb_entries(r, r->objects->alternate_db, PATH_SEP, NULL, 0);
942 read_info_alternates(r, r->objects->odb->path, 0);
943 r->objects->loaded_alternates = 1;
946 /* Returns 1 if we have successfully freshened the file, 0 otherwise. */
947 static int freshen_file(const char *fn)
949 return !utime(fn, NULL);
953 * All of the check_and_freshen functions return 1 if the file exists and was
954 * freshened (if freshening was requested), 0 otherwise. If they return
955 * 0, you should not assume that it is safe to skip a write of the object (it
956 * either does not exist on disk, or has a stale mtime and may be subject to
957 * pruning).
959 int check_and_freshen_file(const char *fn, int freshen)
961 if (access(fn, F_OK))
962 return 0;
963 if (freshen && !freshen_file(fn))
964 return 0;
965 return 1;
968 static int check_and_freshen_odb(struct object_directory *odb,
969 const struct object_id *oid,
970 int freshen)
972 static struct strbuf path = STRBUF_INIT;
973 odb_loose_path(odb, &path, oid);
974 return check_and_freshen_file(path.buf, freshen);
977 static int check_and_freshen_local(const struct object_id *oid, int freshen)
979 return check_and_freshen_odb(the_repository->objects->odb, oid, freshen);
982 static int check_and_freshen_nonlocal(const struct object_id *oid, int freshen)
984 struct object_directory *odb;
986 prepare_alt_odb(the_repository);
987 for (odb = the_repository->objects->odb->next; odb; odb = odb->next) {
988 if (check_and_freshen_odb(odb, oid, freshen))
989 return 1;
991 return 0;
994 static int check_and_freshen(const struct object_id *oid, int freshen)
996 return check_and_freshen_local(oid, freshen) ||
997 check_and_freshen_nonlocal(oid, freshen);
1000 int has_loose_object_nonlocal(const struct object_id *oid)
1002 return check_and_freshen_nonlocal(oid, 0);
1005 int has_loose_object(const struct object_id *oid)
1007 return check_and_freshen(oid, 0);
1010 static void mmap_limit_check(size_t length)
1012 static size_t limit = 0;
1013 if (!limit) {
1014 limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
1015 if (!limit)
1016 limit = SIZE_MAX;
1018 if (length > limit)
1019 die(_("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX),
1020 (uintmax_t)length, (uintmax_t)limit);
1023 void *xmmap_gently(void *start, size_t length,
1024 int prot, int flags, int fd, off_t offset)
1026 void *ret;
1028 mmap_limit_check(length);
1029 ret = mmap(start, length, prot, flags, fd, offset);
1030 if (ret == MAP_FAILED && !length)
1031 ret = NULL;
1032 return ret;
1035 const char *mmap_os_err(void)
1037 static const char blank[] = "";
1038 #if defined(__linux__)
1039 if (errno == ENOMEM) {
1040 /* this continues an existing error message: */
1041 static const char enomem[] =
1042 ", check sys.vm.max_map_count and/or RLIMIT_DATA";
1043 return enomem;
1045 #endif /* OS-specific bits */
1046 return blank;
1049 void *xmmap(void *start, size_t length,
1050 int prot, int flags, int fd, off_t offset)
1052 void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
1053 if (ret == MAP_FAILED)
1054 die_errno(_("mmap failed%s"), mmap_os_err());
1055 return ret;
1058 static int format_object_header_literally(char *str, size_t size,
1059 const char *type, size_t objsize)
1061 return xsnprintf(str, size, "%s %"PRIuMAX, type, (uintmax_t)objsize) + 1;
1064 int format_object_header(char *str, size_t size, enum object_type type,
1065 size_t objsize)
1067 const char *name = type_name(type);
1069 if (!name)
1070 BUG("could not get a type name for 'enum object_type' value %d", type);
1072 return format_object_header_literally(str, size, name, objsize);
1075 int check_object_signature(struct repository *r, const struct object_id *oid,
1076 void *buf, unsigned long size,
1077 enum object_type type)
1079 struct object_id real_oid;
1081 hash_object_file(r->hash_algo, buf, size, type, &real_oid);
1083 return !oideq(oid, &real_oid) ? -1 : 0;
1086 int stream_object_signature(struct repository *r, const struct object_id *oid)
1088 struct object_id real_oid;
1089 unsigned long size;
1090 enum object_type obj_type;
1091 struct git_istream *st;
1092 git_hash_ctx c;
1093 char hdr[MAX_HEADER_LEN];
1094 int hdrlen;
1096 st = open_istream(r, oid, &obj_type, &size, NULL);
1097 if (!st)
1098 return -1;
1100 /* Generate the header */
1101 hdrlen = format_object_header(hdr, sizeof(hdr), obj_type, size);
1103 /* Sha1.. */
1104 r->hash_algo->init_fn(&c);
1105 r->hash_algo->update_fn(&c, hdr, hdrlen);
1106 for (;;) {
1107 char buf[1024 * 16];
1108 ssize_t readlen = read_istream(st, buf, sizeof(buf));
1110 if (readlen < 0) {
1111 close_istream(st);
1112 return -1;
1114 if (!readlen)
1115 break;
1116 r->hash_algo->update_fn(&c, buf, readlen);
1118 r->hash_algo->final_oid_fn(&real_oid, &c);
1119 close_istream(st);
1120 return !oideq(oid, &real_oid) ? -1 : 0;
1123 int git_open_cloexec(const char *name, int flags)
1125 int fd;
1126 static int o_cloexec = O_CLOEXEC;
1128 fd = open(name, flags | o_cloexec);
1129 if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
1130 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1131 o_cloexec &= ~O_CLOEXEC;
1132 fd = open(name, flags | o_cloexec);
1135 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1137 static int fd_cloexec = FD_CLOEXEC;
1139 if (!o_cloexec && 0 <= fd && fd_cloexec) {
1140 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
1141 int flags = fcntl(fd, F_GETFD);
1142 if (fcntl(fd, F_SETFD, flags | fd_cloexec))
1143 fd_cloexec = 0;
1146 #endif
1147 return fd;
1151 * Find "oid" as a loose object in the local repository or in an alternate.
1152 * Returns 0 on success, negative on failure.
1154 * The "path" out-parameter will give the path of the object we found (if any).
1155 * Note that it may point to static storage and is only valid until another
1156 * call to stat_loose_object().
1158 static int stat_loose_object(struct repository *r, const struct object_id *oid,
1159 struct stat *st, const char **path)
1161 struct object_directory *odb;
1162 static struct strbuf buf = STRBUF_INIT;
1164 prepare_alt_odb(r);
1165 for (odb = r->objects->odb; odb; odb = odb->next) {
1166 *path = odb_loose_path(odb, &buf, oid);
1167 if (!lstat(*path, st))
1168 return 0;
1171 return -1;
1175 * Like stat_loose_object(), but actually open the object and return the
1176 * descriptor. See the caveats on the "path" parameter above.
1178 static int open_loose_object(struct repository *r,
1179 const struct object_id *oid, const char **path)
1181 int fd;
1182 struct object_directory *odb;
1183 int most_interesting_errno = ENOENT;
1184 static struct strbuf buf = STRBUF_INIT;
1186 prepare_alt_odb(r);
1187 for (odb = r->objects->odb; odb; odb = odb->next) {
1188 *path = odb_loose_path(odb, &buf, oid);
1189 fd = git_open(*path);
1190 if (fd >= 0)
1191 return fd;
1193 if (most_interesting_errno == ENOENT)
1194 most_interesting_errno = errno;
1196 errno = most_interesting_errno;
1197 return -1;
1200 static int quick_has_loose(struct repository *r,
1201 const struct object_id *oid)
1203 struct object_directory *odb;
1205 prepare_alt_odb(r);
1206 for (odb = r->objects->odb; odb; odb = odb->next) {
1207 if (oidtree_contains(odb_loose_cache(odb, oid), oid))
1208 return 1;
1210 return 0;
1214 * Map and close the given loose object fd. The path argument is used for
1215 * error reporting.
1217 static void *map_fd(int fd, const char *path, unsigned long *size)
1219 void *map = NULL;
1220 struct stat st;
1222 if (!fstat(fd, &st)) {
1223 *size = xsize_t(st.st_size);
1224 if (!*size) {
1225 /* mmap() is forbidden on empty files */
1226 error(_("object file %s is empty"), path);
1227 close(fd);
1228 return NULL;
1230 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
1232 close(fd);
1233 return map;
1236 void *map_loose_object(struct repository *r,
1237 const struct object_id *oid,
1238 unsigned long *size)
1240 const char *p;
1241 int fd = open_loose_object(r, oid, &p);
1243 if (fd < 0)
1244 return NULL;
1245 return map_fd(fd, p, size);
1248 enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
1249 unsigned char *map,
1250 unsigned long mapsize,
1251 void *buffer,
1252 unsigned long bufsiz,
1253 struct strbuf *header)
1255 int status;
1257 /* Get the data stream */
1258 memset(stream, 0, sizeof(*stream));
1259 stream->next_in = map;
1260 stream->avail_in = mapsize;
1261 stream->next_out = buffer;
1262 stream->avail_out = bufsiz;
1264 git_inflate_init(stream);
1265 obj_read_unlock();
1266 status = git_inflate(stream, 0);
1267 obj_read_lock();
1268 if (status < Z_OK)
1269 return ULHR_BAD;
1272 * Check if entire header is unpacked in the first iteration.
1274 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1275 return ULHR_OK;
1278 * We have a header longer than MAX_HEADER_LEN. The "header"
1279 * here is only non-NULL when we run "cat-file
1280 * --allow-unknown-type".
1282 if (!header)
1283 return ULHR_TOO_LONG;
1286 * buffer[0..bufsiz] was not large enough. Copy the partial
1287 * result out to header, and then append the result of further
1288 * reading the stream.
1290 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1291 stream->next_out = buffer;
1292 stream->avail_out = bufsiz;
1294 do {
1295 obj_read_unlock();
1296 status = git_inflate(stream, 0);
1297 obj_read_lock();
1298 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1299 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1300 return 0;
1301 stream->next_out = buffer;
1302 stream->avail_out = bufsiz;
1303 } while (status != Z_STREAM_END);
1304 return ULHR_TOO_LONG;
1307 static void *unpack_loose_rest(git_zstream *stream,
1308 void *buffer, unsigned long size,
1309 const struct object_id *oid)
1311 int bytes = strlen(buffer) + 1;
1312 unsigned char *buf = xmallocz(size);
1313 unsigned long n;
1314 int status = Z_OK;
1316 n = stream->total_out - bytes;
1317 if (n > size)
1318 n = size;
1319 memcpy(buf, (char *) buffer + bytes, n);
1320 bytes = n;
1321 if (bytes <= size) {
1323 * The above condition must be (bytes <= size), not
1324 * (bytes < size). In other words, even though we
1325 * expect no more output and set avail_out to zero,
1326 * the input zlib stream may have bytes that express
1327 * "this concludes the stream", and we *do* want to
1328 * eat that input.
1330 * Otherwise we would not be able to test that we
1331 * consumed all the input to reach the expected size;
1332 * we also want to check that zlib tells us that all
1333 * went well with status == Z_STREAM_END at the end.
1335 stream->next_out = buf + bytes;
1336 stream->avail_out = size - bytes;
1337 while (status == Z_OK) {
1338 obj_read_unlock();
1339 status = git_inflate(stream, Z_FINISH);
1340 obj_read_lock();
1343 if (status == Z_STREAM_END && !stream->avail_in) {
1344 git_inflate_end(stream);
1345 return buf;
1348 if (status < 0)
1349 error(_("corrupt loose object '%s'"), oid_to_hex(oid));
1350 else if (stream->avail_in)
1351 error(_("garbage at end of loose object '%s'"),
1352 oid_to_hex(oid));
1353 free(buf);
1354 return NULL;
1358 * We used to just use "sscanf()", but that's actually way
1359 * too permissive for what we want to check. So do an anal
1360 * object header parse by hand.
1362 int parse_loose_header(const char *hdr, struct object_info *oi)
1364 const char *type_buf = hdr;
1365 size_t size;
1366 int type, type_len = 0;
1369 * The type can be of any size but is followed by
1370 * a space.
1372 for (;;) {
1373 char c = *hdr++;
1374 if (!c)
1375 return -1;
1376 if (c == ' ')
1377 break;
1378 type_len++;
1381 type = type_from_string_gently(type_buf, type_len, 1);
1382 if (oi->type_name)
1383 strbuf_add(oi->type_name, type_buf, type_len);
1384 if (oi->typep)
1385 *oi->typep = type;
1388 * The length must follow immediately, and be in canonical
1389 * decimal format (ie "010" is not valid).
1391 size = *hdr++ - '0';
1392 if (size > 9)
1393 return -1;
1394 if (size) {
1395 for (;;) {
1396 unsigned long c = *hdr - '0';
1397 if (c > 9)
1398 break;
1399 hdr++;
1400 size = st_add(st_mult(size, 10), c);
1404 if (oi->sizep)
1405 *oi->sizep = cast_size_t_to_ulong(size);
1408 * The length must be followed by a zero byte
1410 if (*hdr)
1411 return -1;
1414 * The format is valid, but the type may still be bogus. The
1415 * Caller needs to check its oi->typep.
1417 return 0;
1420 static int loose_object_info(struct repository *r,
1421 const struct object_id *oid,
1422 struct object_info *oi, int flags)
1424 int status = 0;
1425 int fd;
1426 unsigned long mapsize;
1427 const char *path;
1428 void *map;
1429 git_zstream stream;
1430 char hdr[MAX_HEADER_LEN];
1431 struct strbuf hdrbuf = STRBUF_INIT;
1432 unsigned long size_scratch;
1433 enum object_type type_scratch;
1434 int allow_unknown = flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE;
1436 if (oi->delta_base_oid)
1437 oidclr(oi->delta_base_oid);
1440 * If we don't care about type or size, then we don't
1441 * need to look inside the object at all. Note that we
1442 * do not optimize out the stat call, even if the
1443 * caller doesn't care about the disk-size, since our
1444 * return value implicitly indicates whether the
1445 * object even exists.
1447 if (!oi->typep && !oi->type_name && !oi->sizep && !oi->contentp) {
1448 struct stat st;
1449 if (!oi->disk_sizep && (flags & OBJECT_INFO_QUICK))
1450 return quick_has_loose(r, oid) ? 0 : -1;
1451 if (stat_loose_object(r, oid, &st, &path) < 0)
1452 return -1;
1453 if (oi->disk_sizep)
1454 *oi->disk_sizep = st.st_size;
1455 return 0;
1458 fd = open_loose_object(r, oid, &path);
1459 if (fd < 0) {
1460 if (errno != ENOENT)
1461 error_errno(_("unable to open loose object %s"), oid_to_hex(oid));
1462 return -1;
1464 map = map_fd(fd, path, &mapsize);
1465 if (!map)
1466 return -1;
1468 if (!oi->sizep)
1469 oi->sizep = &size_scratch;
1470 if (!oi->typep)
1471 oi->typep = &type_scratch;
1473 if (oi->disk_sizep)
1474 *oi->disk_sizep = mapsize;
1476 switch (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
1477 allow_unknown ? &hdrbuf : NULL)) {
1478 case ULHR_OK:
1479 if (parse_loose_header(hdrbuf.len ? hdrbuf.buf : hdr, oi) < 0)
1480 status = error(_("unable to parse %s header"), oid_to_hex(oid));
1481 else if (!allow_unknown && *oi->typep < 0)
1482 die(_("invalid object type"));
1484 if (!oi->contentp)
1485 break;
1486 *oi->contentp = unpack_loose_rest(&stream, hdr, *oi->sizep, oid);
1487 if (*oi->contentp)
1488 goto cleanup;
1490 status = -1;
1491 break;
1492 case ULHR_BAD:
1493 status = error(_("unable to unpack %s header"),
1494 oid_to_hex(oid));
1495 break;
1496 case ULHR_TOO_LONG:
1497 status = error(_("header for %s too long, exceeds %d bytes"),
1498 oid_to_hex(oid), MAX_HEADER_LEN);
1499 break;
1502 if (status && (flags & OBJECT_INFO_DIE_IF_CORRUPT))
1503 die(_("loose object %s (stored in %s) is corrupt"),
1504 oid_to_hex(oid), path);
1506 git_inflate_end(&stream);
1507 cleanup:
1508 munmap(map, mapsize);
1509 if (oi->sizep == &size_scratch)
1510 oi->sizep = NULL;
1511 strbuf_release(&hdrbuf);
1512 if (oi->typep == &type_scratch)
1513 oi->typep = NULL;
1514 oi->whence = OI_LOOSE;
1515 return status;
1518 int obj_read_use_lock = 0;
1519 pthread_mutex_t obj_read_mutex;
1521 void enable_obj_read_lock(void)
1523 if (obj_read_use_lock)
1524 return;
1526 obj_read_use_lock = 1;
1527 init_recursive_mutex(&obj_read_mutex);
1530 void disable_obj_read_lock(void)
1532 if (!obj_read_use_lock)
1533 return;
1535 obj_read_use_lock = 0;
1536 pthread_mutex_destroy(&obj_read_mutex);
1539 int fetch_if_missing = 1;
1541 static int do_oid_object_info_extended(struct repository *r,
1542 const struct object_id *oid,
1543 struct object_info *oi, unsigned flags)
1545 static struct object_info blank_oi = OBJECT_INFO_INIT;
1546 struct cached_object *co;
1547 struct pack_entry e;
1548 int rtype;
1549 const struct object_id *real = oid;
1550 int already_retried = 0;
1553 if (flags & OBJECT_INFO_LOOKUP_REPLACE)
1554 real = lookup_replace_object(r, oid);
1556 if (is_null_oid(real))
1557 return -1;
1559 if (!oi)
1560 oi = &blank_oi;
1562 co = find_cached_object(real);
1563 if (co) {
1564 if (oi->typep)
1565 *(oi->typep) = co->type;
1566 if (oi->sizep)
1567 *(oi->sizep) = co->size;
1568 if (oi->disk_sizep)
1569 *(oi->disk_sizep) = 0;
1570 if (oi->delta_base_oid)
1571 oidclr(oi->delta_base_oid);
1572 if (oi->type_name)
1573 strbuf_addstr(oi->type_name, type_name(co->type));
1574 if (oi->contentp)
1575 *oi->contentp = xmemdupz(co->buf, co->size);
1576 oi->whence = OI_CACHED;
1577 return 0;
1580 while (1) {
1581 if (find_pack_entry(r, real, &e))
1582 break;
1584 /* Most likely it's a loose object. */
1585 if (!loose_object_info(r, real, oi, flags))
1586 return 0;
1588 /* Not a loose object; someone else may have just packed it. */
1589 if (!(flags & OBJECT_INFO_QUICK)) {
1590 reprepare_packed_git(r);
1591 if (find_pack_entry(r, real, &e))
1592 break;
1596 * If r is the_repository, this might be an attempt at
1597 * accessing a submodule object as if it were in the_repository
1598 * (having called add_submodule_odb() on that submodule's ODB).
1599 * If any such ODBs exist, register them and try again.
1601 if (r == the_repository &&
1602 register_all_submodule_odb_as_alternates())
1603 /* We added some alternates; retry */
1604 continue;
1606 /* Check if it is a missing object */
1607 if (fetch_if_missing && repo_has_promisor_remote(r) &&
1608 !already_retried &&
1609 !(flags & OBJECT_INFO_SKIP_FETCH_OBJECT)) {
1610 promisor_remote_get_direct(r, real, 1);
1611 already_retried = 1;
1612 continue;
1615 if (flags & OBJECT_INFO_DIE_IF_CORRUPT) {
1616 const struct packed_git *p;
1617 if ((flags & OBJECT_INFO_LOOKUP_REPLACE) && !oideq(real, oid))
1618 die(_("replacement %s not found for %s"),
1619 oid_to_hex(real), oid_to_hex(oid));
1620 if ((p = has_packed_and_bad(r, real)))
1621 die(_("packed object %s (stored in %s) is corrupt"),
1622 oid_to_hex(real), p->pack_name);
1624 return -1;
1627 if (oi == &blank_oi)
1629 * We know that the caller doesn't actually need the
1630 * information below, so return early.
1632 return 0;
1633 rtype = packed_object_info(r, e.p, e.offset, oi);
1634 if (rtype < 0) {
1635 mark_bad_packed_object(e.p, real);
1636 return do_oid_object_info_extended(r, real, oi, 0);
1637 } else if (oi->whence == OI_PACKED) {
1638 oi->u.packed.offset = e.offset;
1639 oi->u.packed.pack = e.p;
1640 oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1641 rtype == OBJ_OFS_DELTA);
1644 return 0;
1647 int oid_object_info_extended(struct repository *r, const struct object_id *oid,
1648 struct object_info *oi, unsigned flags)
1650 int ret;
1651 obj_read_lock();
1652 ret = do_oid_object_info_extended(r, oid, oi, flags);
1653 obj_read_unlock();
1654 return ret;
1658 /* returns enum object_type or negative */
1659 int oid_object_info(struct repository *r,
1660 const struct object_id *oid,
1661 unsigned long *sizep)
1663 enum object_type type;
1664 struct object_info oi = OBJECT_INFO_INIT;
1666 oi.typep = &type;
1667 oi.sizep = sizep;
1668 if (oid_object_info_extended(r, oid, &oi,
1669 OBJECT_INFO_LOOKUP_REPLACE) < 0)
1670 return -1;
1671 return type;
1674 static void *read_object(struct repository *r,
1675 const struct object_id *oid, enum object_type *type,
1676 unsigned long *size,
1677 int die_if_corrupt)
1679 struct object_info oi = OBJECT_INFO_INIT;
1680 void *content;
1681 oi.typep = type;
1682 oi.sizep = size;
1683 oi.contentp = &content;
1685 if (oid_object_info_extended(r, oid, &oi, die_if_corrupt
1686 ? OBJECT_INFO_DIE_IF_CORRUPT : 0) < 0)
1687 return NULL;
1688 return content;
1691 int pretend_object_file(void *buf, unsigned long len, enum object_type type,
1692 struct object_id *oid)
1694 struct cached_object *co;
1696 hash_object_file(the_hash_algo, buf, len, type, oid);
1697 if (has_object_file_with_flags(oid, OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT) ||
1698 find_cached_object(oid))
1699 return 0;
1700 ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
1701 co = &cached_objects[cached_object_nr++];
1702 co->size = len;
1703 co->type = type;
1704 co->buf = xmalloc(len);
1705 memcpy(co->buf, buf, len);
1706 oidcpy(&co->oid, oid);
1707 return 0;
1711 * This function dies on corrupt objects; the callers who want to
1712 * deal with them should arrange to call read_object() and give error
1713 * messages themselves.
1715 void *read_object_file_extended(struct repository *r,
1716 const struct object_id *oid,
1717 enum object_type *type,
1718 unsigned long *size,
1719 int lookup_replace)
1721 void *data;
1722 const struct object_id *repl = lookup_replace ?
1723 lookup_replace_object(r, oid) : oid;
1725 errno = 0;
1726 data = read_object(r, repl, type, size, 1);
1727 if (data)
1728 return data;
1730 return NULL;
1733 void *read_object_with_reference(struct repository *r,
1734 const struct object_id *oid,
1735 enum object_type required_type,
1736 unsigned long *size,
1737 struct object_id *actual_oid_return)
1739 enum object_type type;
1740 void *buffer;
1741 unsigned long isize;
1742 struct object_id actual_oid;
1744 oidcpy(&actual_oid, oid);
1745 while (1) {
1746 int ref_length = -1;
1747 const char *ref_type = NULL;
1749 buffer = repo_read_object_file(r, &actual_oid, &type, &isize);
1750 if (!buffer)
1751 return NULL;
1752 if (type == required_type) {
1753 *size = isize;
1754 if (actual_oid_return)
1755 oidcpy(actual_oid_return, &actual_oid);
1756 return buffer;
1758 /* Handle references */
1759 else if (type == OBJ_COMMIT)
1760 ref_type = "tree ";
1761 else if (type == OBJ_TAG)
1762 ref_type = "object ";
1763 else {
1764 free(buffer);
1765 return NULL;
1767 ref_length = strlen(ref_type);
1769 if (ref_length + the_hash_algo->hexsz > isize ||
1770 memcmp(buffer, ref_type, ref_length) ||
1771 get_oid_hex((char *) buffer + ref_length, &actual_oid)) {
1772 free(buffer);
1773 return NULL;
1775 free(buffer);
1776 /* Now we have the ID of the referred-to object in
1777 * actual_oid. Check again. */
1781 static void hash_object_body(const struct git_hash_algo *algo, git_hash_ctx *c,
1782 const void *buf, unsigned long len,
1783 struct object_id *oid,
1784 char *hdr, int *hdrlen)
1786 algo->init_fn(c);
1787 algo->update_fn(c, hdr, *hdrlen);
1788 algo->update_fn(c, buf, len);
1789 algo->final_oid_fn(oid, c);
1792 static void write_object_file_prepare(const struct git_hash_algo *algo,
1793 const void *buf, unsigned long len,
1794 enum object_type type, struct object_id *oid,
1795 char *hdr, int *hdrlen)
1797 git_hash_ctx c;
1799 /* Generate the header */
1800 *hdrlen = format_object_header(hdr, *hdrlen, type, len);
1802 /* Sha1.. */
1803 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1806 static void write_object_file_prepare_literally(const struct git_hash_algo *algo,
1807 const void *buf, unsigned long len,
1808 const char *type, struct object_id *oid,
1809 char *hdr, int *hdrlen)
1811 git_hash_ctx c;
1813 *hdrlen = format_object_header_literally(hdr, *hdrlen, type, len);
1814 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1818 * Move the just written object into its final resting place.
1820 int finalize_object_file(const char *tmpfile, const char *filename)
1822 int ret = 0;
1824 if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
1825 goto try_rename;
1826 else if (link(tmpfile, filename))
1827 ret = errno;
1830 * Coda hack - coda doesn't like cross-directory links,
1831 * so we fall back to a rename, which will mean that it
1832 * won't be able to check collisions, but that's not a
1833 * big deal.
1835 * The same holds for FAT formatted media.
1837 * When this succeeds, we just return. We have nothing
1838 * left to unlink.
1840 if (ret && ret != EEXIST) {
1841 try_rename:
1842 if (!rename(tmpfile, filename))
1843 goto out;
1844 ret = errno;
1846 unlink_or_warn(tmpfile);
1847 if (ret) {
1848 if (ret != EEXIST) {
1849 return error_errno(_("unable to write file %s"), filename);
1851 /* FIXME!!! Collision check here ? */
1854 out:
1855 if (adjust_shared_perm(filename))
1856 return error(_("unable to set permission to '%s'"), filename);
1857 return 0;
1860 static void hash_object_file_literally(const struct git_hash_algo *algo,
1861 const void *buf, unsigned long len,
1862 const char *type, struct object_id *oid)
1864 char hdr[MAX_HEADER_LEN];
1865 int hdrlen = sizeof(hdr);
1867 write_object_file_prepare_literally(algo, buf, len, type, oid, hdr, &hdrlen);
1870 void hash_object_file(const struct git_hash_algo *algo, const void *buf,
1871 unsigned long len, enum object_type type,
1872 struct object_id *oid)
1874 hash_object_file_literally(algo, buf, len, type_name(type), oid);
1877 /* Finalize a file on disk, and close it. */
1878 static void close_loose_object(int fd, const char *filename)
1880 if (the_repository->objects->odb->will_destroy)
1881 goto out;
1883 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
1884 fsync_loose_object_bulk_checkin(fd, filename);
1885 else if (fsync_object_files > 0)
1886 fsync_or_die(fd, filename);
1887 else
1888 fsync_component_or_die(FSYNC_COMPONENT_LOOSE_OBJECT, fd,
1889 filename);
1891 out:
1892 if (close(fd) != 0)
1893 die_errno(_("error when closing loose object file"));
1896 /* Size of directory component, including the ending '/' */
1897 static inline int directory_size(const char *filename)
1899 const char *s = strrchr(filename, '/');
1900 if (!s)
1901 return 0;
1902 return s - filename + 1;
1906 * This creates a temporary file in the same directory as the final
1907 * 'filename'
1909 * We want to avoid cross-directory filename renames, because those
1910 * can have problems on various filesystems (FAT, NFS, Coda).
1912 static int create_tmpfile(struct strbuf *tmp, const char *filename)
1914 int fd, dirlen = directory_size(filename);
1916 strbuf_reset(tmp);
1917 strbuf_add(tmp, filename, dirlen);
1918 strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1919 fd = git_mkstemp_mode(tmp->buf, 0444);
1920 if (fd < 0 && dirlen && errno == ENOENT) {
1922 * Make sure the directory exists; note that the contents
1923 * of the buffer are undefined after mkstemp returns an
1924 * error, so we have to rewrite the whole buffer from
1925 * scratch.
1927 strbuf_reset(tmp);
1928 strbuf_add(tmp, filename, dirlen - 1);
1929 if (mkdir(tmp->buf, 0777) && errno != EEXIST)
1930 return -1;
1931 if (adjust_shared_perm(tmp->buf))
1932 return -1;
1934 /* Try again */
1935 strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1936 fd = git_mkstemp_mode(tmp->buf, 0444);
1938 return fd;
1942 * Common steps for loose object writers to start writing loose
1943 * objects:
1945 * - Create tmpfile for the loose object.
1946 * - Setup zlib stream for compression.
1947 * - Start to feed header to zlib stream.
1949 * Returns a "fd", which should later be provided to
1950 * end_loose_object_common().
1952 static int start_loose_object_common(struct strbuf *tmp_file,
1953 const char *filename, unsigned flags,
1954 git_zstream *stream,
1955 unsigned char *buf, size_t buflen,
1956 git_hash_ctx *c,
1957 char *hdr, int hdrlen)
1959 int fd;
1961 fd = create_tmpfile(tmp_file, filename);
1962 if (fd < 0) {
1963 if (flags & HASH_SILENT)
1964 return -1;
1965 else if (errno == EACCES)
1966 return error(_("insufficient permission for adding "
1967 "an object to repository database %s"),
1968 get_object_directory());
1969 else
1970 return error_errno(
1971 _("unable to create temporary file"));
1974 /* Setup zlib stream for compression */
1975 git_deflate_init(stream, zlib_compression_level);
1976 stream->next_out = buf;
1977 stream->avail_out = buflen;
1978 the_hash_algo->init_fn(c);
1980 /* Start to feed header to zlib stream */
1981 stream->next_in = (unsigned char *)hdr;
1982 stream->avail_in = hdrlen;
1983 while (git_deflate(stream, 0) == Z_OK)
1984 ; /* nothing */
1985 the_hash_algo->update_fn(c, hdr, hdrlen);
1987 return fd;
1991 * Common steps for the inner git_deflate() loop for writing loose
1992 * objects. Returns what git_deflate() returns.
1994 static int write_loose_object_common(git_hash_ctx *c,
1995 git_zstream *stream, const int flush,
1996 unsigned char *in0, const int fd,
1997 unsigned char *compressed,
1998 const size_t compressed_len)
2000 int ret;
2002 ret = git_deflate(stream, flush ? Z_FINISH : 0);
2003 the_hash_algo->update_fn(c, in0, stream->next_in - in0);
2004 if (write_in_full(fd, compressed, stream->next_out - compressed) < 0)
2005 die_errno(_("unable to write loose object file"));
2006 stream->next_out = compressed;
2007 stream->avail_out = compressed_len;
2009 return ret;
2013 * Common steps for loose object writers to end writing loose objects:
2015 * - End the compression of zlib stream.
2016 * - Get the calculated oid to "oid".
2018 static int end_loose_object_common(git_hash_ctx *c, git_zstream *stream,
2019 struct object_id *oid)
2021 int ret;
2023 ret = git_deflate_end_gently(stream);
2024 if (ret != Z_OK)
2025 return ret;
2026 the_hash_algo->final_oid_fn(oid, c);
2028 return Z_OK;
2031 static int write_loose_object(const struct object_id *oid, char *hdr,
2032 int hdrlen, const void *buf, unsigned long len,
2033 time_t mtime, unsigned flags)
2035 int fd, ret;
2036 unsigned char compressed[4096];
2037 git_zstream stream;
2038 git_hash_ctx c;
2039 struct object_id parano_oid;
2040 static struct strbuf tmp_file = STRBUF_INIT;
2041 static struct strbuf filename = STRBUF_INIT;
2043 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2044 prepare_loose_object_bulk_checkin();
2046 loose_object_path(the_repository, &filename, oid);
2048 fd = start_loose_object_common(&tmp_file, filename.buf, flags,
2049 &stream, compressed, sizeof(compressed),
2050 &c, hdr, hdrlen);
2051 if (fd < 0)
2052 return -1;
2054 /* Then the data itself.. */
2055 stream.next_in = (void *)buf;
2056 stream.avail_in = len;
2057 do {
2058 unsigned char *in0 = stream.next_in;
2060 ret = write_loose_object_common(&c, &stream, 1, in0, fd,
2061 compressed, sizeof(compressed));
2062 } while (ret == Z_OK);
2064 if (ret != Z_STREAM_END)
2065 die(_("unable to deflate new object %s (%d)"), oid_to_hex(oid),
2066 ret);
2067 ret = end_loose_object_common(&c, &stream, &parano_oid);
2068 if (ret != Z_OK)
2069 die(_("deflateEnd on object %s failed (%d)"), oid_to_hex(oid),
2070 ret);
2071 if (!oideq(oid, &parano_oid))
2072 die(_("confused by unstable object source data for %s"),
2073 oid_to_hex(oid));
2075 close_loose_object(fd, tmp_file.buf);
2077 if (mtime) {
2078 struct utimbuf utb;
2079 utb.actime = mtime;
2080 utb.modtime = mtime;
2081 if (utime(tmp_file.buf, &utb) < 0 &&
2082 !(flags & HASH_SILENT))
2083 warning_errno(_("failed utime() on %s"), tmp_file.buf);
2086 return finalize_object_file(tmp_file.buf, filename.buf);
2089 static int freshen_loose_object(const struct object_id *oid)
2091 return check_and_freshen(oid, 1);
2094 static int freshen_packed_object(const struct object_id *oid)
2096 struct pack_entry e;
2097 if (!find_pack_entry(the_repository, oid, &e))
2098 return 0;
2099 if (e.p->is_cruft)
2100 return 0;
2101 if (e.p->freshened)
2102 return 1;
2103 if (!freshen_file(e.p->pack_name))
2104 return 0;
2105 e.p->freshened = 1;
2106 return 1;
2109 int stream_loose_object(struct input_stream *in_stream, size_t len,
2110 struct object_id *oid)
2112 int fd, ret, err = 0, flush = 0;
2113 unsigned char compressed[4096];
2114 git_zstream stream;
2115 git_hash_ctx c;
2116 struct strbuf tmp_file = STRBUF_INIT;
2117 struct strbuf filename = STRBUF_INIT;
2118 int dirlen;
2119 char hdr[MAX_HEADER_LEN];
2120 int hdrlen;
2122 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2123 prepare_loose_object_bulk_checkin();
2125 /* Since oid is not determined, save tmp file to odb path. */
2126 strbuf_addf(&filename, "%s/", get_object_directory());
2127 hdrlen = format_object_header(hdr, sizeof(hdr), OBJ_BLOB, len);
2130 * Common steps for write_loose_object and stream_loose_object to
2131 * start writing loose objects:
2133 * - Create tmpfile for the loose object.
2134 * - Setup zlib stream for compression.
2135 * - Start to feed header to zlib stream.
2137 fd = start_loose_object_common(&tmp_file, filename.buf, 0,
2138 &stream, compressed, sizeof(compressed),
2139 &c, hdr, hdrlen);
2140 if (fd < 0) {
2141 err = -1;
2142 goto cleanup;
2145 /* Then the data itself.. */
2146 do {
2147 unsigned char *in0 = stream.next_in;
2149 if (!stream.avail_in && !in_stream->is_finished) {
2150 const void *in = in_stream->read(in_stream, &stream.avail_in);
2151 stream.next_in = (void *)in;
2152 in0 = (unsigned char *)in;
2153 /* All data has been read. */
2154 if (in_stream->is_finished)
2155 flush = 1;
2157 ret = write_loose_object_common(&c, &stream, flush, in0, fd,
2158 compressed, sizeof(compressed));
2160 * Unlike write_loose_object(), we do not have the entire
2161 * buffer. If we get Z_BUF_ERROR due to too few input bytes,
2162 * then we'll replenish them in the next input_stream->read()
2163 * call when we loop.
2165 } while (ret == Z_OK || ret == Z_BUF_ERROR);
2167 if (stream.total_in != len + hdrlen)
2168 die(_("write stream object %ld != %"PRIuMAX), stream.total_in,
2169 (uintmax_t)len + hdrlen);
2172 * Common steps for write_loose_object and stream_loose_object to
2173 * end writing loose oject:
2175 * - End the compression of zlib stream.
2176 * - Get the calculated oid.
2178 if (ret != Z_STREAM_END)
2179 die(_("unable to stream deflate new object (%d)"), ret);
2180 ret = end_loose_object_common(&c, &stream, oid);
2181 if (ret != Z_OK)
2182 die(_("deflateEnd on stream object failed (%d)"), ret);
2183 close_loose_object(fd, tmp_file.buf);
2185 if (freshen_packed_object(oid) || freshen_loose_object(oid)) {
2186 unlink_or_warn(tmp_file.buf);
2187 goto cleanup;
2190 loose_object_path(the_repository, &filename, oid);
2192 /* We finally know the object path, and create the missing dir. */
2193 dirlen = directory_size(filename.buf);
2194 if (dirlen) {
2195 struct strbuf dir = STRBUF_INIT;
2196 strbuf_add(&dir, filename.buf, dirlen);
2198 if (mkdir_in_gitdir(dir.buf) && errno != EEXIST) {
2199 err = error_errno(_("unable to create directory %s"), dir.buf);
2200 strbuf_release(&dir);
2201 goto cleanup;
2203 strbuf_release(&dir);
2206 err = finalize_object_file(tmp_file.buf, filename.buf);
2207 cleanup:
2208 strbuf_release(&tmp_file);
2209 strbuf_release(&filename);
2210 return err;
2213 int write_object_file_flags(const void *buf, unsigned long len,
2214 enum object_type type, struct object_id *oid,
2215 unsigned flags)
2217 char hdr[MAX_HEADER_LEN];
2218 int hdrlen = sizeof(hdr);
2220 /* Normally if we have it in the pack then we do not bother writing
2221 * it out into .git/objects/??/?{38} file.
2223 write_object_file_prepare(the_hash_algo, buf, len, type, oid, hdr,
2224 &hdrlen);
2225 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2226 return 0;
2227 return write_loose_object(oid, hdr, hdrlen, buf, len, 0, flags);
2230 int write_object_file_literally(const void *buf, unsigned long len,
2231 const char *type, struct object_id *oid,
2232 unsigned flags)
2234 char *header;
2235 int hdrlen, status = 0;
2237 /* type string, SP, %lu of the length plus NUL must fit this */
2238 hdrlen = strlen(type) + MAX_HEADER_LEN;
2239 header = xmalloc(hdrlen);
2240 write_object_file_prepare_literally(the_hash_algo, buf, len, type,
2241 oid, header, &hdrlen);
2243 if (!(flags & HASH_WRITE_OBJECT))
2244 goto cleanup;
2245 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2246 goto cleanup;
2247 status = write_loose_object(oid, header, hdrlen, buf, len, 0, 0);
2249 cleanup:
2250 free(header);
2251 return status;
2254 int force_object_loose(const struct object_id *oid, time_t mtime)
2256 void *buf;
2257 unsigned long len;
2258 enum object_type type;
2259 char hdr[MAX_HEADER_LEN];
2260 int hdrlen;
2261 int ret;
2263 if (has_loose_object(oid))
2264 return 0;
2265 buf = read_object(the_repository, oid, &type, &len, 0);
2266 if (!buf)
2267 return error(_("cannot read object for %s"), oid_to_hex(oid));
2268 hdrlen = format_object_header(hdr, sizeof(hdr), type, len);
2269 ret = write_loose_object(oid, hdr, hdrlen, buf, len, mtime, 0);
2270 free(buf);
2272 return ret;
2275 int has_object(struct repository *r, const struct object_id *oid,
2276 unsigned flags)
2278 int quick = !(flags & HAS_OBJECT_RECHECK_PACKED);
2279 unsigned object_info_flags = OBJECT_INFO_SKIP_FETCH_OBJECT |
2280 (quick ? OBJECT_INFO_QUICK : 0);
2282 if (!startup_info->have_repository)
2283 return 0;
2284 return oid_object_info_extended(r, oid, NULL, object_info_flags) >= 0;
2287 int repo_has_object_file_with_flags(struct repository *r,
2288 const struct object_id *oid, int flags)
2290 if (!startup_info->have_repository)
2291 return 0;
2292 return oid_object_info_extended(r, oid, NULL, flags) >= 0;
2295 int repo_has_object_file(struct repository *r,
2296 const struct object_id *oid)
2298 return repo_has_object_file_with_flags(r, oid, 0);
2301 static void check_tree(const void *buf, size_t size)
2303 struct tree_desc desc;
2304 struct name_entry entry;
2306 init_tree_desc(&desc, buf, size);
2307 while (tree_entry(&desc, &entry))
2308 /* do nothing
2309 * tree_entry() will die() on malformed entries */
2313 static void check_commit(const void *buf, size_t size)
2315 struct commit c;
2316 memset(&c, 0, sizeof(c));
2317 if (parse_commit_buffer(the_repository, &c, buf, size, 0))
2318 die(_("corrupt commit"));
2321 static void check_tag(const void *buf, size_t size)
2323 struct tag t;
2324 memset(&t, 0, sizeof(t));
2325 if (parse_tag_buffer(the_repository, &t, buf, size))
2326 die(_("corrupt tag"));
2329 static int index_mem(struct index_state *istate,
2330 struct object_id *oid, void *buf, size_t size,
2331 enum object_type type,
2332 const char *path, unsigned flags)
2334 int ret = 0;
2335 int re_allocated = 0;
2336 int write_object = flags & HASH_WRITE_OBJECT;
2338 if (!type)
2339 type = OBJ_BLOB;
2342 * Convert blobs to git internal format
2344 if ((type == OBJ_BLOB) && path) {
2345 struct strbuf nbuf = STRBUF_INIT;
2346 if (convert_to_git(istate, path, buf, size, &nbuf,
2347 get_conv_flags(flags))) {
2348 buf = strbuf_detach(&nbuf, &size);
2349 re_allocated = 1;
2352 if (flags & HASH_FORMAT_CHECK) {
2353 if (type == OBJ_TREE)
2354 check_tree(buf, size);
2355 if (type == OBJ_COMMIT)
2356 check_commit(buf, size);
2357 if (type == OBJ_TAG)
2358 check_tag(buf, size);
2361 if (write_object)
2362 ret = write_object_file(buf, size, type, oid);
2363 else
2364 hash_object_file(the_hash_algo, buf, size, type, oid);
2365 if (re_allocated)
2366 free(buf);
2367 return ret;
2370 static int index_stream_convert_blob(struct index_state *istate,
2371 struct object_id *oid,
2372 int fd,
2373 const char *path,
2374 unsigned flags)
2376 int ret = 0;
2377 const int write_object = flags & HASH_WRITE_OBJECT;
2378 struct strbuf sbuf = STRBUF_INIT;
2380 assert(path);
2381 assert(would_convert_to_git_filter_fd(istate, path));
2383 convert_to_git_filter_fd(istate, path, fd, &sbuf,
2384 get_conv_flags(flags));
2386 if (write_object)
2387 ret = write_object_file(sbuf.buf, sbuf.len, OBJ_BLOB,
2388 oid);
2389 else
2390 hash_object_file(the_hash_algo, sbuf.buf, sbuf.len, OBJ_BLOB,
2391 oid);
2392 strbuf_release(&sbuf);
2393 return ret;
2396 static int index_pipe(struct index_state *istate, struct object_id *oid,
2397 int fd, enum object_type type,
2398 const char *path, unsigned flags)
2400 struct strbuf sbuf = STRBUF_INIT;
2401 int ret;
2403 if (strbuf_read(&sbuf, fd, 4096) >= 0)
2404 ret = index_mem(istate, oid, sbuf.buf, sbuf.len, type, path, flags);
2405 else
2406 ret = -1;
2407 strbuf_release(&sbuf);
2408 return ret;
2411 #define SMALL_FILE_SIZE (32*1024)
2413 static int index_core(struct index_state *istate,
2414 struct object_id *oid, int fd, size_t size,
2415 enum object_type type, const char *path,
2416 unsigned flags)
2418 int ret;
2420 if (!size) {
2421 ret = index_mem(istate, oid, "", size, type, path, flags);
2422 } else if (size <= SMALL_FILE_SIZE) {
2423 char *buf = xmalloc(size);
2424 ssize_t read_result = read_in_full(fd, buf, size);
2425 if (read_result < 0)
2426 ret = error_errno(_("read error while indexing %s"),
2427 path ? path : "<unknown>");
2428 else if (read_result != size)
2429 ret = error(_("short read while indexing %s"),
2430 path ? path : "<unknown>");
2431 else
2432 ret = index_mem(istate, oid, buf, size, type, path, flags);
2433 free(buf);
2434 } else {
2435 void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
2436 ret = index_mem(istate, oid, buf, size, type, path, flags);
2437 munmap(buf, size);
2439 return ret;
2443 * This creates one packfile per large blob unless bulk-checkin
2444 * machinery is "plugged".
2446 * This also bypasses the usual "convert-to-git" dance, and that is on
2447 * purpose. We could write a streaming version of the converting
2448 * functions and insert that before feeding the data to fast-import
2449 * (or equivalent in-core API described above). However, that is
2450 * somewhat complicated, as we do not know the size of the filter
2451 * result, which we need to know beforehand when writing a git object.
2452 * Since the primary motivation for trying to stream from the working
2453 * tree file and to avoid mmaping it in core is to deal with large
2454 * binary blobs, they generally do not want to get any conversion, and
2455 * callers should avoid this code path when filters are requested.
2457 static int index_stream(struct object_id *oid, int fd, size_t size,
2458 enum object_type type, const char *path,
2459 unsigned flags)
2461 return index_bulk_checkin(oid, fd, size, type, path, flags);
2464 int index_fd(struct index_state *istate, struct object_id *oid,
2465 int fd, struct stat *st,
2466 enum object_type type, const char *path, unsigned flags)
2468 int ret;
2471 * Call xsize_t() only when needed to avoid potentially unnecessary
2472 * die() for large files.
2474 if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(istate, path))
2475 ret = index_stream_convert_blob(istate, oid, fd, path, flags);
2476 else if (!S_ISREG(st->st_mode))
2477 ret = index_pipe(istate, oid, fd, type, path, flags);
2478 else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
2479 (path && would_convert_to_git(istate, path)))
2480 ret = index_core(istate, oid, fd, xsize_t(st->st_size),
2481 type, path, flags);
2482 else
2483 ret = index_stream(oid, fd, xsize_t(st->st_size), type, path,
2484 flags);
2485 close(fd);
2486 return ret;
2489 int index_path(struct index_state *istate, struct object_id *oid,
2490 const char *path, struct stat *st, unsigned flags)
2492 int fd;
2493 struct strbuf sb = STRBUF_INIT;
2494 int rc = 0;
2496 switch (st->st_mode & S_IFMT) {
2497 case S_IFREG:
2498 fd = open(path, O_RDONLY);
2499 if (fd < 0)
2500 return error_errno("open(\"%s\")", path);
2501 if (index_fd(istate, oid, fd, st, OBJ_BLOB, path, flags) < 0)
2502 return error(_("%s: failed to insert into database"),
2503 path);
2504 break;
2505 case S_IFLNK:
2506 if (strbuf_readlink(&sb, path, st->st_size))
2507 return error_errno("readlink(\"%s\")", path);
2508 if (!(flags & HASH_WRITE_OBJECT))
2509 hash_object_file(the_hash_algo, sb.buf, sb.len,
2510 OBJ_BLOB, oid);
2511 else if (write_object_file(sb.buf, sb.len, OBJ_BLOB, oid))
2512 rc = error(_("%s: failed to insert into database"), path);
2513 strbuf_release(&sb);
2514 break;
2515 case S_IFDIR:
2516 return resolve_gitlink_ref(path, "HEAD", oid);
2517 default:
2518 return error(_("%s: unsupported file type"), path);
2520 return rc;
2523 int read_pack_header(int fd, struct pack_header *header)
2525 if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
2526 /* "eof before pack header was fully read" */
2527 return PH_ERROR_EOF;
2529 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2530 /* "protocol error (pack signature mismatch detected)" */
2531 return PH_ERROR_PACK_SIGNATURE;
2532 if (!pack_version_ok(header->hdr_version))
2533 /* "protocol error (pack version unsupported)" */
2534 return PH_ERROR_PROTOCOL;
2535 return 0;
2538 void assert_oid_type(const struct object_id *oid, enum object_type expect)
2540 enum object_type type = oid_object_info(the_repository, oid, NULL);
2541 if (type < 0)
2542 die(_("%s is not a valid object"), oid_to_hex(oid));
2543 if (type != expect)
2544 die(_("%s is not a valid '%s' object"), oid_to_hex(oid),
2545 type_name(expect));
2548 int for_each_file_in_obj_subdir(unsigned int subdir_nr,
2549 struct strbuf *path,
2550 each_loose_object_fn obj_cb,
2551 each_loose_cruft_fn cruft_cb,
2552 each_loose_subdir_fn subdir_cb,
2553 void *data)
2555 size_t origlen, baselen;
2556 DIR *dir;
2557 struct dirent *de;
2558 int r = 0;
2559 struct object_id oid;
2561 if (subdir_nr > 0xff)
2562 BUG("invalid loose object subdirectory: %x", subdir_nr);
2564 origlen = path->len;
2565 strbuf_complete(path, '/');
2566 strbuf_addf(path, "%02x", subdir_nr);
2568 dir = opendir(path->buf);
2569 if (!dir) {
2570 if (errno != ENOENT)
2571 r = error_errno(_("unable to open %s"), path->buf);
2572 strbuf_setlen(path, origlen);
2573 return r;
2576 oid.hash[0] = subdir_nr;
2577 strbuf_addch(path, '/');
2578 baselen = path->len;
2580 while ((de = readdir_skip_dot_and_dotdot(dir))) {
2581 size_t namelen;
2583 namelen = strlen(de->d_name);
2584 strbuf_setlen(path, baselen);
2585 strbuf_add(path, de->d_name, namelen);
2586 if (namelen == the_hash_algo->hexsz - 2 &&
2587 !hex_to_bytes(oid.hash + 1, de->d_name,
2588 the_hash_algo->rawsz - 1)) {
2589 oid_set_algo(&oid, the_hash_algo);
2590 if (obj_cb) {
2591 r = obj_cb(&oid, path->buf, data);
2592 if (r)
2593 break;
2595 continue;
2598 if (cruft_cb) {
2599 r = cruft_cb(de->d_name, path->buf, data);
2600 if (r)
2601 break;
2604 closedir(dir);
2606 strbuf_setlen(path, baselen - 1);
2607 if (!r && subdir_cb)
2608 r = subdir_cb(subdir_nr, path->buf, data);
2610 strbuf_setlen(path, origlen);
2612 return r;
2615 int for_each_loose_file_in_objdir_buf(struct strbuf *path,
2616 each_loose_object_fn obj_cb,
2617 each_loose_cruft_fn cruft_cb,
2618 each_loose_subdir_fn subdir_cb,
2619 void *data)
2621 int r = 0;
2622 int i;
2624 for (i = 0; i < 256; i++) {
2625 r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
2626 subdir_cb, data);
2627 if (r)
2628 break;
2631 return r;
2634 int for_each_loose_file_in_objdir(const char *path,
2635 each_loose_object_fn obj_cb,
2636 each_loose_cruft_fn cruft_cb,
2637 each_loose_subdir_fn subdir_cb,
2638 void *data)
2640 struct strbuf buf = STRBUF_INIT;
2641 int r;
2643 strbuf_addstr(&buf, path);
2644 r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
2645 subdir_cb, data);
2646 strbuf_release(&buf);
2648 return r;
2651 int for_each_loose_object(each_loose_object_fn cb, void *data,
2652 enum for_each_object_flags flags)
2654 struct object_directory *odb;
2656 prepare_alt_odb(the_repository);
2657 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
2658 int r = for_each_loose_file_in_objdir(odb->path, cb, NULL,
2659 NULL, data);
2660 if (r)
2661 return r;
2663 if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2664 break;
2667 return 0;
2670 static int append_loose_object(const struct object_id *oid, const char *path,
2671 void *data)
2673 oidtree_insert(data, oid);
2674 return 0;
2677 struct oidtree *odb_loose_cache(struct object_directory *odb,
2678 const struct object_id *oid)
2680 int subdir_nr = oid->hash[0];
2681 struct strbuf buf = STRBUF_INIT;
2682 size_t word_bits = bitsizeof(odb->loose_objects_subdir_seen[0]);
2683 size_t word_index = subdir_nr / word_bits;
2684 size_t mask = (size_t)1u << (subdir_nr % word_bits);
2685 uint32_t *bitmap;
2687 if (subdir_nr < 0 ||
2688 subdir_nr >= bitsizeof(odb->loose_objects_subdir_seen))
2689 BUG("subdir_nr out of range");
2691 bitmap = &odb->loose_objects_subdir_seen[word_index];
2692 if (*bitmap & mask)
2693 return odb->loose_objects_cache;
2694 if (!odb->loose_objects_cache) {
2695 ALLOC_ARRAY(odb->loose_objects_cache, 1);
2696 oidtree_init(odb->loose_objects_cache);
2698 strbuf_addstr(&buf, odb->path);
2699 for_each_file_in_obj_subdir(subdir_nr, &buf,
2700 append_loose_object,
2701 NULL, NULL,
2702 odb->loose_objects_cache);
2703 *bitmap |= mask;
2704 strbuf_release(&buf);
2705 return odb->loose_objects_cache;
2708 void odb_clear_loose_cache(struct object_directory *odb)
2710 oidtree_clear(odb->loose_objects_cache);
2711 FREE_AND_NULL(odb->loose_objects_cache);
2712 memset(&odb->loose_objects_subdir_seen, 0,
2713 sizeof(odb->loose_objects_subdir_seen));
2716 static int check_stream_oid(git_zstream *stream,
2717 const char *hdr,
2718 unsigned long size,
2719 const char *path,
2720 const struct object_id *expected_oid)
2722 git_hash_ctx c;
2723 struct object_id real_oid;
2724 unsigned char buf[4096];
2725 unsigned long total_read;
2726 int status = Z_OK;
2728 the_hash_algo->init_fn(&c);
2729 the_hash_algo->update_fn(&c, hdr, stream->total_out);
2732 * We already read some bytes into hdr, but the ones up to the NUL
2733 * do not count against the object's content size.
2735 total_read = stream->total_out - strlen(hdr) - 1;
2738 * This size comparison must be "<=" to read the final zlib packets;
2739 * see the comment in unpack_loose_rest for details.
2741 while (total_read <= size &&
2742 (status == Z_OK ||
2743 (status == Z_BUF_ERROR && !stream->avail_out))) {
2744 stream->next_out = buf;
2745 stream->avail_out = sizeof(buf);
2746 if (size - total_read < stream->avail_out)
2747 stream->avail_out = size - total_read;
2748 status = git_inflate(stream, Z_FINISH);
2749 the_hash_algo->update_fn(&c, buf, stream->next_out - buf);
2750 total_read += stream->next_out - buf;
2752 git_inflate_end(stream);
2754 if (status != Z_STREAM_END) {
2755 error(_("corrupt loose object '%s'"), oid_to_hex(expected_oid));
2756 return -1;
2758 if (stream->avail_in) {
2759 error(_("garbage at end of loose object '%s'"),
2760 oid_to_hex(expected_oid));
2761 return -1;
2764 the_hash_algo->final_oid_fn(&real_oid, &c);
2765 if (!oideq(expected_oid, &real_oid)) {
2766 error(_("hash mismatch for %s (expected %s)"), path,
2767 oid_to_hex(expected_oid));
2768 return -1;
2771 return 0;
2774 int read_loose_object(const char *path,
2775 const struct object_id *expected_oid,
2776 struct object_id *real_oid,
2777 void **contents,
2778 struct object_info *oi)
2780 int ret = -1;
2781 int fd;
2782 void *map = NULL;
2783 unsigned long mapsize;
2784 git_zstream stream;
2785 char hdr[MAX_HEADER_LEN];
2786 unsigned long *size = oi->sizep;
2788 fd = git_open(path);
2789 if (fd >= 0)
2790 map = map_fd(fd, path, &mapsize);
2791 if (!map) {
2792 error_errno(_("unable to mmap %s"), path);
2793 goto out;
2796 if (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
2797 NULL) != ULHR_OK) {
2798 error(_("unable to unpack header of %s"), path);
2799 goto out;
2802 if (parse_loose_header(hdr, oi) < 0) {
2803 error(_("unable to parse header of %s"), path);
2804 git_inflate_end(&stream);
2805 goto out;
2808 if (*oi->typep == OBJ_BLOB && *size > big_file_threshold) {
2809 if (check_stream_oid(&stream, hdr, *size, path, expected_oid) < 0)
2810 goto out;
2811 } else {
2812 *contents = unpack_loose_rest(&stream, hdr, *size, expected_oid);
2813 if (!*contents) {
2814 error(_("unable to unpack contents of %s"), path);
2815 git_inflate_end(&stream);
2816 goto out;
2818 hash_object_file_literally(the_repository->hash_algo,
2819 *contents, *size,
2820 oi->type_name->buf, real_oid);
2821 if (!oideq(expected_oid, real_oid))
2822 goto out;
2825 ret = 0; /* everything checks out */
2827 out:
2828 if (map)
2829 munmap(map, mapsize);
2830 return ret;