2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 * This handles basic git sha1 object files - packing, unpacking,
11 #include "string-list.h"
17 #include "run-command.h"
20 #include "tree-walk.h"
22 #include "pack-revindex.h"
23 #include "sha1-lookup.h"
24 #include "bulk-checkin.h"
25 #include "streaming.h"
29 #include "mergesort.h"
33 const unsigned char null_sha1
[GIT_MAX_RAWSZ
];
34 const struct object_id null_oid
;
35 const struct object_id empty_tree_oid
= {
36 EMPTY_TREE_SHA1_BIN_LITERAL
38 const struct object_id empty_blob_oid
= {
39 EMPTY_BLOB_SHA1_BIN_LITERAL
43 * This is meant to hold a *small* number of objects that you would
44 * want read_sha1_file() to be able to return, but yet you do not want
45 * to write them into the object store (e.g. a browse-only
48 static struct cached_object
{
49 unsigned char sha1
[20];
50 enum object_type type
;
54 static int cached_object_nr
, cached_object_alloc
;
56 static struct cached_object empty_tree
= {
57 EMPTY_TREE_SHA1_BIN_LITERAL
,
63 static struct cached_object
*find_cached_object(const unsigned char *sha1
)
66 struct cached_object
*co
= cached_objects
;
68 for (i
= 0; i
< cached_object_nr
; i
++, co
++) {
69 if (!hashcmp(co
->sha1
, sha1
))
72 if (!hashcmp(sha1
, empty_tree
.sha1
))
77 int mkdir_in_gitdir(const char *path
)
79 if (mkdir(path
, 0777)) {
80 int saved_errno
= errno
;
82 struct strbuf sb
= STRBUF_INIT
;
87 * Are we looking at a path in a symlinked worktree
88 * whose original repository does not yet have it?
89 * e.g. .git/rr-cache pointing at its original
90 * repository in which the user hasn't performed any
91 * conflict resolution yet?
93 if (lstat(path
, &st
) || !S_ISLNK(st
.st_mode
) ||
94 strbuf_readlink(&sb
, path
, st
.st_size
) ||
95 !is_absolute_path(sb
.buf
) ||
96 mkdir(sb
.buf
, 0777)) {
103 return adjust_shared_perm(path
);
106 enum scld_error
safe_create_leading_directories(char *path
)
108 char *next_component
= path
+ offset_1st_component(path
);
109 enum scld_error ret
= SCLD_OK
;
111 while (ret
== SCLD_OK
&& next_component
) {
113 char *slash
= next_component
, slash_character
;
115 while (*slash
&& !is_dir_sep(*slash
))
121 next_component
= slash
+ 1;
122 while (is_dir_sep(*next_component
))
124 if (!*next_component
)
127 slash_character
= *slash
;
129 if (!stat(path
, &st
)) {
131 if (!S_ISDIR(st
.st_mode
)) {
135 } else if (mkdir(path
, 0777)) {
136 if (errno
== EEXIST
&&
137 !stat(path
, &st
) && S_ISDIR(st
.st_mode
))
138 ; /* somebody created it since we checked */
139 else if (errno
== ENOENT
)
141 * Either mkdir() failed because
142 * somebody just pruned the containing
143 * directory, or stat() failed because
144 * the file that was in our way was
145 * just removed. Either way, inform
146 * the caller that it might be worth
152 } else if (adjust_shared_perm(path
)) {
155 *slash
= slash_character
;
160 enum scld_error
safe_create_leading_directories_const(const char *path
)
163 /* path points to cache entries, so xstrdup before messing with it */
164 char *buf
= xstrdup(path
);
165 enum scld_error result
= safe_create_leading_directories(buf
);
173 int raceproof_create_file(const char *path
, create_file_fn fn
, void *cb
)
176 * The number of times we will try to remove empty directories
177 * in the way of path. This is only 1 because if another
178 * process is racily creating directories that conflict with
179 * us, we don't want to fight against them.
181 int remove_directories_remaining
= 1;
184 * The number of times that we will try to create the
185 * directories containing path. We are willing to attempt this
186 * more than once, because another process could be trying to
187 * clean up empty directories at the same time as we are
188 * trying to create them.
190 int create_directories_remaining
= 3;
192 /* A scratch copy of path, filled lazily if we need it: */
193 struct strbuf path_copy
= STRBUF_INIT
;
206 if (errno
== EISDIR
&& remove_directories_remaining
-- > 0) {
208 * A directory is in the way. Maybe it is empty; try
212 strbuf_addstr(&path_copy
, path
);
214 if (!remove_dir_recursively(&path_copy
, REMOVE_DIR_EMPTY_ONLY
))
216 } else if (errno
== ENOENT
&& create_directories_remaining
-- > 0) {
218 * Maybe the containing directory didn't exist, or
219 * maybe it was just deleted by a process that is
220 * racing with us to clean up empty directories. Try
223 enum scld_error scld_result
;
226 strbuf_addstr(&path_copy
, path
);
229 scld_result
= safe_create_leading_directories(path_copy
.buf
);
230 if (scld_result
== SCLD_OK
)
232 } while (scld_result
== SCLD_VANISHED
&& create_directories_remaining
-- > 0);
236 strbuf_release(&path_copy
);
241 static void fill_sha1_path(struct strbuf
*buf
, const unsigned char *sha1
)
244 for (i
= 0; i
< 20; i
++) {
245 static char hex
[] = "0123456789abcdef";
246 unsigned int val
= sha1
[i
];
247 strbuf_addch(buf
, hex
[val
>> 4]);
248 strbuf_addch(buf
, hex
[val
& 0xf]);
250 strbuf_addch(buf
, '/');
254 const char *sha1_file_name(const unsigned char *sha1
)
256 static struct strbuf buf
= STRBUF_INIT
;
259 strbuf_addf(&buf
, "%s/", get_object_directory());
261 fill_sha1_path(&buf
, sha1
);
265 struct strbuf
*alt_scratch_buf(struct alternate_object_database
*alt
)
267 strbuf_setlen(&alt
->scratch
, alt
->base_len
);
268 return &alt
->scratch
;
271 static const char *alt_sha1_path(struct alternate_object_database
*alt
,
272 const unsigned char *sha1
)
274 struct strbuf
*buf
= alt_scratch_buf(alt
);
275 fill_sha1_path(buf
, sha1
);
279 struct alternate_object_database
*alt_odb_list
;
280 static struct alternate_object_database
**alt_odb_tail
;
283 * Return non-zero iff the path is usable as an alternate object database.
285 static int alt_odb_usable(struct strbuf
*path
, const char *normalized_objdir
)
287 struct alternate_object_database
*alt
;
289 /* Detect cases where alternate disappeared */
290 if (!is_directory(path
->buf
)) {
291 error("object directory %s does not exist; "
292 "check .git/objects/info/alternates.",
298 * Prevent the common mistake of listing the same
299 * thing twice, or object directory itself.
301 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
302 if (!fspathcmp(path
->buf
, alt
->path
))
305 if (!fspathcmp(path
->buf
, normalized_objdir
))
312 * Prepare alternate object database registry.
314 * The variable alt_odb_list points at the list of struct
315 * alternate_object_database. The elements on this list come from
316 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
317 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
318 * whose contents is similar to that environment variable but can be
319 * LF separated. Its base points at a statically allocated buffer that
320 * contains "/the/directory/corresponding/to/.git/objects/...", while
321 * its name points just after the slash at the end of ".git/objects/"
322 * in the example above, and has enough space to hold 40-byte hex
323 * SHA1, an extra slash for the first level indirection, and the
326 static void read_info_alternates(const char * relative_base
, int depth
);
327 static int link_alt_odb_entry(const char *entry
, const char *relative_base
,
328 int depth
, const char *normalized_objdir
)
330 struct alternate_object_database
*ent
;
331 struct strbuf pathbuf
= STRBUF_INIT
;
333 if (!is_absolute_path(entry
) && relative_base
) {
334 strbuf_realpath(&pathbuf
, relative_base
, 1);
335 strbuf_addch(&pathbuf
, '/');
337 strbuf_addstr(&pathbuf
, entry
);
339 if (strbuf_normalize_path(&pathbuf
) < 0 && relative_base
) {
340 error("unable to normalize alternate object path: %s",
342 strbuf_release(&pathbuf
);
347 * The trailing slash after the directory name is given by
348 * this function at the end. Remove duplicates.
350 while (pathbuf
.len
&& pathbuf
.buf
[pathbuf
.len
- 1] == '/')
351 strbuf_setlen(&pathbuf
, pathbuf
.len
- 1);
353 if (!alt_odb_usable(&pathbuf
, normalized_objdir
)) {
354 strbuf_release(&pathbuf
);
358 ent
= alloc_alt_odb(pathbuf
.buf
);
360 /* add the alternate entry */
362 alt_odb_tail
= &(ent
->next
);
365 /* recursively add alternates */
366 read_info_alternates(pathbuf
.buf
, depth
+ 1);
368 strbuf_release(&pathbuf
);
372 static const char *parse_alt_odb_entry(const char *string
,
380 if (*string
== '#') {
381 /* comment; consume up to next separator */
382 end
= strchrnul(string
, sep
);
383 } else if (*string
== '"' && !unquote_c_style(out
, string
, &end
)) {
385 * quoted path; unquote_c_style has copied the
386 * data for us and set "end". Broken quoting (e.g.,
387 * an entry that doesn't end with a quote) falls
388 * back to the unquoted case below.
391 /* normal, unquoted path */
392 end
= strchrnul(string
, sep
);
393 strbuf_add(out
, string
, end
- string
);
401 static void link_alt_odb_entries(const char *alt
, int len
, int sep
,
402 const char *relative_base
, int depth
)
404 struct strbuf objdirbuf
= STRBUF_INIT
;
405 struct strbuf entry
= STRBUF_INIT
;
408 error("%s: ignoring alternate object stores, nesting too deep.",
413 strbuf_add_absolute_path(&objdirbuf
, get_object_directory());
414 if (strbuf_normalize_path(&objdirbuf
) < 0)
415 die("unable to normalize object directory: %s",
419 alt
= parse_alt_odb_entry(alt
, sep
, &entry
);
422 link_alt_odb_entry(entry
.buf
, relative_base
, depth
, objdirbuf
.buf
);
424 strbuf_release(&entry
);
425 strbuf_release(&objdirbuf
);
428 static void read_info_alternates(const char * relative_base
, int depth
)
436 path
= xstrfmt("%s/info/alternates", relative_base
);
441 if (fstat(fd
, &st
) || (st
.st_size
== 0)) {
445 mapsz
= xsize_t(st
.st_size
);
446 map
= xmmap(NULL
, mapsz
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
449 link_alt_odb_entries(map
, mapsz
, '\n', relative_base
, depth
);
454 struct alternate_object_database
*alloc_alt_odb(const char *dir
)
456 struct alternate_object_database
*ent
;
458 FLEX_ALLOC_STR(ent
, path
, dir
);
459 strbuf_init(&ent
->scratch
, 0);
460 strbuf_addf(&ent
->scratch
, "%s/", dir
);
461 ent
->base_len
= ent
->scratch
.len
;
466 void add_to_alternates_file(const char *reference
)
468 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
469 char *alts
= git_pathdup("objects/info/alternates");
472 hold_lock_file_for_update(lock
, alts
, LOCK_DIE_ON_ERROR
);
473 out
= fdopen_lock_file(lock
, "w");
475 die_errno("unable to fdopen alternates lockfile");
477 in
= fopen(alts
, "r");
479 struct strbuf line
= STRBUF_INIT
;
482 while (strbuf_getline(&line
, in
) != EOF
) {
483 if (!strcmp(reference
, line
.buf
)) {
487 fprintf_or_die(out
, "%s\n", line
.buf
);
490 strbuf_release(&line
);
494 rollback_lock_file(lock
);
498 else if (errno
!= ENOENT
)
499 die_errno("unable to read alternates file");
502 fprintf_or_die(out
, "%s\n", reference
);
503 if (commit_lock_file(lock
))
504 die_errno("unable to move new alternates file into place");
506 link_alt_odb_entries(reference
, strlen(reference
), '\n', NULL
, 0);
511 void add_to_alternates_memory(const char *reference
)
514 * Make sure alternates are initialized, or else our entry may be
515 * overwritten when they are.
519 link_alt_odb_entries(reference
, strlen(reference
), '\n', NULL
, 0);
523 * Compute the exact path an alternate is at and returns it. In case of
524 * error NULL is returned and the human readable error is added to `err`
525 * `path` may be relative and should point to $GITDIR.
526 * `err` must not be null.
528 char *compute_alternate_path(const char *path
, struct strbuf
*err
)
530 char *ref_git
= NULL
;
531 const char *repo
, *ref_git_s
;
534 ref_git_s
= real_path_if_valid(path
);
537 strbuf_addf(err
, _("path '%s' does not exist"), path
);
541 * Beware: read_gitfile(), real_path() and mkpath()
542 * return static buffer
544 ref_git
= xstrdup(ref_git_s
);
546 repo
= read_gitfile(ref_git
);
548 repo
= read_gitfile(mkpath("%s/.git", ref_git
));
551 ref_git
= xstrdup(repo
);
554 if (!repo
&& is_directory(mkpath("%s/.git/objects", ref_git
))) {
555 char *ref_git_git
= mkpathdup("%s/.git", ref_git
);
557 ref_git
= ref_git_git
;
558 } else if (!is_directory(mkpath("%s/objects", ref_git
))) {
559 struct strbuf sb
= STRBUF_INIT
;
561 if (get_common_dir(&sb
, ref_git
)) {
563 _("reference repository '%s' as a linked "
564 "checkout is not supported yet."),
569 strbuf_addf(err
, _("reference repository '%s' is not a "
570 "local repository."), path
);
574 if (!access(mkpath("%s/shallow", ref_git
), F_OK
)) {
575 strbuf_addf(err
, _("reference repository '%s' is shallow"),
581 if (!access(mkpath("%s/info/grafts", ref_git
), F_OK
)) {
583 _("reference repository '%s' is grafted"),
591 FREE_AND_NULL(ref_git
);
597 int foreach_alt_odb(alt_odb_fn fn
, void *cb
)
599 struct alternate_object_database
*ent
;
603 for (ent
= alt_odb_list
; ent
; ent
= ent
->next
) {
611 void prepare_alt_odb(void)
618 alt
= getenv(ALTERNATE_DB_ENVIRONMENT
);
621 alt_odb_tail
= &alt_odb_list
;
622 link_alt_odb_entries(alt
, strlen(alt
), PATH_SEP
, NULL
, 0);
624 read_info_alternates(get_object_directory(), 0);
627 /* Returns 1 if we have successfully freshened the file, 0 otherwise. */
628 static int freshen_file(const char *fn
)
631 t
.actime
= t
.modtime
= time(NULL
);
632 return !utime(fn
, &t
);
636 * All of the check_and_freshen functions return 1 if the file exists and was
637 * freshened (if freshening was requested), 0 otherwise. If they return
638 * 0, you should not assume that it is safe to skip a write of the object (it
639 * either does not exist on disk, or has a stale mtime and may be subject to
642 int check_and_freshen_file(const char *fn
, int freshen
)
644 if (access(fn
, F_OK
))
646 if (freshen
&& !freshen_file(fn
))
651 static int check_and_freshen_local(const unsigned char *sha1
, int freshen
)
653 return check_and_freshen_file(sha1_file_name(sha1
), freshen
);
656 static int check_and_freshen_nonlocal(const unsigned char *sha1
, int freshen
)
658 struct alternate_object_database
*alt
;
660 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
661 const char *path
= alt_sha1_path(alt
, sha1
);
662 if (check_and_freshen_file(path
, freshen
))
668 static int check_and_freshen(const unsigned char *sha1
, int freshen
)
670 return check_and_freshen_local(sha1
, freshen
) ||
671 check_and_freshen_nonlocal(sha1
, freshen
);
674 int has_loose_object_nonlocal(const unsigned char *sha1
)
676 return check_and_freshen_nonlocal(sha1
, 0);
679 static int has_loose_object(const unsigned char *sha1
)
681 return check_and_freshen(sha1
, 0);
684 static void mmap_limit_check(size_t length
)
686 static size_t limit
= 0;
688 limit
= git_env_ulong("GIT_MMAP_LIMIT", 0);
693 die("attempting to mmap %"PRIuMAX
" over limit %"PRIuMAX
,
694 (uintmax_t)length
, (uintmax_t)limit
);
697 void *xmmap_gently(void *start
, size_t length
,
698 int prot
, int flags
, int fd
, off_t offset
)
702 mmap_limit_check(length
);
703 ret
= mmap(start
, length
, prot
, flags
, fd
, offset
);
704 if (ret
== MAP_FAILED
) {
707 release_pack_memory(length
);
708 ret
= mmap(start
, length
, prot
, flags
, fd
, offset
);
713 void *xmmap(void *start
, size_t length
,
714 int prot
, int flags
, int fd
, off_t offset
)
716 void *ret
= xmmap_gently(start
, length
, prot
, flags
, fd
, offset
);
717 if (ret
== MAP_FAILED
)
718 die_errno("mmap failed");
723 * With an in-core object data in "map", rehash it to make sure the
724 * object name actually matches "sha1" to detect object corruption.
725 * With "map" == NULL, try reading the object named with "sha1" using
726 * the streaming interface and rehash it to do the same.
728 int check_sha1_signature(const unsigned char *sha1
, void *map
,
729 unsigned long size
, const char *type
)
731 unsigned char real_sha1
[20];
732 enum object_type obj_type
;
733 struct git_istream
*st
;
739 hash_sha1_file(map
, size
, type
, real_sha1
);
740 return hashcmp(sha1
, real_sha1
) ? -1 : 0;
743 st
= open_istream(sha1
, &obj_type
, &size
, NULL
);
747 /* Generate the header */
748 hdrlen
= xsnprintf(hdr
, sizeof(hdr
), "%s %lu", typename(obj_type
), size
) + 1;
752 git_SHA1_Update(&c
, hdr
, hdrlen
);
755 ssize_t readlen
= read_istream(st
, buf
, sizeof(buf
));
763 git_SHA1_Update(&c
, buf
, readlen
);
765 git_SHA1_Final(real_sha1
, &c
);
767 return hashcmp(sha1
, real_sha1
) ? -1 : 0;
770 int git_open_cloexec(const char *name
, int flags
)
773 static int o_cloexec
= O_CLOEXEC
;
775 fd
= open(name
, flags
| o_cloexec
);
776 if ((o_cloexec
& O_CLOEXEC
) && fd
< 0 && errno
== EINVAL
) {
777 /* Try again w/o O_CLOEXEC: the kernel might not support it */
778 o_cloexec
&= ~O_CLOEXEC
;
779 fd
= open(name
, flags
| o_cloexec
);
782 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
784 static int fd_cloexec
= FD_CLOEXEC
;
786 if (!o_cloexec
&& 0 <= fd
&& fd_cloexec
) {
787 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
788 int flags
= fcntl(fd
, F_GETFD
);
789 if (fcntl(fd
, F_SETFD
, flags
| fd_cloexec
))
798 * Find "sha1" as a loose object in the local repository or in an alternate.
799 * Returns 0 on success, negative on failure.
801 * The "path" out-parameter will give the path of the object we found (if any).
802 * Note that it may point to static storage and is only valid until another
803 * call to sha1_file_name(), etc.
805 static int stat_sha1_file(const unsigned char *sha1
, struct stat
*st
,
808 struct alternate_object_database
*alt
;
810 *path
= sha1_file_name(sha1
);
811 if (!lstat(*path
, st
))
816 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
817 *path
= alt_sha1_path(alt
, sha1
);
818 if (!lstat(*path
, st
))
826 * Like stat_sha1_file(), but actually open the object and return the
827 * descriptor. See the caveats on the "path" parameter above.
829 static int open_sha1_file(const unsigned char *sha1
, const char **path
)
832 struct alternate_object_database
*alt
;
833 int most_interesting_errno
;
835 *path
= sha1_file_name(sha1
);
836 fd
= git_open(*path
);
839 most_interesting_errno
= errno
;
842 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
843 *path
= alt_sha1_path(alt
, sha1
);
844 fd
= git_open(*path
);
847 if (most_interesting_errno
== ENOENT
)
848 most_interesting_errno
= errno
;
850 errno
= most_interesting_errno
;
855 * Map the loose object at "path" if it is not NULL, or the path found by
856 * searching for a loose object named "sha1".
858 static void *map_sha1_file_1(const char *path
,
859 const unsigned char *sha1
,
868 fd
= open_sha1_file(sha1
, &path
);
873 if (!fstat(fd
, &st
)) {
874 *size
= xsize_t(st
.st_size
);
876 /* mmap() is forbidden on empty files */
877 error("object file %s is empty", path
);
880 map
= xmmap(NULL
, *size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
887 void *map_sha1_file(const unsigned char *sha1
, unsigned long *size
)
889 return map_sha1_file_1(NULL
, sha1
, size
);
892 static int unpack_sha1_short_header(git_zstream
*stream
,
893 unsigned char *map
, unsigned long mapsize
,
894 void *buffer
, unsigned long bufsiz
)
896 /* Get the data stream */
897 memset(stream
, 0, sizeof(*stream
));
898 stream
->next_in
= map
;
899 stream
->avail_in
= mapsize
;
900 stream
->next_out
= buffer
;
901 stream
->avail_out
= bufsiz
;
903 git_inflate_init(stream
);
904 return git_inflate(stream
, 0);
907 int unpack_sha1_header(git_zstream
*stream
,
908 unsigned char *map
, unsigned long mapsize
,
909 void *buffer
, unsigned long bufsiz
)
911 int status
= unpack_sha1_short_header(stream
, map
, mapsize
,
917 /* Make sure we have the terminating NUL */
918 if (!memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
923 static int unpack_sha1_header_to_strbuf(git_zstream
*stream
, unsigned char *map
,
924 unsigned long mapsize
, void *buffer
,
925 unsigned long bufsiz
, struct strbuf
*header
)
929 status
= unpack_sha1_short_header(stream
, map
, mapsize
, buffer
, bufsiz
);
934 * Check if entire header is unpacked in the first iteration.
936 if (memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
940 * buffer[0..bufsiz] was not large enough. Copy the partial
941 * result out to header, and then append the result of further
942 * reading the stream.
944 strbuf_add(header
, buffer
, stream
->next_out
- (unsigned char *)buffer
);
945 stream
->next_out
= buffer
;
946 stream
->avail_out
= bufsiz
;
949 status
= git_inflate(stream
, 0);
950 strbuf_add(header
, buffer
, stream
->next_out
- (unsigned char *)buffer
);
951 if (memchr(buffer
, '\0', stream
->next_out
- (unsigned char *)buffer
))
953 stream
->next_out
= buffer
;
954 stream
->avail_out
= bufsiz
;
955 } while (status
!= Z_STREAM_END
);
959 static void *unpack_sha1_rest(git_zstream
*stream
, void *buffer
, unsigned long size
, const unsigned char *sha1
)
961 int bytes
= strlen(buffer
) + 1;
962 unsigned char *buf
= xmallocz(size
);
966 n
= stream
->total_out
- bytes
;
969 memcpy(buf
, (char *) buffer
+ bytes
, n
);
973 * The above condition must be (bytes <= size), not
974 * (bytes < size). In other words, even though we
975 * expect no more output and set avail_out to zero,
976 * the input zlib stream may have bytes that express
977 * "this concludes the stream", and we *do* want to
980 * Otherwise we would not be able to test that we
981 * consumed all the input to reach the expected size;
982 * we also want to check that zlib tells us that all
983 * went well with status == Z_STREAM_END at the end.
985 stream
->next_out
= buf
+ bytes
;
986 stream
->avail_out
= size
- bytes
;
987 while (status
== Z_OK
)
988 status
= git_inflate(stream
, Z_FINISH
);
990 if (status
== Z_STREAM_END
&& !stream
->avail_in
) {
991 git_inflate_end(stream
);
996 error("corrupt loose object '%s'", sha1_to_hex(sha1
));
997 else if (stream
->avail_in
)
998 error("garbage at end of loose object '%s'",
1005 * We used to just use "sscanf()", but that's actually way
1006 * too permissive for what we want to check. So do an anal
1007 * object header parse by hand.
1009 static int parse_sha1_header_extended(const char *hdr
, struct object_info
*oi
,
1012 const char *type_buf
= hdr
;
1014 int type
, type_len
= 0;
1017 * The type can be of any size but is followed by
1029 type
= type_from_string_gently(type_buf
, type_len
, 1);
1031 strbuf_add(oi
->typename
, type_buf
, type_len
);
1033 * Set type to 0 if its an unknown object and
1034 * we're obtaining the type using '--allow-unknown-type'
1037 if ((flags
& OBJECT_INFO_ALLOW_UNKNOWN_TYPE
) && (type
< 0))
1040 die("invalid object type");
1045 * The length must follow immediately, and be in canonical
1046 * decimal format (ie "010" is not valid).
1048 size
= *hdr
++ - '0';
1053 unsigned long c
= *hdr
- '0';
1057 size
= size
* 10 + c
;
1065 * The length must be followed by a zero byte
1067 return *hdr
? -1 : type
;
1070 int parse_sha1_header(const char *hdr
, unsigned long *sizep
)
1072 struct object_info oi
= OBJECT_INFO_INIT
;
1075 return parse_sha1_header_extended(hdr
, &oi
, 0);
1078 static int sha1_loose_object_info(const unsigned char *sha1
,
1079 struct object_info
*oi
,
1083 unsigned long mapsize
;
1087 struct strbuf hdrbuf
= STRBUF_INIT
;
1088 unsigned long size_scratch
;
1090 if (oi
->delta_base_sha1
)
1091 hashclr(oi
->delta_base_sha1
);
1094 * If we don't care about type or size, then we don't
1095 * need to look inside the object at all. Note that we
1096 * do not optimize out the stat call, even if the
1097 * caller doesn't care about the disk-size, since our
1098 * return value implicitly indicates whether the
1099 * object even exists.
1101 if (!oi
->typep
&& !oi
->typename
&& !oi
->sizep
&& !oi
->contentp
) {
1104 if (stat_sha1_file(sha1
, &st
, &path
) < 0)
1107 *oi
->disk_sizep
= st
.st_size
;
1111 map
= map_sha1_file(sha1
, &mapsize
);
1116 oi
->sizep
= &size_scratch
;
1119 *oi
->disk_sizep
= mapsize
;
1120 if ((flags
& OBJECT_INFO_ALLOW_UNKNOWN_TYPE
)) {
1121 if (unpack_sha1_header_to_strbuf(&stream
, map
, mapsize
, hdr
, sizeof(hdr
), &hdrbuf
) < 0)
1122 status
= error("unable to unpack %s header with --allow-unknown-type",
1124 } else if (unpack_sha1_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
)) < 0)
1125 status
= error("unable to unpack %s header",
1129 else if (hdrbuf
.len
) {
1130 if ((status
= parse_sha1_header_extended(hdrbuf
.buf
, oi
, flags
)) < 0)
1131 status
= error("unable to parse %s header with --allow-unknown-type",
1133 } else if ((status
= parse_sha1_header_extended(hdr
, oi
, flags
)) < 0)
1134 status
= error("unable to parse %s header", sha1_to_hex(sha1
));
1136 if (status
>= 0 && oi
->contentp
)
1137 *oi
->contentp
= unpack_sha1_rest(&stream
, hdr
,
1140 git_inflate_end(&stream
);
1142 munmap(map
, mapsize
);
1143 if (status
&& oi
->typep
)
1144 *oi
->typep
= status
;
1145 if (oi
->sizep
== &size_scratch
)
1147 strbuf_release(&hdrbuf
);
1148 oi
->whence
= OI_LOOSE
;
1149 return (status
< 0) ? status
: 0;
1152 int sha1_object_info_extended(const unsigned char *sha1
, struct object_info
*oi
, unsigned flags
)
1154 static struct object_info blank_oi
= OBJECT_INFO_INIT
;
1155 struct pack_entry e
;
1157 const unsigned char *real
= (flags
& OBJECT_INFO_LOOKUP_REPLACE
) ?
1158 lookup_replace_object(sha1
) :
1164 if (!(flags
& OBJECT_INFO_SKIP_CACHED
)) {
1165 struct cached_object
*co
= find_cached_object(real
);
1168 *(oi
->typep
) = co
->type
;
1170 *(oi
->sizep
) = co
->size
;
1172 *(oi
->disk_sizep
) = 0;
1173 if (oi
->delta_base_sha1
)
1174 hashclr(oi
->delta_base_sha1
);
1176 strbuf_addstr(oi
->typename
, typename(co
->type
));
1178 *oi
->contentp
= xmemdupz(co
->buf
, co
->size
);
1179 oi
->whence
= OI_CACHED
;
1184 if (!find_pack_entry(real
, &e
)) {
1185 /* Most likely it's a loose object. */
1186 if (!sha1_loose_object_info(real
, oi
, flags
))
1189 /* Not a loose object; someone else may have just packed it. */
1190 if (flags
& OBJECT_INFO_QUICK
) {
1193 reprepare_packed_git();
1194 if (!find_pack_entry(real
, &e
))
1199 if (oi
== &blank_oi
)
1201 * We know that the caller doesn't actually need the
1202 * information below, so return early.
1206 rtype
= packed_object_info(e
.p
, e
.offset
, oi
);
1208 mark_bad_packed_object(e
.p
, real
);
1209 return sha1_object_info_extended(real
, oi
, 0);
1210 } else if (oi
->whence
== OI_PACKED
) {
1211 oi
->u
.packed
.offset
= e
.offset
;
1212 oi
->u
.packed
.pack
= e
.p
;
1213 oi
->u
.packed
.is_delta
= (rtype
== OBJ_REF_DELTA
||
1214 rtype
== OBJ_OFS_DELTA
);
1220 /* returns enum object_type or negative */
1221 int sha1_object_info(const unsigned char *sha1
, unsigned long *sizep
)
1223 enum object_type type
;
1224 struct object_info oi
= OBJECT_INFO_INIT
;
1228 if (sha1_object_info_extended(sha1
, &oi
,
1229 OBJECT_INFO_LOOKUP_REPLACE
) < 0)
1234 static void *read_object(const unsigned char *sha1
, enum object_type
*type
,
1235 unsigned long *size
)
1237 struct object_info oi
= OBJECT_INFO_INIT
;
1241 oi
.contentp
= &content
;
1243 if (sha1_object_info_extended(sha1
, &oi
, 0) < 0)
1248 int pretend_sha1_file(void *buf
, unsigned long len
, enum object_type type
,
1249 unsigned char *sha1
)
1251 struct cached_object
*co
;
1253 hash_sha1_file(buf
, len
, typename(type
), sha1
);
1254 if (has_sha1_file(sha1
) || find_cached_object(sha1
))
1256 ALLOC_GROW(cached_objects
, cached_object_nr
+ 1, cached_object_alloc
);
1257 co
= &cached_objects
[cached_object_nr
++];
1260 co
->buf
= xmalloc(len
);
1261 memcpy(co
->buf
, buf
, len
);
1262 hashcpy(co
->sha1
, sha1
);
1267 * This function dies on corrupt objects; the callers who want to
1268 * deal with them should arrange to call read_object() and give error
1269 * messages themselves.
1271 void *read_sha1_file_extended(const unsigned char *sha1
,
1272 enum object_type
*type
,
1273 unsigned long *size
,
1277 const struct packed_git
*p
;
1280 const unsigned char *repl
= lookup_replace
? lookup_replace_object(sha1
)
1284 data
= read_object(repl
, type
, size
);
1288 if (errno
&& errno
!= ENOENT
)
1289 die_errno("failed to read object %s", sha1_to_hex(sha1
));
1291 /* die if we replaced an object with one that does not exist */
1293 die("replacement %s not found for %s",
1294 sha1_to_hex(repl
), sha1_to_hex(sha1
));
1296 if (!stat_sha1_file(repl
, &st
, &path
))
1297 die("loose object %s (stored in %s) is corrupt",
1298 sha1_to_hex(repl
), path
);
1300 if ((p
= has_packed_and_bad(repl
)) != NULL
)
1301 die("packed object %s (stored in %s) is corrupt",
1302 sha1_to_hex(repl
), p
->pack_name
);
1307 void *read_object_with_reference(const unsigned char *sha1
,
1308 const char *required_type_name
,
1309 unsigned long *size
,
1310 unsigned char *actual_sha1_return
)
1312 enum object_type type
, required_type
;
1314 unsigned long isize
;
1315 unsigned char actual_sha1
[20];
1317 required_type
= type_from_string(required_type_name
);
1318 hashcpy(actual_sha1
, sha1
);
1320 int ref_length
= -1;
1321 const char *ref_type
= NULL
;
1323 buffer
= read_sha1_file(actual_sha1
, &type
, &isize
);
1326 if (type
== required_type
) {
1328 if (actual_sha1_return
)
1329 hashcpy(actual_sha1_return
, actual_sha1
);
1332 /* Handle references */
1333 else if (type
== OBJ_COMMIT
)
1335 else if (type
== OBJ_TAG
)
1336 ref_type
= "object ";
1341 ref_length
= strlen(ref_type
);
1343 if (ref_length
+ 40 > isize
||
1344 memcmp(buffer
, ref_type
, ref_length
) ||
1345 get_sha1_hex((char *) buffer
+ ref_length
, actual_sha1
)) {
1350 /* Now we have the ID of the referred-to object in
1351 * actual_sha1. Check again. */
1355 static void write_sha1_file_prepare(const void *buf
, unsigned long len
,
1356 const char *type
, unsigned char *sha1
,
1357 char *hdr
, int *hdrlen
)
1361 /* Generate the header */
1362 *hdrlen
= xsnprintf(hdr
, *hdrlen
, "%s %lu", type
, len
)+1;
1366 git_SHA1_Update(&c
, hdr
, *hdrlen
);
1367 git_SHA1_Update(&c
, buf
, len
);
1368 git_SHA1_Final(sha1
, &c
);
1372 * Move the just written object into its final resting place.
1374 int finalize_object_file(const char *tmpfile
, const char *filename
)
1378 if (object_creation_mode
== OBJECT_CREATION_USES_RENAMES
)
1380 else if (link(tmpfile
, filename
))
1384 * Coda hack - coda doesn't like cross-directory links,
1385 * so we fall back to a rename, which will mean that it
1386 * won't be able to check collisions, but that's not a
1389 * The same holds for FAT formatted media.
1391 * When this succeeds, we just return. We have nothing
1394 if (ret
&& ret
!= EEXIST
) {
1396 if (!rename(tmpfile
, filename
))
1400 unlink_or_warn(tmpfile
);
1402 if (ret
!= EEXIST
) {
1403 return error_errno("unable to write sha1 filename %s", filename
);
1405 /* FIXME!!! Collision check here ? */
1409 if (adjust_shared_perm(filename
))
1410 return error("unable to set permission to '%s'", filename
);
1414 static int write_buffer(int fd
, const void *buf
, size_t len
)
1416 if (write_in_full(fd
, buf
, len
) < 0)
1417 return error_errno("file write error");
1421 int hash_sha1_file(const void *buf
, unsigned long len
, const char *type
,
1422 unsigned char *sha1
)
1425 int hdrlen
= sizeof(hdr
);
1426 write_sha1_file_prepare(buf
, len
, type
, sha1
, hdr
, &hdrlen
);
1430 /* Finalize a file on disk, and close it. */
1431 static void close_sha1_file(int fd
)
1433 if (fsync_object_files
)
1434 fsync_or_die(fd
, "sha1 file");
1436 die_errno("error when closing sha1 file");
1439 /* Size of directory component, including the ending '/' */
1440 static inline int directory_size(const char *filename
)
1442 const char *s
= strrchr(filename
, '/');
1445 return s
- filename
+ 1;
1449 * This creates a temporary file in the same directory as the final
1452 * We want to avoid cross-directory filename renames, because those
1453 * can have problems on various filesystems (FAT, NFS, Coda).
1455 static int create_tmpfile(struct strbuf
*tmp
, const char *filename
)
1457 int fd
, dirlen
= directory_size(filename
);
1460 strbuf_add(tmp
, filename
, dirlen
);
1461 strbuf_addstr(tmp
, "tmp_obj_XXXXXX");
1462 fd
= git_mkstemp_mode(tmp
->buf
, 0444);
1463 if (fd
< 0 && dirlen
&& errno
== ENOENT
) {
1465 * Make sure the directory exists; note that the contents
1466 * of the buffer are undefined after mkstemp returns an
1467 * error, so we have to rewrite the whole buffer from
1471 strbuf_add(tmp
, filename
, dirlen
- 1);
1472 if (mkdir(tmp
->buf
, 0777) && errno
!= EEXIST
)
1474 if (adjust_shared_perm(tmp
->buf
))
1478 strbuf_addstr(tmp
, "/tmp_obj_XXXXXX");
1479 fd
= git_mkstemp_mode(tmp
->buf
, 0444);
1484 static int write_loose_object(const unsigned char *sha1
, char *hdr
, int hdrlen
,
1485 const void *buf
, unsigned long len
, time_t mtime
)
1488 unsigned char compressed
[4096];
1491 unsigned char parano_sha1
[20];
1492 static struct strbuf tmp_file
= STRBUF_INIT
;
1493 const char *filename
= sha1_file_name(sha1
);
1495 fd
= create_tmpfile(&tmp_file
, filename
);
1497 if (errno
== EACCES
)
1498 return error("insufficient permission for adding an object to repository database %s", get_object_directory());
1500 return error_errno("unable to create temporary file");
1504 git_deflate_init(&stream
, zlib_compression_level
);
1505 stream
.next_out
= compressed
;
1506 stream
.avail_out
= sizeof(compressed
);
1509 /* First header.. */
1510 stream
.next_in
= (unsigned char *)hdr
;
1511 stream
.avail_in
= hdrlen
;
1512 while (git_deflate(&stream
, 0) == Z_OK
)
1514 git_SHA1_Update(&c
, hdr
, hdrlen
);
1516 /* Then the data itself.. */
1517 stream
.next_in
= (void *)buf
;
1518 stream
.avail_in
= len
;
1520 unsigned char *in0
= stream
.next_in
;
1521 ret
= git_deflate(&stream
, Z_FINISH
);
1522 git_SHA1_Update(&c
, in0
, stream
.next_in
- in0
);
1523 if (write_buffer(fd
, compressed
, stream
.next_out
- compressed
) < 0)
1524 die("unable to write sha1 file");
1525 stream
.next_out
= compressed
;
1526 stream
.avail_out
= sizeof(compressed
);
1527 } while (ret
== Z_OK
);
1529 if (ret
!= Z_STREAM_END
)
1530 die("unable to deflate new object %s (%d)", sha1_to_hex(sha1
), ret
);
1531 ret
= git_deflate_end_gently(&stream
);
1533 die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1
), ret
);
1534 git_SHA1_Final(parano_sha1
, &c
);
1535 if (hashcmp(sha1
, parano_sha1
) != 0)
1536 die("confused by unstable object source data for %s", sha1_to_hex(sha1
));
1538 close_sha1_file(fd
);
1543 utb
.modtime
= mtime
;
1544 if (utime(tmp_file
.buf
, &utb
) < 0)
1545 warning_errno("failed utime() on %s", tmp_file
.buf
);
1548 return finalize_object_file(tmp_file
.buf
, filename
);
1551 static int freshen_loose_object(const unsigned char *sha1
)
1553 return check_and_freshen(sha1
, 1);
1556 static int freshen_packed_object(const unsigned char *sha1
)
1558 struct pack_entry e
;
1559 if (!find_pack_entry(sha1
, &e
))
1563 if (!freshen_file(e
.p
->pack_name
))
1569 int write_sha1_file(const void *buf
, unsigned long len
, const char *type
, unsigned char *sha1
)
1572 int hdrlen
= sizeof(hdr
);
1574 /* Normally if we have it in the pack then we do not bother writing
1575 * it out into .git/objects/??/?{38} file.
1577 write_sha1_file_prepare(buf
, len
, type
, sha1
, hdr
, &hdrlen
);
1578 if (freshen_packed_object(sha1
) || freshen_loose_object(sha1
))
1580 return write_loose_object(sha1
, hdr
, hdrlen
, buf
, len
, 0);
1583 int hash_sha1_file_literally(const void *buf
, unsigned long len
, const char *type
,
1584 struct object_id
*oid
, unsigned flags
)
1587 int hdrlen
, status
= 0;
1589 /* type string, SP, %lu of the length plus NUL must fit this */
1590 hdrlen
= strlen(type
) + 32;
1591 header
= xmalloc(hdrlen
);
1592 write_sha1_file_prepare(buf
, len
, type
, oid
->hash
, header
, &hdrlen
);
1594 if (!(flags
& HASH_WRITE_OBJECT
))
1596 if (freshen_packed_object(oid
->hash
) || freshen_loose_object(oid
->hash
))
1598 status
= write_loose_object(oid
->hash
, header
, hdrlen
, buf
, len
, 0);
1605 int force_object_loose(const unsigned char *sha1
, time_t mtime
)
1609 enum object_type type
;
1614 if (has_loose_object(sha1
))
1616 buf
= read_object(sha1
, &type
, &len
);
1618 return error("cannot read sha1_file for %s", sha1_to_hex(sha1
));
1619 hdrlen
= xsnprintf(hdr
, sizeof(hdr
), "%s %lu", typename(type
), len
) + 1;
1620 ret
= write_loose_object(sha1
, hdr
, hdrlen
, buf
, len
, mtime
);
1626 int has_sha1_file_with_flags(const unsigned char *sha1
, int flags
)
1628 if (!startup_info
->have_repository
)
1630 return sha1_object_info_extended(sha1
, NULL
,
1631 flags
| OBJECT_INFO_SKIP_CACHED
) >= 0;
1634 int has_object_file(const struct object_id
*oid
)
1636 return has_sha1_file(oid
->hash
);
1639 int has_object_file_with_flags(const struct object_id
*oid
, int flags
)
1641 return has_sha1_file_with_flags(oid
->hash
, flags
);
1644 static void check_tree(const void *buf
, size_t size
)
1646 struct tree_desc desc
;
1647 struct name_entry entry
;
1649 init_tree_desc(&desc
, buf
, size
);
1650 while (tree_entry(&desc
, &entry
))
1652 * tree_entry() will die() on malformed entries */
1656 static void check_commit(const void *buf
, size_t size
)
1659 memset(&c
, 0, sizeof(c
));
1660 if (parse_commit_buffer(&c
, buf
, size
))
1661 die("corrupt commit");
1664 static void check_tag(const void *buf
, size_t size
)
1667 memset(&t
, 0, sizeof(t
));
1668 if (parse_tag_buffer(&t
, buf
, size
))
1672 static int index_mem(unsigned char *sha1
, void *buf
, size_t size
,
1673 enum object_type type
,
1674 const char *path
, unsigned flags
)
1676 int ret
, re_allocated
= 0;
1677 int write_object
= flags
& HASH_WRITE_OBJECT
;
1683 * Convert blobs to git internal format
1685 if ((type
== OBJ_BLOB
) && path
) {
1686 struct strbuf nbuf
= STRBUF_INIT
;
1687 if (convert_to_git(&the_index
, path
, buf
, size
, &nbuf
,
1688 write_object
? safe_crlf
: SAFE_CRLF_FALSE
)) {
1689 buf
= strbuf_detach(&nbuf
, &size
);
1693 if (flags
& HASH_FORMAT_CHECK
) {
1694 if (type
== OBJ_TREE
)
1695 check_tree(buf
, size
);
1696 if (type
== OBJ_COMMIT
)
1697 check_commit(buf
, size
);
1698 if (type
== OBJ_TAG
)
1699 check_tag(buf
, size
);
1703 ret
= write_sha1_file(buf
, size
, typename(type
), sha1
);
1705 ret
= hash_sha1_file(buf
, size
, typename(type
), sha1
);
1711 static int index_stream_convert_blob(unsigned char *sha1
, int fd
,
1712 const char *path
, unsigned flags
)
1715 const int write_object
= flags
& HASH_WRITE_OBJECT
;
1716 struct strbuf sbuf
= STRBUF_INIT
;
1719 assert(would_convert_to_git_filter_fd(path
));
1721 convert_to_git_filter_fd(&the_index
, path
, fd
, &sbuf
,
1722 write_object
? safe_crlf
: SAFE_CRLF_FALSE
);
1725 ret
= write_sha1_file(sbuf
.buf
, sbuf
.len
, typename(OBJ_BLOB
),
1728 ret
= hash_sha1_file(sbuf
.buf
, sbuf
.len
, typename(OBJ_BLOB
),
1730 strbuf_release(&sbuf
);
1734 static int index_pipe(unsigned char *sha1
, int fd
, enum object_type type
,
1735 const char *path
, unsigned flags
)
1737 struct strbuf sbuf
= STRBUF_INIT
;
1740 if (strbuf_read(&sbuf
, fd
, 4096) >= 0)
1741 ret
= index_mem(sha1
, sbuf
.buf
, sbuf
.len
, type
, path
, flags
);
1744 strbuf_release(&sbuf
);
1748 #define SMALL_FILE_SIZE (32*1024)
1750 static int index_core(unsigned char *sha1
, int fd
, size_t size
,
1751 enum object_type type
, const char *path
,
1757 ret
= index_mem(sha1
, "", size
, type
, path
, flags
);
1758 } else if (size
<= SMALL_FILE_SIZE
) {
1759 char *buf
= xmalloc(size
);
1760 if (size
== read_in_full(fd
, buf
, size
))
1761 ret
= index_mem(sha1
, buf
, size
, type
, path
, flags
);
1763 ret
= error_errno("short read");
1766 void *buf
= xmmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1767 ret
= index_mem(sha1
, buf
, size
, type
, path
, flags
);
1774 * This creates one packfile per large blob unless bulk-checkin
1775 * machinery is "plugged".
1777 * This also bypasses the usual "convert-to-git" dance, and that is on
1778 * purpose. We could write a streaming version of the converting
1779 * functions and insert that before feeding the data to fast-import
1780 * (or equivalent in-core API described above). However, that is
1781 * somewhat complicated, as we do not know the size of the filter
1782 * result, which we need to know beforehand when writing a git object.
1783 * Since the primary motivation for trying to stream from the working
1784 * tree file and to avoid mmaping it in core is to deal with large
1785 * binary blobs, they generally do not want to get any conversion, and
1786 * callers should avoid this code path when filters are requested.
1788 static int index_stream(struct object_id
*oid
, int fd
, size_t size
,
1789 enum object_type type
, const char *path
,
1792 return index_bulk_checkin(oid
->hash
, fd
, size
, type
, path
, flags
);
1795 int index_fd(struct object_id
*oid
, int fd
, struct stat
*st
,
1796 enum object_type type
, const char *path
, unsigned flags
)
1801 * Call xsize_t() only when needed to avoid potentially unnecessary
1802 * die() for large files.
1804 if (type
== OBJ_BLOB
&& path
&& would_convert_to_git_filter_fd(path
))
1805 ret
= index_stream_convert_blob(oid
->hash
, fd
, path
, flags
);
1806 else if (!S_ISREG(st
->st_mode
))
1807 ret
= index_pipe(oid
->hash
, fd
, type
, path
, flags
);
1808 else if (st
->st_size
<= big_file_threshold
|| type
!= OBJ_BLOB
||
1809 (path
&& would_convert_to_git(&the_index
, path
)))
1810 ret
= index_core(oid
->hash
, fd
, xsize_t(st
->st_size
), type
, path
,
1813 ret
= index_stream(oid
, fd
, xsize_t(st
->st_size
), type
, path
,
1819 int index_path(struct object_id
*oid
, const char *path
, struct stat
*st
, unsigned flags
)
1822 struct strbuf sb
= STRBUF_INIT
;
1825 switch (st
->st_mode
& S_IFMT
) {
1827 fd
= open(path
, O_RDONLY
);
1829 return error_errno("open(\"%s\")", path
);
1830 if (index_fd(oid
, fd
, st
, OBJ_BLOB
, path
, flags
) < 0)
1831 return error("%s: failed to insert into database",
1835 if (strbuf_readlink(&sb
, path
, st
->st_size
))
1836 return error_errno("readlink(\"%s\")", path
);
1837 if (!(flags
& HASH_WRITE_OBJECT
))
1838 hash_sha1_file(sb
.buf
, sb
.len
, blob_type
, oid
->hash
);
1839 else if (write_sha1_file(sb
.buf
, sb
.len
, blob_type
, oid
->hash
))
1840 rc
= error("%s: failed to insert into database", path
);
1841 strbuf_release(&sb
);
1844 return resolve_gitlink_ref(path
, "HEAD", oid
->hash
);
1846 return error("%s: unsupported file type", path
);
1851 int read_pack_header(int fd
, struct pack_header
*header
)
1853 if (read_in_full(fd
, header
, sizeof(*header
)) < sizeof(*header
))
1854 /* "eof before pack header was fully read" */
1855 return PH_ERROR_EOF
;
1857 if (header
->hdr_signature
!= htonl(PACK_SIGNATURE
))
1858 /* "protocol error (pack signature mismatch detected)" */
1859 return PH_ERROR_PACK_SIGNATURE
;
1860 if (!pack_version_ok(header
->hdr_version
))
1861 /* "protocol error (pack version unsupported)" */
1862 return PH_ERROR_PROTOCOL
;
1866 void assert_sha1_type(const unsigned char *sha1
, enum object_type expect
)
1868 enum object_type type
= sha1_object_info(sha1
, NULL
);
1870 die("%s is not a valid object", sha1_to_hex(sha1
));
1872 die("%s is not a valid '%s' object", sha1_to_hex(sha1
),
1876 int for_each_file_in_obj_subdir(unsigned int subdir_nr
,
1877 struct strbuf
*path
,
1878 each_loose_object_fn obj_cb
,
1879 each_loose_cruft_fn cruft_cb
,
1880 each_loose_subdir_fn subdir_cb
,
1883 size_t origlen
, baselen
;
1888 if (subdir_nr
> 0xff)
1889 BUG("invalid loose object subdirectory: %x", subdir_nr
);
1891 origlen
= path
->len
;
1892 strbuf_complete(path
, '/');
1893 strbuf_addf(path
, "%02x", subdir_nr
);
1894 baselen
= path
->len
;
1896 dir
= opendir(path
->buf
);
1898 if (errno
!= ENOENT
)
1899 r
= error_errno("unable to open %s", path
->buf
);
1900 strbuf_setlen(path
, origlen
);
1904 while ((de
= readdir(dir
))) {
1905 if (is_dot_or_dotdot(de
->d_name
))
1908 strbuf_setlen(path
, baselen
);
1909 strbuf_addf(path
, "/%s", de
->d_name
);
1911 if (strlen(de
->d_name
) == GIT_SHA1_HEXSZ
- 2) {
1912 char hex
[GIT_MAX_HEXSZ
+1];
1913 struct object_id oid
;
1915 xsnprintf(hex
, sizeof(hex
), "%02x%s",
1916 subdir_nr
, de
->d_name
);
1917 if (!get_oid_hex(hex
, &oid
)) {
1919 r
= obj_cb(&oid
, path
->buf
, data
);
1928 r
= cruft_cb(de
->d_name
, path
->buf
, data
);
1935 strbuf_setlen(path
, baselen
);
1936 if (!r
&& subdir_cb
)
1937 r
= subdir_cb(subdir_nr
, path
->buf
, data
);
1939 strbuf_setlen(path
, origlen
);
1944 int for_each_loose_file_in_objdir_buf(struct strbuf
*path
,
1945 each_loose_object_fn obj_cb
,
1946 each_loose_cruft_fn cruft_cb
,
1947 each_loose_subdir_fn subdir_cb
,
1953 for (i
= 0; i
< 256; i
++) {
1954 r
= for_each_file_in_obj_subdir(i
, path
, obj_cb
, cruft_cb
,
1963 int for_each_loose_file_in_objdir(const char *path
,
1964 each_loose_object_fn obj_cb
,
1965 each_loose_cruft_fn cruft_cb
,
1966 each_loose_subdir_fn subdir_cb
,
1969 struct strbuf buf
= STRBUF_INIT
;
1972 strbuf_addstr(&buf
, path
);
1973 r
= for_each_loose_file_in_objdir_buf(&buf
, obj_cb
, cruft_cb
,
1975 strbuf_release(&buf
);
1980 struct loose_alt_odb_data
{
1981 each_loose_object_fn
*cb
;
1985 static int loose_from_alt_odb(struct alternate_object_database
*alt
,
1988 struct loose_alt_odb_data
*data
= vdata
;
1989 struct strbuf buf
= STRBUF_INIT
;
1992 strbuf_addstr(&buf
, alt
->path
);
1993 r
= for_each_loose_file_in_objdir_buf(&buf
,
1994 data
->cb
, NULL
, NULL
,
1996 strbuf_release(&buf
);
2000 int for_each_loose_object(each_loose_object_fn cb
, void *data
, unsigned flags
)
2002 struct loose_alt_odb_data alt
;
2005 r
= for_each_loose_file_in_objdir(get_object_directory(),
2006 cb
, NULL
, NULL
, data
);
2010 if (flags
& FOR_EACH_OBJECT_LOCAL_ONLY
)
2015 return foreach_alt_odb(loose_from_alt_odb
, &alt
);
2018 static int check_stream_sha1(git_zstream
*stream
,
2022 const unsigned char *expected_sha1
)
2025 unsigned char real_sha1
[GIT_MAX_RAWSZ
];
2026 unsigned char buf
[4096];
2027 unsigned long total_read
;
2031 git_SHA1_Update(&c
, hdr
, stream
->total_out
);
2034 * We already read some bytes into hdr, but the ones up to the NUL
2035 * do not count against the object's content size.
2037 total_read
= stream
->total_out
- strlen(hdr
) - 1;
2040 * This size comparison must be "<=" to read the final zlib packets;
2041 * see the comment in unpack_sha1_rest for details.
2043 while (total_read
<= size
&&
2044 (status
== Z_OK
|| status
== Z_BUF_ERROR
)) {
2045 stream
->next_out
= buf
;
2046 stream
->avail_out
= sizeof(buf
);
2047 if (size
- total_read
< stream
->avail_out
)
2048 stream
->avail_out
= size
- total_read
;
2049 status
= git_inflate(stream
, Z_FINISH
);
2050 git_SHA1_Update(&c
, buf
, stream
->next_out
- buf
);
2051 total_read
+= stream
->next_out
- buf
;
2053 git_inflate_end(stream
);
2055 if (status
!= Z_STREAM_END
) {
2056 error("corrupt loose object '%s'", sha1_to_hex(expected_sha1
));
2059 if (stream
->avail_in
) {
2060 error("garbage at end of loose object '%s'",
2061 sha1_to_hex(expected_sha1
));
2065 git_SHA1_Final(real_sha1
, &c
);
2066 if (hashcmp(expected_sha1
, real_sha1
)) {
2067 error("sha1 mismatch for %s (expected %s)", path
,
2068 sha1_to_hex(expected_sha1
));
2075 int read_loose_object(const char *path
,
2076 const unsigned char *expected_sha1
,
2077 enum object_type
*type
,
2078 unsigned long *size
,
2083 unsigned long mapsize
;
2089 map
= map_sha1_file_1(path
, NULL
, &mapsize
);
2091 error_errno("unable to mmap %s", path
);
2095 if (unpack_sha1_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
)) < 0) {
2096 error("unable to unpack header of %s", path
);
2100 *type
= parse_sha1_header(hdr
, size
);
2102 error("unable to parse header of %s", path
);
2103 git_inflate_end(&stream
);
2107 if (*type
== OBJ_BLOB
) {
2108 if (check_stream_sha1(&stream
, hdr
, *size
, path
, expected_sha1
) < 0)
2111 *contents
= unpack_sha1_rest(&stream
, hdr
, *size
, expected_sha1
);
2113 error("unable to unpack contents of %s", path
);
2114 git_inflate_end(&stream
);
2117 if (check_sha1_signature(expected_sha1
, *contents
,
2118 *size
, typename(*type
))) {
2119 error("sha1 mismatch for %s (expected %s)", path
,
2120 sha1_to_hex(expected_sha1
));
2126 ret
= 0; /* everything checks out */
2130 munmap(map
, mapsize
);