debian: new upstream release
[git/debian.git] / object-file.c
blob7c7afe5793641c06b10dee6f1f6735a1a476c7d9
1 /*
2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 * This handles basic git object files - packing, unpacking,
7 * creation etc.
8 */
9 #include "git-compat-util.h"
10 #include "abspath.h"
11 #include "config.h"
12 #include "convert.h"
13 #include "environment.h"
14 #include "gettext.h"
15 #include "hex.h"
16 #include "string-list.h"
17 #include "lockfile.h"
18 #include "delta.h"
19 #include "pack.h"
20 #include "blob.h"
21 #include "commit.h"
22 #include "run-command.h"
23 #include "tag.h"
24 #include "tree.h"
25 #include "tree-walk.h"
26 #include "refs.h"
27 #include "pack-revindex.h"
28 #include "hash-lookup.h"
29 #include "bulk-checkin.h"
30 #include "repository.h"
31 #include "replace-object.h"
32 #include "streaming.h"
33 #include "dir.h"
34 #include "list.h"
35 #include "mergesort.h"
36 #include "quote.h"
37 #include "packfile.h"
38 #include "object-file.h"
39 #include "object-store.h"
40 #include "oidtree.h"
41 #include "path.h"
42 #include "promisor-remote.h"
43 #include "setup.h"
44 #include "submodule.h"
45 #include "fsck.h"
47 /* The maximum size for an object header. */
48 #define MAX_HEADER_LEN 32
51 #define EMPTY_TREE_SHA1_BIN_LITERAL \
52 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60" \
53 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04"
54 #define EMPTY_TREE_SHA256_BIN_LITERAL \
55 "\x6e\xf1\x9b\x41\x22\x5c\x53\x69\xf1\xc1" \
56 "\x04\xd4\x5d\x8d\x85\xef\xa9\xb0\x57\xb5" \
57 "\x3b\x14\xb4\xb9\xb9\x39\xdd\x74\xde\xcc" \
58 "\x53\x21"
60 #define EMPTY_BLOB_SHA1_BIN_LITERAL \
61 "\xe6\x9d\xe2\x9b\xb2\xd1\xd6\x43\x4b\x8b" \
62 "\x29\xae\x77\x5a\xd8\xc2\xe4\x8c\x53\x91"
63 #define EMPTY_BLOB_SHA256_BIN_LITERAL \
64 "\x47\x3a\x0f\x4c\x3b\xe8\xa9\x36\x81\xa2" \
65 "\x67\xe3\xb1\xe9\xa7\xdc\xda\x11\x85\x43" \
66 "\x6f\xe1\x41\xf7\x74\x91\x20\xa3\x03\x72" \
67 "\x18\x13"
69 static const struct object_id empty_tree_oid = {
70 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
71 .algo = GIT_HASH_SHA1,
73 static const struct object_id empty_blob_oid = {
74 .hash = EMPTY_BLOB_SHA1_BIN_LITERAL,
75 .algo = GIT_HASH_SHA1,
77 static const struct object_id null_oid_sha1 = {
78 .hash = {0},
79 .algo = GIT_HASH_SHA1,
81 static const struct object_id empty_tree_oid_sha256 = {
82 .hash = EMPTY_TREE_SHA256_BIN_LITERAL,
83 .algo = GIT_HASH_SHA256,
85 static const struct object_id empty_blob_oid_sha256 = {
86 .hash = EMPTY_BLOB_SHA256_BIN_LITERAL,
87 .algo = GIT_HASH_SHA256,
89 static const struct object_id null_oid_sha256 = {
90 .hash = {0},
91 .algo = GIT_HASH_SHA256,
94 static void git_hash_sha1_init(git_hash_ctx *ctx)
96 git_SHA1_Init(&ctx->sha1);
99 static void git_hash_sha1_clone(git_hash_ctx *dst, const git_hash_ctx *src)
101 git_SHA1_Clone(&dst->sha1, &src->sha1);
104 static void git_hash_sha1_update(git_hash_ctx *ctx, const void *data, size_t len)
106 git_SHA1_Update(&ctx->sha1, data, len);
109 static void git_hash_sha1_final(unsigned char *hash, git_hash_ctx *ctx)
111 git_SHA1_Final(hash, &ctx->sha1);
114 static void git_hash_sha1_final_oid(struct object_id *oid, git_hash_ctx *ctx)
116 git_SHA1_Final(oid->hash, &ctx->sha1);
117 memset(oid->hash + GIT_SHA1_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA1_RAWSZ);
118 oid->algo = GIT_HASH_SHA1;
122 static void git_hash_sha256_init(git_hash_ctx *ctx)
124 git_SHA256_Init(&ctx->sha256);
127 static void git_hash_sha256_clone(git_hash_ctx *dst, const git_hash_ctx *src)
129 git_SHA256_Clone(&dst->sha256, &src->sha256);
132 static void git_hash_sha256_update(git_hash_ctx *ctx, const void *data, size_t len)
134 git_SHA256_Update(&ctx->sha256, data, len);
137 static void git_hash_sha256_final(unsigned char *hash, git_hash_ctx *ctx)
139 git_SHA256_Final(hash, &ctx->sha256);
142 static void git_hash_sha256_final_oid(struct object_id *oid, git_hash_ctx *ctx)
144 git_SHA256_Final(oid->hash, &ctx->sha256);
146 * This currently does nothing, so the compiler should optimize it out,
147 * but keep it in case we extend the hash size again.
149 memset(oid->hash + GIT_SHA256_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA256_RAWSZ);
150 oid->algo = GIT_HASH_SHA256;
153 static void git_hash_unknown_init(git_hash_ctx *ctx UNUSED)
155 BUG("trying to init unknown hash");
158 static void git_hash_unknown_clone(git_hash_ctx *dst UNUSED,
159 const git_hash_ctx *src UNUSED)
161 BUG("trying to clone unknown hash");
164 static void git_hash_unknown_update(git_hash_ctx *ctx UNUSED,
165 const void *data UNUSED,
166 size_t len UNUSED)
168 BUG("trying to update unknown hash");
171 static void git_hash_unknown_final(unsigned char *hash UNUSED,
172 git_hash_ctx *ctx UNUSED)
174 BUG("trying to finalize unknown hash");
177 static void git_hash_unknown_final_oid(struct object_id *oid UNUSED,
178 git_hash_ctx *ctx UNUSED)
180 BUG("trying to finalize unknown hash");
183 const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
185 .name = NULL,
186 .format_id = 0x00000000,
187 .rawsz = 0,
188 .hexsz = 0,
189 .blksz = 0,
190 .init_fn = git_hash_unknown_init,
191 .clone_fn = git_hash_unknown_clone,
192 .update_fn = git_hash_unknown_update,
193 .final_fn = git_hash_unknown_final,
194 .final_oid_fn = git_hash_unknown_final_oid,
195 .empty_tree = NULL,
196 .empty_blob = NULL,
197 .null_oid = NULL,
200 .name = "sha1",
201 .format_id = GIT_SHA1_FORMAT_ID,
202 .rawsz = GIT_SHA1_RAWSZ,
203 .hexsz = GIT_SHA1_HEXSZ,
204 .blksz = GIT_SHA1_BLKSZ,
205 .init_fn = git_hash_sha1_init,
206 .clone_fn = git_hash_sha1_clone,
207 .update_fn = git_hash_sha1_update,
208 .final_fn = git_hash_sha1_final,
209 .final_oid_fn = git_hash_sha1_final_oid,
210 .empty_tree = &empty_tree_oid,
211 .empty_blob = &empty_blob_oid,
212 .null_oid = &null_oid_sha1,
215 .name = "sha256",
216 .format_id = GIT_SHA256_FORMAT_ID,
217 .rawsz = GIT_SHA256_RAWSZ,
218 .hexsz = GIT_SHA256_HEXSZ,
219 .blksz = GIT_SHA256_BLKSZ,
220 .init_fn = git_hash_sha256_init,
221 .clone_fn = git_hash_sha256_clone,
222 .update_fn = git_hash_sha256_update,
223 .final_fn = git_hash_sha256_final,
224 .final_oid_fn = git_hash_sha256_final_oid,
225 .empty_tree = &empty_tree_oid_sha256,
226 .empty_blob = &empty_blob_oid_sha256,
227 .null_oid = &null_oid_sha256,
231 const struct object_id *null_oid(void)
233 return the_hash_algo->null_oid;
236 const char *empty_tree_oid_hex(void)
238 static char buf[GIT_MAX_HEXSZ + 1];
239 return oid_to_hex_r(buf, the_hash_algo->empty_tree);
242 const char *empty_blob_oid_hex(void)
244 static char buf[GIT_MAX_HEXSZ + 1];
245 return oid_to_hex_r(buf, the_hash_algo->empty_blob);
248 int hash_algo_by_name(const char *name)
250 int i;
251 if (!name)
252 return GIT_HASH_UNKNOWN;
253 for (i = 1; i < GIT_HASH_NALGOS; i++)
254 if (!strcmp(name, hash_algos[i].name))
255 return i;
256 return GIT_HASH_UNKNOWN;
259 int hash_algo_by_id(uint32_t format_id)
261 int i;
262 for (i = 1; i < GIT_HASH_NALGOS; i++)
263 if (format_id == hash_algos[i].format_id)
264 return i;
265 return GIT_HASH_UNKNOWN;
268 int hash_algo_by_length(int len)
270 int i;
271 for (i = 1; i < GIT_HASH_NALGOS; i++)
272 if (len == hash_algos[i].rawsz)
273 return i;
274 return GIT_HASH_UNKNOWN;
278 * This is meant to hold a *small* number of objects that you would
279 * want repo_read_object_file() to be able to return, but yet you do not want
280 * to write them into the object store (e.g. a browse-only
281 * application).
283 static struct cached_object {
284 struct object_id oid;
285 enum object_type type;
286 void *buf;
287 unsigned long size;
288 } *cached_objects;
289 static int cached_object_nr, cached_object_alloc;
291 static struct cached_object empty_tree = {
292 .oid = {
293 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
295 .type = OBJ_TREE,
296 .buf = "",
299 static struct cached_object *find_cached_object(const struct object_id *oid)
301 int i;
302 struct cached_object *co = cached_objects;
304 for (i = 0; i < cached_object_nr; i++, co++) {
305 if (oideq(&co->oid, oid))
306 return co;
308 if (oideq(oid, the_hash_algo->empty_tree))
309 return &empty_tree;
310 return NULL;
314 static int get_conv_flags(unsigned flags)
316 if (flags & HASH_RENORMALIZE)
317 return CONV_EOL_RENORMALIZE;
318 else if (flags & HASH_WRITE_OBJECT)
319 return global_conv_flags_eol | CONV_WRITE_OBJECT;
320 else
321 return 0;
325 int mkdir_in_gitdir(const char *path)
327 if (mkdir(path, 0777)) {
328 int saved_errno = errno;
329 struct stat st;
330 struct strbuf sb = STRBUF_INIT;
332 if (errno != EEXIST)
333 return -1;
335 * Are we looking at a path in a symlinked worktree
336 * whose original repository does not yet have it?
337 * e.g. .git/rr-cache pointing at its original
338 * repository in which the user hasn't performed any
339 * conflict resolution yet?
341 if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
342 strbuf_readlink(&sb, path, st.st_size) ||
343 !is_absolute_path(sb.buf) ||
344 mkdir(sb.buf, 0777)) {
345 strbuf_release(&sb);
346 errno = saved_errno;
347 return -1;
349 strbuf_release(&sb);
351 return adjust_shared_perm(path);
354 static enum scld_error safe_create_leading_directories_1(char *path, int share)
356 char *next_component = path + offset_1st_component(path);
357 enum scld_error ret = SCLD_OK;
359 while (ret == SCLD_OK && next_component) {
360 struct stat st;
361 char *slash = next_component, slash_character;
363 while (*slash && !is_dir_sep(*slash))
364 slash++;
366 if (!*slash)
367 break;
369 next_component = slash + 1;
370 while (is_dir_sep(*next_component))
371 next_component++;
372 if (!*next_component)
373 break;
375 slash_character = *slash;
376 *slash = '\0';
377 if (!stat(path, &st)) {
378 /* path exists */
379 if (!S_ISDIR(st.st_mode)) {
380 errno = ENOTDIR;
381 ret = SCLD_EXISTS;
383 } else if (mkdir(path, 0777)) {
384 if (errno == EEXIST &&
385 !stat(path, &st) && S_ISDIR(st.st_mode))
386 ; /* somebody created it since we checked */
387 else if (errno == ENOENT)
389 * Either mkdir() failed because
390 * somebody just pruned the containing
391 * directory, or stat() failed because
392 * the file that was in our way was
393 * just removed. Either way, inform
394 * the caller that it might be worth
395 * trying again:
397 ret = SCLD_VANISHED;
398 else
399 ret = SCLD_FAILED;
400 } else if (share && adjust_shared_perm(path)) {
401 ret = SCLD_PERMS;
403 *slash = slash_character;
405 return ret;
408 enum scld_error safe_create_leading_directories(char *path)
410 return safe_create_leading_directories_1(path, 1);
413 enum scld_error safe_create_leading_directories_no_share(char *path)
415 return safe_create_leading_directories_1(path, 0);
418 enum scld_error safe_create_leading_directories_const(const char *path)
420 int save_errno;
421 /* path points to cache entries, so xstrdup before messing with it */
422 char *buf = xstrdup(path);
423 enum scld_error result = safe_create_leading_directories(buf);
425 save_errno = errno;
426 free(buf);
427 errno = save_errno;
428 return result;
431 static void fill_loose_path(struct strbuf *buf, const struct object_id *oid)
433 int i;
434 for (i = 0; i < the_hash_algo->rawsz; i++) {
435 static char hex[] = "0123456789abcdef";
436 unsigned int val = oid->hash[i];
437 strbuf_addch(buf, hex[val >> 4]);
438 strbuf_addch(buf, hex[val & 0xf]);
439 if (!i)
440 strbuf_addch(buf, '/');
444 static const char *odb_loose_path(struct object_directory *odb,
445 struct strbuf *buf,
446 const struct object_id *oid)
448 strbuf_reset(buf);
449 strbuf_addstr(buf, odb->path);
450 strbuf_addch(buf, '/');
451 fill_loose_path(buf, oid);
452 return buf->buf;
455 const char *loose_object_path(struct repository *r, struct strbuf *buf,
456 const struct object_id *oid)
458 return odb_loose_path(r->objects->odb, buf, oid);
462 * Return non-zero iff the path is usable as an alternate object database.
464 static int alt_odb_usable(struct raw_object_store *o,
465 struct strbuf *path,
466 const char *normalized_objdir, khiter_t *pos)
468 int r;
470 /* Detect cases where alternate disappeared */
471 if (!is_directory(path->buf)) {
472 error(_("object directory %s does not exist; "
473 "check .git/objects/info/alternates"),
474 path->buf);
475 return 0;
479 * Prevent the common mistake of listing the same
480 * thing twice, or object directory itself.
482 if (!o->odb_by_path) {
483 khiter_t p;
485 o->odb_by_path = kh_init_odb_path_map();
486 assert(!o->odb->next);
487 p = kh_put_odb_path_map(o->odb_by_path, o->odb->path, &r);
488 assert(r == 1); /* never used */
489 kh_value(o->odb_by_path, p) = o->odb;
491 if (fspatheq(path->buf, normalized_objdir))
492 return 0;
493 *pos = kh_put_odb_path_map(o->odb_by_path, path->buf, &r);
494 /* r: 0 = exists, 1 = never used, 2 = deleted */
495 return r == 0 ? 0 : 1;
499 * Prepare alternate object database registry.
501 * The variable alt_odb_list points at the list of struct
502 * object_directory. The elements on this list come from
503 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
504 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
505 * whose contents is similar to that environment variable but can be
506 * LF separated. Its base points at a statically allocated buffer that
507 * contains "/the/directory/corresponding/to/.git/objects/...", while
508 * its name points just after the slash at the end of ".git/objects/"
509 * in the example above, and has enough space to hold all hex characters
510 * of the object ID, an extra slash for the first level indirection, and
511 * the terminating NUL.
513 static void read_info_alternates(struct repository *r,
514 const char *relative_base,
515 int depth);
516 static int link_alt_odb_entry(struct repository *r, const struct strbuf *entry,
517 const char *relative_base, int depth, const char *normalized_objdir)
519 struct object_directory *ent;
520 struct strbuf pathbuf = STRBUF_INIT;
521 struct strbuf tmp = STRBUF_INIT;
522 khiter_t pos;
523 int ret = -1;
525 if (!is_absolute_path(entry->buf) && relative_base) {
526 strbuf_realpath(&pathbuf, relative_base, 1);
527 strbuf_addch(&pathbuf, '/');
529 strbuf_addbuf(&pathbuf, entry);
531 if (!strbuf_realpath(&tmp, pathbuf.buf, 0)) {
532 error(_("unable to normalize alternate object path: %s"),
533 pathbuf.buf);
534 goto error;
536 strbuf_swap(&pathbuf, &tmp);
539 * The trailing slash after the directory name is given by
540 * this function at the end. Remove duplicates.
542 while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
543 strbuf_setlen(&pathbuf, pathbuf.len - 1);
545 if (!alt_odb_usable(r->objects, &pathbuf, normalized_objdir, &pos))
546 goto error;
548 CALLOC_ARRAY(ent, 1);
549 /* pathbuf.buf is already in r->objects->odb_by_path */
550 ent->path = strbuf_detach(&pathbuf, NULL);
552 /* add the alternate entry */
553 *r->objects->odb_tail = ent;
554 r->objects->odb_tail = &(ent->next);
555 ent->next = NULL;
556 assert(r->objects->odb_by_path);
557 kh_value(r->objects->odb_by_path, pos) = ent;
559 /* recursively add alternates */
560 read_info_alternates(r, ent->path, depth + 1);
561 ret = 0;
562 error:
563 strbuf_release(&tmp);
564 strbuf_release(&pathbuf);
565 return ret;
568 static const char *parse_alt_odb_entry(const char *string,
569 int sep,
570 struct strbuf *out)
572 const char *end;
574 strbuf_reset(out);
576 if (*string == '#') {
577 /* comment; consume up to next separator */
578 end = strchrnul(string, sep);
579 } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
581 * quoted path; unquote_c_style has copied the
582 * data for us and set "end". Broken quoting (e.g.,
583 * an entry that doesn't end with a quote) falls
584 * back to the unquoted case below.
586 } else {
587 /* normal, unquoted path */
588 end = strchrnul(string, sep);
589 strbuf_add(out, string, end - string);
592 if (*end)
593 end++;
594 return end;
597 static void link_alt_odb_entries(struct repository *r, const char *alt,
598 int sep, const char *relative_base, int depth)
600 struct strbuf objdirbuf = STRBUF_INIT;
601 struct strbuf entry = STRBUF_INIT;
603 if (!alt || !*alt)
604 return;
606 if (depth > 5) {
607 error(_("%s: ignoring alternate object stores, nesting too deep"),
608 relative_base);
609 return;
612 strbuf_realpath(&objdirbuf, r->objects->odb->path, 1);
614 while (*alt) {
615 alt = parse_alt_odb_entry(alt, sep, &entry);
616 if (!entry.len)
617 continue;
618 link_alt_odb_entry(r, &entry,
619 relative_base, depth, objdirbuf.buf);
621 strbuf_release(&entry);
622 strbuf_release(&objdirbuf);
625 static void read_info_alternates(struct repository *r,
626 const char *relative_base,
627 int depth)
629 char *path;
630 struct strbuf buf = STRBUF_INIT;
632 path = xstrfmt("%s/info/alternates", relative_base);
633 if (strbuf_read_file(&buf, path, 1024) < 0) {
634 warn_on_fopen_errors(path);
635 free(path);
636 return;
639 link_alt_odb_entries(r, buf.buf, '\n', relative_base, depth);
640 strbuf_release(&buf);
641 free(path);
644 void add_to_alternates_file(const char *reference)
646 struct lock_file lock = LOCK_INIT;
647 char *alts = git_pathdup("objects/info/alternates");
648 FILE *in, *out;
649 int found = 0;
651 hold_lock_file_for_update(&lock, alts, LOCK_DIE_ON_ERROR);
652 out = fdopen_lock_file(&lock, "w");
653 if (!out)
654 die_errno(_("unable to fdopen alternates lockfile"));
656 in = fopen(alts, "r");
657 if (in) {
658 struct strbuf line = STRBUF_INIT;
660 while (strbuf_getline(&line, in) != EOF) {
661 if (!strcmp(reference, line.buf)) {
662 found = 1;
663 break;
665 fprintf_or_die(out, "%s\n", line.buf);
668 strbuf_release(&line);
669 fclose(in);
671 else if (errno != ENOENT)
672 die_errno(_("unable to read alternates file"));
674 if (found) {
675 rollback_lock_file(&lock);
676 } else {
677 fprintf_or_die(out, "%s\n", reference);
678 if (commit_lock_file(&lock))
679 die_errno(_("unable to move new alternates file into place"));
680 if (the_repository->objects->loaded_alternates)
681 link_alt_odb_entries(the_repository, reference,
682 '\n', NULL, 0);
684 free(alts);
687 void add_to_alternates_memory(const char *reference)
690 * Make sure alternates are initialized, or else our entry may be
691 * overwritten when they are.
693 prepare_alt_odb(the_repository);
695 link_alt_odb_entries(the_repository, reference,
696 '\n', NULL, 0);
699 struct object_directory *set_temporary_primary_odb(const char *dir, int will_destroy)
701 struct object_directory *new_odb;
704 * Make sure alternates are initialized, or else our entry may be
705 * overwritten when they are.
707 prepare_alt_odb(the_repository);
710 * Make a new primary odb and link the old primary ODB in as an
711 * alternate
713 new_odb = xcalloc(1, sizeof(*new_odb));
714 new_odb->path = xstrdup(dir);
717 * Disable ref updates while a temporary odb is active, since
718 * the objects in the database may roll back.
720 new_odb->disable_ref_updates = 1;
721 new_odb->will_destroy = will_destroy;
722 new_odb->next = the_repository->objects->odb;
723 the_repository->objects->odb = new_odb;
724 return new_odb->next;
727 void restore_primary_odb(struct object_directory *restore_odb, const char *old_path)
729 struct object_directory *cur_odb = the_repository->objects->odb;
731 if (strcmp(old_path, cur_odb->path))
732 BUG("expected %s as primary object store; found %s",
733 old_path, cur_odb->path);
735 if (cur_odb->next != restore_odb)
736 BUG("we expect the old primary object store to be the first alternate");
738 the_repository->objects->odb = restore_odb;
739 free_object_directory(cur_odb);
743 * Compute the exact path an alternate is at and returns it. In case of
744 * error NULL is returned and the human readable error is added to `err`
745 * `path` may be relative and should point to $GIT_DIR.
746 * `err` must not be null.
748 char *compute_alternate_path(const char *path, struct strbuf *err)
750 char *ref_git = NULL;
751 const char *repo;
752 int seen_error = 0;
754 ref_git = real_pathdup(path, 0);
755 if (!ref_git) {
756 seen_error = 1;
757 strbuf_addf(err, _("path '%s' does not exist"), path);
758 goto out;
761 repo = read_gitfile(ref_git);
762 if (!repo)
763 repo = read_gitfile(mkpath("%s/.git", ref_git));
764 if (repo) {
765 free(ref_git);
766 ref_git = xstrdup(repo);
769 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
770 char *ref_git_git = mkpathdup("%s/.git", ref_git);
771 free(ref_git);
772 ref_git = ref_git_git;
773 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
774 struct strbuf sb = STRBUF_INIT;
775 seen_error = 1;
776 if (get_common_dir(&sb, ref_git)) {
777 strbuf_addf(err,
778 _("reference repository '%s' as a linked "
779 "checkout is not supported yet."),
780 path);
781 goto out;
784 strbuf_addf(err, _("reference repository '%s' is not a "
785 "local repository."), path);
786 goto out;
789 if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
790 strbuf_addf(err, _("reference repository '%s' is shallow"),
791 path);
792 seen_error = 1;
793 goto out;
796 if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
797 strbuf_addf(err,
798 _("reference repository '%s' is grafted"),
799 path);
800 seen_error = 1;
801 goto out;
804 out:
805 if (seen_error) {
806 FREE_AND_NULL(ref_git);
809 return ref_git;
812 struct object_directory *find_odb(struct repository *r, const char *obj_dir)
814 struct object_directory *odb;
815 char *obj_dir_real = real_pathdup(obj_dir, 1);
816 struct strbuf odb_path_real = STRBUF_INIT;
818 prepare_alt_odb(r);
819 for (odb = r->objects->odb; odb; odb = odb->next) {
820 strbuf_realpath(&odb_path_real, odb->path, 1);
821 if (!strcmp(obj_dir_real, odb_path_real.buf))
822 break;
825 free(obj_dir_real);
826 strbuf_release(&odb_path_real);
828 if (!odb)
829 die(_("could not find object directory matching %s"), obj_dir);
830 return odb;
833 static void fill_alternate_refs_command(struct child_process *cmd,
834 const char *repo_path)
836 const char *value;
838 if (!git_config_get_value("core.alternateRefsCommand", &value)) {
839 cmd->use_shell = 1;
841 strvec_push(&cmd->args, value);
842 strvec_push(&cmd->args, repo_path);
843 } else {
844 cmd->git_cmd = 1;
846 strvec_pushf(&cmd->args, "--git-dir=%s", repo_path);
847 strvec_push(&cmd->args, "for-each-ref");
848 strvec_push(&cmd->args, "--format=%(objectname)");
850 if (!git_config_get_value("core.alternateRefsPrefixes", &value)) {
851 strvec_push(&cmd->args, "--");
852 strvec_split(&cmd->args, value);
856 strvec_pushv(&cmd->env, (const char **)local_repo_env);
857 cmd->out = -1;
860 static void read_alternate_refs(const char *path,
861 alternate_ref_fn *cb,
862 void *data)
864 struct child_process cmd = CHILD_PROCESS_INIT;
865 struct strbuf line = STRBUF_INIT;
866 FILE *fh;
868 fill_alternate_refs_command(&cmd, path);
870 if (start_command(&cmd))
871 return;
873 fh = xfdopen(cmd.out, "r");
874 while (strbuf_getline_lf(&line, fh) != EOF) {
875 struct object_id oid;
876 const char *p;
878 if (parse_oid_hex(line.buf, &oid, &p) || *p) {
879 warning(_("invalid line while parsing alternate refs: %s"),
880 line.buf);
881 break;
884 cb(&oid, data);
887 fclose(fh);
888 finish_command(&cmd);
889 strbuf_release(&line);
892 struct alternate_refs_data {
893 alternate_ref_fn *fn;
894 void *data;
897 static int refs_from_alternate_cb(struct object_directory *e,
898 void *data)
900 struct strbuf path = STRBUF_INIT;
901 size_t base_len;
902 struct alternate_refs_data *cb = data;
904 if (!strbuf_realpath(&path, e->path, 0))
905 goto out;
906 if (!strbuf_strip_suffix(&path, "/objects"))
907 goto out;
908 base_len = path.len;
910 /* Is this a git repository with refs? */
911 strbuf_addstr(&path, "/refs");
912 if (!is_directory(path.buf))
913 goto out;
914 strbuf_setlen(&path, base_len);
916 read_alternate_refs(path.buf, cb->fn, cb->data);
918 out:
919 strbuf_release(&path);
920 return 0;
923 void for_each_alternate_ref(alternate_ref_fn fn, void *data)
925 struct alternate_refs_data cb;
926 cb.fn = fn;
927 cb.data = data;
928 foreach_alt_odb(refs_from_alternate_cb, &cb);
931 int foreach_alt_odb(alt_odb_fn fn, void *cb)
933 struct object_directory *ent;
934 int r = 0;
936 prepare_alt_odb(the_repository);
937 for (ent = the_repository->objects->odb->next; ent; ent = ent->next) {
938 r = fn(ent, cb);
939 if (r)
940 break;
942 return r;
945 void prepare_alt_odb(struct repository *r)
947 if (r->objects->loaded_alternates)
948 return;
950 link_alt_odb_entries(r, r->objects->alternate_db, PATH_SEP, NULL, 0);
952 read_info_alternates(r, r->objects->odb->path, 0);
953 r->objects->loaded_alternates = 1;
956 int has_alt_odb(struct repository *r)
958 prepare_alt_odb(r);
959 return !!r->objects->odb->next;
962 /* Returns 1 if we have successfully freshened the file, 0 otherwise. */
963 static int freshen_file(const char *fn)
965 return !utime(fn, NULL);
969 * All of the check_and_freshen functions return 1 if the file exists and was
970 * freshened (if freshening was requested), 0 otherwise. If they return
971 * 0, you should not assume that it is safe to skip a write of the object (it
972 * either does not exist on disk, or has a stale mtime and may be subject to
973 * pruning).
975 int check_and_freshen_file(const char *fn, int freshen)
977 if (access(fn, F_OK))
978 return 0;
979 if (freshen && !freshen_file(fn))
980 return 0;
981 return 1;
984 static int check_and_freshen_odb(struct object_directory *odb,
985 const struct object_id *oid,
986 int freshen)
988 static struct strbuf path = STRBUF_INIT;
989 odb_loose_path(odb, &path, oid);
990 return check_and_freshen_file(path.buf, freshen);
993 static int check_and_freshen_local(const struct object_id *oid, int freshen)
995 return check_and_freshen_odb(the_repository->objects->odb, oid, freshen);
998 static int check_and_freshen_nonlocal(const struct object_id *oid, int freshen)
1000 struct object_directory *odb;
1002 prepare_alt_odb(the_repository);
1003 for (odb = the_repository->objects->odb->next; odb; odb = odb->next) {
1004 if (check_and_freshen_odb(odb, oid, freshen))
1005 return 1;
1007 return 0;
1010 static int check_and_freshen(const struct object_id *oid, int freshen)
1012 return check_and_freshen_local(oid, freshen) ||
1013 check_and_freshen_nonlocal(oid, freshen);
1016 int has_loose_object_nonlocal(const struct object_id *oid)
1018 return check_and_freshen_nonlocal(oid, 0);
1021 int has_loose_object(const struct object_id *oid)
1023 return check_and_freshen(oid, 0);
1026 static void mmap_limit_check(size_t length)
1028 static size_t limit = 0;
1029 if (!limit) {
1030 limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
1031 if (!limit)
1032 limit = SIZE_MAX;
1034 if (length > limit)
1035 die(_("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX),
1036 (uintmax_t)length, (uintmax_t)limit);
1039 void *xmmap_gently(void *start, size_t length,
1040 int prot, int flags, int fd, off_t offset)
1042 void *ret;
1044 mmap_limit_check(length);
1045 ret = mmap(start, length, prot, flags, fd, offset);
1046 if (ret == MAP_FAILED && !length)
1047 ret = NULL;
1048 return ret;
1051 const char *mmap_os_err(void)
1053 static const char blank[] = "";
1054 #if defined(__linux__)
1055 if (errno == ENOMEM) {
1056 /* this continues an existing error message: */
1057 static const char enomem[] =
1058 ", check sys.vm.max_map_count and/or RLIMIT_DATA";
1059 return enomem;
1061 #endif /* OS-specific bits */
1062 return blank;
1065 void *xmmap(void *start, size_t length,
1066 int prot, int flags, int fd, off_t offset)
1068 void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
1069 if (ret == MAP_FAILED)
1070 die_errno(_("mmap failed%s"), mmap_os_err());
1071 return ret;
1074 static int format_object_header_literally(char *str, size_t size,
1075 const char *type, size_t objsize)
1077 return xsnprintf(str, size, "%s %"PRIuMAX, type, (uintmax_t)objsize) + 1;
1080 int format_object_header(char *str, size_t size, enum object_type type,
1081 size_t objsize)
1083 const char *name = type_name(type);
1085 if (!name)
1086 BUG("could not get a type name for 'enum object_type' value %d", type);
1088 return format_object_header_literally(str, size, name, objsize);
1091 int check_object_signature(struct repository *r, const struct object_id *oid,
1092 void *buf, unsigned long size,
1093 enum object_type type)
1095 struct object_id real_oid;
1097 hash_object_file(r->hash_algo, buf, size, type, &real_oid);
1099 return !oideq(oid, &real_oid) ? -1 : 0;
1102 int stream_object_signature(struct repository *r, const struct object_id *oid)
1104 struct object_id real_oid;
1105 unsigned long size;
1106 enum object_type obj_type;
1107 struct git_istream *st;
1108 git_hash_ctx c;
1109 char hdr[MAX_HEADER_LEN];
1110 int hdrlen;
1112 st = open_istream(r, oid, &obj_type, &size, NULL);
1113 if (!st)
1114 return -1;
1116 /* Generate the header */
1117 hdrlen = format_object_header(hdr, sizeof(hdr), obj_type, size);
1119 /* Sha1.. */
1120 r->hash_algo->init_fn(&c);
1121 r->hash_algo->update_fn(&c, hdr, hdrlen);
1122 for (;;) {
1123 char buf[1024 * 16];
1124 ssize_t readlen = read_istream(st, buf, sizeof(buf));
1126 if (readlen < 0) {
1127 close_istream(st);
1128 return -1;
1130 if (!readlen)
1131 break;
1132 r->hash_algo->update_fn(&c, buf, readlen);
1134 r->hash_algo->final_oid_fn(&real_oid, &c);
1135 close_istream(st);
1136 return !oideq(oid, &real_oid) ? -1 : 0;
1139 int git_open_cloexec(const char *name, int flags)
1141 int fd;
1142 static int o_cloexec = O_CLOEXEC;
1144 fd = open(name, flags | o_cloexec);
1145 if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
1146 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1147 o_cloexec &= ~O_CLOEXEC;
1148 fd = open(name, flags | o_cloexec);
1151 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1153 static int fd_cloexec = FD_CLOEXEC;
1155 if (!o_cloexec && 0 <= fd && fd_cloexec) {
1156 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
1157 int flags = fcntl(fd, F_GETFD);
1158 if (fcntl(fd, F_SETFD, flags | fd_cloexec))
1159 fd_cloexec = 0;
1162 #endif
1163 return fd;
1167 * Find "oid" as a loose object in the local repository or in an alternate.
1168 * Returns 0 on success, negative on failure.
1170 * The "path" out-parameter will give the path of the object we found (if any).
1171 * Note that it may point to static storage and is only valid until another
1172 * call to stat_loose_object().
1174 static int stat_loose_object(struct repository *r, const struct object_id *oid,
1175 struct stat *st, const char **path)
1177 struct object_directory *odb;
1178 static struct strbuf buf = STRBUF_INIT;
1180 prepare_alt_odb(r);
1181 for (odb = r->objects->odb; odb; odb = odb->next) {
1182 *path = odb_loose_path(odb, &buf, oid);
1183 if (!lstat(*path, st))
1184 return 0;
1187 return -1;
1191 * Like stat_loose_object(), but actually open the object and return the
1192 * descriptor. See the caveats on the "path" parameter above.
1194 static int open_loose_object(struct repository *r,
1195 const struct object_id *oid, const char **path)
1197 int fd;
1198 struct object_directory *odb;
1199 int most_interesting_errno = ENOENT;
1200 static struct strbuf buf = STRBUF_INIT;
1202 prepare_alt_odb(r);
1203 for (odb = r->objects->odb; odb; odb = odb->next) {
1204 *path = odb_loose_path(odb, &buf, oid);
1205 fd = git_open(*path);
1206 if (fd >= 0)
1207 return fd;
1209 if (most_interesting_errno == ENOENT)
1210 most_interesting_errno = errno;
1212 errno = most_interesting_errno;
1213 return -1;
1216 static int quick_has_loose(struct repository *r,
1217 const struct object_id *oid)
1219 struct object_directory *odb;
1221 prepare_alt_odb(r);
1222 for (odb = r->objects->odb; odb; odb = odb->next) {
1223 if (oidtree_contains(odb_loose_cache(odb, oid), oid))
1224 return 1;
1226 return 0;
1230 * Map and close the given loose object fd. The path argument is used for
1231 * error reporting.
1233 static void *map_fd(int fd, const char *path, unsigned long *size)
1235 void *map = NULL;
1236 struct stat st;
1238 if (!fstat(fd, &st)) {
1239 *size = xsize_t(st.st_size);
1240 if (!*size) {
1241 /* mmap() is forbidden on empty files */
1242 error(_("object file %s is empty"), path);
1243 close(fd);
1244 return NULL;
1246 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
1248 close(fd);
1249 return map;
1252 void *map_loose_object(struct repository *r,
1253 const struct object_id *oid,
1254 unsigned long *size)
1256 const char *p;
1257 int fd = open_loose_object(r, oid, &p);
1259 if (fd < 0)
1260 return NULL;
1261 return map_fd(fd, p, size);
1264 enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
1265 unsigned char *map,
1266 unsigned long mapsize,
1267 void *buffer,
1268 unsigned long bufsiz,
1269 struct strbuf *header)
1271 int status;
1273 /* Get the data stream */
1274 memset(stream, 0, sizeof(*stream));
1275 stream->next_in = map;
1276 stream->avail_in = mapsize;
1277 stream->next_out = buffer;
1278 stream->avail_out = bufsiz;
1280 git_inflate_init(stream);
1281 obj_read_unlock();
1282 status = git_inflate(stream, 0);
1283 obj_read_lock();
1284 if (status < Z_OK)
1285 return ULHR_BAD;
1288 * Check if entire header is unpacked in the first iteration.
1290 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1291 return ULHR_OK;
1294 * We have a header longer than MAX_HEADER_LEN. The "header"
1295 * here is only non-NULL when we run "cat-file
1296 * --allow-unknown-type".
1298 if (!header)
1299 return ULHR_TOO_LONG;
1302 * buffer[0..bufsiz] was not large enough. Copy the partial
1303 * result out to header, and then append the result of further
1304 * reading the stream.
1306 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1307 stream->next_out = buffer;
1308 stream->avail_out = bufsiz;
1310 do {
1311 obj_read_unlock();
1312 status = git_inflate(stream, 0);
1313 obj_read_lock();
1314 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1315 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1316 return 0;
1317 stream->next_out = buffer;
1318 stream->avail_out = bufsiz;
1319 } while (status != Z_STREAM_END);
1320 return ULHR_TOO_LONG;
1323 static void *unpack_loose_rest(git_zstream *stream,
1324 void *buffer, unsigned long size,
1325 const struct object_id *oid)
1327 int bytes = strlen(buffer) + 1;
1328 unsigned char *buf = xmallocz(size);
1329 unsigned long n;
1330 int status = Z_OK;
1332 n = stream->total_out - bytes;
1333 if (n > size)
1334 n = size;
1335 memcpy(buf, (char *) buffer + bytes, n);
1336 bytes = n;
1337 if (bytes <= size) {
1339 * The above condition must be (bytes <= size), not
1340 * (bytes < size). In other words, even though we
1341 * expect no more output and set avail_out to zero,
1342 * the input zlib stream may have bytes that express
1343 * "this concludes the stream", and we *do* want to
1344 * eat that input.
1346 * Otherwise we would not be able to test that we
1347 * consumed all the input to reach the expected size;
1348 * we also want to check that zlib tells us that all
1349 * went well with status == Z_STREAM_END at the end.
1351 stream->next_out = buf + bytes;
1352 stream->avail_out = size - bytes;
1353 while (status == Z_OK) {
1354 obj_read_unlock();
1355 status = git_inflate(stream, Z_FINISH);
1356 obj_read_lock();
1359 if (status == Z_STREAM_END && !stream->avail_in) {
1360 git_inflate_end(stream);
1361 return buf;
1364 if (status < 0)
1365 error(_("corrupt loose object '%s'"), oid_to_hex(oid));
1366 else if (stream->avail_in)
1367 error(_("garbage at end of loose object '%s'"),
1368 oid_to_hex(oid));
1369 free(buf);
1370 return NULL;
1374 * We used to just use "sscanf()", but that's actually way
1375 * too permissive for what we want to check. So do an anal
1376 * object header parse by hand.
1378 int parse_loose_header(const char *hdr, struct object_info *oi)
1380 const char *type_buf = hdr;
1381 size_t size;
1382 int type, type_len = 0;
1385 * The type can be of any size but is followed by
1386 * a space.
1388 for (;;) {
1389 char c = *hdr++;
1390 if (!c)
1391 return -1;
1392 if (c == ' ')
1393 break;
1394 type_len++;
1397 type = type_from_string_gently(type_buf, type_len, 1);
1398 if (oi->type_name)
1399 strbuf_add(oi->type_name, type_buf, type_len);
1400 if (oi->typep)
1401 *oi->typep = type;
1404 * The length must follow immediately, and be in canonical
1405 * decimal format (ie "010" is not valid).
1407 size = *hdr++ - '0';
1408 if (size > 9)
1409 return -1;
1410 if (size) {
1411 for (;;) {
1412 unsigned long c = *hdr - '0';
1413 if (c > 9)
1414 break;
1415 hdr++;
1416 size = st_add(st_mult(size, 10), c);
1420 if (oi->sizep)
1421 *oi->sizep = cast_size_t_to_ulong(size);
1424 * The length must be followed by a zero byte
1426 if (*hdr)
1427 return -1;
1430 * The format is valid, but the type may still be bogus. The
1431 * Caller needs to check its oi->typep.
1433 return 0;
1436 static int loose_object_info(struct repository *r,
1437 const struct object_id *oid,
1438 struct object_info *oi, int flags)
1440 int status = 0;
1441 int fd;
1442 unsigned long mapsize;
1443 const char *path;
1444 void *map;
1445 git_zstream stream;
1446 char hdr[MAX_HEADER_LEN];
1447 struct strbuf hdrbuf = STRBUF_INIT;
1448 unsigned long size_scratch;
1449 enum object_type type_scratch;
1450 int allow_unknown = flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE;
1452 if (oi->delta_base_oid)
1453 oidclr(oi->delta_base_oid);
1456 * If we don't care about type or size, then we don't
1457 * need to look inside the object at all. Note that we
1458 * do not optimize out the stat call, even if the
1459 * caller doesn't care about the disk-size, since our
1460 * return value implicitly indicates whether the
1461 * object even exists.
1463 if (!oi->typep && !oi->type_name && !oi->sizep && !oi->contentp) {
1464 struct stat st;
1465 if (!oi->disk_sizep && (flags & OBJECT_INFO_QUICK))
1466 return quick_has_loose(r, oid) ? 0 : -1;
1467 if (stat_loose_object(r, oid, &st, &path) < 0)
1468 return -1;
1469 if (oi->disk_sizep)
1470 *oi->disk_sizep = st.st_size;
1471 return 0;
1474 fd = open_loose_object(r, oid, &path);
1475 if (fd < 0) {
1476 if (errno != ENOENT)
1477 error_errno(_("unable to open loose object %s"), oid_to_hex(oid));
1478 return -1;
1480 map = map_fd(fd, path, &mapsize);
1481 if (!map)
1482 return -1;
1484 if (!oi->sizep)
1485 oi->sizep = &size_scratch;
1486 if (!oi->typep)
1487 oi->typep = &type_scratch;
1489 if (oi->disk_sizep)
1490 *oi->disk_sizep = mapsize;
1492 switch (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
1493 allow_unknown ? &hdrbuf : NULL)) {
1494 case ULHR_OK:
1495 if (parse_loose_header(hdrbuf.len ? hdrbuf.buf : hdr, oi) < 0)
1496 status = error(_("unable to parse %s header"), oid_to_hex(oid));
1497 else if (!allow_unknown && *oi->typep < 0)
1498 die(_("invalid object type"));
1500 if (!oi->contentp)
1501 break;
1502 *oi->contentp = unpack_loose_rest(&stream, hdr, *oi->sizep, oid);
1503 if (*oi->contentp)
1504 goto cleanup;
1506 status = -1;
1507 break;
1508 case ULHR_BAD:
1509 status = error(_("unable to unpack %s header"),
1510 oid_to_hex(oid));
1511 break;
1512 case ULHR_TOO_LONG:
1513 status = error(_("header for %s too long, exceeds %d bytes"),
1514 oid_to_hex(oid), MAX_HEADER_LEN);
1515 break;
1518 if (status && (flags & OBJECT_INFO_DIE_IF_CORRUPT))
1519 die(_("loose object %s (stored in %s) is corrupt"),
1520 oid_to_hex(oid), path);
1522 git_inflate_end(&stream);
1523 cleanup:
1524 munmap(map, mapsize);
1525 if (oi->sizep == &size_scratch)
1526 oi->sizep = NULL;
1527 strbuf_release(&hdrbuf);
1528 if (oi->typep == &type_scratch)
1529 oi->typep = NULL;
1530 oi->whence = OI_LOOSE;
1531 return status;
1534 int obj_read_use_lock = 0;
1535 pthread_mutex_t obj_read_mutex;
1537 void enable_obj_read_lock(void)
1539 if (obj_read_use_lock)
1540 return;
1542 obj_read_use_lock = 1;
1543 init_recursive_mutex(&obj_read_mutex);
1546 void disable_obj_read_lock(void)
1548 if (!obj_read_use_lock)
1549 return;
1551 obj_read_use_lock = 0;
1552 pthread_mutex_destroy(&obj_read_mutex);
1555 int fetch_if_missing = 1;
1557 static int do_oid_object_info_extended(struct repository *r,
1558 const struct object_id *oid,
1559 struct object_info *oi, unsigned flags)
1561 static struct object_info blank_oi = OBJECT_INFO_INIT;
1562 struct cached_object *co;
1563 struct pack_entry e;
1564 int rtype;
1565 const struct object_id *real = oid;
1566 int already_retried = 0;
1569 if (flags & OBJECT_INFO_LOOKUP_REPLACE)
1570 real = lookup_replace_object(r, oid);
1572 if (is_null_oid(real))
1573 return -1;
1575 if (!oi)
1576 oi = &blank_oi;
1578 co = find_cached_object(real);
1579 if (co) {
1580 if (oi->typep)
1581 *(oi->typep) = co->type;
1582 if (oi->sizep)
1583 *(oi->sizep) = co->size;
1584 if (oi->disk_sizep)
1585 *(oi->disk_sizep) = 0;
1586 if (oi->delta_base_oid)
1587 oidclr(oi->delta_base_oid);
1588 if (oi->type_name)
1589 strbuf_addstr(oi->type_name, type_name(co->type));
1590 if (oi->contentp)
1591 *oi->contentp = xmemdupz(co->buf, co->size);
1592 oi->whence = OI_CACHED;
1593 return 0;
1596 while (1) {
1597 if (find_pack_entry(r, real, &e))
1598 break;
1600 /* Most likely it's a loose object. */
1601 if (!loose_object_info(r, real, oi, flags))
1602 return 0;
1604 /* Not a loose object; someone else may have just packed it. */
1605 if (!(flags & OBJECT_INFO_QUICK)) {
1606 reprepare_packed_git(r);
1607 if (find_pack_entry(r, real, &e))
1608 break;
1612 * If r is the_repository, this might be an attempt at
1613 * accessing a submodule object as if it were in the_repository
1614 * (having called add_submodule_odb() on that submodule's ODB).
1615 * If any such ODBs exist, register them and try again.
1617 if (r == the_repository &&
1618 register_all_submodule_odb_as_alternates())
1619 /* We added some alternates; retry */
1620 continue;
1622 /* Check if it is a missing object */
1623 if (fetch_if_missing && repo_has_promisor_remote(r) &&
1624 !already_retried &&
1625 !(flags & OBJECT_INFO_SKIP_FETCH_OBJECT)) {
1626 promisor_remote_get_direct(r, real, 1);
1627 already_retried = 1;
1628 continue;
1631 if (flags & OBJECT_INFO_DIE_IF_CORRUPT) {
1632 const struct packed_git *p;
1633 if ((flags & OBJECT_INFO_LOOKUP_REPLACE) && !oideq(real, oid))
1634 die(_("replacement %s not found for %s"),
1635 oid_to_hex(real), oid_to_hex(oid));
1636 if ((p = has_packed_and_bad(r, real)))
1637 die(_("packed object %s (stored in %s) is corrupt"),
1638 oid_to_hex(real), p->pack_name);
1640 return -1;
1643 if (oi == &blank_oi)
1645 * We know that the caller doesn't actually need the
1646 * information below, so return early.
1648 return 0;
1649 rtype = packed_object_info(r, e.p, e.offset, oi);
1650 if (rtype < 0) {
1651 mark_bad_packed_object(e.p, real);
1652 return do_oid_object_info_extended(r, real, oi, 0);
1653 } else if (oi->whence == OI_PACKED) {
1654 oi->u.packed.offset = e.offset;
1655 oi->u.packed.pack = e.p;
1656 oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1657 rtype == OBJ_OFS_DELTA);
1660 return 0;
1663 int oid_object_info_extended(struct repository *r, const struct object_id *oid,
1664 struct object_info *oi, unsigned flags)
1666 int ret;
1667 obj_read_lock();
1668 ret = do_oid_object_info_extended(r, oid, oi, flags);
1669 obj_read_unlock();
1670 return ret;
1674 /* returns enum object_type or negative */
1675 int oid_object_info(struct repository *r,
1676 const struct object_id *oid,
1677 unsigned long *sizep)
1679 enum object_type type;
1680 struct object_info oi = OBJECT_INFO_INIT;
1682 oi.typep = &type;
1683 oi.sizep = sizep;
1684 if (oid_object_info_extended(r, oid, &oi,
1685 OBJECT_INFO_LOOKUP_REPLACE) < 0)
1686 return -1;
1687 return type;
1690 int pretend_object_file(void *buf, unsigned long len, enum object_type type,
1691 struct object_id *oid)
1693 struct cached_object *co;
1695 hash_object_file(the_hash_algo, buf, len, type, oid);
1696 if (repo_has_object_file_with_flags(the_repository, oid, OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT) ||
1697 find_cached_object(oid))
1698 return 0;
1699 ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
1700 co = &cached_objects[cached_object_nr++];
1701 co->size = len;
1702 co->type = type;
1703 co->buf = xmalloc(len);
1704 memcpy(co->buf, buf, len);
1705 oidcpy(&co->oid, oid);
1706 return 0;
1710 * This function dies on corrupt objects; the callers who want to
1711 * deal with them should arrange to call oid_object_info_extended() and give
1712 * error messages themselves.
1714 void *repo_read_object_file(struct repository *r,
1715 const struct object_id *oid,
1716 enum object_type *type,
1717 unsigned long *size)
1719 struct object_info oi = OBJECT_INFO_INIT;
1720 unsigned flags = OBJECT_INFO_DIE_IF_CORRUPT | OBJECT_INFO_LOOKUP_REPLACE;
1721 void *data;
1723 oi.typep = type;
1724 oi.sizep = size;
1725 oi.contentp = &data;
1726 if (oid_object_info_extended(r, oid, &oi, flags))
1727 return NULL;
1729 return data;
1732 void *read_object_with_reference(struct repository *r,
1733 const struct object_id *oid,
1734 enum object_type required_type,
1735 unsigned long *size,
1736 struct object_id *actual_oid_return)
1738 enum object_type type;
1739 void *buffer;
1740 unsigned long isize;
1741 struct object_id actual_oid;
1743 oidcpy(&actual_oid, oid);
1744 while (1) {
1745 int ref_length = -1;
1746 const char *ref_type = NULL;
1748 buffer = repo_read_object_file(r, &actual_oid, &type, &isize);
1749 if (!buffer)
1750 return NULL;
1751 if (type == required_type) {
1752 *size = isize;
1753 if (actual_oid_return)
1754 oidcpy(actual_oid_return, &actual_oid);
1755 return buffer;
1757 /* Handle references */
1758 else if (type == OBJ_COMMIT)
1759 ref_type = "tree ";
1760 else if (type == OBJ_TAG)
1761 ref_type = "object ";
1762 else {
1763 free(buffer);
1764 return NULL;
1766 ref_length = strlen(ref_type);
1768 if (ref_length + the_hash_algo->hexsz > isize ||
1769 memcmp(buffer, ref_type, ref_length) ||
1770 get_oid_hex((char *) buffer + ref_length, &actual_oid)) {
1771 free(buffer);
1772 return NULL;
1774 free(buffer);
1775 /* Now we have the ID of the referred-to object in
1776 * actual_oid. Check again. */
1780 static void hash_object_body(const struct git_hash_algo *algo, git_hash_ctx *c,
1781 const void *buf, unsigned long len,
1782 struct object_id *oid,
1783 char *hdr, int *hdrlen)
1785 algo->init_fn(c);
1786 algo->update_fn(c, hdr, *hdrlen);
1787 algo->update_fn(c, buf, len);
1788 algo->final_oid_fn(oid, c);
1791 static void write_object_file_prepare(const struct git_hash_algo *algo,
1792 const void *buf, unsigned long len,
1793 enum object_type type, struct object_id *oid,
1794 char *hdr, int *hdrlen)
1796 git_hash_ctx c;
1798 /* Generate the header */
1799 *hdrlen = format_object_header(hdr, *hdrlen, type, len);
1801 /* Sha1.. */
1802 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1805 static void write_object_file_prepare_literally(const struct git_hash_algo *algo,
1806 const void *buf, unsigned long len,
1807 const char *type, struct object_id *oid,
1808 char *hdr, int *hdrlen)
1810 git_hash_ctx c;
1812 *hdrlen = format_object_header_literally(hdr, *hdrlen, type, len);
1813 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1817 * Move the just written object into its final resting place.
1819 int finalize_object_file(const char *tmpfile, const char *filename)
1821 int ret = 0;
1823 if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
1824 goto try_rename;
1825 else if (link(tmpfile, filename))
1826 ret = errno;
1829 * Coda hack - coda doesn't like cross-directory links,
1830 * so we fall back to a rename, which will mean that it
1831 * won't be able to check collisions, but that's not a
1832 * big deal.
1834 * The same holds for FAT formatted media.
1836 * When this succeeds, we just return. We have nothing
1837 * left to unlink.
1839 if (ret && ret != EEXIST) {
1840 try_rename:
1841 if (!rename(tmpfile, filename))
1842 goto out;
1843 ret = errno;
1845 unlink_or_warn(tmpfile);
1846 if (ret) {
1847 if (ret != EEXIST) {
1848 return error_errno(_("unable to write file %s"), filename);
1850 /* FIXME!!! Collision check here ? */
1853 out:
1854 if (adjust_shared_perm(filename))
1855 return error(_("unable to set permission to '%s'"), filename);
1856 return 0;
1859 static void hash_object_file_literally(const struct git_hash_algo *algo,
1860 const void *buf, unsigned long len,
1861 const char *type, struct object_id *oid)
1863 char hdr[MAX_HEADER_LEN];
1864 int hdrlen = sizeof(hdr);
1866 write_object_file_prepare_literally(algo, buf, len, type, oid, hdr, &hdrlen);
1869 void hash_object_file(const struct git_hash_algo *algo, const void *buf,
1870 unsigned long len, enum object_type type,
1871 struct object_id *oid)
1873 hash_object_file_literally(algo, buf, len, type_name(type), oid);
1876 /* Finalize a file on disk, and close it. */
1877 static void close_loose_object(int fd, const char *filename)
1879 if (the_repository->objects->odb->will_destroy)
1880 goto out;
1882 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
1883 fsync_loose_object_bulk_checkin(fd, filename);
1884 else if (fsync_object_files > 0)
1885 fsync_or_die(fd, filename);
1886 else
1887 fsync_component_or_die(FSYNC_COMPONENT_LOOSE_OBJECT, fd,
1888 filename);
1890 out:
1891 if (close(fd) != 0)
1892 die_errno(_("error when closing loose object file"));
1895 /* Size of directory component, including the ending '/' */
1896 static inline int directory_size(const char *filename)
1898 const char *s = strrchr(filename, '/');
1899 if (!s)
1900 return 0;
1901 return s - filename + 1;
1905 * This creates a temporary file in the same directory as the final
1906 * 'filename'
1908 * We want to avoid cross-directory filename renames, because those
1909 * can have problems on various filesystems (FAT, NFS, Coda).
1911 static int create_tmpfile(struct strbuf *tmp, const char *filename)
1913 int fd, dirlen = directory_size(filename);
1915 strbuf_reset(tmp);
1916 strbuf_add(tmp, filename, dirlen);
1917 strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1918 fd = git_mkstemp_mode(tmp->buf, 0444);
1919 if (fd < 0 && dirlen && errno == ENOENT) {
1921 * Make sure the directory exists; note that the contents
1922 * of the buffer are undefined after mkstemp returns an
1923 * error, so we have to rewrite the whole buffer from
1924 * scratch.
1926 strbuf_reset(tmp);
1927 strbuf_add(tmp, filename, dirlen - 1);
1928 if (mkdir(tmp->buf, 0777) && errno != EEXIST)
1929 return -1;
1930 if (adjust_shared_perm(tmp->buf))
1931 return -1;
1933 /* Try again */
1934 strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1935 fd = git_mkstemp_mode(tmp->buf, 0444);
1937 return fd;
1941 * Common steps for loose object writers to start writing loose
1942 * objects:
1944 * - Create tmpfile for the loose object.
1945 * - Setup zlib stream for compression.
1946 * - Start to feed header to zlib stream.
1948 * Returns a "fd", which should later be provided to
1949 * end_loose_object_common().
1951 static int start_loose_object_common(struct strbuf *tmp_file,
1952 const char *filename, unsigned flags,
1953 git_zstream *stream,
1954 unsigned char *buf, size_t buflen,
1955 git_hash_ctx *c,
1956 char *hdr, int hdrlen)
1958 int fd;
1960 fd = create_tmpfile(tmp_file, filename);
1961 if (fd < 0) {
1962 if (flags & HASH_SILENT)
1963 return -1;
1964 else if (errno == EACCES)
1965 return error(_("insufficient permission for adding "
1966 "an object to repository database %s"),
1967 get_object_directory());
1968 else
1969 return error_errno(
1970 _("unable to create temporary file"));
1973 /* Setup zlib stream for compression */
1974 git_deflate_init(stream, zlib_compression_level);
1975 stream->next_out = buf;
1976 stream->avail_out = buflen;
1977 the_hash_algo->init_fn(c);
1979 /* Start to feed header to zlib stream */
1980 stream->next_in = (unsigned char *)hdr;
1981 stream->avail_in = hdrlen;
1982 while (git_deflate(stream, 0) == Z_OK)
1983 ; /* nothing */
1984 the_hash_algo->update_fn(c, hdr, hdrlen);
1986 return fd;
1990 * Common steps for the inner git_deflate() loop for writing loose
1991 * objects. Returns what git_deflate() returns.
1993 static int write_loose_object_common(git_hash_ctx *c,
1994 git_zstream *stream, const int flush,
1995 unsigned char *in0, const int fd,
1996 unsigned char *compressed,
1997 const size_t compressed_len)
1999 int ret;
2001 ret = git_deflate(stream, flush ? Z_FINISH : 0);
2002 the_hash_algo->update_fn(c, in0, stream->next_in - in0);
2003 if (write_in_full(fd, compressed, stream->next_out - compressed) < 0)
2004 die_errno(_("unable to write loose object file"));
2005 stream->next_out = compressed;
2006 stream->avail_out = compressed_len;
2008 return ret;
2012 * Common steps for loose object writers to end writing loose objects:
2014 * - End the compression of zlib stream.
2015 * - Get the calculated oid to "oid".
2017 static int end_loose_object_common(git_hash_ctx *c, git_zstream *stream,
2018 struct object_id *oid)
2020 int ret;
2022 ret = git_deflate_end_gently(stream);
2023 if (ret != Z_OK)
2024 return ret;
2025 the_hash_algo->final_oid_fn(oid, c);
2027 return Z_OK;
2030 static int write_loose_object(const struct object_id *oid, char *hdr,
2031 int hdrlen, const void *buf, unsigned long len,
2032 time_t mtime, unsigned flags)
2034 int fd, ret;
2035 unsigned char compressed[4096];
2036 git_zstream stream;
2037 git_hash_ctx c;
2038 struct object_id parano_oid;
2039 static struct strbuf tmp_file = STRBUF_INIT;
2040 static struct strbuf filename = STRBUF_INIT;
2042 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2043 prepare_loose_object_bulk_checkin();
2045 loose_object_path(the_repository, &filename, oid);
2047 fd = start_loose_object_common(&tmp_file, filename.buf, flags,
2048 &stream, compressed, sizeof(compressed),
2049 &c, hdr, hdrlen);
2050 if (fd < 0)
2051 return -1;
2053 /* Then the data itself.. */
2054 stream.next_in = (void *)buf;
2055 stream.avail_in = len;
2056 do {
2057 unsigned char *in0 = stream.next_in;
2059 ret = write_loose_object_common(&c, &stream, 1, in0, fd,
2060 compressed, sizeof(compressed));
2061 } while (ret == Z_OK);
2063 if (ret != Z_STREAM_END)
2064 die(_("unable to deflate new object %s (%d)"), oid_to_hex(oid),
2065 ret);
2066 ret = end_loose_object_common(&c, &stream, &parano_oid);
2067 if (ret != Z_OK)
2068 die(_("deflateEnd on object %s failed (%d)"), oid_to_hex(oid),
2069 ret);
2070 if (!oideq(oid, &parano_oid))
2071 die(_("confused by unstable object source data for %s"),
2072 oid_to_hex(oid));
2074 close_loose_object(fd, tmp_file.buf);
2076 if (mtime) {
2077 struct utimbuf utb;
2078 utb.actime = mtime;
2079 utb.modtime = mtime;
2080 if (utime(tmp_file.buf, &utb) < 0 &&
2081 !(flags & HASH_SILENT))
2082 warning_errno(_("failed utime() on %s"), tmp_file.buf);
2085 return finalize_object_file(tmp_file.buf, filename.buf);
2088 static int freshen_loose_object(const struct object_id *oid)
2090 return check_and_freshen(oid, 1);
2093 static int freshen_packed_object(const struct object_id *oid)
2095 struct pack_entry e;
2096 if (!find_pack_entry(the_repository, oid, &e))
2097 return 0;
2098 if (e.p->is_cruft)
2099 return 0;
2100 if (e.p->freshened)
2101 return 1;
2102 if (!freshen_file(e.p->pack_name))
2103 return 0;
2104 e.p->freshened = 1;
2105 return 1;
2108 int stream_loose_object(struct input_stream *in_stream, size_t len,
2109 struct object_id *oid)
2111 int fd, ret, err = 0, flush = 0;
2112 unsigned char compressed[4096];
2113 git_zstream stream;
2114 git_hash_ctx c;
2115 struct strbuf tmp_file = STRBUF_INIT;
2116 struct strbuf filename = STRBUF_INIT;
2117 int dirlen;
2118 char hdr[MAX_HEADER_LEN];
2119 int hdrlen;
2121 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2122 prepare_loose_object_bulk_checkin();
2124 /* Since oid is not determined, save tmp file to odb path. */
2125 strbuf_addf(&filename, "%s/", get_object_directory());
2126 hdrlen = format_object_header(hdr, sizeof(hdr), OBJ_BLOB, len);
2129 * Common steps for write_loose_object and stream_loose_object to
2130 * start writing loose objects:
2132 * - Create tmpfile for the loose object.
2133 * - Setup zlib stream for compression.
2134 * - Start to feed header to zlib stream.
2136 fd = start_loose_object_common(&tmp_file, filename.buf, 0,
2137 &stream, compressed, sizeof(compressed),
2138 &c, hdr, hdrlen);
2139 if (fd < 0) {
2140 err = -1;
2141 goto cleanup;
2144 /* Then the data itself.. */
2145 do {
2146 unsigned char *in0 = stream.next_in;
2148 if (!stream.avail_in && !in_stream->is_finished) {
2149 const void *in = in_stream->read(in_stream, &stream.avail_in);
2150 stream.next_in = (void *)in;
2151 in0 = (unsigned char *)in;
2152 /* All data has been read. */
2153 if (in_stream->is_finished)
2154 flush = 1;
2156 ret = write_loose_object_common(&c, &stream, flush, in0, fd,
2157 compressed, sizeof(compressed));
2159 * Unlike write_loose_object(), we do not have the entire
2160 * buffer. If we get Z_BUF_ERROR due to too few input bytes,
2161 * then we'll replenish them in the next input_stream->read()
2162 * call when we loop.
2164 } while (ret == Z_OK || ret == Z_BUF_ERROR);
2166 if (stream.total_in != len + hdrlen)
2167 die(_("write stream object %ld != %"PRIuMAX), stream.total_in,
2168 (uintmax_t)len + hdrlen);
2171 * Common steps for write_loose_object and stream_loose_object to
2172 * end writing loose oject:
2174 * - End the compression of zlib stream.
2175 * - Get the calculated oid.
2177 if (ret != Z_STREAM_END)
2178 die(_("unable to stream deflate new object (%d)"), ret);
2179 ret = end_loose_object_common(&c, &stream, oid);
2180 if (ret != Z_OK)
2181 die(_("deflateEnd on stream object failed (%d)"), ret);
2182 close_loose_object(fd, tmp_file.buf);
2184 if (freshen_packed_object(oid) || freshen_loose_object(oid)) {
2185 unlink_or_warn(tmp_file.buf);
2186 goto cleanup;
2189 loose_object_path(the_repository, &filename, oid);
2191 /* We finally know the object path, and create the missing dir. */
2192 dirlen = directory_size(filename.buf);
2193 if (dirlen) {
2194 struct strbuf dir = STRBUF_INIT;
2195 strbuf_add(&dir, filename.buf, dirlen);
2197 if (mkdir_in_gitdir(dir.buf) && errno != EEXIST) {
2198 err = error_errno(_("unable to create directory %s"), dir.buf);
2199 strbuf_release(&dir);
2200 goto cleanup;
2202 strbuf_release(&dir);
2205 err = finalize_object_file(tmp_file.buf, filename.buf);
2206 cleanup:
2207 strbuf_release(&tmp_file);
2208 strbuf_release(&filename);
2209 return err;
2212 int write_object_file_flags(const void *buf, unsigned long len,
2213 enum object_type type, struct object_id *oid,
2214 unsigned flags)
2216 char hdr[MAX_HEADER_LEN];
2217 int hdrlen = sizeof(hdr);
2219 /* Normally if we have it in the pack then we do not bother writing
2220 * it out into .git/objects/??/?{38} file.
2222 write_object_file_prepare(the_hash_algo, buf, len, type, oid, hdr,
2223 &hdrlen);
2224 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2225 return 0;
2226 return write_loose_object(oid, hdr, hdrlen, buf, len, 0, flags);
2229 int write_object_file_literally(const void *buf, unsigned long len,
2230 const char *type, struct object_id *oid,
2231 unsigned flags)
2233 char *header;
2234 int hdrlen, status = 0;
2236 /* type string, SP, %lu of the length plus NUL must fit this */
2237 hdrlen = strlen(type) + MAX_HEADER_LEN;
2238 header = xmalloc(hdrlen);
2239 write_object_file_prepare_literally(the_hash_algo, buf, len, type,
2240 oid, header, &hdrlen);
2242 if (!(flags & HASH_WRITE_OBJECT))
2243 goto cleanup;
2244 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2245 goto cleanup;
2246 status = write_loose_object(oid, header, hdrlen, buf, len, 0, 0);
2248 cleanup:
2249 free(header);
2250 return status;
2253 int force_object_loose(const struct object_id *oid, time_t mtime)
2255 void *buf;
2256 unsigned long len;
2257 struct object_info oi = OBJECT_INFO_INIT;
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 oi.typep = &type;
2266 oi.sizep = &len;
2267 oi.contentp = &buf;
2268 if (oid_object_info_extended(the_repository, oid, &oi, 0))
2269 return error(_("cannot read object for %s"), oid_to_hex(oid));
2270 hdrlen = format_object_header(hdr, sizeof(hdr), type, len);
2271 ret = write_loose_object(oid, hdr, hdrlen, buf, len, mtime, 0);
2272 free(buf);
2274 return ret;
2277 int has_object(struct repository *r, const struct object_id *oid,
2278 unsigned flags)
2280 int quick = !(flags & HAS_OBJECT_RECHECK_PACKED);
2281 unsigned object_info_flags = OBJECT_INFO_SKIP_FETCH_OBJECT |
2282 (quick ? OBJECT_INFO_QUICK : 0);
2284 if (!startup_info->have_repository)
2285 return 0;
2286 return oid_object_info_extended(r, oid, NULL, object_info_flags) >= 0;
2289 int repo_has_object_file_with_flags(struct repository *r,
2290 const struct object_id *oid, int flags)
2292 if (!startup_info->have_repository)
2293 return 0;
2294 return oid_object_info_extended(r, oid, NULL, flags) >= 0;
2297 int repo_has_object_file(struct repository *r,
2298 const struct object_id *oid)
2300 return repo_has_object_file_with_flags(r, oid, 0);
2304 * We can't use the normal fsck_error_function() for index_mem(),
2305 * because we don't yet have a valid oid for it to report. Instead,
2306 * report the minimal fsck error here, and rely on the caller to
2307 * give more context.
2309 static int hash_format_check_report(struct fsck_options *opts UNUSED,
2310 const struct object_id *oid UNUSED,
2311 enum object_type object_type UNUSED,
2312 enum fsck_msg_type msg_type UNUSED,
2313 enum fsck_msg_id msg_id UNUSED,
2314 const char *message)
2316 error(_("object fails fsck: %s"), message);
2317 return 1;
2320 static int index_mem(struct index_state *istate,
2321 struct object_id *oid, void *buf, size_t size,
2322 enum object_type type,
2323 const char *path, unsigned flags)
2325 int ret = 0;
2326 int re_allocated = 0;
2327 int write_object = flags & HASH_WRITE_OBJECT;
2329 if (!type)
2330 type = OBJ_BLOB;
2333 * Convert blobs to git internal format
2335 if ((type == OBJ_BLOB) && path) {
2336 struct strbuf nbuf = STRBUF_INIT;
2337 if (convert_to_git(istate, path, buf, size, &nbuf,
2338 get_conv_flags(flags))) {
2339 buf = strbuf_detach(&nbuf, &size);
2340 re_allocated = 1;
2343 if (flags & HASH_FORMAT_CHECK) {
2344 struct fsck_options opts = FSCK_OPTIONS_DEFAULT;
2346 opts.strict = 1;
2347 opts.error_func = hash_format_check_report;
2348 if (fsck_buffer(null_oid(), type, buf, size, &opts))
2349 die(_("refusing to create malformed object"));
2350 fsck_finish(&opts);
2353 if (write_object)
2354 ret = write_object_file(buf, size, type, oid);
2355 else
2356 hash_object_file(the_hash_algo, buf, size, type, oid);
2357 if (re_allocated)
2358 free(buf);
2359 return ret;
2362 static int index_stream_convert_blob(struct index_state *istate,
2363 struct object_id *oid,
2364 int fd,
2365 const char *path,
2366 unsigned flags)
2368 int ret = 0;
2369 const int write_object = flags & HASH_WRITE_OBJECT;
2370 struct strbuf sbuf = STRBUF_INIT;
2372 assert(path);
2373 assert(would_convert_to_git_filter_fd(istate, path));
2375 convert_to_git_filter_fd(istate, path, fd, &sbuf,
2376 get_conv_flags(flags));
2378 if (write_object)
2379 ret = write_object_file(sbuf.buf, sbuf.len, OBJ_BLOB,
2380 oid);
2381 else
2382 hash_object_file(the_hash_algo, sbuf.buf, sbuf.len, OBJ_BLOB,
2383 oid);
2384 strbuf_release(&sbuf);
2385 return ret;
2388 static int index_pipe(struct index_state *istate, struct object_id *oid,
2389 int fd, enum object_type type,
2390 const char *path, unsigned flags)
2392 struct strbuf sbuf = STRBUF_INIT;
2393 int ret;
2395 if (strbuf_read(&sbuf, fd, 4096) >= 0)
2396 ret = index_mem(istate, oid, sbuf.buf, sbuf.len, type, path, flags);
2397 else
2398 ret = -1;
2399 strbuf_release(&sbuf);
2400 return ret;
2403 #define SMALL_FILE_SIZE (32*1024)
2405 static int index_core(struct index_state *istate,
2406 struct object_id *oid, int fd, size_t size,
2407 enum object_type type, const char *path,
2408 unsigned flags)
2410 int ret;
2412 if (!size) {
2413 ret = index_mem(istate, oid, "", size, type, path, flags);
2414 } else if (size <= SMALL_FILE_SIZE) {
2415 char *buf = xmalloc(size);
2416 ssize_t read_result = read_in_full(fd, buf, size);
2417 if (read_result < 0)
2418 ret = error_errno(_("read error while indexing %s"),
2419 path ? path : "<unknown>");
2420 else if (read_result != size)
2421 ret = error(_("short read while indexing %s"),
2422 path ? path : "<unknown>");
2423 else
2424 ret = index_mem(istate, oid, buf, size, type, path, flags);
2425 free(buf);
2426 } else {
2427 void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
2428 ret = index_mem(istate, oid, buf, size, type, path, flags);
2429 munmap(buf, size);
2431 return ret;
2435 * This creates one packfile per large blob unless bulk-checkin
2436 * machinery is "plugged".
2438 * This also bypasses the usual "convert-to-git" dance, and that is on
2439 * purpose. We could write a streaming version of the converting
2440 * functions and insert that before feeding the data to fast-import
2441 * (or equivalent in-core API described above). However, that is
2442 * somewhat complicated, as we do not know the size of the filter
2443 * result, which we need to know beforehand when writing a git object.
2444 * Since the primary motivation for trying to stream from the working
2445 * tree file and to avoid mmaping it in core is to deal with large
2446 * binary blobs, they generally do not want to get any conversion, and
2447 * callers should avoid this code path when filters are requested.
2449 static int index_blob_stream(struct object_id *oid, int fd, size_t size,
2450 const char *path,
2451 unsigned flags)
2453 return index_blob_bulk_checkin(oid, fd, size, path, flags);
2456 int index_fd(struct index_state *istate, struct object_id *oid,
2457 int fd, struct stat *st,
2458 enum object_type type, const char *path, unsigned flags)
2460 int ret;
2463 * Call xsize_t() only when needed to avoid potentially unnecessary
2464 * die() for large files.
2466 if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(istate, path))
2467 ret = index_stream_convert_blob(istate, oid, fd, path, flags);
2468 else if (!S_ISREG(st->st_mode))
2469 ret = index_pipe(istate, oid, fd, type, path, flags);
2470 else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
2471 (path && would_convert_to_git(istate, path)))
2472 ret = index_core(istate, oid, fd, xsize_t(st->st_size),
2473 type, path, flags);
2474 else
2475 ret = index_blob_stream(oid, fd, xsize_t(st->st_size), path,
2476 flags);
2477 close(fd);
2478 return ret;
2481 int index_path(struct index_state *istate, struct object_id *oid,
2482 const char *path, struct stat *st, unsigned flags)
2484 int fd;
2485 struct strbuf sb = STRBUF_INIT;
2486 int rc = 0;
2488 switch (st->st_mode & S_IFMT) {
2489 case S_IFREG:
2490 fd = open(path, O_RDONLY);
2491 if (fd < 0)
2492 return error_errno("open(\"%s\")", path);
2493 if (index_fd(istate, oid, fd, st, OBJ_BLOB, path, flags) < 0)
2494 return error(_("%s: failed to insert into database"),
2495 path);
2496 break;
2497 case S_IFLNK:
2498 if (strbuf_readlink(&sb, path, st->st_size))
2499 return error_errno("readlink(\"%s\")", path);
2500 if (!(flags & HASH_WRITE_OBJECT))
2501 hash_object_file(the_hash_algo, sb.buf, sb.len,
2502 OBJ_BLOB, oid);
2503 else if (write_object_file(sb.buf, sb.len, OBJ_BLOB, oid))
2504 rc = error(_("%s: failed to insert into database"), path);
2505 strbuf_release(&sb);
2506 break;
2507 case S_IFDIR:
2508 return resolve_gitlink_ref(path, "HEAD", oid);
2509 default:
2510 return error(_("%s: unsupported file type"), path);
2512 return rc;
2515 int read_pack_header(int fd, struct pack_header *header)
2517 if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
2518 /* "eof before pack header was fully read" */
2519 return PH_ERROR_EOF;
2521 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2522 /* "protocol error (pack signature mismatch detected)" */
2523 return PH_ERROR_PACK_SIGNATURE;
2524 if (!pack_version_ok(header->hdr_version))
2525 /* "protocol error (pack version unsupported)" */
2526 return PH_ERROR_PROTOCOL;
2527 return 0;
2530 void assert_oid_type(const struct object_id *oid, enum object_type expect)
2532 enum object_type type = oid_object_info(the_repository, oid, NULL);
2533 if (type < 0)
2534 die(_("%s is not a valid object"), oid_to_hex(oid));
2535 if (type != expect)
2536 die(_("%s is not a valid '%s' object"), oid_to_hex(oid),
2537 type_name(expect));
2540 int for_each_file_in_obj_subdir(unsigned int subdir_nr,
2541 struct strbuf *path,
2542 each_loose_object_fn obj_cb,
2543 each_loose_cruft_fn cruft_cb,
2544 each_loose_subdir_fn subdir_cb,
2545 void *data)
2547 size_t origlen, baselen;
2548 DIR *dir;
2549 struct dirent *de;
2550 int r = 0;
2551 struct object_id oid;
2553 if (subdir_nr > 0xff)
2554 BUG("invalid loose object subdirectory: %x", subdir_nr);
2556 origlen = path->len;
2557 strbuf_complete(path, '/');
2558 strbuf_addf(path, "%02x", subdir_nr);
2560 dir = opendir(path->buf);
2561 if (!dir) {
2562 if (errno != ENOENT)
2563 r = error_errno(_("unable to open %s"), path->buf);
2564 strbuf_setlen(path, origlen);
2565 return r;
2568 oid.hash[0] = subdir_nr;
2569 strbuf_addch(path, '/');
2570 baselen = path->len;
2572 while ((de = readdir_skip_dot_and_dotdot(dir))) {
2573 size_t namelen;
2575 namelen = strlen(de->d_name);
2576 strbuf_setlen(path, baselen);
2577 strbuf_add(path, de->d_name, namelen);
2578 if (namelen == the_hash_algo->hexsz - 2 &&
2579 !hex_to_bytes(oid.hash + 1, de->d_name,
2580 the_hash_algo->rawsz - 1)) {
2581 oid_set_algo(&oid, the_hash_algo);
2582 if (obj_cb) {
2583 r = obj_cb(&oid, path->buf, data);
2584 if (r)
2585 break;
2587 continue;
2590 if (cruft_cb) {
2591 r = cruft_cb(de->d_name, path->buf, data);
2592 if (r)
2593 break;
2596 closedir(dir);
2598 strbuf_setlen(path, baselen - 1);
2599 if (!r && subdir_cb)
2600 r = subdir_cb(subdir_nr, path->buf, data);
2602 strbuf_setlen(path, origlen);
2604 return r;
2607 int for_each_loose_file_in_objdir_buf(struct strbuf *path,
2608 each_loose_object_fn obj_cb,
2609 each_loose_cruft_fn cruft_cb,
2610 each_loose_subdir_fn subdir_cb,
2611 void *data)
2613 int r = 0;
2614 int i;
2616 for (i = 0; i < 256; i++) {
2617 r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
2618 subdir_cb, data);
2619 if (r)
2620 break;
2623 return r;
2626 int for_each_loose_file_in_objdir(const char *path,
2627 each_loose_object_fn obj_cb,
2628 each_loose_cruft_fn cruft_cb,
2629 each_loose_subdir_fn subdir_cb,
2630 void *data)
2632 struct strbuf buf = STRBUF_INIT;
2633 int r;
2635 strbuf_addstr(&buf, path);
2636 r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
2637 subdir_cb, data);
2638 strbuf_release(&buf);
2640 return r;
2643 int for_each_loose_object(each_loose_object_fn cb, void *data,
2644 enum for_each_object_flags flags)
2646 struct object_directory *odb;
2648 prepare_alt_odb(the_repository);
2649 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
2650 int r = for_each_loose_file_in_objdir(odb->path, cb, NULL,
2651 NULL, data);
2652 if (r)
2653 return r;
2655 if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2656 break;
2659 return 0;
2662 static int append_loose_object(const struct object_id *oid,
2663 const char *path UNUSED,
2664 void *data)
2666 oidtree_insert(data, oid);
2667 return 0;
2670 struct oidtree *odb_loose_cache(struct object_directory *odb,
2671 const struct object_id *oid)
2673 int subdir_nr = oid->hash[0];
2674 struct strbuf buf = STRBUF_INIT;
2675 size_t word_bits = bitsizeof(odb->loose_objects_subdir_seen[0]);
2676 size_t word_index = subdir_nr / word_bits;
2677 size_t mask = (size_t)1u << (subdir_nr % word_bits);
2678 uint32_t *bitmap;
2680 if (subdir_nr < 0 ||
2681 subdir_nr >= bitsizeof(odb->loose_objects_subdir_seen))
2682 BUG("subdir_nr out of range");
2684 bitmap = &odb->loose_objects_subdir_seen[word_index];
2685 if (*bitmap & mask)
2686 return odb->loose_objects_cache;
2687 if (!odb->loose_objects_cache) {
2688 ALLOC_ARRAY(odb->loose_objects_cache, 1);
2689 oidtree_init(odb->loose_objects_cache);
2691 strbuf_addstr(&buf, odb->path);
2692 for_each_file_in_obj_subdir(subdir_nr, &buf,
2693 append_loose_object,
2694 NULL, NULL,
2695 odb->loose_objects_cache);
2696 *bitmap |= mask;
2697 strbuf_release(&buf);
2698 return odb->loose_objects_cache;
2701 void odb_clear_loose_cache(struct object_directory *odb)
2703 oidtree_clear(odb->loose_objects_cache);
2704 FREE_AND_NULL(odb->loose_objects_cache);
2705 memset(&odb->loose_objects_subdir_seen, 0,
2706 sizeof(odb->loose_objects_subdir_seen));
2709 static int check_stream_oid(git_zstream *stream,
2710 const char *hdr,
2711 unsigned long size,
2712 const char *path,
2713 const struct object_id *expected_oid)
2715 git_hash_ctx c;
2716 struct object_id real_oid;
2717 unsigned char buf[4096];
2718 unsigned long total_read;
2719 int status = Z_OK;
2721 the_hash_algo->init_fn(&c);
2722 the_hash_algo->update_fn(&c, hdr, stream->total_out);
2725 * We already read some bytes into hdr, but the ones up to the NUL
2726 * do not count against the object's content size.
2728 total_read = stream->total_out - strlen(hdr) - 1;
2731 * This size comparison must be "<=" to read the final zlib packets;
2732 * see the comment in unpack_loose_rest for details.
2734 while (total_read <= size &&
2735 (status == Z_OK ||
2736 (status == Z_BUF_ERROR && !stream->avail_out))) {
2737 stream->next_out = buf;
2738 stream->avail_out = sizeof(buf);
2739 if (size - total_read < stream->avail_out)
2740 stream->avail_out = size - total_read;
2741 status = git_inflate(stream, Z_FINISH);
2742 the_hash_algo->update_fn(&c, buf, stream->next_out - buf);
2743 total_read += stream->next_out - buf;
2745 git_inflate_end(stream);
2747 if (status != Z_STREAM_END) {
2748 error(_("corrupt loose object '%s'"), oid_to_hex(expected_oid));
2749 return -1;
2751 if (stream->avail_in) {
2752 error(_("garbage at end of loose object '%s'"),
2753 oid_to_hex(expected_oid));
2754 return -1;
2757 the_hash_algo->final_oid_fn(&real_oid, &c);
2758 if (!oideq(expected_oid, &real_oid)) {
2759 error(_("hash mismatch for %s (expected %s)"), path,
2760 oid_to_hex(expected_oid));
2761 return -1;
2764 return 0;
2767 int read_loose_object(const char *path,
2768 const struct object_id *expected_oid,
2769 struct object_id *real_oid,
2770 void **contents,
2771 struct object_info *oi)
2773 int ret = -1;
2774 int fd;
2775 void *map = NULL;
2776 unsigned long mapsize;
2777 git_zstream stream;
2778 char hdr[MAX_HEADER_LEN];
2779 unsigned long *size = oi->sizep;
2781 fd = git_open(path);
2782 if (fd >= 0)
2783 map = map_fd(fd, path, &mapsize);
2784 if (!map) {
2785 error_errno(_("unable to mmap %s"), path);
2786 goto out;
2789 if (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
2790 NULL) != ULHR_OK) {
2791 error(_("unable to unpack header of %s"), path);
2792 goto out;
2795 if (parse_loose_header(hdr, oi) < 0) {
2796 error(_("unable to parse header of %s"), path);
2797 git_inflate_end(&stream);
2798 goto out;
2801 if (*oi->typep == OBJ_BLOB && *size > big_file_threshold) {
2802 if (check_stream_oid(&stream, hdr, *size, path, expected_oid) < 0)
2803 goto out;
2804 } else {
2805 *contents = unpack_loose_rest(&stream, hdr, *size, expected_oid);
2806 if (!*contents) {
2807 error(_("unable to unpack contents of %s"), path);
2808 git_inflate_end(&stream);
2809 goto out;
2811 hash_object_file_literally(the_repository->hash_algo,
2812 *contents, *size,
2813 oi->type_name->buf, real_oid);
2814 if (!oideq(expected_oid, real_oid))
2815 goto out;
2818 ret = 0; /* everything checks out */
2820 out:
2821 if (map)
2822 munmap(map, mapsize);
2823 return ret;