1/*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 *
6 * This handles basic git sha1 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 "sha1-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 "fetch-object.h"
34#include "object-store.h"
35
36/* The maximum size for an object header. */
37#define MAX_HEADER_LEN 32
38
39
40#define EMPTY_TREE_SHA1_BIN_LITERAL \
41 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60" \
42 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04"
43
44#define EMPTY_BLOB_SHA1_BIN_LITERAL \
45 "\xe6\x9d\xe2\x9b\xb2\xd1\xd6\x43\x4b\x8b" \
46 "\x29\xae\x77\x5a\xd8\xc2\xe4\x8c\x53\x91"
47
48const unsigned char null_sha1[GIT_MAX_RAWSZ];
49const struct object_id null_oid;
50static const struct object_id empty_tree_oid = {
51 EMPTY_TREE_SHA1_BIN_LITERAL
52};
53static const struct object_id empty_blob_oid = {
54 EMPTY_BLOB_SHA1_BIN_LITERAL
55};
56
57static void git_hash_sha1_init(git_hash_ctx *ctx)
58{
59 git_SHA1_Init(&ctx->sha1);
60}
61
62static void git_hash_sha1_update(git_hash_ctx *ctx, const void *data, size_t len)
63{
64 git_SHA1_Update(&ctx->sha1, data, len);
65}
66
67static void git_hash_sha1_final(unsigned char *hash, git_hash_ctx *ctx)
68{
69 git_SHA1_Final(hash, &ctx->sha1);
70}
71
72static void git_hash_unknown_init(git_hash_ctx *ctx)
73{
74 BUG("trying to init unknown hash");
75}
76
77static void git_hash_unknown_update(git_hash_ctx *ctx, const void *data, size_t len)
78{
79 BUG("trying to update unknown hash");
80}
81
82static void git_hash_unknown_final(unsigned char *hash, git_hash_ctx *ctx)
83{
84 BUG("trying to finalize unknown hash");
85}
86
87const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
88 {
89 NULL,
90 0x00000000,
91 0,
92 0,
93 git_hash_unknown_init,
94 git_hash_unknown_update,
95 git_hash_unknown_final,
96 NULL,
97 NULL,
98 },
99 {
100 "sha-1",
101 /* "sha1", big-endian */
102 0x73686131,
103 GIT_SHA1_RAWSZ,
104 GIT_SHA1_HEXSZ,
105 git_hash_sha1_init,
106 git_hash_sha1_update,
107 git_hash_sha1_final,
108 &empty_tree_oid,
109 &empty_blob_oid,
110 },
111};
112
113const char *empty_tree_oid_hex(void)
114{
115 static char buf[GIT_MAX_HEXSZ + 1];
116 return oid_to_hex_r(buf, the_hash_algo->empty_tree);
117}
118
119const char *empty_blob_oid_hex(void)
120{
121 static char buf[GIT_MAX_HEXSZ + 1];
122 return oid_to_hex_r(buf, the_hash_algo->empty_blob);
123}
124
125/*
126 * This is meant to hold a *small* number of objects that you would
127 * want read_sha1_file() to be able to return, but yet you do not want
128 * to write them into the object store (e.g. a browse-only
129 * application).
130 */
131static struct cached_object {
132 struct object_id oid;
133 enum object_type type;
134 void *buf;
135 unsigned long size;
136} *cached_objects;
137static int cached_object_nr, cached_object_alloc;
138
139static struct cached_object empty_tree = {
140 { EMPTY_TREE_SHA1_BIN_LITERAL },
141 OBJ_TREE,
142 "",
143 0
144};
145
146static struct cached_object *find_cached_object(const struct object_id *oid)
147{
148 int i;
149 struct cached_object *co = cached_objects;
150
151 for (i = 0; i < cached_object_nr; i++, co++) {
152 if (oideq(&co->oid, oid))
153 return co;
154 }
155 if (oideq(oid, the_hash_algo->empty_tree))
156 return &empty_tree;
157 return NULL;
158}
159
160
161static int get_conv_flags(unsigned flags)
162{
163 if (flags & HASH_RENORMALIZE)
164 return CONV_EOL_RENORMALIZE;
165 else if (flags & HASH_WRITE_OBJECT)
166 return global_conv_flags_eol | CONV_WRITE_OBJECT;
167 else
168 return 0;
169}
170
171
172int mkdir_in_gitdir(const char *path)
173{
174 if (mkdir(path, 0777)) {
175 int saved_errno = errno;
176 struct stat st;
177 struct strbuf sb = STRBUF_INIT;
178
179 if (errno != EEXIST)
180 return -1;
181 /*
182 * Are we looking at a path in a symlinked worktree
183 * whose original repository does not yet have it?
184 * e.g. .git/rr-cache pointing at its original
185 * repository in which the user hasn't performed any
186 * conflict resolution yet?
187 */
188 if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
189 strbuf_readlink(&sb, path, st.st_size) ||
190 !is_absolute_path(sb.buf) ||
191 mkdir(sb.buf, 0777)) {
192 strbuf_release(&sb);
193 errno = saved_errno;
194 return -1;
195 }
196 strbuf_release(&sb);
197 }
198 return adjust_shared_perm(path);
199}
200
201enum scld_error safe_create_leading_directories(char *path)
202{
203 char *next_component = path + offset_1st_component(path);
204 enum scld_error ret = SCLD_OK;
205
206 while (ret == SCLD_OK && next_component) {
207 struct stat st;
208 char *slash = next_component, slash_character;
209
210 while (*slash && !is_dir_sep(*slash))
211 slash++;
212
213 if (!*slash)
214 break;
215
216 next_component = slash + 1;
217 while (is_dir_sep(*next_component))
218 next_component++;
219 if (!*next_component)
220 break;
221
222 slash_character = *slash;
223 *slash = '\0';
224 if (!stat(path, &st)) {
225 /* path exists */
226 if (!S_ISDIR(st.st_mode)) {
227 errno = ENOTDIR;
228 ret = SCLD_EXISTS;
229 }
230 } else if (mkdir(path, 0777)) {
231 if (errno == EEXIST &&
232 !stat(path, &st) && S_ISDIR(st.st_mode))
233 ; /* somebody created it since we checked */
234 else if (errno == ENOENT)
235 /*
236 * Either mkdir() failed because
237 * somebody just pruned the containing
238 * directory, or stat() failed because
239 * the file that was in our way was
240 * just removed. Either way, inform
241 * the caller that it might be worth
242 * trying again:
243 */
244 ret = SCLD_VANISHED;
245 else
246 ret = SCLD_FAILED;
247 } else if (adjust_shared_perm(path)) {
248 ret = SCLD_PERMS;
249 }
250 *slash = slash_character;
251 }
252 return ret;
253}
254
255enum scld_error safe_create_leading_directories_const(const char *path)
256{
257 int save_errno;
258 /* path points to cache entries, so xstrdup before messing with it */
259 char *buf = xstrdup(path);
260 enum scld_error result = safe_create_leading_directories(buf);
261
262 save_errno = errno;
263 free(buf);
264 errno = save_errno;
265 return result;
266}
267
268int raceproof_create_file(const char *path, create_file_fn fn, void *cb)
269{
270 /*
271 * The number of times we will try to remove empty directories
272 * in the way of path. This is only 1 because if another
273 * process is racily creating directories that conflict with
274 * us, we don't want to fight against them.
275 */
276 int remove_directories_remaining = 1;
277
278 /*
279 * The number of times that we will try to create the
280 * directories containing path. We are willing to attempt this
281 * more than once, because another process could be trying to
282 * clean up empty directories at the same time as we are
283 * trying to create them.
284 */
285 int create_directories_remaining = 3;
286
287 /* A scratch copy of path, filled lazily if we need it: */
288 struct strbuf path_copy = STRBUF_INIT;
289
290 int ret, save_errno;
291
292 /* Sanity check: */
293 assert(*path);
294
295retry_fn:
296 ret = fn(path, cb);
297 save_errno = errno;
298 if (!ret)
299 goto out;
300
301 if (errno == EISDIR && remove_directories_remaining-- > 0) {
302 /*
303 * A directory is in the way. Maybe it is empty; try
304 * to remove it:
305 */
306 if (!path_copy.len)
307 strbuf_addstr(&path_copy, path);
308
309 if (!remove_dir_recursively(&path_copy, REMOVE_DIR_EMPTY_ONLY))
310 goto retry_fn;
311 } else if (errno == ENOENT && create_directories_remaining-- > 0) {
312 /*
313 * Maybe the containing directory didn't exist, or
314 * maybe it was just deleted by a process that is
315 * racing with us to clean up empty directories. Try
316 * to create it:
317 */
318 enum scld_error scld_result;
319
320 if (!path_copy.len)
321 strbuf_addstr(&path_copy, path);
322
323 do {
324 scld_result = safe_create_leading_directories(path_copy.buf);
325 if (scld_result == SCLD_OK)
326 goto retry_fn;
327 } while (scld_result == SCLD_VANISHED && create_directories_remaining-- > 0);
328 }
329
330out:
331 strbuf_release(&path_copy);
332 errno = save_errno;
333 return ret;
334}
335
336static void fill_sha1_path(struct strbuf *buf, const unsigned char *sha1)
337{
338 int i;
339 for (i = 0; i < the_hash_algo->rawsz; i++) {
340 static char hex[] = "0123456789abcdef";
341 unsigned int val = sha1[i];
342 strbuf_addch(buf, hex[val >> 4]);
343 strbuf_addch(buf, hex[val & 0xf]);
344 if (!i)
345 strbuf_addch(buf, '/');
346 }
347}
348
349void sha1_file_name(struct repository *r, struct strbuf *buf, const unsigned char *sha1)
350{
351 strbuf_addstr(buf, r->objects->objectdir);
352 strbuf_addch(buf, '/');
353 fill_sha1_path(buf, sha1);
354}
355
356struct strbuf *alt_scratch_buf(struct alternate_object_database *alt)
357{
358 strbuf_setlen(&alt->scratch, alt->base_len);
359 return &alt->scratch;
360}
361
362static const char *alt_sha1_path(struct alternate_object_database *alt,
363 const unsigned char *sha1)
364{
365 struct strbuf *buf = alt_scratch_buf(alt);
366 fill_sha1_path(buf, sha1);
367 return buf->buf;
368}
369
370/*
371 * Return non-zero iff the path is usable as an alternate object database.
372 */
373static int alt_odb_usable(struct raw_object_store *o,
374 struct strbuf *path,
375 const char *normalized_objdir)
376{
377 struct alternate_object_database *alt;
378
379 /* Detect cases where alternate disappeared */
380 if (!is_directory(path->buf)) {
381 error(_("object directory %s does not exist; "
382 "check .git/objects/info/alternates"),
383 path->buf);
384 return 0;
385 }
386
387 /*
388 * Prevent the common mistake of listing the same
389 * thing twice, or object directory itself.
390 */
391 for (alt = o->alt_odb_list; alt; alt = alt->next) {
392 if (!fspathcmp(path->buf, alt->path))
393 return 0;
394 }
395 if (!fspathcmp(path->buf, normalized_objdir))
396 return 0;
397
398 return 1;
399}
400
401/*
402 * Prepare alternate object database registry.
403 *
404 * The variable alt_odb_list points at the list of struct
405 * alternate_object_database. The elements on this list come from
406 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
407 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
408 * whose contents is similar to that environment variable but can be
409 * LF separated. Its base points at a statically allocated buffer that
410 * contains "/the/directory/corresponding/to/.git/objects/...", while
411 * its name points just after the slash at the end of ".git/objects/"
412 * in the example above, and has enough space to hold 40-byte hex
413 * SHA1, an extra slash for the first level indirection, and the
414 * terminating NUL.
415 */
416static void read_info_alternates(struct repository *r,
417 const char *relative_base,
418 int depth);
419static int link_alt_odb_entry(struct repository *r, const char *entry,
420 const char *relative_base, int depth, const char *normalized_objdir)
421{
422 struct alternate_object_database *ent;
423 struct strbuf pathbuf = STRBUF_INIT;
424
425 if (!is_absolute_path(entry) && relative_base) {
426 strbuf_realpath(&pathbuf, relative_base, 1);
427 strbuf_addch(&pathbuf, '/');
428 }
429 strbuf_addstr(&pathbuf, entry);
430
431 if (strbuf_normalize_path(&pathbuf) < 0 && relative_base) {
432 error(_("unable to normalize alternate object path: %s"),
433 pathbuf.buf);
434 strbuf_release(&pathbuf);
435 return -1;
436 }
437
438 /*
439 * The trailing slash after the directory name is given by
440 * this function at the end. Remove duplicates.
441 */
442 while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
443 strbuf_setlen(&pathbuf, pathbuf.len - 1);
444
445 if (!alt_odb_usable(r->objects, &pathbuf, normalized_objdir)) {
446 strbuf_release(&pathbuf);
447 return -1;
448 }
449
450 ent = alloc_alt_odb(pathbuf.buf);
451
452 /* add the alternate entry */
453 *r->objects->alt_odb_tail = ent;
454 r->objects->alt_odb_tail = &(ent->next);
455 ent->next = NULL;
456
457 /* recursively add alternates */
458 read_info_alternates(r, pathbuf.buf, depth + 1);
459
460 strbuf_release(&pathbuf);
461 return 0;
462}
463
464static const char *parse_alt_odb_entry(const char *string,
465 int sep,
466 struct strbuf *out)
467{
468 const char *end;
469
470 strbuf_reset(out);
471
472 if (*string == '#') {
473 /* comment; consume up to next separator */
474 end = strchrnul(string, sep);
475 } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
476 /*
477 * quoted path; unquote_c_style has copied the
478 * data for us and set "end". Broken quoting (e.g.,
479 * an entry that doesn't end with a quote) falls
480 * back to the unquoted case below.
481 */
482 } else {
483 /* normal, unquoted path */
484 end = strchrnul(string, sep);
485 strbuf_add(out, string, end - string);
486 }
487
488 if (*end)
489 end++;
490 return end;
491}
492
493static void link_alt_odb_entries(struct repository *r, const char *alt,
494 int sep, const char *relative_base, int depth)
495{
496 struct strbuf objdirbuf = STRBUF_INIT;
497 struct strbuf entry = STRBUF_INIT;
498
499 if (!alt || !*alt)
500 return;
501
502 if (depth > 5) {
503 error(_("%s: ignoring alternate object stores, nesting too deep"),
504 relative_base);
505 return;
506 }
507
508 strbuf_add_absolute_path(&objdirbuf, r->objects->objectdir);
509 if (strbuf_normalize_path(&objdirbuf) < 0)
510 die(_("unable to normalize object directory: %s"),
511 objdirbuf.buf);
512
513 while (*alt) {
514 alt = parse_alt_odb_entry(alt, sep, &entry);
515 if (!entry.len)
516 continue;
517 link_alt_odb_entry(r, entry.buf,
518 relative_base, depth, objdirbuf.buf);
519 }
520 strbuf_release(&entry);
521 strbuf_release(&objdirbuf);
522}
523
524static void read_info_alternates(struct repository *r,
525 const char *relative_base,
526 int depth)
527{
528 char *path;
529 struct strbuf buf = STRBUF_INIT;
530
531 path = xstrfmt("%s/info/alternates", relative_base);
532 if (strbuf_read_file(&buf, path, 1024) < 0) {
533 warn_on_fopen_errors(path);
534 free(path);
535 return;
536 }
537
538 link_alt_odb_entries(r, buf.buf, '\n', relative_base, depth);
539 strbuf_release(&buf);
540 free(path);
541}
542
543struct alternate_object_database *alloc_alt_odb(const char *dir)
544{
545 struct alternate_object_database *ent;
546
547 FLEX_ALLOC_STR(ent, path, dir);
548 strbuf_init(&ent->scratch, 0);
549 strbuf_addf(&ent->scratch, "%s/", dir);
550 ent->base_len = ent->scratch.len;
551
552 return ent;
553}
554
555void add_to_alternates_file(const char *reference)
556{
557 struct lock_file lock = LOCK_INIT;
558 char *alts = git_pathdup("objects/info/alternates");
559 FILE *in, *out;
560 int found = 0;
561
562 hold_lock_file_for_update(&lock, alts, LOCK_DIE_ON_ERROR);
563 out = fdopen_lock_file(&lock, "w");
564 if (!out)
565 die_errno(_("unable to fdopen alternates lockfile"));
566
567 in = fopen(alts, "r");
568 if (in) {
569 struct strbuf line = STRBUF_INIT;
570
571 while (strbuf_getline(&line, in) != EOF) {
572 if (!strcmp(reference, line.buf)) {
573 found = 1;
574 break;
575 }
576 fprintf_or_die(out, "%s\n", line.buf);
577 }
578
579 strbuf_release(&line);
580 fclose(in);
581 }
582 else if (errno != ENOENT)
583 die_errno(_("unable to read alternates file"));
584
585 if (found) {
586 rollback_lock_file(&lock);
587 } else {
588 fprintf_or_die(out, "%s\n", reference);
589 if (commit_lock_file(&lock))
590 die_errno(_("unable to move new alternates file into place"));
591 if (the_repository->objects->alt_odb_tail)
592 link_alt_odb_entries(the_repository, reference,
593 '\n', NULL, 0);
594 }
595 free(alts);
596}
597
598void add_to_alternates_memory(const char *reference)
599{
600 /*
601 * Make sure alternates are initialized, or else our entry may be
602 * overwritten when they are.
603 */
604 prepare_alt_odb(the_repository);
605
606 link_alt_odb_entries(the_repository, reference,
607 '\n', NULL, 0);
608}
609
610/*
611 * Compute the exact path an alternate is at and returns it. In case of
612 * error NULL is returned and the human readable error is added to `err`
613 * `path` may be relative and should point to $GIT_DIR.
614 * `err` must not be null.
615 */
616char *compute_alternate_path(const char *path, struct strbuf *err)
617{
618 char *ref_git = NULL;
619 const char *repo, *ref_git_s;
620 int seen_error = 0;
621
622 ref_git_s = real_path_if_valid(path);
623 if (!ref_git_s) {
624 seen_error = 1;
625 strbuf_addf(err, _("path '%s' does not exist"), path);
626 goto out;
627 } else
628 /*
629 * Beware: read_gitfile(), real_path() and mkpath()
630 * return static buffer
631 */
632 ref_git = xstrdup(ref_git_s);
633
634 repo = read_gitfile(ref_git);
635 if (!repo)
636 repo = read_gitfile(mkpath("%s/.git", ref_git));
637 if (repo) {
638 free(ref_git);
639 ref_git = xstrdup(repo);
640 }
641
642 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
643 char *ref_git_git = mkpathdup("%s/.git", ref_git);
644 free(ref_git);
645 ref_git = ref_git_git;
646 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
647 struct strbuf sb = STRBUF_INIT;
648 seen_error = 1;
649 if (get_common_dir(&sb, ref_git)) {
650 strbuf_addf(err,
651 _("reference repository '%s' as a linked "
652 "checkout is not supported yet."),
653 path);
654 goto out;
655 }
656
657 strbuf_addf(err, _("reference repository '%s' is not a "
658 "local repository."), path);
659 goto out;
660 }
661
662 if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
663 strbuf_addf(err, _("reference repository '%s' is shallow"),
664 path);
665 seen_error = 1;
666 goto out;
667 }
668
669 if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
670 strbuf_addf(err,
671 _("reference repository '%s' is grafted"),
672 path);
673 seen_error = 1;
674 goto out;
675 }
676
677out:
678 if (seen_error) {
679 FREE_AND_NULL(ref_git);
680 }
681
682 return ref_git;
683}
684
685int foreach_alt_odb(alt_odb_fn fn, void *cb)
686{
687 struct alternate_object_database *ent;
688 int r = 0;
689
690 prepare_alt_odb(the_repository);
691 for (ent = the_repository->objects->alt_odb_list; ent; ent = ent->next) {
692 r = fn(ent, cb);
693 if (r)
694 break;
695 }
696 return r;
697}
698
699void prepare_alt_odb(struct repository *r)
700{
701 if (r->objects->alt_odb_tail)
702 return;
703
704 r->objects->alt_odb_tail = &r->objects->alt_odb_list;
705 link_alt_odb_entries(r, r->objects->alternate_db, PATH_SEP, NULL, 0);
706
707 read_info_alternates(r, r->objects->objectdir, 0);
708}
709
710/* Returns 1 if we have successfully freshened the file, 0 otherwise. */
711static int freshen_file(const char *fn)
712{
713 struct utimbuf t;
714 t.actime = t.modtime = time(NULL);
715 return !utime(fn, &t);
716}
717
718/*
719 * All of the check_and_freshen functions return 1 if the file exists and was
720 * freshened (if freshening was requested), 0 otherwise. If they return
721 * 0, you should not assume that it is safe to skip a write of the object (it
722 * either does not exist on disk, or has a stale mtime and may be subject to
723 * pruning).
724 */
725int check_and_freshen_file(const char *fn, int freshen)
726{
727 if (access(fn, F_OK))
728 return 0;
729 if (freshen && !freshen_file(fn))
730 return 0;
731 return 1;
732}
733
734static int check_and_freshen_local(const struct object_id *oid, int freshen)
735{
736 static struct strbuf buf = STRBUF_INIT;
737
738 strbuf_reset(&buf);
739 sha1_file_name(the_repository, &buf, oid->hash);
740
741 return check_and_freshen_file(buf.buf, freshen);
742}
743
744static int check_and_freshen_nonlocal(const struct object_id *oid, int freshen)
745{
746 struct alternate_object_database *alt;
747 prepare_alt_odb(the_repository);
748 for (alt = the_repository->objects->alt_odb_list; alt; alt = alt->next) {
749 const char *path = alt_sha1_path(alt, oid->hash);
750 if (check_and_freshen_file(path, freshen))
751 return 1;
752 }
753 return 0;
754}
755
756static int check_and_freshen(const struct object_id *oid, int freshen)
757{
758 return check_and_freshen_local(oid, freshen) ||
759 check_and_freshen_nonlocal(oid, freshen);
760}
761
762int has_loose_object_nonlocal(const struct object_id *oid)
763{
764 return check_and_freshen_nonlocal(oid, 0);
765}
766
767static int has_loose_object(const struct object_id *oid)
768{
769 return check_and_freshen(oid, 0);
770}
771
772static void mmap_limit_check(size_t length)
773{
774 static size_t limit = 0;
775 if (!limit) {
776 limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
777 if (!limit)
778 limit = SIZE_MAX;
779 }
780 if (length > limit)
781 die(_("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX),
782 (uintmax_t)length, (uintmax_t)limit);
783}
784
785void *xmmap_gently(void *start, size_t length,
786 int prot, int flags, int fd, off_t offset)
787{
788 void *ret;
789
790 mmap_limit_check(length);
791 ret = mmap(start, length, prot, flags, fd, offset);
792 if (ret == MAP_FAILED) {
793 if (!length)
794 return NULL;
795 release_pack_memory(length);
796 ret = mmap(start, length, prot, flags, fd, offset);
797 }
798 return ret;
799}
800
801void *xmmap(void *start, size_t length,
802 int prot, int flags, int fd, off_t offset)
803{
804 void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
805 if (ret == MAP_FAILED)
806 die_errno(_("mmap failed"));
807 return ret;
808}
809
810/*
811 * With an in-core object data in "map", rehash it to make sure the
812 * object name actually matches "sha1" to detect object corruption.
813 * With "map" == NULL, try reading the object named with "sha1" using
814 * the streaming interface and rehash it to do the same.
815 */
816int check_object_signature(const struct object_id *oid, void *map,
817 unsigned long size, const char *type)
818{
819 struct object_id real_oid;
820 enum object_type obj_type;
821 struct git_istream *st;
822 git_hash_ctx c;
823 char hdr[MAX_HEADER_LEN];
824 int hdrlen;
825
826 if (map) {
827 hash_object_file(map, size, type, &real_oid);
828 return !oideq(oid, &real_oid) ? -1 : 0;
829 }
830
831 st = open_istream(oid, &obj_type, &size, NULL);
832 if (!st)
833 return -1;
834
835 /* Generate the header */
836 hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %"PRIuMAX , type_name(obj_type), (uintmax_t)size) + 1;
837
838 /* Sha1.. */
839 the_hash_algo->init_fn(&c);
840 the_hash_algo->update_fn(&c, hdr, hdrlen);
841 for (;;) {
842 char buf[1024 * 16];
843 ssize_t readlen = read_istream(st, buf, sizeof(buf));
844
845 if (readlen < 0) {
846 close_istream(st);
847 return -1;
848 }
849 if (!readlen)
850 break;
851 the_hash_algo->update_fn(&c, buf, readlen);
852 }
853 the_hash_algo->final_fn(real_oid.hash, &c);
854 close_istream(st);
855 return !oideq(oid, &real_oid) ? -1 : 0;
856}
857
858int git_open_cloexec(const char *name, int flags)
859{
860 int fd;
861 static int o_cloexec = O_CLOEXEC;
862
863 fd = open(name, flags | o_cloexec);
864 if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
865 /* Try again w/o O_CLOEXEC: the kernel might not support it */
866 o_cloexec &= ~O_CLOEXEC;
867 fd = open(name, flags | o_cloexec);
868 }
869
870#if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
871 {
872 static int fd_cloexec = FD_CLOEXEC;
873
874 if (!o_cloexec && 0 <= fd && fd_cloexec) {
875 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
876 int flags = fcntl(fd, F_GETFD);
877 if (fcntl(fd, F_SETFD, flags | fd_cloexec))
878 fd_cloexec = 0;
879 }
880 }
881#endif
882 return fd;
883}
884
885/*
886 * Find "sha1" as a loose object in the local repository or in an alternate.
887 * Returns 0 on success, negative on failure.
888 *
889 * The "path" out-parameter will give the path of the object we found (if any).
890 * Note that it may point to static storage and is only valid until another
891 * call to sha1_file_name(), etc.
892 */
893static int stat_sha1_file(struct repository *r, const unsigned char *sha1,
894 struct stat *st, const char **path)
895{
896 struct alternate_object_database *alt;
897 static struct strbuf buf = STRBUF_INIT;
898
899 strbuf_reset(&buf);
900 sha1_file_name(r, &buf, sha1);
901 *path = buf.buf;
902
903 if (!lstat(*path, st))
904 return 0;
905
906 prepare_alt_odb(r);
907 errno = ENOENT;
908 for (alt = r->objects->alt_odb_list; alt; alt = alt->next) {
909 *path = alt_sha1_path(alt, sha1);
910 if (!lstat(*path, st))
911 return 0;
912 }
913
914 return -1;
915}
916
917/*
918 * Like stat_sha1_file(), but actually open the object and return the
919 * descriptor. See the caveats on the "path" parameter above.
920 */
921static int open_sha1_file(struct repository *r,
922 const unsigned char *sha1, const char **path)
923{
924 int fd;
925 struct alternate_object_database *alt;
926 int most_interesting_errno;
927 static struct strbuf buf = STRBUF_INIT;
928
929 strbuf_reset(&buf);
930 sha1_file_name(r, &buf, sha1);
931 *path = buf.buf;
932
933 fd = git_open(*path);
934 if (fd >= 0)
935 return fd;
936 most_interesting_errno = errno;
937
938 prepare_alt_odb(r);
939 for (alt = r->objects->alt_odb_list; alt; alt = alt->next) {
940 *path = alt_sha1_path(alt, sha1);
941 fd = git_open(*path);
942 if (fd >= 0)
943 return fd;
944 if (most_interesting_errno == ENOENT)
945 most_interesting_errno = errno;
946 }
947 errno = most_interesting_errno;
948 return -1;
949}
950
951/*
952 * Map the loose object at "path" if it is not NULL, or the path found by
953 * searching for a loose object named "sha1".
954 */
955static void *map_sha1_file_1(struct repository *r, const char *path,
956 const unsigned char *sha1, unsigned long *size)
957{
958 void *map;
959 int fd;
960
961 if (path)
962 fd = git_open(path);
963 else
964 fd = open_sha1_file(r, sha1, &path);
965 map = NULL;
966 if (fd >= 0) {
967 struct stat st;
968
969 if (!fstat(fd, &st)) {
970 *size = xsize_t(st.st_size);
971 if (!*size) {
972 /* mmap() is forbidden on empty files */
973 error(_("object file %s is empty"), path);
974 close(fd);
975 return NULL;
976 }
977 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
978 }
979 close(fd);
980 }
981 return map;
982}
983
984void *map_sha1_file(struct repository *r,
985 const unsigned char *sha1, unsigned long *size)
986{
987 return map_sha1_file_1(r, NULL, sha1, size);
988}
989
990static int unpack_sha1_short_header(git_zstream *stream,
991 unsigned char *map, unsigned long mapsize,
992 void *buffer, unsigned long bufsiz)
993{
994 /* Get the data stream */
995 memset(stream, 0, sizeof(*stream));
996 stream->next_in = map;
997 stream->avail_in = mapsize;
998 stream->next_out = buffer;
999 stream->avail_out = bufsiz;
1000
1001 git_inflate_init(stream);
1002 return git_inflate(stream, 0);
1003}
1004
1005int unpack_sha1_header(git_zstream *stream,
1006 unsigned char *map, unsigned long mapsize,
1007 void *buffer, unsigned long bufsiz)
1008{
1009 int status = unpack_sha1_short_header(stream, map, mapsize,
1010 buffer, bufsiz);
1011
1012 if (status < Z_OK)
1013 return status;
1014
1015 /* Make sure we have the terminating NUL */
1016 if (!memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1017 return -1;
1018 return 0;
1019}
1020
1021static int unpack_sha1_header_to_strbuf(git_zstream *stream, unsigned char *map,
1022 unsigned long mapsize, void *buffer,
1023 unsigned long bufsiz, struct strbuf *header)
1024{
1025 int status;
1026
1027 status = unpack_sha1_short_header(stream, map, mapsize, buffer, bufsiz);
1028 if (status < Z_OK)
1029 return -1;
1030
1031 /*
1032 * Check if entire header is unpacked in the first iteration.
1033 */
1034 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1035 return 0;
1036
1037 /*
1038 * buffer[0..bufsiz] was not large enough. Copy the partial
1039 * result out to header, and then append the result of further
1040 * reading the stream.
1041 */
1042 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1043 stream->next_out = buffer;
1044 stream->avail_out = bufsiz;
1045
1046 do {
1047 status = git_inflate(stream, 0);
1048 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1049 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1050 return 0;
1051 stream->next_out = buffer;
1052 stream->avail_out = bufsiz;
1053 } while (status != Z_STREAM_END);
1054 return -1;
1055}
1056
1057static void *unpack_sha1_rest(git_zstream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
1058{
1059 int bytes = strlen(buffer) + 1;
1060 unsigned char *buf = xmallocz(size);
1061 unsigned long n;
1062 int status = Z_OK;
1063
1064 n = stream->total_out - bytes;
1065 if (n > size)
1066 n = size;
1067 memcpy(buf, (char *) buffer + bytes, n);
1068 bytes = n;
1069 if (bytes <= size) {
1070 /*
1071 * The above condition must be (bytes <= size), not
1072 * (bytes < size). In other words, even though we
1073 * expect no more output and set avail_out to zero,
1074 * the input zlib stream may have bytes that express
1075 * "this concludes the stream", and we *do* want to
1076 * eat that input.
1077 *
1078 * Otherwise we would not be able to test that we
1079 * consumed all the input to reach the expected size;
1080 * we also want to check that zlib tells us that all
1081 * went well with status == Z_STREAM_END at the end.
1082 */
1083 stream->next_out = buf + bytes;
1084 stream->avail_out = size - bytes;
1085 while (status == Z_OK)
1086 status = git_inflate(stream, Z_FINISH);
1087 }
1088 if (status == Z_STREAM_END && !stream->avail_in) {
1089 git_inflate_end(stream);
1090 return buf;
1091 }
1092
1093 if (status < 0)
1094 error(_("corrupt loose object '%s'"), sha1_to_hex(sha1));
1095 else if (stream->avail_in)
1096 error(_("garbage at end of loose object '%s'"),
1097 sha1_to_hex(sha1));
1098 free(buf);
1099 return NULL;
1100}
1101
1102/*
1103 * We used to just use "sscanf()", but that's actually way
1104 * too permissive for what we want to check. So do an anal
1105 * object header parse by hand.
1106 */
1107static int parse_sha1_header_extended(const char *hdr, struct object_info *oi,
1108 unsigned int flags)
1109{
1110 const char *type_buf = hdr;
1111 unsigned long size;
1112 int type, type_len = 0;
1113
1114 /*
1115 * The type can be of any size but is followed by
1116 * a space.
1117 */
1118 for (;;) {
1119 char c = *hdr++;
1120 if (!c)
1121 return -1;
1122 if (c == ' ')
1123 break;
1124 type_len++;
1125 }
1126
1127 type = type_from_string_gently(type_buf, type_len, 1);
1128 if (oi->type_name)
1129 strbuf_add(oi->type_name, type_buf, type_len);
1130 /*
1131 * Set type to 0 if its an unknown object and
1132 * we're obtaining the type using '--allow-unknown-type'
1133 * option.
1134 */
1135 if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE) && (type < 0))
1136 type = 0;
1137 else if (type < 0)
1138 die(_("invalid object type"));
1139 if (oi->typep)
1140 *oi->typep = type;
1141
1142 /*
1143 * The length must follow immediately, and be in canonical
1144 * decimal format (ie "010" is not valid).
1145 */
1146 size = *hdr++ - '0';
1147 if (size > 9)
1148 return -1;
1149 if (size) {
1150 for (;;) {
1151 unsigned long c = *hdr - '0';
1152 if (c > 9)
1153 break;
1154 hdr++;
1155 size = size * 10 + c;
1156 }
1157 }
1158
1159 if (oi->sizep)
1160 *oi->sizep = size;
1161
1162 /*
1163 * The length must be followed by a zero byte
1164 */
1165 return *hdr ? -1 : type;
1166}
1167
1168int parse_sha1_header(const char *hdr, unsigned long *sizep)
1169{
1170 struct object_info oi = OBJECT_INFO_INIT;
1171
1172 oi.sizep = sizep;
1173 return parse_sha1_header_extended(hdr, &oi, 0);
1174}
1175
1176static int sha1_loose_object_info(struct repository *r,
1177 const unsigned char *sha1,
1178 struct object_info *oi, int flags)
1179{
1180 int status = 0;
1181 unsigned long mapsize;
1182 void *map;
1183 git_zstream stream;
1184 char hdr[MAX_HEADER_LEN];
1185 struct strbuf hdrbuf = STRBUF_INIT;
1186 unsigned long size_scratch;
1187
1188 if (oi->delta_base_sha1)
1189 hashclr(oi->delta_base_sha1);
1190
1191 /*
1192 * If we don't care about type or size, then we don't
1193 * need to look inside the object at all. Note that we
1194 * do not optimize out the stat call, even if the
1195 * caller doesn't care about the disk-size, since our
1196 * return value implicitly indicates whether the
1197 * object even exists.
1198 */
1199 if (!oi->typep && !oi->type_name && !oi->sizep && !oi->contentp) {
1200 const char *path;
1201 struct stat st;
1202 if (stat_sha1_file(r, sha1, &st, &path) < 0)
1203 return -1;
1204 if (oi->disk_sizep)
1205 *oi->disk_sizep = st.st_size;
1206 return 0;
1207 }
1208
1209 map = map_sha1_file(r, sha1, &mapsize);
1210 if (!map)
1211 return -1;
1212
1213 if (!oi->sizep)
1214 oi->sizep = &size_scratch;
1215
1216 if (oi->disk_sizep)
1217 *oi->disk_sizep = mapsize;
1218 if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE)) {
1219 if (unpack_sha1_header_to_strbuf(&stream, map, mapsize, hdr, sizeof(hdr), &hdrbuf) < 0)
1220 status = error(_("unable to unpack %s header with --allow-unknown-type"),
1221 sha1_to_hex(sha1));
1222 } else if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
1223 status = error(_("unable to unpack %s header"),
1224 sha1_to_hex(sha1));
1225 if (status < 0)
1226 ; /* Do nothing */
1227 else if (hdrbuf.len) {
1228 if ((status = parse_sha1_header_extended(hdrbuf.buf, oi, flags)) < 0)
1229 status = error(_("unable to parse %s header with --allow-unknown-type"),
1230 sha1_to_hex(sha1));
1231 } else if ((status = parse_sha1_header_extended(hdr, oi, flags)) < 0)
1232 status = error(_("unable to parse %s header"), sha1_to_hex(sha1));
1233
1234 if (status >= 0 && oi->contentp) {
1235 *oi->contentp = unpack_sha1_rest(&stream, hdr,
1236 *oi->sizep, sha1);
1237 if (!*oi->contentp) {
1238 git_inflate_end(&stream);
1239 status = -1;
1240 }
1241 } else
1242 git_inflate_end(&stream);
1243
1244 munmap(map, mapsize);
1245 if (status && oi->typep)
1246 *oi->typep = status;
1247 if (oi->sizep == &size_scratch)
1248 oi->sizep = NULL;
1249 strbuf_release(&hdrbuf);
1250 oi->whence = OI_LOOSE;
1251 return (status < 0) ? status : 0;
1252}
1253
1254int fetch_if_missing = 1;
1255
1256int oid_object_info_extended(struct repository *r, const struct object_id *oid,
1257 struct object_info *oi, unsigned flags)
1258{
1259 static struct object_info blank_oi = OBJECT_INFO_INIT;
1260 struct pack_entry e;
1261 int rtype;
1262 const struct object_id *real = oid;
1263 int already_retried = 0;
1264
1265 if (flags & OBJECT_INFO_LOOKUP_REPLACE)
1266 real = lookup_replace_object(r, oid);
1267
1268 if (is_null_oid(real))
1269 return -1;
1270
1271 if (!oi)
1272 oi = &blank_oi;
1273
1274 if (!(flags & OBJECT_INFO_SKIP_CACHED)) {
1275 struct cached_object *co = find_cached_object(real);
1276 if (co) {
1277 if (oi->typep)
1278 *(oi->typep) = co->type;
1279 if (oi->sizep)
1280 *(oi->sizep) = co->size;
1281 if (oi->disk_sizep)
1282 *(oi->disk_sizep) = 0;
1283 if (oi->delta_base_sha1)
1284 hashclr(oi->delta_base_sha1);
1285 if (oi->type_name)
1286 strbuf_addstr(oi->type_name, type_name(co->type));
1287 if (oi->contentp)
1288 *oi->contentp = xmemdupz(co->buf, co->size);
1289 oi->whence = OI_CACHED;
1290 return 0;
1291 }
1292 }
1293
1294 while (1) {
1295 if (find_pack_entry(r, real, &e))
1296 break;
1297
1298 if (flags & OBJECT_INFO_IGNORE_LOOSE)
1299 return -1;
1300
1301 /* Most likely it's a loose object. */
1302 if (!sha1_loose_object_info(r, real->hash, oi, flags))
1303 return 0;
1304
1305 /* Not a loose object; someone else may have just packed it. */
1306 if (!(flags & OBJECT_INFO_QUICK)) {
1307 reprepare_packed_git(r);
1308 if (find_pack_entry(r, real, &e))
1309 break;
1310 }
1311
1312 /* Check if it is a missing object */
1313 if (fetch_if_missing && repository_format_partial_clone &&
1314 !already_retried && r == the_repository) {
1315 /*
1316 * TODO Investigate having fetch_object() return
1317 * TODO error/success and stopping the music here.
1318 * TODO Pass a repository struct through fetch_object,
1319 * such that arbitrary repositories work.
1320 */
1321 fetch_objects(repository_format_partial_clone, real, 1);
1322 already_retried = 1;
1323 continue;
1324 }
1325
1326 return -1;
1327 }
1328
1329 if (oi == &blank_oi)
1330 /*
1331 * We know that the caller doesn't actually need the
1332 * information below, so return early.
1333 */
1334 return 0;
1335 rtype = packed_object_info(r, e.p, e.offset, oi);
1336 if (rtype < 0) {
1337 mark_bad_packed_object(e.p, real->hash);
1338 return oid_object_info_extended(r, real, oi, 0);
1339 } else if (oi->whence == OI_PACKED) {
1340 oi->u.packed.offset = e.offset;
1341 oi->u.packed.pack = e.p;
1342 oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1343 rtype == OBJ_OFS_DELTA);
1344 }
1345
1346 return 0;
1347}
1348
1349/* returns enum object_type or negative */
1350int oid_object_info(struct repository *r,
1351 const struct object_id *oid,
1352 unsigned long *sizep)
1353{
1354 enum object_type type;
1355 struct object_info oi = OBJECT_INFO_INIT;
1356
1357 oi.typep = &type;
1358 oi.sizep = sizep;
1359 if (oid_object_info_extended(r, oid, &oi,
1360 OBJECT_INFO_LOOKUP_REPLACE) < 0)
1361 return -1;
1362 return type;
1363}
1364
1365static void *read_object(const unsigned char *sha1, enum object_type *type,
1366 unsigned long *size)
1367{
1368 struct object_id oid;
1369 struct object_info oi = OBJECT_INFO_INIT;
1370 void *content;
1371 oi.typep = type;
1372 oi.sizep = size;
1373 oi.contentp = &content;
1374
1375 hashcpy(oid.hash, sha1);
1376
1377 if (oid_object_info_extended(the_repository, &oid, &oi, 0) < 0)
1378 return NULL;
1379 return content;
1380}
1381
1382int pretend_object_file(void *buf, unsigned long len, enum object_type type,
1383 struct object_id *oid)
1384{
1385 struct cached_object *co;
1386
1387 hash_object_file(buf, len, type_name(type), oid);
1388 if (has_sha1_file(oid->hash) || find_cached_object(oid))
1389 return 0;
1390 ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
1391 co = &cached_objects[cached_object_nr++];
1392 co->size = len;
1393 co->type = type;
1394 co->buf = xmalloc(len);
1395 memcpy(co->buf, buf, len);
1396 oidcpy(&co->oid, oid);
1397 return 0;
1398}
1399
1400/*
1401 * This function dies on corrupt objects; the callers who want to
1402 * deal with them should arrange to call read_object() and give error
1403 * messages themselves.
1404 */
1405void *read_object_file_extended(const struct object_id *oid,
1406 enum object_type *type,
1407 unsigned long *size,
1408 int lookup_replace)
1409{
1410 void *data;
1411 const struct packed_git *p;
1412 const char *path;
1413 struct stat st;
1414 const struct object_id *repl = lookup_replace ?
1415 lookup_replace_object(the_repository, oid) : oid;
1416
1417 errno = 0;
1418 data = read_object(repl->hash, type, size);
1419 if (data)
1420 return data;
1421
1422 if (errno && errno != ENOENT)
1423 die_errno(_("failed to read object %s"), oid_to_hex(oid));
1424
1425 /* die if we replaced an object with one that does not exist */
1426 if (repl != oid)
1427 die(_("replacement %s not found for %s"),
1428 oid_to_hex(repl), oid_to_hex(oid));
1429
1430 if (!stat_sha1_file(the_repository, repl->hash, &st, &path))
1431 die(_("loose object %s (stored in %s) is corrupt"),
1432 oid_to_hex(repl), path);
1433
1434 if ((p = has_packed_and_bad(repl->hash)) != NULL)
1435 die(_("packed object %s (stored in %s) is corrupt"),
1436 oid_to_hex(repl), p->pack_name);
1437
1438 return NULL;
1439}
1440
1441void *read_object_with_reference(const struct object_id *oid,
1442 const char *required_type_name,
1443 unsigned long *size,
1444 struct object_id *actual_oid_return)
1445{
1446 enum object_type type, required_type;
1447 void *buffer;
1448 unsigned long isize;
1449 struct object_id actual_oid;
1450
1451 required_type = type_from_string(required_type_name);
1452 oidcpy(&actual_oid, oid);
1453 while (1) {
1454 int ref_length = -1;
1455 const char *ref_type = NULL;
1456
1457 buffer = read_object_file(&actual_oid, &type, &isize);
1458 if (!buffer)
1459 return NULL;
1460 if (type == required_type) {
1461 *size = isize;
1462 if (actual_oid_return)
1463 oidcpy(actual_oid_return, &actual_oid);
1464 return buffer;
1465 }
1466 /* Handle references */
1467 else if (type == OBJ_COMMIT)
1468 ref_type = "tree ";
1469 else if (type == OBJ_TAG)
1470 ref_type = "object ";
1471 else {
1472 free(buffer);
1473 return NULL;
1474 }
1475 ref_length = strlen(ref_type);
1476
1477 if (ref_length + the_hash_algo->hexsz > isize ||
1478 memcmp(buffer, ref_type, ref_length) ||
1479 get_oid_hex((char *) buffer + ref_length, &actual_oid)) {
1480 free(buffer);
1481 return NULL;
1482 }
1483 free(buffer);
1484 /* Now we have the ID of the referred-to object in
1485 * actual_oid. Check again. */
1486 }
1487}
1488
1489static void write_object_file_prepare(const void *buf, unsigned long len,
1490 const char *type, struct object_id *oid,
1491 char *hdr, int *hdrlen)
1492{
1493 git_hash_ctx c;
1494
1495 /* Generate the header */
1496 *hdrlen = xsnprintf(hdr, *hdrlen, "%s %"PRIuMAX , type, (uintmax_t)len)+1;
1497
1498 /* Sha1.. */
1499 the_hash_algo->init_fn(&c);
1500 the_hash_algo->update_fn(&c, hdr, *hdrlen);
1501 the_hash_algo->update_fn(&c, buf, len);
1502 the_hash_algo->final_fn(oid->hash, &c);
1503}
1504
1505/*
1506 * Move the just written object into its final resting place.
1507 */
1508int finalize_object_file(const char *tmpfile, const char *filename)
1509{
1510 int ret = 0;
1511
1512 if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
1513 goto try_rename;
1514 else if (link(tmpfile, filename))
1515 ret = errno;
1516
1517 /*
1518 * Coda hack - coda doesn't like cross-directory links,
1519 * so we fall back to a rename, which will mean that it
1520 * won't be able to check collisions, but that's not a
1521 * big deal.
1522 *
1523 * The same holds for FAT formatted media.
1524 *
1525 * When this succeeds, we just return. We have nothing
1526 * left to unlink.
1527 */
1528 if (ret && ret != EEXIST) {
1529 try_rename:
1530 if (!rename(tmpfile, filename))
1531 goto out;
1532 ret = errno;
1533 }
1534 unlink_or_warn(tmpfile);
1535 if (ret) {
1536 if (ret != EEXIST) {
1537 return error_errno(_("unable to write sha1 filename %s"), filename);
1538 }
1539 /* FIXME!!! Collision check here ? */
1540 }
1541
1542out:
1543 if (adjust_shared_perm(filename))
1544 return error(_("unable to set permission to '%s'"), filename);
1545 return 0;
1546}
1547
1548static int write_buffer(int fd, const void *buf, size_t len)
1549{
1550 if (write_in_full(fd, buf, len) < 0)
1551 return error_errno(_("file write error"));
1552 return 0;
1553}
1554
1555int hash_object_file(const void *buf, unsigned long len, const char *type,
1556 struct object_id *oid)
1557{
1558 char hdr[MAX_HEADER_LEN];
1559 int hdrlen = sizeof(hdr);
1560 write_object_file_prepare(buf, len, type, oid, hdr, &hdrlen);
1561 return 0;
1562}
1563
1564/* Finalize a file on disk, and close it. */
1565static void close_sha1_file(int fd)
1566{
1567 if (fsync_object_files)
1568 fsync_or_die(fd, "sha1 file");
1569 if (close(fd) != 0)
1570 die_errno(_("error when closing sha1 file"));
1571}
1572
1573/* Size of directory component, including the ending '/' */
1574static inline int directory_size(const char *filename)
1575{
1576 const char *s = strrchr(filename, '/');
1577 if (!s)
1578 return 0;
1579 return s - filename + 1;
1580}
1581
1582/*
1583 * This creates a temporary file in the same directory as the final
1584 * 'filename'
1585 *
1586 * We want to avoid cross-directory filename renames, because those
1587 * can have problems on various filesystems (FAT, NFS, Coda).
1588 */
1589static int create_tmpfile(struct strbuf *tmp, const char *filename)
1590{
1591 int fd, dirlen = directory_size(filename);
1592
1593 strbuf_reset(tmp);
1594 strbuf_add(tmp, filename, dirlen);
1595 strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1596 fd = git_mkstemp_mode(tmp->buf, 0444);
1597 if (fd < 0 && dirlen && errno == ENOENT) {
1598 /*
1599 * Make sure the directory exists; note that the contents
1600 * of the buffer are undefined after mkstemp returns an
1601 * error, so we have to rewrite the whole buffer from
1602 * scratch.
1603 */
1604 strbuf_reset(tmp);
1605 strbuf_add(tmp, filename, dirlen - 1);
1606 if (mkdir(tmp->buf, 0777) && errno != EEXIST)
1607 return -1;
1608 if (adjust_shared_perm(tmp->buf))
1609 return -1;
1610
1611 /* Try again */
1612 strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1613 fd = git_mkstemp_mode(tmp->buf, 0444);
1614 }
1615 return fd;
1616}
1617
1618static int write_loose_object(const struct object_id *oid, char *hdr,
1619 int hdrlen, const void *buf, unsigned long len,
1620 time_t mtime)
1621{
1622 int fd, ret;
1623 unsigned char compressed[4096];
1624 git_zstream stream;
1625 git_hash_ctx c;
1626 struct object_id parano_oid;
1627 static struct strbuf tmp_file = STRBUF_INIT;
1628 static struct strbuf filename = STRBUF_INIT;
1629
1630 strbuf_reset(&filename);
1631 sha1_file_name(the_repository, &filename, oid->hash);
1632
1633 fd = create_tmpfile(&tmp_file, filename.buf);
1634 if (fd < 0) {
1635 if (errno == EACCES)
1636 return error(_("insufficient permission for adding an object to repository database %s"), get_object_directory());
1637 else
1638 return error_errno(_("unable to create temporary file"));
1639 }
1640
1641 /* Set it up */
1642 git_deflate_init(&stream, zlib_compression_level);
1643 stream.next_out = compressed;
1644 stream.avail_out = sizeof(compressed);
1645 the_hash_algo->init_fn(&c);
1646
1647 /* First header.. */
1648 stream.next_in = (unsigned char *)hdr;
1649 stream.avail_in = hdrlen;
1650 while (git_deflate(&stream, 0) == Z_OK)
1651 ; /* nothing */
1652 the_hash_algo->update_fn(&c, hdr, hdrlen);
1653
1654 /* Then the data itself.. */
1655 stream.next_in = (void *)buf;
1656 stream.avail_in = len;
1657 do {
1658 unsigned char *in0 = stream.next_in;
1659 ret = git_deflate(&stream, Z_FINISH);
1660 the_hash_algo->update_fn(&c, in0, stream.next_in - in0);
1661 if (write_buffer(fd, compressed, stream.next_out - compressed) < 0)
1662 die(_("unable to write sha1 file"));
1663 stream.next_out = compressed;
1664 stream.avail_out = sizeof(compressed);
1665 } while (ret == Z_OK);
1666
1667 if (ret != Z_STREAM_END)
1668 die(_("unable to deflate new object %s (%d)"), oid_to_hex(oid),
1669 ret);
1670 ret = git_deflate_end_gently(&stream);
1671 if (ret != Z_OK)
1672 die(_("deflateEnd on object %s failed (%d)"), oid_to_hex(oid),
1673 ret);
1674 the_hash_algo->final_fn(parano_oid.hash, &c);
1675 if (!oideq(oid, ¶no_oid))
1676 die(_("confused by unstable object source data for %s"),
1677 oid_to_hex(oid));
1678
1679 close_sha1_file(fd);
1680
1681 if (mtime) {
1682 struct utimbuf utb;
1683 utb.actime = mtime;
1684 utb.modtime = mtime;
1685 if (utime(tmp_file.buf, &utb) < 0)
1686 warning_errno(_("failed utime() on %s"), tmp_file.buf);
1687 }
1688
1689 return finalize_object_file(tmp_file.buf, filename.buf);
1690}
1691
1692static int freshen_loose_object(const struct object_id *oid)
1693{
1694 return check_and_freshen(oid, 1);
1695}
1696
1697static int freshen_packed_object(const struct object_id *oid)
1698{
1699 struct pack_entry e;
1700 if (!find_pack_entry(the_repository, oid, &e))
1701 return 0;
1702 if (e.p->freshened)
1703 return 1;
1704 if (!freshen_file(e.p->pack_name))
1705 return 0;
1706 e.p->freshened = 1;
1707 return 1;
1708}
1709
1710int write_object_file(const void *buf, unsigned long len, const char *type,
1711 struct object_id *oid)
1712{
1713 char hdr[MAX_HEADER_LEN];
1714 int hdrlen = sizeof(hdr);
1715
1716 /* Normally if we have it in the pack then we do not bother writing
1717 * it out into .git/objects/??/?{38} file.
1718 */
1719 write_object_file_prepare(buf, len, type, oid, hdr, &hdrlen);
1720 if (freshen_packed_object(oid) || freshen_loose_object(oid))
1721 return 0;
1722 return write_loose_object(oid, hdr, hdrlen, buf, len, 0);
1723}
1724
1725int hash_object_file_literally(const void *buf, unsigned long len,
1726 const char *type, struct object_id *oid,
1727 unsigned flags)
1728{
1729 char *header;
1730 int hdrlen, status = 0;
1731
1732 /* type string, SP, %lu of the length plus NUL must fit this */
1733 hdrlen = strlen(type) + MAX_HEADER_LEN;
1734 header = xmalloc(hdrlen);
1735 write_object_file_prepare(buf, len, type, oid, header, &hdrlen);
1736
1737 if (!(flags & HASH_WRITE_OBJECT))
1738 goto cleanup;
1739 if (freshen_packed_object(oid) || freshen_loose_object(oid))
1740 goto cleanup;
1741 status = write_loose_object(oid, header, hdrlen, buf, len, 0);
1742
1743cleanup:
1744 free(header);
1745 return status;
1746}
1747
1748int force_object_loose(const struct object_id *oid, time_t mtime)
1749{
1750 void *buf;
1751 unsigned long len;
1752 enum object_type type;
1753 char hdr[MAX_HEADER_LEN];
1754 int hdrlen;
1755 int ret;
1756
1757 if (has_loose_object(oid))
1758 return 0;
1759 buf = read_object(oid->hash, &type, &len);
1760 if (!buf)
1761 return error(_("cannot read sha1_file for %s"), oid_to_hex(oid));
1762 hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %"PRIuMAX , type_name(type), (uintmax_t)len) + 1;
1763 ret = write_loose_object(oid, hdr, hdrlen, buf, len, mtime);
1764 free(buf);
1765
1766 return ret;
1767}
1768
1769int has_sha1_file_with_flags(const unsigned char *sha1, int flags)
1770{
1771 struct object_id oid;
1772 if (!startup_info->have_repository)
1773 return 0;
1774 hashcpy(oid.hash, sha1);
1775 return oid_object_info_extended(the_repository, &oid, NULL,
1776 flags | OBJECT_INFO_SKIP_CACHED) >= 0;
1777}
1778
1779int has_object_file(const struct object_id *oid)
1780{
1781 return has_sha1_file(oid->hash);
1782}
1783
1784int has_object_file_with_flags(const struct object_id *oid, int flags)
1785{
1786 return has_sha1_file_with_flags(oid->hash, flags);
1787}
1788
1789static void check_tree(const void *buf, size_t size)
1790{
1791 struct tree_desc desc;
1792 struct name_entry entry;
1793
1794 init_tree_desc(&desc, buf, size);
1795 while (tree_entry(&desc, &entry))
1796 /* do nothing
1797 * tree_entry() will die() on malformed entries */
1798 ;
1799}
1800
1801static void check_commit(const void *buf, size_t size)
1802{
1803 struct commit c;
1804 memset(&c, 0, sizeof(c));
1805 if (parse_commit_buffer(the_repository, &c, buf, size, 0))
1806 die(_("corrupt commit"));
1807}
1808
1809static void check_tag(const void *buf, size_t size)
1810{
1811 struct tag t;
1812 memset(&t, 0, sizeof(t));
1813 if (parse_tag_buffer(the_repository, &t, buf, size))
1814 die(_("corrupt tag"));
1815}
1816
1817static int index_mem(struct index_state *istate,
1818 struct object_id *oid, void *buf, size_t size,
1819 enum object_type type,
1820 const char *path, unsigned flags)
1821{
1822 int ret, re_allocated = 0;
1823 int write_object = flags & HASH_WRITE_OBJECT;
1824
1825 if (!type)
1826 type = OBJ_BLOB;
1827
1828 /*
1829 * Convert blobs to git internal format
1830 */
1831 if ((type == OBJ_BLOB) && path) {
1832 struct strbuf nbuf = STRBUF_INIT;
1833 if (convert_to_git(istate, path, buf, size, &nbuf,
1834 get_conv_flags(flags))) {
1835 buf = strbuf_detach(&nbuf, &size);
1836 re_allocated = 1;
1837 }
1838 }
1839 if (flags & HASH_FORMAT_CHECK) {
1840 if (type == OBJ_TREE)
1841 check_tree(buf, size);
1842 if (type == OBJ_COMMIT)
1843 check_commit(buf, size);
1844 if (type == OBJ_TAG)
1845 check_tag(buf, size);
1846 }
1847
1848 if (write_object)
1849 ret = write_object_file(buf, size, type_name(type), oid);
1850 else
1851 ret = hash_object_file(buf, size, type_name(type), oid);
1852 if (re_allocated)
1853 free(buf);
1854 return ret;
1855}
1856
1857static int index_stream_convert_blob(struct index_state *istate,
1858 struct object_id *oid,
1859 int fd,
1860 const char *path,
1861 unsigned flags)
1862{
1863 int ret;
1864 const int write_object = flags & HASH_WRITE_OBJECT;
1865 struct strbuf sbuf = STRBUF_INIT;
1866
1867 assert(path);
1868 assert(would_convert_to_git_filter_fd(istate, path));
1869
1870 convert_to_git_filter_fd(istate, path, fd, &sbuf,
1871 get_conv_flags(flags));
1872
1873 if (write_object)
1874 ret = write_object_file(sbuf.buf, sbuf.len, type_name(OBJ_BLOB),
1875 oid);
1876 else
1877 ret = hash_object_file(sbuf.buf, sbuf.len, type_name(OBJ_BLOB),
1878 oid);
1879 strbuf_release(&sbuf);
1880 return ret;
1881}
1882
1883static int index_pipe(struct index_state *istate, struct object_id *oid,
1884 int fd, enum object_type type,
1885 const char *path, unsigned flags)
1886{
1887 struct strbuf sbuf = STRBUF_INIT;
1888 int ret;
1889
1890 if (strbuf_read(&sbuf, fd, 4096) >= 0)
1891 ret = index_mem(istate, oid, sbuf.buf, sbuf.len, type, path, flags);
1892 else
1893 ret = -1;
1894 strbuf_release(&sbuf);
1895 return ret;
1896}
1897
1898#define SMALL_FILE_SIZE (32*1024)
1899
1900static int index_core(struct index_state *istate,
1901 struct object_id *oid, int fd, size_t size,
1902 enum object_type type, const char *path,
1903 unsigned flags)
1904{
1905 int ret;
1906
1907 if (!size) {
1908 ret = index_mem(istate, oid, "", size, type, path, flags);
1909 } else if (size <= SMALL_FILE_SIZE) {
1910 char *buf = xmalloc(size);
1911 ssize_t read_result = read_in_full(fd, buf, size);
1912 if (read_result < 0)
1913 ret = error_errno(_("read error while indexing %s"),
1914 path ? path : "<unknown>");
1915 else if (read_result != size)
1916 ret = error(_("short read while indexing %s"),
1917 path ? path : "<unknown>");
1918 else
1919 ret = index_mem(istate, oid, buf, size, type, path, flags);
1920 free(buf);
1921 } else {
1922 void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
1923 ret = index_mem(istate, oid, buf, size, type, path, flags);
1924 munmap(buf, size);
1925 }
1926 return ret;
1927}
1928
1929/*
1930 * This creates one packfile per large blob unless bulk-checkin
1931 * machinery is "plugged".
1932 *
1933 * This also bypasses the usual "convert-to-git" dance, and that is on
1934 * purpose. We could write a streaming version of the converting
1935 * functions and insert that before feeding the data to fast-import
1936 * (or equivalent in-core API described above). However, that is
1937 * somewhat complicated, as we do not know the size of the filter
1938 * result, which we need to know beforehand when writing a git object.
1939 * Since the primary motivation for trying to stream from the working
1940 * tree file and to avoid mmaping it in core is to deal with large
1941 * binary blobs, they generally do not want to get any conversion, and
1942 * callers should avoid this code path when filters are requested.
1943 */
1944static int index_stream(struct object_id *oid, int fd, size_t size,
1945 enum object_type type, const char *path,
1946 unsigned flags)
1947{
1948 return index_bulk_checkin(oid, fd, size, type, path, flags);
1949}
1950
1951int index_fd(struct index_state *istate, struct object_id *oid,
1952 int fd, struct stat *st,
1953 enum object_type type, const char *path, unsigned flags)
1954{
1955 int ret;
1956
1957 /*
1958 * Call xsize_t() only when needed to avoid potentially unnecessary
1959 * die() for large files.
1960 */
1961 if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(istate, path))
1962 ret = index_stream_convert_blob(istate, oid, fd, path, flags);
1963 else if (!S_ISREG(st->st_mode))
1964 ret = index_pipe(istate, oid, fd, type, path, flags);
1965 else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
1966 (path && would_convert_to_git(istate, path)))
1967 ret = index_core(istate, oid, fd, xsize_t(st->st_size),
1968 type, path, flags);
1969 else
1970 ret = index_stream(oid, fd, xsize_t(st->st_size), type, path,
1971 flags);
1972 close(fd);
1973 return ret;
1974}
1975
1976int index_path(struct index_state *istate, struct object_id *oid,
1977 const char *path, struct stat *st, unsigned flags)
1978{
1979 int fd;
1980 struct strbuf sb = STRBUF_INIT;
1981 int rc = 0;
1982
1983 switch (st->st_mode & S_IFMT) {
1984 case S_IFREG:
1985 fd = open(path, O_RDONLY);
1986 if (fd < 0)
1987 return error_errno("open(\"%s\")", path);
1988 if (index_fd(istate, oid, fd, st, OBJ_BLOB, path, flags) < 0)
1989 return error(_("%s: failed to insert into database"),
1990 path);
1991 break;
1992 case S_IFLNK:
1993 if (strbuf_readlink(&sb, path, st->st_size))
1994 return error_errno("readlink(\"%s\")", path);
1995 if (!(flags & HASH_WRITE_OBJECT))
1996 hash_object_file(sb.buf, sb.len, blob_type, oid);
1997 else if (write_object_file(sb.buf, sb.len, blob_type, oid))
1998 rc = error(_("%s: failed to insert into database"), path);
1999 strbuf_release(&sb);
2000 break;
2001 case S_IFDIR:
2002 return resolve_gitlink_ref(path, "HEAD", oid);
2003 default:
2004 return error(_("%s: unsupported file type"), path);
2005 }
2006 return rc;
2007}
2008
2009int read_pack_header(int fd, struct pack_header *header)
2010{
2011 if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
2012 /* "eof before pack header was fully read" */
2013 return PH_ERROR_EOF;
2014
2015 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2016 /* "protocol error (pack signature mismatch detected)" */
2017 return PH_ERROR_PACK_SIGNATURE;
2018 if (!pack_version_ok(header->hdr_version))
2019 /* "protocol error (pack version unsupported)" */
2020 return PH_ERROR_PROTOCOL;
2021 return 0;
2022}
2023
2024void assert_oid_type(const struct object_id *oid, enum object_type expect)
2025{
2026 enum object_type type = oid_object_info(the_repository, oid, NULL);
2027 if (type < 0)
2028 die(_("%s is not a valid object"), oid_to_hex(oid));
2029 if (type != expect)
2030 die(_("%s is not a valid '%s' object"), oid_to_hex(oid),
2031 type_name(expect));
2032}
2033
2034int for_each_file_in_obj_subdir(unsigned int subdir_nr,
2035 struct strbuf *path,
2036 each_loose_object_fn obj_cb,
2037 each_loose_cruft_fn cruft_cb,
2038 each_loose_subdir_fn subdir_cb,
2039 void *data)
2040{
2041 size_t origlen, baselen;
2042 DIR *dir;
2043 struct dirent *de;
2044 int r = 0;
2045 struct object_id oid;
2046
2047 if (subdir_nr > 0xff)
2048 BUG("invalid loose object subdirectory: %x", subdir_nr);
2049
2050 origlen = path->len;
2051 strbuf_complete(path, '/');
2052 strbuf_addf(path, "%02x", subdir_nr);
2053
2054 dir = opendir(path->buf);
2055 if (!dir) {
2056 if (errno != ENOENT)
2057 r = error_errno(_("unable to open %s"), path->buf);
2058 strbuf_setlen(path, origlen);
2059 return r;
2060 }
2061
2062 oid.hash[0] = subdir_nr;
2063 strbuf_addch(path, '/');
2064 baselen = path->len;
2065
2066 while ((de = readdir(dir))) {
2067 size_t namelen;
2068 if (is_dot_or_dotdot(de->d_name))
2069 continue;
2070
2071 namelen = strlen(de->d_name);
2072 strbuf_setlen(path, baselen);
2073 strbuf_add(path, de->d_name, namelen);
2074 if (namelen == the_hash_algo->hexsz - 2 &&
2075 !hex_to_bytes(oid.hash + 1, de->d_name,
2076 the_hash_algo->rawsz - 1)) {
2077 if (obj_cb) {
2078 r = obj_cb(&oid, path->buf, data);
2079 if (r)
2080 break;
2081 }
2082 continue;
2083 }
2084
2085 if (cruft_cb) {
2086 r = cruft_cb(de->d_name, path->buf, data);
2087 if (r)
2088 break;
2089 }
2090 }
2091 closedir(dir);
2092
2093 strbuf_setlen(path, baselen - 1);
2094 if (!r && subdir_cb)
2095 r = subdir_cb(subdir_nr, path->buf, data);
2096
2097 strbuf_setlen(path, origlen);
2098
2099 return r;
2100}
2101
2102int for_each_loose_file_in_objdir_buf(struct strbuf *path,
2103 each_loose_object_fn obj_cb,
2104 each_loose_cruft_fn cruft_cb,
2105 each_loose_subdir_fn subdir_cb,
2106 void *data)
2107{
2108 int r = 0;
2109 int i;
2110
2111 for (i = 0; i < 256; i++) {
2112 r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
2113 subdir_cb, data);
2114 if (r)
2115 break;
2116 }
2117
2118 return r;
2119}
2120
2121int for_each_loose_file_in_objdir(const char *path,
2122 each_loose_object_fn obj_cb,
2123 each_loose_cruft_fn cruft_cb,
2124 each_loose_subdir_fn subdir_cb,
2125 void *data)
2126{
2127 struct strbuf buf = STRBUF_INIT;
2128 int r;
2129
2130 strbuf_addstr(&buf, path);
2131 r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
2132 subdir_cb, data);
2133 strbuf_release(&buf);
2134
2135 return r;
2136}
2137
2138struct loose_alt_odb_data {
2139 each_loose_object_fn *cb;
2140 void *data;
2141};
2142
2143static int loose_from_alt_odb(struct alternate_object_database *alt,
2144 void *vdata)
2145{
2146 struct loose_alt_odb_data *data = vdata;
2147 struct strbuf buf = STRBUF_INIT;
2148 int r;
2149
2150 strbuf_addstr(&buf, alt->path);
2151 r = for_each_loose_file_in_objdir_buf(&buf,
2152 data->cb, NULL, NULL,
2153 data->data);
2154 strbuf_release(&buf);
2155 return r;
2156}
2157
2158int for_each_loose_object(each_loose_object_fn cb, void *data,
2159 enum for_each_object_flags flags)
2160{
2161 struct loose_alt_odb_data alt;
2162 int r;
2163
2164 r = for_each_loose_file_in_objdir(get_object_directory(),
2165 cb, NULL, NULL, data);
2166 if (r)
2167 return r;
2168
2169 if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2170 return 0;
2171
2172 alt.cb = cb;
2173 alt.data = data;
2174 return foreach_alt_odb(loose_from_alt_odb, &alt);
2175}
2176
2177static int check_stream_sha1(git_zstream *stream,
2178 const char *hdr,
2179 unsigned long size,
2180 const char *path,
2181 const unsigned char *expected_sha1)
2182{
2183 git_hash_ctx c;
2184 unsigned char real_sha1[GIT_MAX_RAWSZ];
2185 unsigned char buf[4096];
2186 unsigned long total_read;
2187 int status = Z_OK;
2188
2189 the_hash_algo->init_fn(&c);
2190 the_hash_algo->update_fn(&c, hdr, stream->total_out);
2191
2192 /*
2193 * We already read some bytes into hdr, but the ones up to the NUL
2194 * do not count against the object's content size.
2195 */
2196 total_read = stream->total_out - strlen(hdr) - 1;
2197
2198 /*
2199 * This size comparison must be "<=" to read the final zlib packets;
2200 * see the comment in unpack_sha1_rest for details.
2201 */
2202 while (total_read <= size &&
2203 (status == Z_OK ||
2204 (status == Z_BUF_ERROR && !stream->avail_out))) {
2205 stream->next_out = buf;
2206 stream->avail_out = sizeof(buf);
2207 if (size - total_read < stream->avail_out)
2208 stream->avail_out = size - total_read;
2209 status = git_inflate(stream, Z_FINISH);
2210 the_hash_algo->update_fn(&c, buf, stream->next_out - buf);
2211 total_read += stream->next_out - buf;
2212 }
2213 git_inflate_end(stream);
2214
2215 if (status != Z_STREAM_END) {
2216 error(_("corrupt loose object '%s'"), sha1_to_hex(expected_sha1));
2217 return -1;
2218 }
2219 if (stream->avail_in) {
2220 error(_("garbage at end of loose object '%s'"),
2221 sha1_to_hex(expected_sha1));
2222 return -1;
2223 }
2224
2225 the_hash_algo->final_fn(real_sha1, &c);
2226 if (!hasheq(expected_sha1, real_sha1)) {
2227 error(_("sha1 mismatch for %s (expected %s)"), path,
2228 sha1_to_hex(expected_sha1));
2229 return -1;
2230 }
2231
2232 return 0;
2233}
2234
2235int read_loose_object(const char *path,
2236 const struct object_id *expected_oid,
2237 enum object_type *type,
2238 unsigned long *size,
2239 void **contents)
2240{
2241 int ret = -1;
2242 void *map = NULL;
2243 unsigned long mapsize;
2244 git_zstream stream;
2245 char hdr[MAX_HEADER_LEN];
2246
2247 *contents = NULL;
2248
2249 map = map_sha1_file_1(the_repository, path, NULL, &mapsize);
2250 if (!map) {
2251 error_errno(_("unable to mmap %s"), path);
2252 goto out;
2253 }
2254
2255 if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0) {
2256 error(_("unable to unpack header of %s"), path);
2257 goto out;
2258 }
2259
2260 *type = parse_sha1_header(hdr, size);
2261 if (*type < 0) {
2262 error(_("unable to parse header of %s"), path);
2263 git_inflate_end(&stream);
2264 goto out;
2265 }
2266
2267 if (*type == OBJ_BLOB && *size > big_file_threshold) {
2268 if (check_stream_sha1(&stream, hdr, *size, path, expected_oid->hash) < 0)
2269 goto out;
2270 } else {
2271 *contents = unpack_sha1_rest(&stream, hdr, *size, expected_oid->hash);
2272 if (!*contents) {
2273 error(_("unable to unpack contents of %s"), path);
2274 git_inflate_end(&stream);
2275 goto out;
2276 }
2277 if (check_object_signature(expected_oid, *contents,
2278 *size, type_name(*type))) {
2279 error(_("sha1 mismatch for %s (expected %s)"), path,
2280 oid_to_hex(expected_oid));
2281 free(*contents);
2282 goto out;
2283 }
2284 }
2285
2286 ret = 0; /* everything checks out */
2287
2288out:
2289 if (map)
2290 munmap(map, mapsize);
2291 return ret;
2292}