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