]> git.ipfire.org Git - thirdparty/git.git/blame - sha1_file.c
Merge branch 'jk/info-alternates-fix-2.11' into jk/info-alternates-fix
[thirdparty/git.git] / sha1_file.c
CommitLineData
0fcfd160
LT
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 */
0fcfd160 9#include "cache.h"
b2141fc1 10#include "config.h"
6eac50d8 11#include "string-list.h"
697cc8ef 12#include "lockfile.h"
1f688557 13#include "delta.h"
a733cb60 14#include "pack.h"
8e440259
PE
15#include "blob.h"
16#include "commit.h"
4dd1fbc7 17#include "run-command.h"
8e440259
PE
18#include "tag.h"
19#include "tree.h"
c879daa2 20#include "tree-walk.h"
f35a6d3b 21#include "refs.h"
70f5d5d3 22#include "pack-revindex.h"
628522ec 23#include "sha1-lookup.h"
568508e7 24#include "bulk-checkin.h"
090ea126 25#include "streaming.h"
543c5caa 26#include "dir.h"
a73cdd21 27#include "mru.h"
12d95ef6 28#include "list.h"
c4c6effa 29#include "mergesort.h"
cf3c6352 30#include "quote.h"
0fcfd160 31
28bd70d8
JN
32#define SZ_FMT PRIuMAX
33static inline uintmax_t sz_fmt(size_t s) { return s; }
e05db0fd 34
96f1e58f 35const unsigned char null_sha1[20];
3e56e724 36const struct object_id null_oid;
8576fde6
JK
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};
88cd621d 43
c597ba80
NTND
44/*
45 * This is meant to hold a *small* number of objects that you would
46 * want read_sha1_file() to be able to return, but yet you do not want
47 * to write them into the object store (e.g. a browse-only
48 * application).
49 */
50static struct cached_object {
51 unsigned char sha1[20];
52 enum object_type type;
53 void *buf;
54 unsigned long size;
55} *cached_objects;
56static int cached_object_nr, cached_object_alloc;
57
58static struct cached_object empty_tree = {
dab0d410 59 EMPTY_TREE_SHA1_BIN_LITERAL,
c597ba80
NTND
60 OBJ_TREE,
61 "",
62 0
63};
64
65static struct cached_object *find_cached_object(const unsigned char *sha1)
66{
67 int i;
68 struct cached_object *co = cached_objects;
69
70 for (i = 0; i < cached_object_nr; i++, co++) {
71 if (!hashcmp(co->sha1, sha1))
72 return co;
73 }
74 if (!hashcmp(sha1, empty_tree.sha1))
75 return &empty_tree;
76 return NULL;
77}
78
90a6464b
JH
79int mkdir_in_gitdir(const char *path)
80{
81 if (mkdir(path, 0777)) {
82 int saved_errno = errno;
83 struct stat st;
84 struct strbuf sb = STRBUF_INIT;
85
86 if (errno != EEXIST)
87 return -1;
88 /*
89 * Are we looking at a path in a symlinked worktree
90 * whose original repository does not yet have it?
91 * e.g. .git/rr-cache pointing at its original
92 * repository in which the user hasn't performed any
93 * conflict resolution yet?
94 */
95 if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
96 strbuf_readlink(&sb, path, st.st_size) ||
97 !is_absolute_path(sb.buf) ||
98 mkdir(sb.buf, 0777)) {
99 strbuf_release(&sb);
100 errno = saved_errno;
101 return -1;
102 }
103 strbuf_release(&sb);
104 }
105 return adjust_shared_perm(path);
106}
107
0be0521b 108enum scld_error safe_create_leading_directories(char *path)
b2cb9425 109{
26c8ae2a 110 char *next_component = path + offset_1st_component(path);
0be0521b 111 enum scld_error ret = SCLD_OK;
67d42212 112
0be0521b 113 while (ret == SCLD_OK && next_component) {
f0502332 114 struct stat st;
0f527403 115 char *slash = next_component, slash_character;
f0502332 116
0f527403
MH
117 while (*slash && !is_dir_sep(*slash))
118 slash++;
119
120 if (!*slash)
b2cb9425 121 break;
bf10cf70 122
26c8ae2a 123 next_component = slash + 1;
0f527403 124 while (is_dir_sep(*next_component))
bf10cf70 125 next_component++;
26c8ae2a 126 if (!*next_component)
5f0bdf50 127 break;
831651fd 128
0f527403 129 slash_character = *slash;
831651fd 130 *slash = '\0';
67d42212
JR
131 if (!stat(path, &st)) {
132 /* path exists */
204a047f
MH
133 if (!S_ISDIR(st.st_mode)) {
134 errno = ENOTDIR;
0be0521b 135 ret = SCLD_EXISTS;
204a047f 136 }
53a39721 137 } else if (mkdir(path, 0777)) {
928734d9 138 if (errno == EEXIST &&
9e6f885d 139 !stat(path, &st) && S_ISDIR(st.st_mode))
928734d9 140 ; /* somebody created it since we checked */
18d37e86
MH
141 else if (errno == ENOENT)
142 /*
143 * Either mkdir() failed because
144 * somebody just pruned the containing
145 * directory, or stat() failed because
146 * the file that was in our way was
147 * just removed. Either way, inform
148 * the caller that it might be worth
149 * trying again:
150 */
151 ret = SCLD_VANISHED;
9e6f885d 152 else
0be0521b 153 ret = SCLD_FAILED;
53a39721 154 } else if (adjust_shared_perm(path)) {
0be0521b 155 ret = SCLD_PERMS;
457f06d6 156 }
0f527403 157 *slash = slash_character;
b2cb9425 158 }
9e6f885d 159 return ret;
b2cb9425 160}
723c31fe 161
0be0521b 162enum scld_error safe_create_leading_directories_const(const char *path)
8e21d63b 163{
02944307 164 int save_errno;
8e21d63b
JK
165 /* path points to cache entries, so xstrdup before messing with it */
166 char *buf = xstrdup(path);
0be0521b 167 enum scld_error result = safe_create_leading_directories(buf);
02944307
MH
168
169 save_errno = errno;
8e21d63b 170 free(buf);
02944307 171 errno = save_errno;
8e21d63b
JK
172 return result;
173}
174
177978f5
MH
175int raceproof_create_file(const char *path, create_file_fn fn, void *cb)
176{
177 /*
178 * The number of times we will try to remove empty directories
179 * in the way of path. This is only 1 because if another
180 * process is racily creating directories that conflict with
181 * us, we don't want to fight against them.
182 */
183 int remove_directories_remaining = 1;
184
185 /*
186 * The number of times that we will try to create the
187 * directories containing path. We are willing to attempt this
188 * more than once, because another process could be trying to
189 * clean up empty directories at the same time as we are
190 * trying to create them.
191 */
192 int create_directories_remaining = 3;
193
194 /* A scratch copy of path, filled lazily if we need it: */
195 struct strbuf path_copy = STRBUF_INIT;
196
197 int ret, save_errno;
198
199 /* Sanity check: */
200 assert(*path);
201
202retry_fn:
203 ret = fn(path, cb);
204 save_errno = errno;
205 if (!ret)
206 goto out;
207
208 if (errno == EISDIR && remove_directories_remaining-- > 0) {
209 /*
210 * A directory is in the way. Maybe it is empty; try
211 * to remove it:
212 */
213 if (!path_copy.len)
214 strbuf_addstr(&path_copy, path);
215
216 if (!remove_dir_recursively(&path_copy, REMOVE_DIR_EMPTY_ONLY))
217 goto retry_fn;
218 } else if (errno == ENOENT && create_directories_remaining-- > 0) {
219 /*
220 * Maybe the containing directory didn't exist, or
221 * maybe it was just deleted by a process that is
222 * racing with us to clean up empty directories. Try
223 * to create it:
224 */
225 enum scld_error scld_result;
226
227 if (!path_copy.len)
228 strbuf_addstr(&path_copy, path);
229
230 do {
231 scld_result = safe_create_leading_directories(path_copy.buf);
232 if (scld_result == SCLD_OK)
233 goto retry_fn;
234 } while (scld_result == SCLD_VANISHED && create_directories_remaining-- > 0);
235 }
236
237out:
238 strbuf_release(&path_copy);
239 errno = save_errno;
240 return ret;
241}
242
f7b7774f 243static void fill_sha1_path(struct strbuf *buf, const unsigned char *sha1)
ace1534d
JH
244{
245 int i;
246 for (i = 0; i < 20; i++) {
247 static char hex[] = "0123456789abcdef";
248 unsigned int val = sha1[i];
f7b7774f
JK
249 strbuf_addch(buf, hex[val >> 4]);
250 strbuf_addch(buf, hex[val & 0xf]);
afbba2f0 251 if (!i)
f7b7774f 252 strbuf_addch(buf, '/');
ace1534d
JH
253 }
254}
255
30d6c6ea 256const char *sha1_file_name(const unsigned char *sha1)
0fcfd160 257{
f7b7774f 258 static struct strbuf buf = STRBUF_INIT;
0fcfd160 259
f7b7774f
JK
260 strbuf_reset(&buf);
261 strbuf_addf(&buf, "%s/", get_object_directory());
560fb6a1 262
f7b7774f
JK
263 fill_sha1_path(&buf, sha1);
264 return buf.buf;
0fcfd160
LT
265}
266
38dbe5f0
JK
267struct strbuf *alt_scratch_buf(struct alternate_object_database *alt)
268{
269 strbuf_setlen(&alt->scratch, alt->base_len);
270 return &alt->scratch;
271}
272
29ec6af2
JK
273static const char *alt_sha1_path(struct alternate_object_database *alt,
274 const unsigned char *sha1)
275{
38dbe5f0 276 struct strbuf *buf = alt_scratch_buf(alt);
f7b7774f 277 fill_sha1_path(buf, sha1);
38dbe5f0 278 return buf->buf;
0fcfd160
LT
279}
280
1cec8c63
JK
281 char *odb_pack_name(struct strbuf *buf,
282 const unsigned char *sha1,
283 const char *ext)
bf592c50 284{
ac5190cc
JK
285 strbuf_reset(buf);
286 strbuf_addf(buf, "%s/pack/pack-%s.%s", get_object_directory(),
1cec8c63 287 sha1_to_hex(sha1), ext);
ac5190cc 288 return buf->buf;
bf592c50
DB
289}
290
633f43e1 291char *sha1_pack_name(const unsigned char *sha1)
bf592c50 292{
ac5190cc 293 static struct strbuf buf = STRBUF_INIT;
1cec8c63 294 return odb_pack_name(&buf, sha1, "pack");
633f43e1 295}
bf592c50 296
633f43e1
HO
297char *sha1_pack_index_name(const unsigned char *sha1)
298{
ac5190cc 299 static struct strbuf buf = STRBUF_INIT;
1cec8c63 300 return odb_pack_name(&buf, sha1, "idx");
bf592c50
DB
301}
302
d5a63b99
JH
303struct alternate_object_database *alt_odb_list;
304static struct alternate_object_database **alt_odb_tail;
ace1534d 305
4ea82473
JK
306/*
307 * Return non-zero iff the path is usable as an alternate object database.
308 */
309static int alt_odb_usable(struct strbuf *path, const char *normalized_objdir)
310{
311 struct alternate_object_database *alt;
312
313 /* Detect cases where alternate disappeared */
314 if (!is_directory(path->buf)) {
315 error("object directory %s does not exist; "
316 "check .git/objects/info/alternates.",
317 path->buf);
318 return 0;
319 }
320
321 /*
322 * Prevent the common mistake of listing the same
323 * thing twice, or object directory itself.
324 */
325 for (alt = alt_odb_list; alt; alt = alt->next) {
ea0fc3b4 326 if (!fspathcmp(path->buf, alt->path))
4ea82473
JK
327 return 0;
328 }
329 if (!fspathcmp(path->buf, normalized_objdir))
330 return 0;
331
332 return 1;
333}
334
ddd5d056
JH
335/*
336 * Prepare alternate object database registry.
d5a63b99
JH
337 *
338 * The variable alt_odb_list points at the list of struct
339 * alternate_object_database. The elements on this list come from
340 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
341 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
1494e038
JH
342 * whose contents is similar to that environment variable but can be
343 * LF separated. Its base points at a statically allocated buffer that
d5a63b99
JH
344 * contains "/the/directory/corresponding/to/.git/objects/...", while
345 * its name points just after the slash at the end of ".git/objects/"
346 * in the example above, and has enough space to hold 40-byte hex
347 * SHA1, an extra slash for the first level indirection, and the
348 * terminating NUL.
ddd5d056 349 */
2456990d 350static void read_info_alternates(const char * relative_base, int depth);
539e7506
EK
351static int link_alt_odb_entry(const char *entry, const char *relative_base,
352 int depth, const char *normalized_objdir)
ace1534d 353{
c2f493a4 354 struct alternate_object_database *ent;
5bdf0a84 355 struct strbuf pathbuf = STRBUF_INIT;
d5a63b99 356
85dadc38 357 if (!is_absolute_path(entry) && relative_base) {
4ac9006f 358 strbuf_realpath(&pathbuf, relative_base, 1);
5bdf0a84 359 strbuf_addch(&pathbuf, '/');
c2f493a4 360 }
6eac50d8 361 strbuf_addstr(&pathbuf, entry);
c2f493a4 362
37a95862 363 if (strbuf_normalize_path(&pathbuf) < 0 && relative_base) {
670c359d
JK
364 error("unable to normalize alternate object path: %s",
365 pathbuf.buf);
366 strbuf_release(&pathbuf);
367 return -1;
368 }
5bdf0a84
HW
369
370 /*
371 * The trailing slash after the directory name is given by
372 * this function at the end. Remove duplicates.
373 */
4ea82473
JK
374 while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
375 strbuf_setlen(&pathbuf, pathbuf.len - 1);
5bdf0a84 376
4ea82473
JK
377 if (!alt_odb_usable(&pathbuf, normalized_objdir)) {
378 strbuf_release(&pathbuf);
c2f493a4
MW
379 return -1;
380 }
381
7f0fa2c0 382 ent = alloc_alt_odb(pathbuf.buf);
c2f493a4
MW
383
384 /* add the alternate entry */
385 *alt_odb_tail = ent;
386 alt_odb_tail = &(ent->next);
387 ent->next = NULL;
388
389 /* recursively add alternates */
4ea82473 390 read_info_alternates(pathbuf.buf, depth + 1);
c2f493a4 391
4ea82473 392 strbuf_release(&pathbuf);
c2f493a4
MW
393 return 0;
394}
395
cf3c6352
JK
396static const char *parse_alt_odb_entry(const char *string,
397 int sep,
398 struct strbuf *out)
399{
400 const char *end;
401
402 strbuf_reset(out);
403
404 if (*string == '#') {
405 /* comment; consume up to next separator */
406 end = strchrnul(string, sep);
407 } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
408 /*
409 * quoted path; unquote_c_style has copied the
410 * data for us and set "end". Broken quoting (e.g.,
411 * an entry that doesn't end with a quote) falls
412 * back to the unquoted case below.
413 */
414 } else {
415 /* normal, unquoted path */
416 end = strchrnul(string, sep);
417 strbuf_add(out, string, end - string);
418 }
419
420 if (*end)
421 end++;
422 return end;
423}
424
dc732bd5 425static void link_alt_odb_entries(const char *alt, int sep,
c2f493a4
MW
426 const char *relative_base, int depth)
427{
539e7506 428 struct strbuf objdirbuf = STRBUF_INIT;
cf3c6352 429 struct strbuf entry = STRBUF_INIT;
c2f493a4
MW
430
431 if (depth > 5) {
432 error("%s: ignoring alternate object stores, nesting too deep.",
433 relative_base);
434 return;
435 }
436
f655651e 437 strbuf_add_absolute_path(&objdirbuf, get_object_directory());
670c359d
JK
438 if (strbuf_normalize_path(&objdirbuf) < 0)
439 die("unable to normalize object directory: %s",
440 objdirbuf.buf);
539e7506 441
cf3c6352
JK
442 while (*alt) {
443 alt = parse_alt_odb_entry(alt, sep, &entry);
444 if (!entry.len)
9577e7e3 445 continue;
cf3c6352 446 link_alt_odb_entry(entry.buf, relative_base, depth, objdirbuf.buf);
9577e7e3 447 }
cf3c6352 448 strbuf_release(&entry);
539e7506 449 strbuf_release(&objdirbuf);
d5a63b99
JH
450}
451
2456990d 452static void read_info_alternates(const char * relative_base, int depth)
d5a63b99 453{
5015f01c 454 char *path;
dc732bd5 455 struct strbuf buf = STRBUF_INIT;
d5a63b99 456
5015f01c 457 path = xstrfmt("%s/info/alternates", relative_base);
dc732bd5
JK
458 if (strbuf_read_file(&buf, path, 1024) < 0) {
459 free(path);
9a217f2a 460 return;
ace1534d 461 }
d5a63b99 462
dc732bd5
JK
463 link_alt_odb_entries(buf.buf, '\n', relative_base, depth);
464 strbuf_release(&buf);
465 free(path);
ace1534d
JH
466}
467
7f0fa2c0
JK
468struct alternate_object_database *alloc_alt_odb(const char *dir)
469{
470 struct alternate_object_database *ent;
7f0fa2c0 471
597f9134 472 FLEX_ALLOC_STR(ent, path, dir);
38dbe5f0
JK
473 strbuf_init(&ent->scratch, 0);
474 strbuf_addf(&ent->scratch, "%s/", dir);
475 ent->base_len = ent->scratch.len;
7f0fa2c0
JK
476
477 return ent;
478}
479
bef70b22
DB
480void add_to_alternates_file(const char *reference)
481{
482 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
77b9b1d1
JK
483 char *alts = git_pathdup("objects/info/alternates");
484 FILE *in, *out;
485
486 hold_lock_file_for_update(lock, alts, LOCK_DIE_ON_ERROR);
487 out = fdopen_lock_file(lock, "w");
488 if (!out)
489 die_errno("unable to fdopen alternates lockfile");
490
491 in = fopen(alts, "r");
492 if (in) {
493 struct strbuf line = STRBUF_INIT;
494 int found = 0;
495
3f163962 496 while (strbuf_getline(&line, in) != EOF) {
77b9b1d1
JK
497 if (!strcmp(reference, line.buf)) {
498 found = 1;
499 break;
500 }
501 fprintf_or_die(out, "%s\n", line.buf);
502 }
503
504 strbuf_release(&line);
505 fclose(in);
506
507 if (found) {
508 rollback_lock_file(lock);
509 lock = NULL;
510 }
511 }
512 else if (errno != ENOENT)
513 die_errno("unable to read alternates file");
514
515 if (lock) {
516 fprintf_or_die(out, "%s\n", reference);
517 if (commit_lock_file(lock))
518 die_errno("unable to move new alternates file into place");
519 if (alt_odb_tail)
dc732bd5 520 link_alt_odb_entries(reference, '\n', NULL, 0);
77b9b1d1
JK
521 }
522 free(alts);
bef70b22
DB
523}
524
a5b34d21
JK
525void add_to_alternates_memory(const char *reference)
526{
527 /*
528 * Make sure alternates are initialized, or else our entry may be
529 * overwritten when they are.
530 */
531 prepare_alt_odb();
532
dc732bd5 533 link_alt_odb_entries(reference, '\n', NULL, 0);
a5b34d21
JK
534}
535
9eeea7d2
SB
536/*
537 * Compute the exact path an alternate is at and returns it. In case of
538 * error NULL is returned and the human readable error is added to `err`
539 * `path` may be relative and should point to $GITDIR.
540 * `err` must not be null.
541 */
542char *compute_alternate_path(const char *path, struct strbuf *err)
543{
544 char *ref_git = NULL;
545 const char *repo, *ref_git_s;
546 int seen_error = 0;
547
548 ref_git_s = real_path_if_valid(path);
549 if (!ref_git_s) {
550 seen_error = 1;
551 strbuf_addf(err, _("path '%s' does not exist"), path);
552 goto out;
553 } else
554 /*
555 * Beware: read_gitfile(), real_path() and mkpath()
556 * return static buffer
557 */
558 ref_git = xstrdup(ref_git_s);
559
560 repo = read_gitfile(ref_git);
561 if (!repo)
562 repo = read_gitfile(mkpath("%s/.git", ref_git));
563 if (repo) {
564 free(ref_git);
565 ref_git = xstrdup(repo);
566 }
567
568 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
569 char *ref_git_git = mkpathdup("%s/.git", ref_git);
570 free(ref_git);
571 ref_git = ref_git_git;
572 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
573 struct strbuf sb = STRBUF_INIT;
574 seen_error = 1;
575 if (get_common_dir(&sb, ref_git)) {
576 strbuf_addf(err,
577 _("reference repository '%s' as a linked "
578 "checkout is not supported yet."),
579 path);
580 goto out;
581 }
582
583 strbuf_addf(err, _("reference repository '%s' is not a "
584 "local repository."), path);
585 goto out;
586 }
587
588 if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
589 strbuf_addf(err, _("reference repository '%s' is shallow"),
590 path);
591 seen_error = 1;
592 goto out;
593 }
594
595 if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
596 strbuf_addf(err,
597 _("reference repository '%s' is grafted"),
598 path);
599 seen_error = 1;
600 goto out;
601 }
602
603out:
604 if (seen_error) {
6a83d902 605 FREE_AND_NULL(ref_git);
9eeea7d2
SB
606 }
607
608 return ref_git;
609}
610
fe1b2268 611int foreach_alt_odb(alt_odb_fn fn, void *cb)
d79796bc
JH
612{
613 struct alternate_object_database *ent;
fe1b2268 614 int r = 0;
d79796bc
JH
615
616 prepare_alt_odb();
fe1b2268
JK
617 for (ent = alt_odb_list; ent; ent = ent->next) {
618 r = fn(ent, cb);
619 if (r)
620 break;
621 }
622 return r;
d79796bc
JH
623}
624
c2f493a4
MW
625void prepare_alt_odb(void)
626{
554fe20d 627 const char *alt;
c2f493a4 628
7dc24aa5
SP
629 if (alt_odb_tail)
630 return;
631
c2f493a4
MW
632 alt = getenv(ALTERNATE_DB_ENVIRONMENT);
633 if (!alt) alt = "";
634
c2f493a4 635 alt_odb_tail = &alt_odb_list;
dc732bd5 636 link_alt_odb_entries(alt, PATH_SEP, NULL, 0);
c2f493a4
MW
637
638 read_info_alternates(get_object_directory(), 0);
639}
640
3096b2ec 641/* Returns 1 if we have successfully freshened the file, 0 otherwise. */
33d4221c 642static int freshen_file(const char *fn)
ace1534d 643{
33d4221c
JK
644 struct utimbuf t;
645 t.actime = t.modtime = time(NULL);
646 return !utime(fn, &t);
0f4dc14a 647}
ace1534d 648
3096b2ec
JK
649/*
650 * All of the check_and_freshen functions return 1 if the file exists and was
651 * freshened (if freshening was requested), 0 otherwise. If they return
652 * 0, you should not assume that it is safe to skip a write of the object (it
653 * either does not exist on disk, or has a stale mtime and may be subject to
654 * pruning).
655 */
6a5e6f5e 656int check_and_freshen_file(const char *fn, int freshen)
33d4221c
JK
657{
658 if (access(fn, F_OK))
659 return 0;
3096b2ec 660 if (freshen && !freshen_file(fn))
33d4221c
JK
661 return 0;
662 return 1;
663}
664
665static int check_and_freshen_local(const unsigned char *sha1, int freshen)
666{
667 return check_and_freshen_file(sha1_file_name(sha1), freshen);
668}
669
670static int check_and_freshen_nonlocal(const unsigned char *sha1, int freshen)
0f4dc14a
BC
671{
672 struct alternate_object_database *alt;
9a217f2a 673 prepare_alt_odb();
d5a63b99 674 for (alt = alt_odb_list; alt; alt = alt->next) {
29ec6af2
JK
675 const char *path = alt_sha1_path(alt, sha1);
676 if (check_and_freshen_file(path, freshen))
c529d75a 677 return 1;
ace1534d 678 }
c529d75a 679 return 0;
ace1534d
JH
680}
681
33d4221c
JK
682static int check_and_freshen(const unsigned char *sha1, int freshen)
683{
684 return check_and_freshen_local(sha1, freshen) ||
685 check_and_freshen_nonlocal(sha1, freshen);
686}
687
688int has_loose_object_nonlocal(const unsigned char *sha1)
689{
690 return check_and_freshen_nonlocal(sha1, 0);
691}
692
0f4dc14a
BC
693static int has_loose_object(const unsigned char *sha1)
694{
33d4221c 695 return check_and_freshen(sha1, 0);
0f4dc14a
BC
696}
697
60bb8b14 698static unsigned int pack_used_ctr;
a53128b6
SP
699static unsigned int pack_mmap_calls;
700static unsigned int peak_pack_open_windows;
701static unsigned int pack_open_windows;
c7934306
SP
702static unsigned int pack_open_fds;
703static unsigned int pack_max_fds;
a53128b6 704static size_t peak_pack_mapped;
60bb8b14 705static size_t pack_mapped;
9a217f2a 706struct packed_git *packed_git;
1f688557 707
a73cdd21
JK
708static struct mru packed_git_mru_storage;
709struct mru *packed_git_mru = &packed_git_mru_storage;
710
b79d18c9 711void pack_report(void)
a53128b6
SP
712{
713 fprintf(stderr,
e05db0fd
PR
714 "pack_report: getpagesize() = %10" SZ_FMT "\n"
715 "pack_report: core.packedGitWindowSize = %10" SZ_FMT "\n"
716 "pack_report: core.packedGitLimit = %10" SZ_FMT "\n",
9e42d6a1
SP
717 sz_fmt(getpagesize()),
718 sz_fmt(packed_git_window_size),
719 sz_fmt(packed_git_limit));
a53128b6
SP
720 fprintf(stderr,
721 "pack_report: pack_used_ctr = %10u\n"
722 "pack_report: pack_mmap_calls = %10u\n"
723 "pack_report: pack_open_windows = %10u / %10u\n"
e05db0fd
PR
724 "pack_report: pack_mapped = "
725 "%10" SZ_FMT " / %10" SZ_FMT "\n",
a53128b6
SP
726 pack_used_ctr,
727 pack_mmap_calls,
728 pack_open_windows, peak_pack_open_windows,
9e42d6a1 729 sz_fmt(pack_mapped), sz_fmt(peak_pack_mapped));
a53128b6
SP
730}
731
d40d535b
MH
732/*
733 * Open and mmap the index file at path, perform a couple of
734 * consistency checks, then record its information to p. Return 0 on
735 * success.
736 */
737static int check_packed_git_idx(const char *path, struct packed_git *p)
1f688557
JH
738{
739 void *idx_map;
42873078 740 struct pack_idx_header *hdr;
dc49cd76 741 size_t idx_size;
74e34e1f 742 uint32_t version, nr, i, *index;
a5436b57 743 int fd = git_open(path);
1f688557 744 struct stat st;
42873078 745
1f688557
JH
746 if (fd < 0)
747 return -1;
748 if (fstat(fd, &st)) {
749 close(fd);
750 return -1;
751 }
dc49cd76 752 idx_size = xsize_t(st.st_size);
2d88451b
SP
753 if (idx_size < 4 * 256 + 20 + 20) {
754 close(fd);
755 return error("index file %s is too small", path);
756 }
c4712e45 757 idx_map = xmmap(NULL, idx_size, PROT_READ, MAP_PRIVATE, fd, 0);
1f688557 758 close(fd);
1f688557 759
42873078
NP
760 hdr = idx_map;
761 if (hdr->idx_signature == htonl(PACK_IDX_SIGNATURE)) {
74e34e1f
NP
762 version = ntohl(hdr->idx_version);
763 if (version < 2 || version > 2) {
764 munmap(idx_map, idx_size);
6e1c2344 765 return error("index file %s is version %"PRIu32
74e34e1f
NP
766 " and is not supported by this binary"
767 " (try upgrading GIT to a newer version)",
768 path, version);
769 }
770 } else
771 version = 1;
df1b059d 772
1f688557 773 nr = 0;
42873078 774 index = idx_map;
74e34e1f
NP
775 if (version > 1)
776 index += 2; /* skip index header */
1f688557 777 for (i = 0; i < 256; i++) {
326bf396 778 uint32_t n = ntohl(index[i]);
2d88451b
SP
779 if (n < nr) {
780 munmap(idx_map, idx_size);
df1b059d 781 return error("non-monotonic index %s", path);
2d88451b 782 }
1f688557
JH
783 nr = n;
784 }
785
74e34e1f
NP
786 if (version == 1) {
787 /*
788 * Total size:
789 * - 256 index entries 4 bytes each
790 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
791 * - 20-byte SHA1 of the packfile
792 * - 20-byte SHA1 file checksum
793 */
794 if (idx_size != 4*256 + nr * 24 + 20 + 20) {
795 munmap(idx_map, idx_size);
eef427a0 796 return error("wrong index v1 file size in %s", path);
74e34e1f
NP
797 }
798 } else if (version == 2) {
799 /*
800 * Minimum size:
801 * - 8 bytes of header
802 * - 256 index entries 4 bytes each
803 * - 20-byte sha1 entry * nr
804 * - 4-byte crc entry * nr
805 * - 4-byte offset entry * nr
806 * - 20-byte SHA1 of the packfile
807 * - 20-byte SHA1 file checksum
808 * And after the 4-byte offset table might be a
809 * variable sized table containing 8-byte entries
810 * for offsets larger than 2^31.
811 */
812 unsigned long min_size = 8 + 4*256 + nr*(20 + 4 + 4) + 20 + 20;
1164f1e4
LT
813 unsigned long max_size = min_size;
814 if (nr)
815 max_size += (nr - 1)*8;
816 if (idx_size < min_size || idx_size > max_size) {
74e34e1f 817 munmap(idx_map, idx_size);
eef427a0 818 return error("wrong index v2 file size in %s", path);
74e34e1f 819 }
7109c889
JH
820 if (idx_size != min_size &&
821 /*
822 * make sure we can deal with large pack offsets.
823 * 31-bit signed offset won't be enough, neither
824 * 32-bit unsigned one will be.
825 */
826 (sizeof(off_t) <= 4)) {
827 munmap(idx_map, idx_size);
828 return error("pack too large for current definition of off_t in %s", path);
74e34e1f 829 }
2d88451b 830 }
1f688557 831
74e34e1f 832 p->index_version = version;
42873078
NP
833 p->index_data = idx_map;
834 p->index_size = idx_size;
57059091 835 p->num_objects = nr;
1f688557
JH
836 return 0;
837}
838
bc8e478a 839int open_pack_index(struct packed_git *p)
d079837e
SP
840{
841 char *idx_name;
9ae97018 842 size_t len;
d079837e
SP
843 int ret;
844
845 if (p->index_data)
846 return 0;
847
9ae97018
JK
848 if (!strip_suffix(p->pack_name, ".pack", &len))
849 die("BUG: pack_name does not end in .pack");
850 idx_name = xstrfmt("%.*s.idx", (int)len, p->pack_name);
d079837e
SP
851 ret = check_packed_git_idx(idx_name, p);
852 free(idx_name);
853 return ret;
854}
855
11daf39b
SP
856static void scan_windows(struct packed_git *p,
857 struct packed_git **lru_p,
858 struct pack_window **lru_w,
859 struct pack_window **lru_l)
1f688557 860{
11daf39b
SP
861 struct pack_window *w, *w_l;
862
863 for (w_l = NULL, w = p->windows; w; w = w->next) {
864 if (!w->inuse_cnt) {
865 if (!*lru_w || w->last_used < (*lru_w)->last_used) {
866 *lru_p = p;
867 *lru_w = w;
868 *lru_l = w_l;
54044bf8 869 }
54044bf8 870 }
11daf39b 871 w_l = w;
f9253394 872 }
11daf39b
SP
873}
874
7c3ecb32 875static int unuse_one_window(struct packed_git *current)
11daf39b
SP
876{
877 struct packed_git *p, *lru_p = NULL;
878 struct pack_window *lru_w = NULL, *lru_l = NULL;
879
880 if (current)
881 scan_windows(current, &lru_p, &lru_w, &lru_l);
882 for (p = packed_git; p; p = p->next)
883 scan_windows(p, &lru_p, &lru_w, &lru_l);
54044bf8
SP
884 if (lru_p) {
885 munmap(lru_w->base, lru_w->len);
886 pack_mapped -= lru_w->len;
887 if (lru_l)
888 lru_l->next = lru_w->next;
7c3ecb32 889 else
54044bf8 890 lru_p->windows = lru_w->next;
54044bf8 891 free(lru_w);
a53128b6 892 pack_open_windows--;
54044bf8
SP
893 return 1;
894 }
895 return 0;
f9253394
JH
896}
897
7c3ecb32 898void release_pack_memory(size_t need)
97bfeb34
SP
899{
900 size_t cur = pack_mapped;
7c3ecb32 901 while (need >= (cur - pack_mapped) && unuse_one_window(NULL))
97bfeb34
SP
902 ; /* nothing */
903}
904
02710228
SP
905static void mmap_limit_check(size_t length)
906{
907 static size_t limit = 0;
908 if (!limit) {
909 limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
910 if (!limit)
911 limit = SIZE_MAX;
912 }
913 if (length > limit)
914 die("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX,
915 (uintmax_t)length, (uintmax_t)limit);
916}
917
1570856b
JK
918void *xmmap_gently(void *start, size_t length,
919 int prot, int flags, int fd, off_t offset)
58ecbd5e 920{
02710228
SP
921 void *ret;
922
923 mmap_limit_check(length);
924 ret = mmap(start, length, prot, flags, fd, offset);
58ecbd5e
JN
925 if (ret == MAP_FAILED) {
926 if (!length)
927 return NULL;
7c3ecb32 928 release_pack_memory(length);
58ecbd5e 929 ret = mmap(start, length, prot, flags, fd, offset);
58ecbd5e
JN
930 }
931 return ret;
932}
933
1570856b
JK
934void *xmmap(void *start, size_t length,
935 int prot, int flags, int fd, off_t offset)
936{
937 void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
938 if (ret == MAP_FAILED)
9ca0aaf6 939 die_errno("mmap failed");
1570856b
JK
940 return ret;
941}
942
c9ced051
SP
943void close_pack_windows(struct packed_git *p)
944{
945 while (p->windows) {
946 struct pack_window *w = p->windows;
947
948 if (w->inuse_cnt)
949 die("pack '%s' still has open windows to it",
950 p->pack_name);
951 munmap(w->base, w->len);
952 pack_mapped -= w->len;
953 pack_open_windows--;
954 p->windows = w->next;
955 free(w);
956 }
957}
958
71fe5d7f
JS
959static int close_pack_fd(struct packed_git *p)
960{
961 if (p->pack_fd < 0)
962 return 0;
963
964 close(p->pack_fd);
965 pack_open_fds--;
966 p->pack_fd = -1;
967
968 return 1;
969}
970
38849a81
JS
971static void close_pack(struct packed_git *p)
972{
973 close_pack_windows(p);
974 close_pack_fd(p);
975 close_pack_index(p);
976}
977
978void close_all_packs(void)
979{
980 struct packed_git *p;
981
982 for (p = packed_git; p; p = p->next)
983 if (p->do_not_close)
ef1177d1 984 die("BUG: want to close pack marked 'do-not-close'");
38849a81
JS
985 else
986 close_pack(p);
987}
988
989
88d0db55
BC
990/*
991 * The LRU pack is the one with the oldest MRU window, preferring packs
992 * with no used windows, or the oldest mtime if it has no windows allocated.
993 */
994static void find_lru_pack(struct packed_git *p, struct packed_git **lru_p, struct pack_window **mru_w, int *accept_windows_inuse)
995{
996 struct pack_window *w, *this_mru_w;
997 int has_windows_inuse = 0;
998
999 /*
1000 * Reject this pack if it has windows and the previously selected
1001 * one does not. If this pack does not have windows, reject
1002 * it if the pack file is newer than the previously selected one.
1003 */
1004 if (*lru_p && !*mru_w && (p->windows || p->mtime > (*lru_p)->mtime))
1005 return;
1006
1007 for (w = this_mru_w = p->windows; w; w = w->next) {
1008 /*
1009 * Reject this pack if any of its windows are in use,
1010 * but the previously selected pack did not have any
1011 * inuse windows. Otherwise, record that this pack
1012 * has windows in use.
1013 */
1014 if (w->inuse_cnt) {
1015 if (*accept_windows_inuse)
1016 has_windows_inuse = 1;
1017 else
1018 return;
1019 }
1020
1021 if (w->last_used > this_mru_w->last_used)
1022 this_mru_w = w;
1023
1024 /*
1025 * Reject this pack if it has windows that have been
1026 * used more recently than the previously selected pack.
1027 * If the previously selected pack had windows inuse and
1028 * we have not encountered a window in this pack that is
1029 * inuse, skip this check since we prefer a pack with no
1030 * inuse windows to one that has inuse windows.
1031 */
1032 if (*mru_w && *accept_windows_inuse == has_windows_inuse &&
1033 this_mru_w->last_used > (*mru_w)->last_used)
1034 return;
1035 }
1036
1037 /*
1038 * Select this pack.
1039 */
1040 *mru_w = this_mru_w;
1041 *lru_p = p;
1042 *accept_windows_inuse = has_windows_inuse;
1043}
1044
1045static int close_one_pack(void)
1046{
1047 struct packed_git *p, *lru_p = NULL;
1048 struct pack_window *mru_w = NULL;
1049 int accept_windows_inuse = 1;
1050
1051 for (p = packed_git; p; p = p->next) {
1052 if (p->pack_fd == -1)
1053 continue;
1054 find_lru_pack(p, &lru_p, &mru_w, &accept_windows_inuse);
1055 }
1056
71fe5d7f
JS
1057 if (lru_p)
1058 return close_pack_fd(lru_p);
88d0db55
BC
1059
1060 return 0;
1061}
1062
03e79c88 1063void unuse_pack(struct pack_window **w_cursor)
f9253394 1064{
03e79c88
SP
1065 struct pack_window *w = *w_cursor;
1066 if (w) {
1067 w->inuse_cnt--;
1068 *w_cursor = NULL;
1069 }
1f688557
JH
1070}
1071
fa5fc15d
SP
1072void close_pack_index(struct packed_git *p)
1073{
1074 if (p->index_data) {
1075 munmap((void *)p->index_data, p->index_size);
1076 p->index_data = NULL;
1077 }
1078}
1079
a0788266
JS
1080static unsigned int get_max_fd_limit(void)
1081{
1082#ifdef RLIMIT_NOFILE
491a8dec
JH
1083 {
1084 struct rlimit lim;
a0788266 1085
491a8dec
JH
1086 if (!getrlimit(RLIMIT_NOFILE, &lim))
1087 return lim.rlim_cur;
1088 }
1089#endif
1090
1091#ifdef _SC_OPEN_MAX
1092 {
1093 long open_max = sysconf(_SC_OPEN_MAX);
1094 if (0 < open_max)
1095 return open_max;
1096 /*
1097 * Otherwise, we got -1 for one of the two
1098 * reasons:
1099 *
1100 * (1) sysconf() did not understand _SC_OPEN_MAX
1101 * and signaled an error with -1; or
1102 * (2) sysconf() said there is no limit.
1103 *
1104 * We _could_ clear errno before calling sysconf() to
1105 * tell these two cases apart and return a huge number
1106 * in the latter case to let the caller cap it to a
1107 * value that is not so selfish, but letting the
1108 * fallback OPEN_MAX codepath take care of these cases
1109 * is a lot simpler.
1110 */
1111 }
1112#endif
a0788266 1113
491a8dec 1114#ifdef OPEN_MAX
a0788266
JS
1115 return OPEN_MAX;
1116#else
1117 return 1; /* see the caller ;-) */
1118#endif
1119}
1120
3cf8b462
SP
1121/*
1122 * Do not call this directly as this leaks p->pack_fd on error return;
1123 * call open_packed_git() instead.
1124 */
1125static int open_packed_git_1(struct packed_git *p)
1f688557 1126{
9bc879c1
SP
1127 struct stat st;
1128 struct pack_header hdr;
1129 unsigned char sha1[20];
1130 unsigned char *idx_sha1;
2c039da8 1131 long fd_flag;
9bc879c1 1132
d079837e
SP
1133 if (!p->index_data && open_pack_index(p))
1134 return error("packfile %s index unavailable", p->pack_name);
1135
c7934306 1136 if (!pack_max_fds) {
a0788266 1137 unsigned int max_fds = get_max_fd_limit();
c7934306
SP
1138
1139 /* Save 3 for stdin/stdout/stderr, 22 for work */
1140 if (25 < max_fds)
1141 pack_max_fds = max_fds - 25;
1142 else
1143 pack_max_fds = 1;
1144 }
1145
88d0db55 1146 while (pack_max_fds <= pack_open_fds && close_one_pack())
c7934306
SP
1147 ; /* nothing */
1148
a5436b57 1149 p->pack_fd = git_open(p->pack_name);
9bc879c1 1150 if (p->pack_fd < 0 || fstat(p->pack_fd, &st))
072db278 1151 return -1;
c7934306 1152 pack_open_fds++;
9bc879c1
SP
1153
1154 /* If we created the struct before we had the pack we lack size. */
bf592c50 1155 if (!p->pack_size) {
bf592c50 1156 if (!S_ISREG(st.st_mode))
072db278 1157 return error("packfile %s not a regular file", p->pack_name);
bf592c50 1158 p->pack_size = st.st_size;
9bc879c1 1159 } else if (p->pack_size != st.st_size)
072db278 1160 return error("packfile %s size changed", p->pack_name);
9bc879c1 1161
2c039da8
JH
1162 /* We leave these file descriptors open with sliding mmap;
1163 * there is no point keeping them open across exec(), though.
1164 */
1165 fd_flag = fcntl(p->pack_fd, F_GETFD, 0);
1166 if (fd_flag < 0)
072db278 1167 return error("cannot determine file descriptor flags");
2c039da8
JH
1168 fd_flag |= FD_CLOEXEC;
1169 if (fcntl(p->pack_fd, F_SETFD, fd_flag) == -1)
072db278 1170 return error("cannot set FD_CLOEXEC");
2c039da8 1171
9bc879c1 1172 /* Verify we recognize this pack file format. */
e6e2bd62 1173 if (read_in_full(p->pack_fd, &hdr, sizeof(hdr)) != sizeof(hdr))
072db278 1174 return error("file %s is far too short to be a packfile", p->pack_name);
9bc879c1 1175 if (hdr.hdr_signature != htonl(PACK_SIGNATURE))
072db278 1176 return error("file %s is not a GIT packfile", p->pack_name);
9bc879c1 1177 if (!pack_version_ok(hdr.hdr_version))
6e1c2344
RJ
1178 return error("packfile %s is version %"PRIu32" and not"
1179 " supported (try upgrading GIT to a newer version)",
9bc879c1
SP
1180 p->pack_name, ntohl(hdr.hdr_version));
1181
1182 /* Verify the pack matches its index. */
57059091 1183 if (p->num_objects != ntohl(hdr.hdr_entries))
6e1c2344
RJ
1184 return error("packfile %s claims to have %"PRIu32" objects"
1185 " while index indicates %"PRIu32" objects",
57059091
NP
1186 p->pack_name, ntohl(hdr.hdr_entries),
1187 p->num_objects);
9bc879c1 1188 if (lseek(p->pack_fd, p->pack_size - sizeof(sha1), SEEK_SET) == -1)
072db278 1189 return error("end of packfile %s is unavailable", p->pack_name);
e6e2bd62 1190 if (read_in_full(p->pack_fd, sha1, sizeof(sha1)) != sizeof(sha1))
072db278 1191 return error("packfile %s signature is unavailable", p->pack_name);
42873078 1192 idx_sha1 = ((unsigned char *)p->index_data) + p->index_size - 40;
9bc879c1 1193 if (hashcmp(sha1, idx_sha1))
072db278
SP
1194 return error("packfile %s does not match index", p->pack_name);
1195 return 0;
9bc879c1
SP
1196}
1197
3cf8b462
SP
1198static int open_packed_git(struct packed_git *p)
1199{
1200 if (!open_packed_git_1(p))
1201 return 0;
71fe5d7f 1202 close_pack_fd(p);
3cf8b462
SP
1203 return -1;
1204}
1205
c4001d92 1206static int in_window(struct pack_window *win, off_t offset)
60bb8b14
SP
1207{
1208 /* We must promise at least 20 bytes (one hash) after the
1209 * offset is available from this window, otherwise the offset
1210 * is not actually in this window and a different window (which
1211 * has that one hash excess) must be used. This is to support
1212 * the object header and delta base parsing routines below.
1213 */
1214 off_t win_off = win->offset;
1215 return win_off <= offset
1216 && (offset + 20) <= (win_off + win->len);
1217}
1218
4b25d091 1219unsigned char *use_pack(struct packed_git *p,
03e79c88 1220 struct pack_window **w_cursor,
c4001d92 1221 off_t offset,
ef49a7a0 1222 unsigned long *left)
9bc879c1 1223{
60bb8b14 1224 struct pack_window *win = *w_cursor;
03e79c88 1225
a9d98a14 1226 /* Since packfiles end in a hash of their content and it's
60bb8b14
SP
1227 * pointless to ask for an offset into the middle of that
1228 * hash, and the in_window function above wouldn't match
1229 * don't allow an offset too close to the end of the file.
1230 */
d131b7af
SP
1231 if (!p->pack_size && p->pack_fd == -1 && open_packed_git(p))
1232 die("packfile %s cannot be accessed", p->pack_name);
60bb8b14
SP
1233 if (offset > (p->pack_size - 20))
1234 die("offset beyond end of packfile (truncated pack?)");
13e0b0d3 1235 if (offset < 0)
7465feba 1236 die(_("offset before end of packfile (broken .idx?)"));
60bb8b14
SP
1237
1238 if (!win || !in_window(win, offset)) {
1239 if (win)
1240 win->inuse_cnt--;
1241 for (win = p->windows; win; win = win->next) {
1242 if (in_window(win, offset))
1243 break;
1244 }
1245 if (!win) {
78a28df9 1246 size_t window_align = packed_git_window_size / 2;
dc49cd76 1247 off_t len;
d131b7af
SP
1248
1249 if (p->pack_fd == -1 && open_packed_git(p))
1250 die("packfile %s cannot be accessed", p->pack_name);
1251
60bb8b14 1252 win = xcalloc(1, sizeof(*win));
78a28df9 1253 win->offset = (offset / window_align) * window_align;
dc49cd76
SP
1254 len = p->pack_size - win->offset;
1255 if (len > packed_git_window_size)
1256 len = packed_git_window_size;
1257 win->len = (size_t)len;
60bb8b14 1258 pack_mapped += win->len;
11daf39b 1259 while (packed_git_limit < pack_mapped
7c3ecb32 1260 && unuse_one_window(p))
60bb8b14 1261 ; /* nothing */
c4712e45 1262 win->base = xmmap(NULL, win->len,
60bb8b14
SP
1263 PROT_READ, MAP_PRIVATE,
1264 p->pack_fd, win->offset);
1265 if (win->base == MAP_FAILED)
7616c6ca
NTND
1266 die_errno("packfile %s cannot be mapped",
1267 p->pack_name);
d131b7af 1268 if (!win->offset && win->len == p->pack_size
71fe5d7f
JS
1269 && !p->do_not_close)
1270 close_pack_fd(p);
a53128b6
SP
1271 pack_mmap_calls++;
1272 pack_open_windows++;
1273 if (pack_mapped > peak_pack_mapped)
1274 peak_pack_mapped = pack_mapped;
1275 if (pack_open_windows > peak_pack_open_windows)
1276 peak_pack_open_windows = pack_open_windows;
60bb8b14
SP
1277 win->next = p->windows;
1278 p->windows = win;
1279 }
1f688557 1280 }
03e79c88
SP
1281 if (win != *w_cursor) {
1282 win->last_used = pack_used_ctr++;
1283 win->inuse_cnt++;
1284 *w_cursor = win;
1285 }
60bb8b14 1286 offset -= win->offset;
03e79c88 1287 if (left)
dc49cd76 1288 *left = win->len - xsize_t(offset);
03e79c88 1289 return win->base + offset;
1f688557
JH
1290}
1291
27d69a46
NP
1292static struct packed_git *alloc_packed_git(int extra)
1293{
50a6c8ef 1294 struct packed_git *p = xmalloc(st_add(sizeof(*p), extra));
27d69a46
NP
1295 memset(p, 0, sizeof(*p));
1296 p->pack_fd = -1;
1297 return p;
1298}
1299
e0500293
JN
1300static void try_to_free_pack_memory(size_t size)
1301{
7c3ecb32 1302 release_pack_memory(size);
e0500293
JN
1303}
1304
48bcc1c3 1305struct packed_git *add_packed_git(const char *path, size_t path_len, int local)
1f688557 1306{
e0500293 1307 static int have_set_try_to_free_routine;
1f688557 1308 struct stat st;
48bcc1c3
JK
1309 size_t alloc;
1310 struct packed_git *p;
1f688557 1311
e0500293
JN
1312 if (!have_set_try_to_free_routine) {
1313 have_set_try_to_free_routine = 1;
1314 set_try_to_free_routine(try_to_free_pack_memory);
1315 }
1316
42873078
NP
1317 /*
1318 * Make sure a corresponding .pack file exists and that
1319 * the index looks sane.
1320 */
48bcc1c3 1321 if (!strip_suffix_mem(path, &path_len, ".idx"))
1f688557 1322 return NULL;
48bcc1c3
JK
1323
1324 /*
1325 * ".pack" is long enough to hold any suffix we're adding (and
1326 * the use xsnprintf double-checks that)
1327 */
50a6c8ef 1328 alloc = st_add3(path_len, strlen(".pack"), 1);
48bcc1c3 1329 p = alloc_packed_git(alloc);
42873078 1330 memcpy(p->pack_name, path, path_len);
8d25931d 1331
48bcc1c3 1332 xsnprintf(p->pack_name + path_len, alloc - path_len, ".keep");
8d25931d
BC
1333 if (!access(p->pack_name, F_OK))
1334 p->pack_keep = 1;
1335
48bcc1c3 1336 xsnprintf(p->pack_name + path_len, alloc - path_len, ".pack");
d079837e 1337 if (stat(p->pack_name, &st) || !S_ISREG(st.st_mode)) {
42873078 1338 free(p);
1f688557
JH
1339 return NULL;
1340 }
42873078 1341
1f688557
JH
1342 /* ok, it looks sane as far as we can check without
1343 * actually mapping the pack file.
1344 */
1f688557 1345 p->pack_size = st.st_size;
9d835df2 1346 p->pack_local = local;
b867092f 1347 p->mtime = st.st_mtime;
42873078
NP
1348 if (path_len < 40 || get_sha1_hex(path + path_len - 40, p->sha1))
1349 hashclr(p->sha1);
1f688557
JH
1350 return p;
1351}
1352
7b64469a 1353struct packed_git *parse_pack_index(unsigned char *sha1, const char *idx_path)
c508df5e 1354{
42873078 1355 const char *path = sha1_pack_name(sha1);
50a6c8ef 1356 size_t alloc = st_add(strlen(path), 1);
c7ab0ba3 1357 struct packed_git *p = alloc_packed_git(alloc);
bf592c50 1358
c7ab0ba3 1359 memcpy(p->pack_name, path, alloc); /* includes NUL */
27d69a46 1360 hashcpy(p->sha1, sha1);
42873078
NP
1361 if (check_packed_git_idx(idx_path, p)) {
1362 free(p);
bf592c50 1363 return NULL;
42873078 1364 }
bf592c50 1365
bf592c50
DB
1366 return p;
1367}
1368
1369void install_packed_git(struct packed_git *pack)
1370{
c7934306
SP
1371 if (pack->pack_fd != -1)
1372 pack_open_fds++;
1373
bf592c50
DB
1374 pack->next = packed_git;
1375 packed_git = pack;
1376}
1377
0a489b06 1378void (*report_garbage)(unsigned seen_bits, const char *path);
543c5caa
NTND
1379
1380static void report_helper(const struct string_list *list,
1381 int seen_bits, int first, int last)
1382{
0a489b06 1383 if (seen_bits == (PACKDIR_FILE_PACK|PACKDIR_FILE_IDX))
543c5caa 1384 return;
0a489b06 1385
543c5caa 1386 for (; first < last; first++)
0a489b06 1387 report_garbage(seen_bits, list->items[first].string);
543c5caa
NTND
1388}
1389
1390static void report_pack_garbage(struct string_list *list)
1391{
1392 int i, baselen = -1, first = 0, seen_bits = 0;
1393
1394 if (!report_garbage)
1395 return;
1396
3383e199 1397 string_list_sort(list);
543c5caa
NTND
1398
1399 for (i = 0; i < list->nr; i++) {
1400 const char *path = list->items[i].string;
1401 if (baselen != -1 &&
1402 strncmp(path, list->items[first].string, baselen)) {
1403 report_helper(list, seen_bits, first, i);
1404 baselen = -1;
1405 seen_bits = 0;
1406 }
1407 if (baselen == -1) {
1408 const char *dot = strrchr(path, '.');
1409 if (!dot) {
0a489b06 1410 report_garbage(PACKDIR_FILE_GARBAGE, path);
543c5caa
NTND
1411 continue;
1412 }
1413 baselen = dot - path + 1;
1414 first = i;
1415 }
1416 if (!strcmp(path + baselen, "pack"))
1417 seen_bits |= 1;
1418 else if (!strcmp(path + baselen, "idx"))
1419 seen_bits |= 2;
1420 }
1421 report_helper(list, seen_bits, first, list->nr);
1422}
1423
9d835df2 1424static void prepare_packed_git_one(char *objdir, int local)
1f688557 1425{
880fb8de
RS
1426 struct strbuf path = STRBUF_INIT;
1427 size_t dirnamelen;
1f688557
JH
1428 DIR *dir;
1429 struct dirent *de;
543c5caa 1430 struct string_list garbage = STRING_LIST_INIT_DUP;
1f688557 1431
880fb8de
RS
1432 strbuf_addstr(&path, objdir);
1433 strbuf_addstr(&path, "/pack");
1434 dir = opendir(path.buf);
b5b16990 1435 if (!dir) {
26125f6b 1436 if (errno != ENOENT)
7616c6ca
NTND
1437 error_errno("unable to open object pack directory: %s",
1438 path.buf);
880fb8de 1439 strbuf_release(&path);
1f688557 1440 return;
b5b16990 1441 }
880fb8de
RS
1442 strbuf_addch(&path, '/');
1443 dirnamelen = path.len;
1f688557 1444 while ((de = readdir(dir)) != NULL) {
1f688557 1445 struct packed_git *p;
47bf4b0f 1446 size_t base_len;
543c5caa
NTND
1447
1448 if (is_dot_or_dotdot(de->d_name))
9cb18f56
JM
1449 continue;
1450
880fb8de
RS
1451 strbuf_setlen(&path, dirnamelen);
1452 strbuf_addstr(&path, de->d_name);
d90906a9 1453
47bf4b0f
JK
1454 base_len = path.len;
1455 if (strip_suffix_mem(path.buf, &base_len, ".idx")) {
d90906a9
NTND
1456 /* Don't reopen a pack we already have. */
1457 for (p = packed_git; p; p = p->next) {
47bf4b0f
JK
1458 size_t len;
1459 if (strip_suffix(p->pack_name, ".pack", &len) &&
1460 len == base_len &&
1461 !memcmp(p->pack_name, path.buf, len))
d90906a9
NTND
1462 break;
1463 }
1464 if (p == NULL &&
1465 /*
1466 * See if it really is a valid .idx file with
1467 * corresponding .pack file that we can map.
1468 */
880fb8de 1469 (p = add_packed_git(path.buf, path.len, local)) != NULL)
d90906a9 1470 install_packed_git(p);
86f7780c 1471 }
543c5caa
NTND
1472
1473 if (!report_garbage)
1474 continue;
1475
2975c770
JK
1476 if (ends_with(de->d_name, ".idx") ||
1477 ends_with(de->d_name, ".pack") ||
1478 ends_with(de->d_name, ".bitmap") ||
1479 ends_with(de->d_name, ".keep"))
880fb8de 1480 string_list_append(&garbage, path.buf);
543c5caa 1481 else
0a489b06 1482 report_garbage(PACKDIR_FILE_GARBAGE, path.buf);
1f688557 1483 }
5b35bcd5 1484 closedir(dir);
543c5caa
NTND
1485 report_pack_garbage(&garbage);
1486 string_list_clear(&garbage, 0);
880fb8de 1487 strbuf_release(&path);
1f688557
JH
1488}
1489
8e3f52d7
JK
1490static int approximate_object_count_valid;
1491
1492/*
1493 * Give a fast, rough count of the number of objects in the repository. This
1494 * ignores loose objects completely. If you have a lot of them, then either
1495 * you should repack because your performance will be awful, or they are
1496 * all unreachable objects about to be pruned, in which case they're not really
1497 * interesting as a measure of repo size in the first place.
1498 */
1499unsigned long approximate_object_count(void)
1500{
1501 static unsigned long count;
1502 if (!approximate_object_count_valid) {
1503 struct packed_git *p;
1504
1505 prepare_packed_git();
1506 count = 0;
1507 for (p = packed_git; p; p = p->next) {
1508 if (open_pack_index(p))
1509 continue;
1510 count += p->num_objects;
1511 }
1512 }
1513 return count;
1514}
1515
c4c6effa
RS
1516static void *get_next_packed_git(const void *p)
1517{
1518 return ((const struct packed_git *)p)->next;
1519}
1520
1521static void set_next_packed_git(void *p, void *next)
1522{
1523 ((struct packed_git *)p)->next = next;
1524}
1525
b867092f
JH
1526static int sort_pack(const void *a_, const void *b_)
1527{
c4c6effa
RS
1528 const struct packed_git *a = a_;
1529 const struct packed_git *b = b_;
b867092f
JH
1530 int st;
1531
1532 /*
1533 * Local packs tend to contain objects specific to our
1534 * variant of the project than remote ones. In addition,
1535 * remote ones could be on a network mounted filesystem.
1536 * Favor local ones for these reasons.
1537 */
1538 st = a->pack_local - b->pack_local;
1539 if (st)
1540 return -st;
1541
1542 /*
1543 * Younger packs tend to contain more recent objects,
1544 * and more recent objects tend to get accessed more
1545 * often.
1546 */
1547 if (a->mtime < b->mtime)
1548 return 1;
1549 else if (a->mtime == b->mtime)
1550 return 0;
1551 return -1;
1552}
1553
1554static void rearrange_packed_git(void)
1555{
c4c6effa
RS
1556 packed_git = llist_mergesort(packed_git, get_next_packed_git,
1557 set_next_packed_git, sort_pack);
b867092f
JH
1558}
1559
a73cdd21
JK
1560static void prepare_packed_git_mru(void)
1561{
1562 struct packed_git *p;
1563
1564 mru_clear(packed_git_mru);
1565 for (p = packed_git; p; p = p->next)
1566 mru_append(packed_git_mru, p);
1567}
1568
637cdd9d 1569static int prepare_packed_git_run_once = 0;
9a217f2a 1570void prepare_packed_git(void)
1f688557 1571{
d5a63b99 1572 struct alternate_object_database *alt;
1f688557 1573
637cdd9d 1574 if (prepare_packed_git_run_once)
1f688557 1575 return;
9d835df2 1576 prepare_packed_git_one(get_object_directory(), 1);
9a217f2a 1577 prepare_alt_odb();
597f9134
JK
1578 for (alt = alt_odb_list; alt; alt = alt->next)
1579 prepare_packed_git_one(alt->path, 0);
b867092f 1580 rearrange_packed_git();
a73cdd21 1581 prepare_packed_git_mru();
637cdd9d
JK
1582 prepare_packed_git_run_once = 1;
1583}
1584
fc04c412 1585void reprepare_packed_git(void)
637cdd9d 1586{
8e3f52d7 1587 approximate_object_count_valid = 0;
637cdd9d
JK
1588 prepare_packed_git_run_once = 0;
1589 prepare_packed_git();
1f688557
JH
1590}
1591
8eca0b47
NP
1592static void mark_bad_packed_object(struct packed_git *p,
1593 const unsigned char *sha1)
1594{
1595 unsigned i;
1596 for (i = 0; i < p->num_bad_objects; i++)
50a6c8ef 1597 if (!hashcmp(sha1, p->bad_object_sha1 + GIT_SHA1_RAWSZ * i))
8eca0b47 1598 return;
50a6c8ef 1599 p->bad_object_sha1 = xrealloc(p->bad_object_sha1,
cd02599c 1600 st_mult(GIT_MAX_RAWSZ,
50a6c8ef
JK
1601 st_add(p->num_bad_objects, 1)));
1602 hashcpy(p->bad_object_sha1 + GIT_SHA1_RAWSZ * p->num_bad_objects, sha1);
8eca0b47
NP
1603 p->num_bad_objects++;
1604}
1605
b6c4cecc 1606static const struct packed_git *has_packed_and_bad(const unsigned char *sha1)
ac939109
NP
1607{
1608 struct packed_git *p;
1609 unsigned i;
1610
1611 for (p = packed_git; p; p = p->next)
1612 for (i = 0; i < p->num_bad_objects; i++)
1613 if (!hashcmp(sha1, p->bad_object_sha1 + 20 * i))
b6c4cecc
JH
1614 return p;
1615 return NULL;
ac939109
NP
1616}
1617
090ea126
NTND
1618/*
1619 * With an in-core object data in "map", rehash it to make sure the
1620 * object name actually matches "sha1" to detect object corruption.
1621 * With "map" == NULL, try reading the object named with "sha1" using
1622 * the streaming interface and rehash it to do the same.
1623 */
1624int check_sha1_signature(const unsigned char *sha1, void *map,
1625 unsigned long size, const char *type)
0fcfd160
LT
1626{
1627 unsigned char real_sha1[20];
090ea126
NTND
1628 enum object_type obj_type;
1629 struct git_istream *st;
1630 git_SHA_CTX c;
1631 char hdr[32];
1632 int hdrlen;
1633
1634 if (map) {
1635 hash_sha1_file(map, size, type, real_sha1);
1636 return hashcmp(sha1, real_sha1) ? -1 : 0;
1637 }
1638
1639 st = open_istream(sha1, &obj_type, &size, NULL);
1640 if (!st)
1641 return -1;
1642
1643 /* Generate the header */
ef1286d3 1644 hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", typename(obj_type), size) + 1;
090ea126
NTND
1645
1646 /* Sha1.. */
1647 git_SHA1_Init(&c);
1648 git_SHA1_Update(&c, hdr, hdrlen);
1649 for (;;) {
1650 char buf[1024 * 16];
1651 ssize_t readlen = read_istream(st, buf, sizeof(buf));
1652
f54fac53
JK
1653 if (readlen < 0) {
1654 close_istream(st);
1655 return -1;
1656 }
090ea126
NTND
1657 if (!readlen)
1658 break;
1659 git_SHA1_Update(&c, buf, readlen);
1660 }
1661 git_SHA1_Final(real_sha1, &c);
1662 close_istream(st);
a89fccd2 1663 return hashcmp(sha1, real_sha1) ? -1 : 0;
0fcfd160
LT
1664}
1665
1b8ac5ea 1666int git_open_cloexec(const char *name, int flags)
44d1c19e 1667{
1e3001a8
JH
1668 int fd;
1669 static int o_cloexec = O_CLOEXEC;
f2e872aa 1670
1e3001a8
JH
1671 fd = open(name, flags | o_cloexec);
1672 if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
cd66ada0 1673 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1e3001a8
JH
1674 o_cloexec &= ~O_CLOEXEC;
1675 fd = open(name, flags | o_cloexec);
1b8ac5ea 1676 }
f2e872aa 1677
9fb9495d 1678#if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1e3001a8
JH
1679 {
1680 static int fd_cloexec = FD_CLOEXEC;
1681
1682 if (!o_cloexec && 0 <= fd && fd_cloexec) {
1683 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
9fb9495d
EW
1684 int flags = fcntl(fd, F_GETFD);
1685 if (fcntl(fd, F_SETFD, flags | fd_cloexec))
1e3001a8 1686 fd_cloexec = 0;
cd66ada0 1687 }
44d1c19e 1688 }
1e3001a8 1689#endif
1b8ac5ea 1690 return fd;
44d1c19e
LT
1691}
1692
771e7d57
JK
1693/*
1694 * Find "sha1" as a loose object in the local repository or in an alternate.
1695 * Returns 0 on success, negative on failure.
1696 *
1697 * The "path" out-parameter will give the path of the object we found (if any).
1698 * Note that it may point to static storage and is only valid until another
1699 * call to sha1_file_name(), etc.
1700 */
1701static int stat_sha1_file(const unsigned char *sha1, struct stat *st,
1702 const char **path)
052fe5ea 1703{
052fe5ea
JK
1704 struct alternate_object_database *alt;
1705
771e7d57
JK
1706 *path = sha1_file_name(sha1);
1707 if (!lstat(*path, st))
052fe5ea
JK
1708 return 0;
1709
1710 prepare_alt_odb();
1711 errno = ENOENT;
1712 for (alt = alt_odb_list; alt; alt = alt->next) {
771e7d57
JK
1713 *path = alt_sha1_path(alt, sha1);
1714 if (!lstat(*path, st))
052fe5ea
JK
1715 return 0;
1716 }
1717
1718 return -1;
1719}
1720
771e7d57
JK
1721/*
1722 * Like stat_sha1_file(), but actually open the object and return the
1723 * descriptor. See the caveats on the "path" parameter above.
1724 */
1725static int open_sha1_file(const unsigned char *sha1, const char **path)
44d1c19e
LT
1726{
1727 int fd;
44d1c19e 1728 struct alternate_object_database *alt;
d6c8a05b 1729 int most_interesting_errno;
44d1c19e 1730
771e7d57
JK
1731 *path = sha1_file_name(sha1);
1732 fd = git_open(*path);
44d1c19e
LT
1733 if (fd >= 0)
1734 return fd;
d6c8a05b 1735 most_interesting_errno = errno;
44d1c19e
LT
1736
1737 prepare_alt_odb();
44d1c19e 1738 for (alt = alt_odb_list; alt; alt = alt->next) {
771e7d57
JK
1739 *path = alt_sha1_path(alt, sha1);
1740 fd = git_open(*path);
44d1c19e
LT
1741 if (fd >= 0)
1742 return fd;
d6c8a05b
JK
1743 if (most_interesting_errno == ENOENT)
1744 most_interesting_errno = errno;
44d1c19e 1745 }
d6c8a05b 1746 errno = most_interesting_errno;
44d1c19e
LT
1747 return -1;
1748}
1749
f6371f92
JK
1750/*
1751 * Map the loose object at "path" if it is not NULL, or the path found by
1752 * searching for a loose object named "sha1".
1753 */
1754static void *map_sha1_file_1(const char *path,
1755 const unsigned char *sha1,
1756 unsigned long *size)
0fcfd160 1757{
0fcfd160 1758 void *map;
144bde78 1759 int fd;
ace1534d 1760
f6371f92
JK
1761 if (path)
1762 fd = git_open(path);
1763 else
1764 fd = open_sha1_file(sha1, &path);
44d1c19e
LT
1765 map = NULL;
1766 if (fd >= 0) {
1767 struct stat st;
0fcfd160 1768
44d1c19e
LT
1769 if (!fstat(fd, &st)) {
1770 *size = xsize_t(st.st_size);
33e42de0
MM
1771 if (!*size) {
1772 /* mmap() is forbidden on empty files */
771e7d57 1773 error("object file %s is empty", path);
33e42de0
MM
1774 return NULL;
1775 }
44d1c19e 1776 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
144bde78 1777 }
44d1c19e 1778 close(fd);
0fcfd160 1779 }
0fcfd160
LT
1780 return map;
1781}
1782
f6371f92
JK
1783void *map_sha1_file(const unsigned char *sha1, unsigned long *size)
1784{
1785 return map_sha1_file_1(NULL, sha1, size);
1786}
1787
09ded04b
NP
1788unsigned long unpack_object_header_buffer(const unsigned char *buf,
1789 unsigned long len, enum object_type *type, unsigned long *sizep)
c4483576 1790{
ad1ed5ee 1791 unsigned shift;
48fb7deb 1792 unsigned long size, c;
ad1ed5ee
JH
1793 unsigned long used = 0;
1794
1795 c = buf[used++];
1796 *type = (c >> 4) & 7;
1797 size = c & 15;
1798 shift = 4;
1799 while (c & 0x80) {
f630cfda 1800 if (len <= used || bitsizeof(long) <= shift) {
09ded04b 1801 error("bad object header");
ea4f9685
JH
1802 size = used = 0;
1803 break;
09ded04b 1804 }
ad1ed5ee
JH
1805 c = buf[used++];
1806 size += (c & 0x7f) << shift;
1807 shift += 7;
1808 }
1809 *sizep = size;
1810 return used;
1811}
1812
d21f8426
JH
1813static int unpack_sha1_short_header(git_zstream *stream,
1814 unsigned char *map, unsigned long mapsize,
1815 void *buffer, unsigned long bufsiz)
ad1ed5ee 1816{
c4483576
LT
1817 /* Get the data stream */
1818 memset(stream, 0, sizeof(*stream));
1819 stream->next_in = map;
1820 stream->avail_in = mapsize;
1821 stream->next_out = buffer;
93821bd9
LT
1822 stream->avail_out = bufsiz;
1823
39c68542 1824 git_inflate_init(stream);
cc5c54e7 1825 return git_inflate(stream, 0);
c4483576
LT
1826}
1827
d21f8426
JH
1828int unpack_sha1_header(git_zstream *stream,
1829 unsigned char *map, unsigned long mapsize,
1830 void *buffer, unsigned long bufsiz)
1831{
1832 int status = unpack_sha1_short_header(stream, map, mapsize,
1833 buffer, bufsiz);
1834
1835 if (status < Z_OK)
1836 return status;
1837
1838 /* Make sure we have the terminating NUL */
1839 if (!memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1840 return -1;
1841 return 0;
1842}
1843
46f03448
KN
1844static int unpack_sha1_header_to_strbuf(git_zstream *stream, unsigned char *map,
1845 unsigned long mapsize, void *buffer,
1846 unsigned long bufsiz, struct strbuf *header)
1847{
1848 int status;
1849
d21f8426
JH
1850 status = unpack_sha1_short_header(stream, map, mapsize, buffer, bufsiz);
1851 if (status < Z_OK)
1852 return -1;
46f03448
KN
1853
1854 /*
1855 * Check if entire header is unpacked in the first iteration.
1856 */
1857 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1858 return 0;
1859
1860 /*
1861 * buffer[0..bufsiz] was not large enough. Copy the partial
1862 * result out to header, and then append the result of further
1863 * reading the stream.
1864 */
1865 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1866 stream->next_out = buffer;
1867 stream->avail_out = bufsiz;
1868
1869 do {
1870 status = git_inflate(stream, 0);
1871 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1872 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1873 return 0;
1874 stream->next_out = buffer;
1875 stream->avail_out = bufsiz;
1876 } while (status != Z_STREAM_END);
1877 return -1;
1878}
1879
ef49a7a0 1880static void *unpack_sha1_rest(git_zstream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
5180cacc
LT
1881{
1882 int bytes = strlen(buffer) + 1;
3aee68aa 1883 unsigned char *buf = xmallocz(size);
93821bd9 1884 unsigned long n;
7efbff75 1885 int status = Z_OK;
5180cacc 1886
93821bd9
LT
1887 n = stream->total_out - bytes;
1888 if (n > size)
1889 n = size;
1890 memcpy(buf, (char *) buffer + bytes, n);
1891 bytes = n;
456cdf6e
LT
1892 if (bytes <= size) {
1893 /*
1894 * The above condition must be (bytes <= size), not
1895 * (bytes < size). In other words, even though we
ccf5ace0 1896 * expect no more output and set avail_out to zero,
456cdf6e
LT
1897 * the input zlib stream may have bytes that express
1898 * "this concludes the stream", and we *do* want to
1899 * eat that input.
1900 *
1901 * Otherwise we would not be able to test that we
1902 * consumed all the input to reach the expected size;
1903 * we also want to check that zlib tells us that all
1904 * went well with status == Z_STREAM_END at the end.
1905 */
5180cacc
LT
1906 stream->next_out = buf + bytes;
1907 stream->avail_out = size - bytes;
7efbff75 1908 while (status == Z_OK)
39c68542 1909 status = git_inflate(stream, Z_FINISH);
5180cacc 1910 }
456cdf6e 1911 if (status == Z_STREAM_END && !stream->avail_in) {
39c68542 1912 git_inflate_end(stream);
7efbff75
JH
1913 return buf;
1914 }
1915
1916 if (status < 0)
1917 error("corrupt loose object '%s'", sha1_to_hex(sha1));
1918 else if (stream->avail_in)
1919 error("garbage at end of loose object '%s'",
1920 sha1_to_hex(sha1));
1921 free(buf);
1922 return NULL;
5180cacc
LT
1923}
1924
1925/*
1926 * We used to just use "sscanf()", but that's actually way
1927 * too permissive for what we want to check. So do an anal
1928 * object header parse by hand.
1929 */
46f03448
KN
1930static int parse_sha1_header_extended(const char *hdr, struct object_info *oi,
1931 unsigned int flags)
5180cacc 1932{
46f03448 1933 const char *type_buf = hdr;
5180cacc 1934 unsigned long size;
46f03448 1935 int type, type_len = 0;
5180cacc
LT
1936
1937 /*
46f03448 1938 * The type can be of any size but is followed by
21666f1a 1939 * a space.
5180cacc 1940 */
5180cacc
LT
1941 for (;;) {
1942 char c = *hdr++;
d21f8426
JH
1943 if (!c)
1944 return -1;
5180cacc
LT
1945 if (c == ' ')
1946 break;
46f03448 1947 type_len++;
5180cacc 1948 }
46f03448
KN
1949
1950 type = type_from_string_gently(type_buf, type_len, 1);
1951 if (oi->typename)
1952 strbuf_add(oi->typename, type_buf, type_len);
1953 /*
1954 * Set type to 0 if its an unknown object and
2e3a16b2 1955 * we're obtaining the type using '--allow-unknown-type'
46f03448
KN
1956 * option.
1957 */
19fc5e84 1958 if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE) && (type < 0))
46f03448
KN
1959 type = 0;
1960 else if (type < 0)
1961 die("invalid object type");
1962 if (oi->typep)
1963 *oi->typep = type;
5180cacc
LT
1964
1965 /*
1966 * The length must follow immediately, and be in canonical
1967 * decimal format (ie "010" is not valid).
1968 */
1969 size = *hdr++ - '0';
1970 if (size > 9)
1971 return -1;
1972 if (size) {
1973 for (;;) {
1974 unsigned long c = *hdr - '0';
1975 if (c > 9)
1976 break;
1977 hdr++;
1978 size = size * 10 + c;
1979 }
1980 }
46f03448
KN
1981
1982 if (oi->sizep)
1983 *oi->sizep = size;
5180cacc
LT
1984
1985 /*
1986 * The length must be followed by a zero byte
1987 */
46f03448
KN
1988 return *hdr ? -1 : type;
1989}
1990
1991int parse_sha1_header(const char *hdr, unsigned long *sizep)
1992{
27b5c1a0 1993 struct object_info oi = OBJECT_INFO_INIT;
46f03448
KN
1994
1995 oi.sizep = sizep;
1f0c0d36 1996 return parse_sha1_header_extended(hdr, &oi, 0);
0fcfd160
LT
1997}
1998
54dab52a
NP
1999unsigned long get_size_from_delta(struct packed_git *p,
2000 struct pack_window **w_curs,
2001 off_t curpos)
2002{
2003 const unsigned char *data;
2004 unsigned char delta_head[20], *in;
ef49a7a0 2005 git_zstream stream;
54dab52a
NP
2006 int st;
2007
2008 memset(&stream, 0, sizeof(stream));
2009 stream.next_out = delta_head;
2010 stream.avail_out = sizeof(delta_head);
2011
39c68542 2012 git_inflate_init(&stream);
54dab52a
NP
2013 do {
2014 in = use_pack(p, w_curs, curpos, &stream.avail_in);
2015 stream.next_in = in;
39c68542 2016 st = git_inflate(&stream, Z_FINISH);
54dab52a
NP
2017 curpos += stream.next_in - in;
2018 } while ((st == Z_OK || st == Z_BUF_ERROR) &&
2019 stream.total_out < sizeof(delta_head));
39c68542 2020 git_inflate_end(&stream);
3d77d877
NP
2021 if ((st != Z_STREAM_END) && stream.total_out != sizeof(delta_head)) {
2022 error("delta data unpack-initial failed");
2023 return 0;
2024 }
54dab52a
NP
2025
2026 /* Examine the initial part of the delta to figure out
2027 * the result size.
2028 */
2029 data = delta_head;
2030
2031 /* ignore base size */
2032 get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
2033
2034 /* Read the result size */
2035 return get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
2036}
2037
c4001d92 2038static off_t get_delta_base(struct packed_git *p,
03e79c88 2039 struct pack_window **w_curs,
c4001d92 2040 off_t *curpos,
21666f1a 2041 enum object_type type,
c4001d92 2042 off_t delta_obj_offset)
eb32d236 2043{
2b87c45b 2044 unsigned char *base_info = use_pack(p, w_curs, *curpos, NULL);
c4001d92 2045 off_t base_offset;
eb32d236 2046
8d8a4ea5
SP
2047 /* use_pack() assured us we have [base_info, base_info + 20)
2048 * as a range that we can look at without walking off the
2049 * end of the mapped window. Its actually the hash size
2050 * that is assured. An OFS_DELTA longer than the hash size
2051 * is stupid, as then a REF_DELTA would be smaller to store.
2052 */
21666f1a 2053 if (type == OBJ_OFS_DELTA) {
eb32d236
NP
2054 unsigned used = 0;
2055 unsigned char c = base_info[used++];
2056 base_offset = c & 127;
2057 while (c & 128) {
2058 base_offset += 1;
8723f216 2059 if (!base_offset || MSB(base_offset, 7))
8eca0b47 2060 return 0; /* overflow */
eb32d236
NP
2061 c = base_info[used++];
2062 base_offset = (base_offset << 7) + (c & 127);
2063 }
2064 base_offset = delta_obj_offset - base_offset;
d8f32556 2065 if (base_offset <= 0 || base_offset >= delta_obj_offset)
8eca0b47 2066 return 0; /* out of bound */
2b87c45b 2067 *curpos += used;
21666f1a 2068 } else if (type == OBJ_REF_DELTA) {
eb32d236
NP
2069 /* The base entry _must_ be in the same pack */
2070 base_offset = find_pack_entry_one(base_info, p);
2b87c45b 2071 *curpos += 20;
eb32d236
NP
2072 } else
2073 die("I am totally screwed");
2b87c45b 2074 return base_offset;
eb32d236
NP
2075}
2076
5d642e75
JK
2077/*
2078 * Like get_delta_base above, but we return the sha1 instead of the pack
2079 * offset. This means it is cheaper for REF deltas (we do not have to do
2080 * the final object lookup), but more expensive for OFS deltas (we
2081 * have to load the revidx to convert the offset back into a sha1).
2082 */
2083static const unsigned char *get_delta_base_sha1(struct packed_git *p,
2084 struct pack_window **w_curs,
2085 off_t curpos,
2086 enum object_type type,
2087 off_t delta_obj_offset)
2088{
2089 if (type == OBJ_REF_DELTA) {
2090 unsigned char *base = use_pack(p, w_curs, curpos, NULL);
2091 return base;
2092 } else if (type == OBJ_OFS_DELTA) {
2093 struct revindex_entry *revidx;
2094 off_t base_offset = get_delta_base(p, w_curs, &curpos,
2095 type, delta_obj_offset);
2096
2097 if (!base_offset)
2098 return NULL;
2099
2100 revidx = find_pack_revindex(p, base_offset);
2101 if (!revidx)
2102 return NULL;
2103
2104 return nth_packed_object_sha1(p, revidx->nr);
2105 } else
2106 return NULL;
2107}
2108
f8c8abc5
JH
2109int unpack_object_header(struct packed_git *p,
2110 struct pack_window **w_curs,
2111 off_t *curpos,
2112 unsigned long *sizep)
a733cb60 2113{
03e79c88 2114 unsigned char *base;
ef49a7a0 2115 unsigned long left;
ad1ed5ee 2116 unsigned long used;
2b87c45b 2117 enum object_type type;
a733cb60 2118
8d8a4ea5 2119 /* use_pack() assures us we have [base, base + 20) available
0353a0c4 2120 * as a range that we can look at. (Its actually the hash
3dff5379 2121 * size that is assured.) With our object header encoding
8d8a4ea5
SP
2122 * the maximum deflated object size is 2^137, which is just
2123 * insane, so we know won't exceed what we have been given.
2124 */
2b87c45b 2125 base = use_pack(p, w_curs, *curpos, &left);
09ded04b
NP
2126 used = unpack_object_header_buffer(base, left, &type, sizep);
2127 if (!used) {
2128 type = OBJ_BAD;
2129 } else
2130 *curpos += used;
ad1ed5ee 2131
2b87c45b 2132 return type;
a733cb60
LT
2133}
2134
790d96c0
TR
2135static int retry_bad_packed_offset(struct packed_git *p, off_t obj_offset)
2136{
2137 int type;
2138 struct revindex_entry *revidx;
2139 const unsigned char *sha1;
2140 revidx = find_pack_revindex(p, obj_offset);
2141 if (!revidx)
2142 return OBJ_BAD;
2143 sha1 = nth_packed_object_sha1(p, revidx->nr);
2144 mark_bad_packed_object(p, sha1);
2145 type = sha1_object_info(sha1, NULL);
2146 if (type <= OBJ_NONE)
2147 return OBJ_BAD;
2148 return type;
2149}
2150
790d96c0
TR
2151#define POI_STACK_PREALLOC 64
2152
90191d37
JK
2153static enum object_type packed_to_object_type(struct packed_git *p,
2154 off_t obj_offset,
2155 enum object_type type,
2156 struct pack_window **w_curs,
2157 off_t curpos)
1f688557 2158{
790d96c0
TR
2159 off_t small_poi_stack[POI_STACK_PREALLOC];
2160 off_t *poi_stack = small_poi_stack;
2161 int poi_stack_nr = 0, poi_stack_alloc = POI_STACK_PREALLOC;
5db47c2b 2162
790d96c0
TR
2163 while (type == OBJ_OFS_DELTA || type == OBJ_REF_DELTA) {
2164 off_t base_offset;
90191d37 2165 unsigned long size;
790d96c0
TR
2166 /* Push the object we're going to leave behind */
2167 if (poi_stack_nr >= poi_stack_alloc && poi_stack == small_poi_stack) {
2168 poi_stack_alloc = alloc_nr(poi_stack_nr);
b32fa95f 2169 ALLOC_ARRAY(poi_stack, poi_stack_alloc);
790d96c0
TR
2170 memcpy(poi_stack, small_poi_stack, sizeof(off_t)*poi_stack_nr);
2171 } else {
2172 ALLOC_GROW(poi_stack, poi_stack_nr+1, poi_stack_alloc);
2173 }
2174 poi_stack[poi_stack_nr++] = obj_offset;
2175 /* If parsing the base offset fails, just unwind */
90191d37 2176 base_offset = get_delta_base(p, w_curs, &curpos, type, obj_offset);
790d96c0
TR
2177 if (!base_offset)
2178 goto unwind;
2179 curpos = obj_offset = base_offset;
90191d37 2180 type = unpack_object_header(p, w_curs, &curpos, &size);
790d96c0
TR
2181 if (type <= OBJ_NONE) {
2182 /* If getting the base itself fails, we first
2183 * retry the base, otherwise unwind */
2184 type = retry_bad_packed_offset(p, base_offset);
2185 if (type > OBJ_NONE)
2186 goto out;
2187 goto unwind;
2188 }
2189 }
2190
21666f1a 2191 switch (type) {
790d96c0 2192 case OBJ_BAD:
a733cb60 2193 case OBJ_COMMIT:
a733cb60 2194 case OBJ_TREE:
a733cb60 2195 case OBJ_BLOB:
a733cb60 2196 case OBJ_TAG:
a69d0943 2197 break;
1f688557 2198 default:
3d77d877
NP
2199 error("unknown object type %i at offset %"PRIuMAX" in %s",
2200 type, (uintmax_t)obj_offset, p->pack_name);
2201 type = OBJ_BAD;
1f688557 2202 }
790d96c0
TR
2203
2204out:
2205 if (poi_stack != small_poi_stack)
2206 free(poi_stack);
21666f1a 2207 return type;
790d96c0
TR
2208
2209unwind:
2210 while (poi_stack_nr) {
2211 obj_offset = poi_stack[--poi_stack_nr];
2212 type = retry_bad_packed_offset(p, obj_offset);
2213 if (type > OBJ_NONE)
2214 goto out;
2215 }
2216 type = OBJ_BAD;
2217 goto out;
1f688557
JH
2218}
2219
8261e1f1 2220static struct hashmap delta_base_cache;
18bdec11 2221static size_t delta_base_cached;
5e08ecbf 2222
12d95ef6 2223static LIST_HEAD(delta_base_cache_lru);
5e08ecbf 2224
8261e1f1 2225struct delta_base_cache_key {
e5e01619
LT
2226 struct packed_git *p;
2227 off_t base_offset;
8261e1f1
JK
2228};
2229
2230struct delta_base_cache_entry {
2231 struct hashmap hash;
2232 struct delta_base_cache_key key;
2233 struct list_head lru;
2234 void *data;
e5e01619 2235 unsigned long size;
e5e01619 2236 enum object_type type;
8261e1f1 2237};
e5e01619 2238
8261e1f1 2239static unsigned int pack_entry_hash(struct packed_git *p, off_t base_offset)
e5e01619 2240{
8261e1f1 2241 unsigned int hash;
e5e01619 2242
8261e1f1 2243 hash = (unsigned int)(intptr_t)p + (unsigned int)base_offset;
e5e01619 2244 hash += (hash >> 8) + (hash >> 16);
8261e1f1 2245 return hash;
e5e01619
LT
2246}
2247
84dd81c1
TR
2248static struct delta_base_cache_entry *
2249get_delta_base_cache_entry(struct packed_git *p, off_t base_offset)
5266d369 2250{
8261e1f1
JK
2251 struct hashmap_entry entry;
2252 struct delta_base_cache_key key;
2253
2254 if (!delta_base_cache.cmpfn)
2255 return NULL;
2256
2257 hashmap_entry_init(&entry, pack_entry_hash(p, base_offset));
2258 key.p = p;
2259 key.base_offset = base_offset;
2260 return hashmap_get(&delta_base_cache, &entry, &key);
2261}
2262
2263static int delta_base_cache_key_eq(const struct delta_base_cache_key *a,
2264 const struct delta_base_cache_key *b)
2265{
2266 return a->p == b->p && a->base_offset == b->base_offset;
84dd81c1
TR
2267}
2268
7663cdc8
SB
2269static int delta_base_cache_hash_cmp(const void *unused_cmp_data,
2270 const void *va, const void *vb,
8261e1f1 2271 const void *vkey)
84dd81c1 2272{
8261e1f1
JK
2273 const struct delta_base_cache_entry *a = va, *b = vb;
2274 const struct delta_base_cache_key *key = vkey;
2275 if (key)
2276 return !delta_base_cache_key_eq(&a->key, key);
2277 else
2278 return !delta_base_cache_key_eq(&a->key, &b->key);
5266d369
JH
2279}
2280
84dd81c1
TR
2281static int in_delta_base_cache(struct packed_git *p, off_t base_offset)
2282{
8261e1f1 2283 return !!get_delta_base_cache_entry(p, base_offset);
84dd81c1
TR
2284}
2285
4a5397ca
JK
2286/*
2287 * Remove the entry from the cache, but do _not_ free the associated
2288 * entry data. The caller takes ownership of the "data" buffer, and
2289 * should copy out any fields it wants before detaching.
2290 */
2291static void detach_delta_base_cache_entry(struct delta_base_cache_entry *ent)
84dd81c1 2292{
8261e1f1 2293 hashmap_remove(&delta_base_cache, ent, &ent->key);
12d95ef6 2294 list_del(&ent->lru);
84dd81c1 2295 delta_base_cached -= ent->size;
8261e1f1 2296 free(ent);
84dd81c1
TR
2297}
2298
62f255ad 2299static void *cache_or_unpack_entry(struct packed_git *p, off_t base_offset,
85fe35ab 2300 unsigned long *base_size, enum object_type *type)
62f255ad 2301{
84dd81c1 2302 struct delta_base_cache_entry *ent;
e5e01619 2303
84dd81c1 2304 ent = get_delta_base_cache_entry(p, base_offset);
8261e1f1 2305 if (!ent)
749bc58c 2306 return unpack_entry(p, base_offset, type, base_size);
e5e01619 2307
c84a1f3e
JT
2308 if (type)
2309 *type = ent->type;
2310 if (base_size)
2311 *base_size = ent->size;
85fe35ab 2312 return xmemdupz(ent->data, ent->size);
62f255ad
LT
2313}
2314
18bdec11
SP
2315static inline void release_delta_base_cache(struct delta_base_cache_entry *ent)
2316{
8261e1f1
JK
2317 free(ent->data);
2318 detach_delta_base_cache_entry(ent);
18bdec11
SP
2319}
2320
3d20c636
SP
2321void clear_delta_base_cache(void)
2322{
abd5a002
JK
2323 struct list_head *lru, *tmp;
2324 list_for_each_safe(lru, tmp, &delta_base_cache_lru) {
2325 struct delta_base_cache_entry *entry =
2326 list_entry(lru, struct delta_base_cache_entry, lru);
8261e1f1
JK
2327 release_delta_base_cache(entry);
2328 }
3d20c636
SP
2329}
2330
62f255ad
LT
2331static void add_delta_base_cache(struct packed_git *p, off_t base_offset,
2332 void *base, unsigned long base_size, enum object_type type)
2333{
8261e1f1 2334 struct delta_base_cache_entry *ent = xmalloc(sizeof(*ent));
4b92bae7 2335 struct list_head *lru, *tmp;
e5e01619 2336
18bdec11 2337 delta_base_cached += base_size;
5e08ecbf 2338
4b92bae7 2339 list_for_each_safe(lru, tmp, &delta_base_cache_lru) {
12d95ef6
JK
2340 struct delta_base_cache_entry *f =
2341 list_entry(lru, struct delta_base_cache_entry, lru);
2342 if (delta_base_cached <= delta_base_cache_limit)
2343 break;
5e08ecbf
NP
2344 release_delta_base_cache(f);
2345 }
18bdec11 2346
8261e1f1
JK
2347 ent->key.p = p;
2348 ent->key.base_offset = base_offset;
e5e01619
LT
2349 ent->type = type;
2350 ent->data = base;
2351 ent->size = base_size;
12d95ef6 2352 list_add_tail(&ent->lru, &delta_base_cache_lru);
8261e1f1
JK
2353
2354 if (!delta_base_cache.cmpfn)
7663cdc8 2355 hashmap_init(&delta_base_cache, delta_base_cache_hash_cmp, NULL, 0);
8261e1f1
JK
2356 hashmap_entry_init(ent, pack_entry_hash(p, base_offset));
2357 hashmap_add(&delta_base_cache, ent);
62f255ad
LT
2358}
2359
845b102b
JT
2360int packed_object_info(struct packed_git *p, off_t obj_offset,
2361 struct object_info *oi)
2362{
2363 struct pack_window *w_curs = NULL;
2364 unsigned long size;
2365 off_t curpos = obj_offset;
2366 enum object_type type;
2367
2368 /*
2369 * We always get the representation type, but only convert it to
2370 * a "real" type later if the caller is interested.
2371 */
c84a1f3e
JT
2372 if (oi->contentp) {
2373 *oi->contentp = cache_or_unpack_entry(p, obj_offset, oi->sizep,
2374 &type);
2375 if (!*oi->contentp)
2376 type = OBJ_BAD;
2377 } else {
2378 type = unpack_object_header(p, &w_curs, &curpos, &size);
2379 }
845b102b 2380
c84a1f3e 2381 if (!oi->contentp && oi->sizep) {
845b102b
JT
2382 if (type == OBJ_OFS_DELTA || type == OBJ_REF_DELTA) {
2383 off_t tmp_pos = curpos;
2384 off_t base_offset = get_delta_base(p, &w_curs, &tmp_pos,
2385 type, obj_offset);
2386 if (!base_offset) {
2387 type = OBJ_BAD;
2388 goto out;
2389 }
2390 *oi->sizep = get_size_from_delta(p, &w_curs, tmp_pos);
2391 if (*oi->sizep == 0) {
2392 type = OBJ_BAD;
2393 goto out;
2394 }
2395 } else {
2396 *oi->sizep = size;
2397 }
2398 }
2399
2400 if (oi->disk_sizep) {
2401 struct revindex_entry *revidx = find_pack_revindex(p, obj_offset);
2402 *oi->disk_sizep = revidx[1].offset - obj_offset;
2403 }
2404
2405 if (oi->typep || oi->typename) {
2406 enum object_type ptot;
2407 ptot = packed_to_object_type(p, obj_offset, type, &w_curs,
2408 curpos);
2409 if (oi->typep)
2410 *oi->typep = ptot;
2411 if (oi->typename) {
2412 const char *tn = typename(ptot);
2413 if (tn)
2414 strbuf_addstr(oi->typename, tn);
2415 }
2416 if (ptot < 0) {
2417 type = OBJ_BAD;
2418 goto out;
2419 }
2420 }
2421
2422 if (oi->delta_base_sha1) {
2423 if (type == OBJ_OFS_DELTA || type == OBJ_REF_DELTA) {
2424 const unsigned char *base;
2425
2426 base = get_delta_base_sha1(p, &w_curs, curpos,
2427 type, obj_offset);
2428 if (!base) {
2429 type = OBJ_BAD;
2430 goto out;
2431 }
2432
2433 hashcpy(oi->delta_base_sha1, base);
2434 } else
2435 hashclr(oi->delta_base_sha1);
2436 }
2437
2438out:
2439 unuse_pack(&w_curs);
2440 return type;
2441}
2442
2443static void *unpack_compressed_entry(struct packed_git *p,
2444 struct pack_window **w_curs,
2445 off_t curpos,
2446 unsigned long size)
2447{
2448 int st;
2449 git_zstream stream;
2450 unsigned char *buffer, *in;
2451
2452 buffer = xmallocz_gently(size);
2453 if (!buffer)
2454 return NULL;
2455 memset(&stream, 0, sizeof(stream));
2456 stream.next_out = buffer;
2457 stream.avail_out = size + 1;
2458
2459 git_inflate_init(&stream);
2460 do {
2461 in = use_pack(p, w_curs, curpos, &stream.avail_in);
2462 stream.next_in = in;
2463 st = git_inflate(&stream, Z_FINISH);
2464 if (!stream.avail_out)
2465 break; /* the payload is larger than it should be */
2466 curpos += stream.next_in - in;
2467 } while (st == Z_OK || st == Z_BUF_ERROR);
2468 git_inflate_end(&stream);
2469 if ((st != Z_STREAM_END) || stream.total_out != size) {
2470 free(buffer);
2471 return NULL;
2472 }
2473
2474 return buffer;
2475}
2476
c2c5b270
CC
2477static void *read_object(const unsigned char *sha1, enum object_type *type,
2478 unsigned long *size);
2479
5f44324d
JH
2480static void write_pack_access_log(struct packed_git *p, off_t obj_offset)
2481{
67dc598e
KB
2482 static struct trace_key pack_access = TRACE_KEY_INIT(PACK_ACCESS);
2483 trace_printf_key(&pack_access, "%s %"PRIuMAX"\n",
2484 p->pack_name, (uintmax_t)obj_offset);
5f44324d
JH
2485}
2486
0e8189e2
NP
2487int do_check_packed_object_crc;
2488
abe601bb
TR
2489#define UNPACK_ENTRY_STACK_PREALLOC 64
2490struct unpack_entry_stack_ent {
2491 off_t obj_offset;
2492 off_t curpos;
2493 unsigned long size;
2494};
2495
c4001d92 2496void *unpack_entry(struct packed_git *p, off_t obj_offset,
abe601bb 2497 enum object_type *final_type, unsigned long *final_size)
1f688557 2498{
03e79c88 2499 struct pack_window *w_curs = NULL;
c4001d92 2500 off_t curpos = obj_offset;
abe601bb
TR
2501 void *data = NULL;
2502 unsigned long size;
2503 enum object_type type;
2504 struct unpack_entry_stack_ent small_delta_stack[UNPACK_ENTRY_STACK_PREALLOC];
2505 struct unpack_entry_stack_ent *delta_stack = small_delta_stack;
2506 int delta_stack_nr = 0, delta_stack_alloc = UNPACK_ENTRY_STACK_PREALLOC;
2507 int base_from_cache = 0;
1f688557 2508
67dc598e 2509 write_pack_access_log(p, obj_offset);
5f44324d 2510
abe601bb
TR
2511 /* PHASE 1: drill down to the innermost base object */
2512 for (;;) {
2513 off_t base_offset;
2514 int i;
2515 struct delta_base_cache_entry *ent;
2516
77965f8b 2517 ent = get_delta_base_cache_entry(p, curpos);
8261e1f1 2518 if (ent) {
77965f8b
NTND
2519 type = ent->type;
2520 data = ent->data;
2521 size = ent->size;
4a5397ca 2522 detach_delta_base_cache_entry(ent);
77965f8b
NTND
2523 base_from_cache = 1;
2524 break;
2525 }
2526
abe601bb
TR
2527 if (do_check_packed_object_crc && p->index_version > 1) {
2528 struct revindex_entry *revidx = find_pack_revindex(p, obj_offset);
211c61c6 2529 off_t len = revidx[1].offset - obj_offset;
abe601bb
TR
2530 if (check_pack_crc(p, &w_curs, obj_offset, len, revidx->nr)) {
2531 const unsigned char *sha1 =
2532 nth_packed_object_sha1(p, revidx->nr);
2533 error("bad packed object CRC for %s",
2534 sha1_to_hex(sha1));
2535 mark_bad_packed_object(p, sha1);
896dca3a
RS
2536 data = NULL;
2537 goto out;
abe601bb
TR
2538 }
2539 }
2540
abe601bb
TR
2541 type = unpack_object_header(p, &w_curs, &curpos, &size);
2542 if (type != OBJ_OFS_DELTA && type != OBJ_REF_DELTA)
2543 break;
2544
2545 base_offset = get_delta_base(p, &w_curs, &curpos, type, obj_offset);
2546 if (!base_offset) {
2547 error("failed to validate delta base reference "
2548 "at offset %"PRIuMAX" from %s",
2549 (uintmax_t)curpos, p->pack_name);
2550 /* bail to phase 2, in hopes of recovery */
2551 data = NULL;
2552 break;
2553 }
2554
2555 /* push object, proceed to base */
2556 if (delta_stack_nr >= delta_stack_alloc
2557 && delta_stack == small_delta_stack) {
2558 delta_stack_alloc = alloc_nr(delta_stack_nr);
b32fa95f 2559 ALLOC_ARRAY(delta_stack, delta_stack_alloc);
abe601bb
TR
2560 memcpy(delta_stack, small_delta_stack,
2561 sizeof(*delta_stack)*delta_stack_nr);
2562 } else {
2563 ALLOC_GROW(delta_stack, delta_stack_nr+1, delta_stack_alloc);
2564 }
2565 i = delta_stack_nr++;
2566 delta_stack[i].obj_offset = obj_offset;
2567 delta_stack[i].curpos = curpos;
2568 delta_stack[i].size = size;
2569
2570 curpos = obj_offset = base_offset;
0e8189e2
NP
2571 }
2572
abe601bb
TR
2573 /* PHASE 2: handle the base */
2574 switch (type) {
eb32d236
NP
2575 case OBJ_OFS_DELTA:
2576 case OBJ_REF_DELTA:
abe601bb 2577 if (data)
ef1177d1 2578 die("BUG: unpack_entry: left loop at a valid delta");
4d703a1a 2579 break;
a733cb60 2580 case OBJ_COMMIT:
a733cb60 2581 case OBJ_TREE:
a733cb60 2582 case OBJ_BLOB:
a733cb60 2583 case OBJ_TAG:
abe601bb
TR
2584 if (!base_from_cache)
2585 data = unpack_compressed_entry(p, &w_curs, curpos, size);
4d703a1a 2586 break;
1f688557 2587 default:
8eca0b47
NP
2588 data = NULL;
2589 error("unknown object type %i at offset %"PRIuMAX" in %s",
abe601bb
TR
2590 type, (uintmax_t)obj_offset, p->pack_name);
2591 }
2592
2593 /* PHASE 3: apply deltas in order */
2594
2595 /* invariants:
2596 * 'data' holds the base data, or NULL if there was corruption
2597 */
2598 while (delta_stack_nr) {
2599 void *delta_data;
2600 void *base = data;
886ddf47 2601 void *external_base = NULL;
abe601bb
TR
2602 unsigned long delta_size, base_size = size;
2603 int i;
2604
2605 data = NULL;
2606
2607 if (base)
2608 add_delta_base_cache(p, obj_offset, base, base_size, type);
2609
2610 if (!base) {
2611 /*
2612 * We're probably in deep shit, but let's try to fetch
2613 * the required base anyway from another pack or loose.
2614 * This is costly but should happen only in the presence
2615 * of a corrupted pack, and is better than failing outright.
2616 */
2617 struct revindex_entry *revidx;
2618 const unsigned char *base_sha1;
2619 revidx = find_pack_revindex(p, obj_offset);
2620 if (revidx) {
2621 base_sha1 = nth_packed_object_sha1(p, revidx->nr);
2622 error("failed to read delta base object %s"
2623 " at offset %"PRIuMAX" from %s",
2624 sha1_to_hex(base_sha1), (uintmax_t)obj_offset,
2625 p->pack_name);
2626 mark_bad_packed_object(p, base_sha1);
2627 base = read_object(base_sha1, &type, &base_size);
886ddf47 2628 external_base = base;
abe601bb
TR
2629 }
2630 }
2631
2632 i = --delta_stack_nr;
2633 obj_offset = delta_stack[i].obj_offset;
2634 curpos = delta_stack[i].curpos;
2635 delta_size = delta_stack[i].size;
2636
2637 if (!base)
2638 continue;
2639
2640 delta_data = unpack_compressed_entry(p, &w_curs, curpos, delta_size);
2641
2642 if (!delta_data) {
2643 error("failed to unpack compressed delta "
2644 "at offset %"PRIuMAX" from %s",
2645 (uintmax_t)curpos, p->pack_name);
abe601bb 2646 data = NULL;
886ddf47 2647 free(external_base);
abe601bb
TR
2648 continue;
2649 }
2650
2651 data = patch_delta(base, base_size,
2652 delta_data, delta_size,
2653 &size);
1ee886c1
JK
2654
2655 /*
2656 * We could not apply the delta; warn the user, but keep going.
2657 * Our failure will be noticed either in the next iteration of
2658 * the loop, or if this is the final delta, in the caller when
2659 * we return NULL. Those code paths will take care of making
2660 * a more explicit warning and retrying with another copy of
2661 * the object.
2662 */
abe601bb 2663 if (!data)
1ee886c1 2664 error("failed to apply delta");
abe601bb 2665
4b8f772c 2666 free(delta_data);
886ddf47 2667 free(external_base);
1f688557 2668 }
abe601bb 2669
c84a1f3e
JT
2670 if (final_type)
2671 *final_type = type;
2672 if (final_size)
2673 *final_size = size;
abe601bb 2674
896dca3a 2675out:
03e79c88 2676 unuse_pack(&w_curs);
019d1e65
NTND
2677
2678 if (delta_stack != small_delta_stack)
2679 free(delta_stack);
2680
21666f1a 2681 return data;
1f688557
JH
2682}
2683
d079837e 2684const unsigned char *nth_packed_object_sha1(struct packed_git *p,
d72308e0 2685 uint32_t n)
9a217f2a 2686{
42873078 2687 const unsigned char *index = p->index_data;
d079837e
SP
2688 if (!index) {
2689 if (open_pack_index(p))
2690 return NULL;
2691 index = p->index_data;
2692 }
57059091 2693 if (n >= p->num_objects)
d72308e0 2694 return NULL;
74e34e1f
NP
2695 index += 4 * 256;
2696 if (p->index_version == 1) {
2697 return index + 24 * n + 4;
2698 } else {
2699 index += 8;
2700 return index + 20 * n;
2701 }
2702}
2703
068f85e3 2704const struct object_id *nth_packed_object_oid(struct object_id *oid,
2705 struct packed_git *p,
2706 uint32_t n)
2707{
2708 const unsigned char *hash = nth_packed_object_sha1(p, n);
2709 if (!hash)
2710 return NULL;
2711 hashcpy(oid->hash, hash);
2712 return oid;
2713}
2714
47fe3f6e
JK
2715void check_pack_index_ptr(const struct packed_git *p, const void *vptr)
2716{
2717 const unsigned char *ptr = vptr;
2718 const unsigned char *start = p->index_data;
2719 const unsigned char *end = start + p->index_size;
2720 if (ptr < start)
7465feba 2721 die(_("offset before start of pack index for %s (corrupt index?)"),
47fe3f6e
JK
2722 p->pack_name);
2723 /* No need to check for underflow; .idx files must be at least 8 bytes */
2724 if (ptr >= end - 8)
7465feba 2725 die(_("offset beyond end of pack index for %s (truncated index?)"),
47fe3f6e
JK
2726 p->pack_name);
2727}
2728
99093238 2729off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
74e34e1f
NP
2730{
2731 const unsigned char *index = p->index_data;
2732 index += 4 * 256;
2733 if (p->index_version == 1) {
2734 return ntohl(*((uint32_t *)(index + 24 * n)));
2735 } else {
2736 uint32_t off;
2737 index += 8 + p->num_objects * (20 + 4);
2738 off = ntohl(*((uint32_t *)(index + 4 * n)));
2739 if (!(off & 0x80000000))
2740 return off;
2741 index += p->num_objects * 4 + (off & 0x7fffffff) * 8;
47fe3f6e 2742 check_pack_index_ptr(p, index);
74e34e1f
NP
2743 return (((uint64_t)ntohl(*((uint32_t *)(index + 0)))) << 32) |
2744 ntohl(*((uint32_t *)(index + 4)));
2745 }
9a217f2a
JH
2746}
2747
c4001d92 2748off_t find_pack_entry_one(const unsigned char *sha1,
43057304 2749 struct packed_git *p)
1f688557 2750{
42873078 2751 const uint32_t *level1_ofs = p->index_data;
42873078 2752 const unsigned char *index = p->index_data;
628522ec
JH
2753 unsigned hi, lo, stride;
2754 static int use_lookup = -1;
2755 static int debug_lookup = -1;
2756
2757 if (debug_lookup < 0)
2758 debug_lookup = !!getenv("GIT_DEBUG_LOOKUP");
42873078 2759
d079837e
SP
2760 if (!index) {
2761 if (open_pack_index(p))
2762 return 0;
2763 level1_ofs = p->index_data;
2764 index = p->index_data;
2765 }
74e34e1f
NP
2766 if (p->index_version > 1) {
2767 level1_ofs += 2;
2768 index += 8;
2769 }
42873078 2770 index += 4 * 256;
74e34e1f
NP
2771 hi = ntohl(level1_ofs[*sha1]);
2772 lo = ((*sha1 == 0x0) ? 0 : ntohl(level1_ofs[*sha1 - 1]));
628522ec
JH
2773 if (p->index_version > 1) {
2774 stride = 20;
2775 } else {
2776 stride = 24;
2777 index += 4;
2778 }
2779
2780 if (debug_lookup)
6e1c2344 2781 printf("%02x%02x%02x... lo %u hi %u nr %"PRIu32"\n",
628522ec
JH
2782 sha1[0], sha1[1], sha1[2], lo, hi, p->num_objects);
2783
2784 if (use_lookup < 0)
2785 use_lookup = !!getenv("GIT_USE_LOOKUP");
2786 if (use_lookup) {
2787 int pos = sha1_entry_pos(index, stride, 0,
2788 lo, hi, p->num_objects, sha1);
2789 if (pos < 0)
2790 return 0;
2791 return nth_packed_object_offset(p, pos);
2792 }
1f688557 2793
6355a768 2794 while (lo < hi) {
74e34e1f 2795 unsigned mi = (lo + hi) / 2;
628522ec
JH
2796 int cmp = hashcmp(index + mi * stride, sha1);
2797
2798 if (debug_lookup)
2799 printf("lo %u hi %u rg %u mi %u\n",
2800 lo, hi, hi - lo, mi);
43057304 2801 if (!cmp)
74e34e1f 2802 return nth_packed_object_offset(p, mi);
1f688557
JH
2803 if (cmp > 0)
2804 hi = mi;
2805 else
2806 lo = mi+1;
6355a768 2807 }
1f688557
JH
2808 return 0;
2809}
2810
4c080182 2811int is_pack_valid(struct packed_git *p)
d131b7af
SP
2812{
2813 /* An already open pack is known to be valid. */
2814 if (p->pack_fd != -1)
2815 return 1;
2816
2817 /* If the pack has one window completely covering the
2818 * file size, the pack is known to be valid even if
2819 * the descriptor is not currently open.
2820 */
2821 if (p->windows) {
2822 struct pack_window *w = p->windows;
2823
2824 if (!w->offset && w->len == p->pack_size)
2825 return 1;
2826 }
2827
2828 /* Force the pack to open to prove its valid. */
2829 return !open_packed_git(p);
2830}
2831
95099731
NTND
2832static int fill_pack_entry(const unsigned char *sha1,
2833 struct pack_entry *e,
2834 struct packed_git *p)
2835{
2836 off_t offset;
2837
2838 if (p->num_bad_objects) {
2839 unsigned i;
2840 for (i = 0; i < p->num_bad_objects; i++)
2841 if (!hashcmp(sha1, p->bad_object_sha1 + 20 * i))
2842 return 0;
2843 }
2844
2845 offset = find_pack_entry_one(sha1, p);
2846 if (!offset)
2847 return 0;
2848
2849 /*
2850 * We are about to tell the caller where they can locate the
2851 * requested object. We better make sure the packfile is
2852 * still here and can be accessed before supplying that
2853 * answer, as it may have been deleted since the index was
2854 * loaded!
2855 */
319b678a 2856 if (!is_pack_valid(p))
95099731 2857 return 0;
95099731
NTND
2858 e->offset = offset;
2859 e->p = p;
2860 hashcpy(e->sha1, sha1);
2861 return 1;
2862}
2863
d40d535b
MH
2864/*
2865 * Iff a pack file contains the object named by sha1, return true and
2866 * store its location to e.
2867 */
4d6acb70 2868static int find_pack_entry(const unsigned char *sha1, struct pack_entry *e)
1f688557 2869{
a73cdd21 2870 struct mru_entry *p;
43057304 2871
1f688557 2872 prepare_packed_git();
f7c22cc6
NP
2873 if (!packed_git)
2874 return 0;
1f688557 2875
a73cdd21
JK
2876 for (p = packed_git_mru->head; p; p = p->next) {
2877 if (fill_pack_entry(sha1, e, p->item)) {
2878 mru_mark(packed_git_mru, p);
1b1005d1
MH
2879 return 1;
2880 }
c01f51cc 2881 }
1f688557
JH
2882 return 0;
2883}
2884
a6080a0a 2885struct packed_git *find_sha1_pack(const unsigned char *sha1,
bf592c50
DB
2886 struct packed_git *packs)
2887{
2888 struct packed_git *p;
bf592c50
DB
2889
2890 for (p = packs; p; p = p->next) {
43057304 2891 if (find_pack_entry_one(sha1, p))
bf592c50
DB
2892 return p;
2893 }
2894 return NULL;
21666f1a 2895
bf592c50
DB
2896}
2897
052fe5ea 2898static int sha1_loose_object_info(const unsigned char *sha1,
46f03448
KN
2899 struct object_info *oi,
2900 int flags)
65c2e0c3 2901{
46f03448
KN
2902 int status = 0;
2903 unsigned long mapsize;
65c2e0c3 2904 void *map;
ef49a7a0 2905 git_zstream stream;
d65a16f6 2906 char hdr[32];
46f03448 2907 struct strbuf hdrbuf = STRBUF_INIT;
c84a1f3e 2908 unsigned long size_scratch;
65c2e0c3 2909
5d642e75
JK
2910 if (oi->delta_base_sha1)
2911 hashclr(oi->delta_base_sha1);
2912
052fe5ea
JK
2913 /*
2914 * If we don't care about type or size, then we don't
4ef8d1dd
JH
2915 * need to look inside the object at all. Note that we
2916 * do not optimize out the stat call, even if the
2917 * caller doesn't care about the disk-size, since our
2918 * return value implicitly indicates whether the
2919 * object even exists.
052fe5ea 2920 */
c84a1f3e 2921 if (!oi->typep && !oi->typename && !oi->sizep && !oi->contentp) {
771e7d57 2922 const char *path;
4ef8d1dd 2923 struct stat st;
771e7d57 2924 if (stat_sha1_file(sha1, &st, &path) < 0)
4ef8d1dd
JH
2925 return -1;
2926 if (oi->disk_sizep)
23c339c0 2927 *oi->disk_sizep = st.st_size;
052fe5ea
JK
2928 return 0;
2929 }
2930
bb6b8e4f 2931 map = map_sha1_file(sha1, &mapsize);
f0df4ed5 2932 if (!map)
dbea72a8 2933 return -1;
c84a1f3e
JT
2934
2935 if (!oi->sizep)
2936 oi->sizep = &size_scratch;
2937
23c339c0
JK
2938 if (oi->disk_sizep)
2939 *oi->disk_sizep = mapsize;
19fc5e84 2940 if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE)) {
46f03448
KN
2941 if (unpack_sha1_header_to_strbuf(&stream, map, mapsize, hdr, sizeof(hdr), &hdrbuf) < 0)
2942 status = error("unable to unpack %s header with --allow-unknown-type",
2943 sha1_to_hex(sha1));
2944 } else if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
36e4d74a
JH
2945 status = error("unable to unpack %s header",
2946 sha1_to_hex(sha1));
46f03448
KN
2947 if (status < 0)
2948 ; /* Do nothing */
2949 else if (hdrbuf.len) {
2950 if ((status = parse_sha1_header_extended(hdrbuf.buf, oi, flags)) < 0)
2951 status = error("unable to parse %s header with --allow-unknown-type",
2952 sha1_to_hex(sha1));
2953 } else if ((status = parse_sha1_header_extended(hdr, oi, flags)) < 0)
36e4d74a 2954 status = error("unable to parse %s header", sha1_to_hex(sha1));
c84a1f3e
JT
2955
2956 if (status >= 0 && oi->contentp)
2957 *oi->contentp = unpack_sha1_rest(&stream, hdr,
2958 *oi->sizep, sha1);
2959 else
2960 git_inflate_end(&stream);
2961
65c2e0c3 2962 munmap(map, mapsize);
46f03448 2963 if (status && oi->typep)
23c339c0 2964 *oi->typep = status;
c84a1f3e
JT
2965 if (oi->sizep == &size_scratch)
2966 oi->sizep = NULL;
46f03448 2967 strbuf_release(&hdrbuf);
93cff9a9 2968 return (status < 0) ? status : 0;
65c2e0c3
JH
2969}
2970
de7b5d62 2971int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi, unsigned flags)
f0df4ed5 2972{
cd585e2a 2973 static struct object_info blank_oi = OBJECT_INFO_INIT;
f0df4ed5 2974 struct pack_entry e;
5b086407 2975 int rtype;
1f0c0d36
JT
2976 const unsigned char *real = (flags & OBJECT_INFO_LOOKUP_REPLACE) ?
2977 lookup_replace_object(sha1) :
2978 sha1;
f0df4ed5 2979
cd585e2a
JT
2980 if (!oi)
2981 oi = &blank_oi;
2982
dfdd4afc
JT
2983 if (!(flags & OBJECT_INFO_SKIP_CACHED)) {
2984 struct cached_object *co = find_cached_object(real);
2985 if (co) {
2986 if (oi->typep)
2987 *(oi->typep) = co->type;
2988 if (oi->sizep)
2989 *(oi->sizep) = co->size;
2990 if (oi->disk_sizep)
2991 *(oi->disk_sizep) = 0;
2992 if (oi->delta_base_sha1)
2993 hashclr(oi->delta_base_sha1);
2994 if (oi->typename)
2995 strbuf_addstr(oi->typename, typename(co->type));
2996 if (oi->contentp)
2997 *oi->contentp = xmemdupz(co->buf, co->size);
2998 oi->whence = OI_CACHED;
2999 return 0;
3000 }
c4d9986f
NTND
3001 }
3002
1f7117ef 3003 if (!find_pack_entry(real, &e)) {
ddd63e64 3004 /* Most likely it's a loose object. */
46f03448 3005 if (!sha1_loose_object_info(real, oi, flags)) {
9a490590 3006 oi->whence = OI_LOOSE;
5b086407 3007 return 0;
9a490590 3008 }
ddd63e64
SG
3009
3010 /* Not a loose object; someone else may have just packed it. */
dfdd4afc 3011 if (flags & OBJECT_INFO_QUICK) {
052fe5ea 3012 return -1;
dfdd4afc
JT
3013 } else {
3014 reprepare_packed_git();
3015 if (!find_pack_entry(real, &e))
3016 return -1;
3017 }
f0df4ed5 3018 }
3d77d877 3019
cd585e2a
JT
3020 if (oi == &blank_oi)
3021 /*
3022 * We know that the caller doesn't actually need the
3023 * information below, so return early.
3024 */
3025 return 0;
46f03448 3026
23c339c0 3027 rtype = packed_object_info(e.p, e.offset, oi);
412916ee 3028 if (rtype < 0) {
1f7117ef
CC
3029 mark_bad_packed_object(e.p, real);
3030 return sha1_object_info_extended(real, oi, 0);
5266d369
JH
3031 } else if (in_delta_base_cache(e.p, e.offset)) {
3032 oi->whence = OI_DBCACHED;
9a490590
JH
3033 } else {
3034 oi->whence = OI_PACKED;
3035 oi->u.packed.offset = e.offset;
3036 oi->u.packed.pack = e.p;
3037 oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
3038 rtype == OBJ_OFS_DELTA);
3d77d877
NP
3039 }
3040
5b086407 3041 return 0;
f0df4ed5
JS
3042}
3043
3fc0dca9 3044/* returns enum object_type or negative */
9a490590
JH
3045int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
3046{
5b086407 3047 enum object_type type;
27b5c1a0 3048 struct object_info oi = OBJECT_INFO_INIT;
9a490590 3049
5b086407 3050 oi.typep = &type;
9a490590 3051 oi.sizep = sizep;
1f0c0d36
JT
3052 if (sha1_object_info_extended(sha1, &oi,
3053 OBJECT_INFO_LOOKUP_REPLACE) < 0)
5b086407
JK
3054 return -1;
3055 return type;
9a490590
JH
3056}
3057
21666f1a
NP
3058static void *read_packed_sha1(const unsigned char *sha1,
3059 enum object_type *type, unsigned long *size)
1f688557
JH
3060{
3061 struct pack_entry e;
8eca0b47 3062 void *data;
1f688557 3063
cd673c1f 3064 if (!find_pack_entry(sha1, &e))
1f688557 3065 return NULL;
85fe35ab 3066 data = cache_or_unpack_entry(e.p, e.offset, size, type);
8eca0b47
NP
3067 if (!data) {
3068 /*
3069 * We're probably in deep shit, but let's try to fetch
3070 * the required object anyway from another pack or loose.
3071 * This should happen only in the presence of a corrupted
3072 * pack, and is better than failing outright.
3073 */
3074 error("failed to read object %s at offset %"PRIuMAX" from %s",
3075 sha1_to_hex(sha1), (uintmax_t)e.offset, e.p->pack_name);
3076 mark_bad_packed_object(e.p, sha1);
ac939109 3077 data = read_object(sha1, type, size);
8eca0b47
NP
3078 }
3079 return data;
1f688557
JH
3080}
3081
21666f1a
NP
3082int pretend_sha1_file(void *buf, unsigned long len, enum object_type type,
3083 unsigned char *sha1)
d66b37bb
JH
3084{
3085 struct cached_object *co;
3086
21666f1a 3087 hash_sha1_file(buf, len, typename(type), sha1);
d66b37bb
JH
3088 if (has_sha1_file(sha1) || find_cached_object(sha1))
3089 return 0;
c7353967 3090 ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
d66b37bb
JH
3091 co = &cached_objects[cached_object_nr++];
3092 co->size = len;
21666f1a 3093 co->type = type;
efa13f7b
JH
3094 co->buf = xmalloc(len);
3095 memcpy(co->buf, buf, len);
d66b37bb
JH
3096 hashcpy(co->sha1, sha1);
3097 return 0;
3098}
3099
c2c5b270
CC
3100static void *read_object(const unsigned char *sha1, enum object_type *type,
3101 unsigned long *size)
0fcfd160 3102{
c84a1f3e
JT
3103 struct object_info oi = OBJECT_INFO_INIT;
3104 void *content;
3105 oi.typep = type;
3106 oi.sizep = size;
3107 oi.contentp = &content;
0fcfd160 3108
c84a1f3e
JT
3109 if (sha1_object_info_extended(sha1, &oi, 0) < 0)
3110 return NULL;
3111 return content;
0fcfd160
LT
3112}
3113
b6c4cecc
JH
3114/*
3115 * This function dies on corrupt objects; the callers who want to
3116 * deal with them should arrange to call read_object() and give error
3117 * messages themselves.
3118 */
5bf29b95
JH
3119void *read_sha1_file_extended(const unsigned char *sha1,
3120 enum object_type *type,
3121 unsigned long *size,
1f0c0d36 3122 int lookup_replace)
ac939109 3123{
3ba7a065 3124 void *data;
b6c4cecc 3125 const struct packed_git *p;
771e7d57
JK
3126 const char *path;
3127 struct stat st;
1f0c0d36
JT
3128 const unsigned char *repl = lookup_replace ? lookup_replace_object(sha1)
3129 : sha1;
b6c4cecc 3130
3ba7a065
JH
3131 errno = 0;
3132 data = read_object(repl, type, size);
4bbf5a26 3133 if (data)
b6c4cecc 3134 return data;
68095570 3135
25f3af3f 3136 if (errno && errno != ENOENT)
3ba7a065
JH
3137 die_errno("failed to read object %s", sha1_to_hex(sha1));
3138
68095570 3139 /* die if we replaced an object with one that does not exist */
b6c4cecc 3140 if (repl != sha1)
68095570
CC
3141 die("replacement %s not found for %s",
3142 sha1_to_hex(repl), sha1_to_hex(sha1));
3143
771e7d57 3144 if (!stat_sha1_file(repl, &st, &path))
b6c4cecc
JH
3145 die("loose object %s (stored in %s) is corrupt",
3146 sha1_to_hex(repl), path);
68095570 3147
b6c4cecc
JH
3148 if ((p = has_packed_and_bad(repl)) != NULL)
3149 die("packed object %s (stored in %s) is corrupt",
3150 sha1_to_hex(repl), p->pack_name);
f5552aee 3151
b6c4cecc 3152 return NULL;
ac939109
NP
3153}
3154
40469ee9 3155void *read_object_with_reference(const unsigned char *sha1,
21666f1a 3156 const char *required_type_name,
40469ee9
JH
3157 unsigned long *size,
3158 unsigned char *actual_sha1_return)
f4913f91 3159{
21666f1a 3160 enum object_type type, required_type;
f4913f91
JH
3161 void *buffer;
3162 unsigned long isize;
40469ee9 3163 unsigned char actual_sha1[20];
f4913f91 3164
21666f1a 3165 required_type = type_from_string(required_type_name);
e702496e 3166 hashcpy(actual_sha1, sha1);
40469ee9
JH
3167 while (1) {
3168 int ref_length = -1;
3169 const char *ref_type = NULL;
f4913f91 3170
21666f1a 3171 buffer = read_sha1_file(actual_sha1, &type, &isize);
40469ee9
JH
3172 if (!buffer)
3173 return NULL;
21666f1a 3174 if (type == required_type) {
40469ee9
JH
3175 *size = isize;
3176 if (actual_sha1_return)
e702496e 3177 hashcpy(actual_sha1_return, actual_sha1);
40469ee9
JH
3178 return buffer;
3179 }
3180 /* Handle references */
21666f1a 3181 else if (type == OBJ_COMMIT)
40469ee9 3182 ref_type = "tree ";
21666f1a 3183 else if (type == OBJ_TAG)
40469ee9
JH
3184 ref_type = "object ";
3185 else {
3186 free(buffer);
3187 return NULL;
3188 }
3189 ref_length = strlen(ref_type);
f4913f91 3190
50974ec9
MK
3191 if (ref_length + 40 > isize ||
3192 memcmp(buffer, ref_type, ref_length) ||
1d7f171c 3193 get_sha1_hex((char *) buffer + ref_length, actual_sha1)) {
40469ee9
JH
3194 free(buffer);
3195 return NULL;
3196 }
1cf58e72 3197 free(buffer);
40469ee9
JH
3198 /* Now we have the ID of the referred-to object in
3199 * actual_sha1. Check again. */
f4913f91 3200 }
f4913f91
JH
3201}
3202
ce9fbf16 3203static void write_sha1_file_prepare(const void *buf, unsigned long len,
972a9155 3204 const char *type, unsigned char *sha1,
d65a16f6 3205 char *hdr, int *hdrlen)
d410c0f5 3206{
9126f009 3207 git_SHA_CTX c;
d410c0f5
JH
3208
3209 /* Generate the header */
ef1286d3 3210 *hdrlen = xsnprintf(hdr, *hdrlen, "%s %lu", type, len)+1;
d410c0f5
JH
3211
3212 /* Sha1.. */
9126f009
NP
3213 git_SHA1_Init(&c);
3214 git_SHA1_Update(&c, hdr, *hdrlen);
3215 git_SHA1_Update(&c, buf, len);
3216 git_SHA1_Final(sha1, &c);
d410c0f5
JH
3217}
3218
230f1322 3219/*
5a688fe4 3220 * Move the just written object into its final resting place.
230f1322 3221 */
cb5add58 3222int finalize_object_file(const char *tmpfile, const char *filename)
230f1322 3223{
e32c0a9c 3224 int ret = 0;
5a688fe4 3225
348df166 3226 if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
be66a6c4
JS
3227 goto try_rename;
3228 else if (link(tmpfile, filename))
e32c0a9c 3229 ret = errno;
7ebb6fca
LT
3230
3231 /*
3232 * Coda hack - coda doesn't like cross-directory links,
3233 * so we fall back to a rename, which will mean that it
3234 * won't be able to check collisions, but that's not a
3235 * big deal.
3236 *
3237 * The same holds for FAT formatted media.
3238 *
3be1f18e 3239 * When this succeeds, we just return. We have nothing
7ebb6fca
LT
3240 * left to unlink.
3241 */
3242 if (ret && ret != EEXIST) {
be66a6c4 3243 try_rename:
7ebb6fca 3244 if (!rename(tmpfile, filename))
3be1f18e 3245 goto out;
9e48b389 3246 ret = errno;
230f1322 3247 }
691f1a28 3248 unlink_or_warn(tmpfile);
230f1322
LT
3249 if (ret) {
3250 if (ret != EEXIST) {
7616c6ca 3251 return error_errno("unable to write sha1 filename %s", filename);
230f1322
LT
3252 }
3253 /* FIXME!!! Collision check here ? */
3254 }
3255
3be1f18e 3256out:
5256b006 3257 if (adjust_shared_perm(filename))
5a688fe4 3258 return error("unable to set permission to '%s'", filename);
230f1322
LT
3259 return 0;
3260}
3261
4d548150
LT
3262static int write_buffer(int fd, const void *buf, size_t len)
3263{
d34cf19b 3264 if (write_in_full(fd, buf, len) < 0)
7616c6ca 3265 return error_errno("file write error");
4d548150
LT
3266 return 0;
3267}
3268
ce9fbf16 3269int hash_sha1_file(const void *buf, unsigned long len, const char *type,
abdc3fc8
RS
3270 unsigned char *sha1)
3271{
d65a16f6 3272 char hdr[32];
ef1286d3 3273 int hdrlen = sizeof(hdr);
abdc3fc8
RS
3274 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
3275 return 0;
3276}
3277
e9039dd3
LT
3278/* Finalize a file on disk, and close it. */
3279static void close_sha1_file(int fd)
3280{
aafe9fba
LT
3281 if (fsync_object_files)
3282 fsync_or_die(fd, "sha1 file");
e9039dd3 3283 if (close(fd) != 0)
d824cbba 3284 die_errno("error when closing sha1 file");
e9039dd3
LT
3285}
3286
5723fe7e
LT
3287/* Size of directory component, including the ending '/' */
3288static inline int directory_size(const char *filename)
3289{
3290 const char *s = strrchr(filename, '/');
3291 if (!s)
3292 return 0;
3293 return s - filename + 1;
3294}
3295
3296/*
3297 * This creates a temporary file in the same directory as the final
3298 * 'filename'
3299 *
3300 * We want to avoid cross-directory filename renames, because those
3301 * can have problems on various filesystems (FAT, NFS, Coda).
3302 */
d4b3d11a 3303static int create_tmpfile(struct strbuf *tmp, const char *filename)
5723fe7e
LT
3304{
3305 int fd, dirlen = directory_size(filename);
3306
d4b3d11a
JK
3307 strbuf_reset(tmp);
3308 strbuf_add(tmp, filename, dirlen);
3309 strbuf_addstr(tmp, "tmp_obj_XXXXXX");
3310 fd = git_mkstemp_mode(tmp->buf, 0444);
cbacbf4e 3311 if (fd < 0 && dirlen && errno == ENOENT) {
d4b3d11a
JK
3312 /*
3313 * Make sure the directory exists; note that the contents
3314 * of the buffer are undefined after mkstemp returns an
3315 * error, so we have to rewrite the whole buffer from
3316 * scratch.
3317 */
3318 strbuf_reset(tmp);
3319 strbuf_add(tmp, filename, dirlen - 1);
3320 if (mkdir(tmp->buf, 0777) && errno != EEXIST)
b2476a60 3321 return -1;
d4b3d11a 3322 if (adjust_shared_perm(tmp->buf))
5723fe7e
LT
3323 return -1;
3324
3325 /* Try again */
d4b3d11a
JK
3326 strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
3327 fd = git_mkstemp_mode(tmp->buf, 0444);
5723fe7e
LT
3328 }
3329 return fd;
3330}
3331
bbac7311 3332static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
c00e657d 3333 const void *buf, unsigned long len, time_t mtime)
0fcfd160 3334{
915308b1 3335 int fd, ret;
9892beba 3336 unsigned char compressed[4096];
ef49a7a0 3337 git_zstream stream;
748af44c
NP
3338 git_SHA_CTX c;
3339 unsigned char parano_sha1[20];
d4b3d11a 3340 static struct strbuf tmp_file = STRBUF_INIT;
30d6c6ea 3341 const char *filename = sha1_file_name(sha1);
a44c9a5e 3342
d4b3d11a 3343 fd = create_tmpfile(&tmp_file, filename);
aac17941 3344 if (fd < 0) {
35243577 3345 if (errno == EACCES)
82247e9b 3346 return error("insufficient permission for adding an object to repository database %s", get_object_directory());
916d081b 3347 else
7616c6ca 3348 return error_errno("unable to create temporary file");
aac17941
LT
3349 }
3350
0fcfd160 3351 /* Set it up */
55bb5c91 3352 git_deflate_init(&stream, zlib_compression_level);
0fcfd160 3353 stream.next_out = compressed;
9892beba 3354 stream.avail_out = sizeof(compressed);
748af44c 3355 git_SHA1_Init(&c);
a44c9a5e
LT
3356
3357 /* First header.. */
d65a16f6 3358 stream.next_in = (unsigned char *)hdr;
a44c9a5e 3359 stream.avail_in = hdrlen;
55bb5c91
JH
3360 while (git_deflate(&stream, 0) == Z_OK)
3361 ; /* nothing */
748af44c 3362 git_SHA1_Update(&c, hdr, hdrlen);
a44c9a5e
LT
3363
3364 /* Then the data itself.. */
c00e657d 3365 stream.next_in = (void *)buf;
a44c9a5e 3366 stream.avail_in = len;
9892beba 3367 do {
748af44c 3368 unsigned char *in0 = stream.next_in;
55bb5c91 3369 ret = git_deflate(&stream, Z_FINISH);
748af44c 3370 git_SHA1_Update(&c, in0, stream.next_in - in0);
9892beba
NP
3371 if (write_buffer(fd, compressed, stream.next_out - compressed) < 0)
3372 die("unable to write sha1 file");
3373 stream.next_out = compressed;
3374 stream.avail_out = sizeof(compressed);
3375 } while (ret == Z_OK);
3376
ac54c277
LT
3377 if (ret != Z_STREAM_END)
3378 die("unable to deflate new object %s (%d)", sha1_to_hex(sha1), ret);
55bb5c91 3379 ret = git_deflate_end_gently(&stream);
ac54c277
LT
3380 if (ret != Z_OK)
3381 die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1), ret);
748af44c
NP
3382 git_SHA1_Final(parano_sha1, &c);
3383 if (hashcmp(sha1, parano_sha1) != 0)
3384 die("confused by unstable object source data for %s", sha1_to_hex(sha1));
ac54c277 3385
e9039dd3 3386 close_sha1_file(fd);
0fcfd160 3387
bbac7311
NP
3388 if (mtime) {
3389 struct utimbuf utb;
3390 utb.actime = mtime;
3391 utb.modtime = mtime;
d4b3d11a 3392 if (utime(tmp_file.buf, &utb) < 0)
7616c6ca 3393 warning_errno("failed utime() on %s", tmp_file.buf);
bbac7311
NP
3394 }
3395
d4b3d11a 3396 return finalize_object_file(tmp_file.buf, filename);
0fcfd160 3397}
8237b185 3398
33d4221c
JK
3399static int freshen_loose_object(const unsigned char *sha1)
3400{
3401 return check_and_freshen(sha1, 1);
3402}
3403
3404static int freshen_packed_object(const unsigned char *sha1)
3405{
3406 struct pack_entry e;
ee1c6c34
JK
3407 if (!find_pack_entry(sha1, &e))
3408 return 0;
3409 if (e.p->freshened)
3410 return 1;
3411 if (!freshen_file(e.p->pack_name))
3412 return 0;
3413 e.p->freshened = 1;
3414 return 1;
33d4221c
JK
3415}
3416
1427a7ff 3417int write_sha1_file(const void *buf, unsigned long len, const char *type, unsigned char *sha1)
bbac7311 3418{
bbac7311 3419 char hdr[32];
ef1286d3 3420 int hdrlen = sizeof(hdr);
bbac7311
NP
3421
3422 /* Normally if we have it in the pack then we do not bother writing
3423 * it out into .git/objects/??/?{38} file.
3424 */
3425 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
b5f52f37 3426 if (freshen_packed_object(sha1) || freshen_loose_object(sha1))
bbac7311
NP
3427 return 0;
3428 return write_loose_object(sha1, hdr, hdrlen, buf, len, 0);
3429}
3430
0c3db67c
ES
3431int hash_sha1_file_literally(const void *buf, unsigned long len, const char *type,
3432 unsigned char *sha1, unsigned flags)
3433{
3434 char *header;
3435 int hdrlen, status = 0;
3436
3437 /* type string, SP, %lu of the length plus NUL must fit this */
ef1286d3
JK
3438 hdrlen = strlen(type) + 32;
3439 header = xmalloc(hdrlen);
0c3db67c
ES
3440 write_sha1_file_prepare(buf, len, type, sha1, header, &hdrlen);
3441
3442 if (!(flags & HASH_WRITE_OBJECT))
3443 goto cleanup;
051086b9 3444 if (freshen_packed_object(sha1) || freshen_loose_object(sha1))
0c3db67c
ES
3445 goto cleanup;
3446 status = write_loose_object(sha1, header, hdrlen, buf, len, 0);
3447
3448cleanup:
3449 free(header);
3450 return status;
3451}
3452
bbac7311
NP
3453int force_object_loose(const unsigned char *sha1, time_t mtime)
3454{
bbac7311
NP
3455 void *buf;
3456 unsigned long len;
3457 enum object_type type;
3458 char hdr[32];
3459 int hdrlen;
1fb23e65 3460 int ret;
bbac7311 3461
c529d75a 3462 if (has_loose_object(sha1))
bbac7311
NP
3463 return 0;
3464 buf = read_packed_sha1(sha1, &type, &len);
3465 if (!buf)
3466 return error("cannot read sha1_file for %s", sha1_to_hex(sha1));
ef1286d3 3467 hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", typename(type), len) + 1;
1fb23e65
BS
3468 ret = write_loose_object(sha1, hdr, hdrlen, buf, len, mtime);
3469 free(buf);
3470
3471 return ret;
bbac7311
NP
3472}
3473
bf592c50
DB
3474int has_pack_index(const unsigned char *sha1)
3475{
3476 struct stat st;
3477 if (stat(sha1_pack_index_name(sha1), &st))
3478 return 0;
3479 return 1;
bf592c50
DB
3480}
3481
cd673c1f
JH
3482int has_sha1_pack(const unsigned char *sha1)
3483{
3484 struct pack_entry e;
3485 return find_pack_entry(sha1, &e);
3486}
3487
0eeb077b 3488int has_sha1_file_with_flags(const unsigned char *sha1, int flags)
8237b185 3489{
3e8b7d3c
JN
3490 if (!startup_info->have_repository)
3491 return 0;
e83e71c5
JT
3492 return sha1_object_info_extended(sha1, NULL,
3493 flags | OBJECT_INFO_SKIP_CACHED) >= 0;
b419aa25 3494}
3495
3496int has_object_file(const struct object_id *oid)
3497{
3498 return has_sha1_file(oid->hash);
8237b185 3499}
74400e71 3500
5827a035
JK
3501int has_object_file_with_flags(const struct object_id *oid, int flags)
3502{
3503 return has_sha1_file_with_flags(oid->hash, flags);
3504}
3505
c879daa2
NTND
3506static void check_tree(const void *buf, size_t size)
3507{
3508 struct tree_desc desc;
3509 struct name_entry entry;
3510
3511 init_tree_desc(&desc, buf, size);
3512 while (tree_entry(&desc, &entry))
3513 /* do nothing
3514 * tree_entry() will die() on malformed entries */
3515 ;
3516}
3517
3518static void check_commit(const void *buf, size_t size)
3519{
3520 struct commit c;
3521 memset(&c, 0, sizeof(c));
3522 if (parse_commit_buffer(&c, buf, size))
3523 die("corrupt commit");
3524}
3525
3526static void check_tag(const void *buf, size_t size)
3527{
3528 struct tag t;
3529 memset(&t, 0, sizeof(t));
3530 if (parse_tag_buffer(&t, buf, size))
3531 die("corrupt tag");
3532}
3533
43df4f86 3534static int index_mem(unsigned char *sha1, void *buf, size_t size,
c4ce46fc
JH
3535 enum object_type type,
3536 const char *path, unsigned flags)
e7332f96 3537{
6c510bee 3538 int ret, re_allocated = 0;
c4ce46fc 3539 int write_object = flags & HASH_WRITE_OBJECT;
74400e71 3540
7672db20 3541 if (!type)
edaec3fb 3542 type = OBJ_BLOB;
6c510bee
LT
3543
3544 /*
3545 * Convert blobs to git internal format
3546 */
43df4f86 3547 if ((type == OBJ_BLOB) && path) {
f285a2d7 3548 struct strbuf nbuf = STRBUF_INIT;
82b474e0 3549 if (convert_to_git(&the_index, path, buf, size, &nbuf,
5e12e78e 3550 write_object ? safe_crlf : SAFE_CRLF_FALSE)) {
b315c5c0 3551 buf = strbuf_detach(&nbuf, &size);
6c510bee
LT
3552 re_allocated = 1;
3553 }
3554 }
c4ce46fc 3555 if (flags & HASH_FORMAT_CHECK) {
c879daa2
NTND
3556 if (type == OBJ_TREE)
3557 check_tree(buf, size);
3558 if (type == OBJ_COMMIT)
3559 check_commit(buf, size);
3560 if (type == OBJ_TAG)
3561 check_tag(buf, size);
3562 }
6c510bee 3563
7672db20 3564 if (write_object)
edaec3fb 3565 ret = write_sha1_file(buf, size, typename(type), sha1);
abdc3fc8 3566 else
edaec3fb 3567 ret = hash_sha1_file(buf, size, typename(type), sha1);
43df4f86 3568 if (re_allocated)
6c510bee 3569 free(buf);
43df4f86
DP
3570 return ret;
3571}
3572
9035d75a
SP
3573static int index_stream_convert_blob(unsigned char *sha1, int fd,
3574 const char *path, unsigned flags)
3575{
3576 int ret;
3577 const int write_object = flags & HASH_WRITE_OBJECT;
3578 struct strbuf sbuf = STRBUF_INIT;
3579
3580 assert(path);
3581 assert(would_convert_to_git_filter_fd(path));
3582
d6c41c20 3583 convert_to_git_filter_fd(&the_index, path, fd, &sbuf,
9035d75a
SP
3584 write_object ? safe_crlf : SAFE_CRLF_FALSE);
3585
3586 if (write_object)
3587 ret = write_sha1_file(sbuf.buf, sbuf.len, typename(OBJ_BLOB),
3588 sha1);
3589 else
3590 ret = hash_sha1_file(sbuf.buf, sbuf.len, typename(OBJ_BLOB),
3591 sha1);
3592 strbuf_release(&sbuf);
3593 return ret;
3594}
3595
7b41e1e1
JH
3596static int index_pipe(unsigned char *sha1, int fd, enum object_type type,
3597 const char *path, unsigned flags)
3598{
3599 struct strbuf sbuf = STRBUF_INIT;
3600 int ret;
3601
3602 if (strbuf_read(&sbuf, fd, 4096) >= 0)
3603 ret = index_mem(sha1, sbuf.buf, sbuf.len, type, path, flags);
3604 else
3605 ret = -1;
3606 strbuf_release(&sbuf);
3607 return ret;
3608}
3609
ea68b0ce
DP
3610#define SMALL_FILE_SIZE (32*1024)
3611
7b41e1e1
JH
3612static int index_core(unsigned char *sha1, int fd, size_t size,
3613 enum object_type type, const char *path,
3614 unsigned flags)
43df4f86
DP
3615{
3616 int ret;
43df4f86 3617
7b41e1e1 3618 if (!size) {
f6a1e1e2 3619 ret = index_mem(sha1, "", size, type, path, flags);
ea68b0ce
DP
3620 } else if (size <= SMALL_FILE_SIZE) {
3621 char *buf = xmalloc(size);
3622 if (size == read_in_full(fd, buf, size))
c4ce46fc 3623 ret = index_mem(sha1, buf, size, type, path, flags);
ea68b0ce 3624 else
7616c6ca 3625 ret = error_errno("short read");
ea68b0ce 3626 free(buf);
08bda208 3627 } else {
43df4f86 3628 void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
c4ce46fc 3629 ret = index_mem(sha1, buf, size, type, path, flags);
aac17941 3630 munmap(buf, size);
08bda208 3631 }
7b41e1e1
JH
3632 return ret;
3633}
3634
4dd1fbc7 3635/*
568508e7
JH
3636 * This creates one packfile per large blob unless bulk-checkin
3637 * machinery is "plugged".
4dd1fbc7
JH
3638 *
3639 * This also bypasses the usual "convert-to-git" dance, and that is on
3640 * purpose. We could write a streaming version of the converting
3641 * functions and insert that before feeding the data to fast-import
4f22b101
JK
3642 * (or equivalent in-core API described above). However, that is
3643 * somewhat complicated, as we do not know the size of the filter
3644 * result, which we need to know beforehand when writing a git object.
3645 * Since the primary motivation for trying to stream from the working
3646 * tree file and to avoid mmaping it in core is to deal with large
3647 * binary blobs, they generally do not want to get any conversion, and
3648 * callers should avoid this code path when filters are requested.
4dd1fbc7
JH
3649 */
3650static int index_stream(unsigned char *sha1, int fd, size_t size,
3651 enum object_type type, const char *path,
3652 unsigned flags)
3653{
568508e7 3654 return index_bulk_checkin(sha1, fd, size, type, path, flags);
4dd1fbc7
JH
3655}
3656
7b41e1e1
JH
3657int index_fd(unsigned char *sha1, int fd, struct stat *st,
3658 enum object_type type, const char *path, unsigned flags)
3659{
3660 int ret;
7b41e1e1 3661
9079ab7c
SP
3662 /*
3663 * Call xsize_t() only when needed to avoid potentially unnecessary
3664 * die() for large files.
3665 */
9035d75a
SP
3666 if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(path))
3667 ret = index_stream_convert_blob(sha1, fd, path, flags);
3668 else if (!S_ISREG(st->st_mode))
7b41e1e1 3669 ret = index_pipe(sha1, fd, type, path, flags);
9079ab7c 3670 else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
82b474e0 3671 (path && would_convert_to_git(&the_index, path)))
9079ab7c
SP
3672 ret = index_core(sha1, fd, xsize_t(st->st_size), type, path,
3673 flags);
4dd1fbc7 3674 else
9079ab7c
SP
3675 ret = index_stream(sha1, fd, xsize_t(st->st_size), type, path,
3676 flags);
43df4f86 3677 close(fd);
aac17941 3678 return ret;
74400e71 3679}
ec1fcc16 3680
c4ce46fc 3681int index_path(unsigned char *sha1, const char *path, struct stat *st, unsigned flags)
ec1fcc16
JH
3682{
3683 int fd;
b760d3aa 3684 struct strbuf sb = STRBUF_INIT;
ec1fcc16
JH
3685
3686 switch (st->st_mode & S_IFMT) {
3687 case S_IFREG:
3688 fd = open(path, O_RDONLY);
3689 if (fd < 0)
7616c6ca 3690 return error_errno("open(\"%s\")", path);
c4ce46fc 3691 if (index_fd(sha1, fd, st, OBJ_BLOB, path, flags) < 0)
ec1fcc16
JH
3692 return error("%s: failed to insert into database",
3693 path);
3694 break;
3695 case S_IFLNK:
7616c6ca
NTND
3696 if (strbuf_readlink(&sb, path, st->st_size))
3697 return error_errno("readlink(\"%s\")", path);
c4ce46fc 3698 if (!(flags & HASH_WRITE_OBJECT))
b760d3aa
LT
3699 hash_sha1_file(sb.buf, sb.len, blob_type, sha1);
3700 else if (write_sha1_file(sb.buf, sb.len, blob_type, sha1))
ec1fcc16
JH
3701 return error("%s: failed to insert into database",
3702 path);
b760d3aa 3703 strbuf_release(&sb);
ec1fcc16 3704 break;
f35a6d3b
LT
3705 case S_IFDIR:
3706 return resolve_gitlink_ref(path, "HEAD", sha1);
ec1fcc16
JH
3707 default:
3708 return error("%s: unsupported file type", path);
3709 }
3710 return 0;
3711}
a69e5429
JH
3712
3713int read_pack_header(int fd, struct pack_header *header)
3714{
c697ad14
HO
3715 if (read_in_full(fd, header, sizeof(*header)) < sizeof(*header))
3716 /* "eof before pack header was fully read" */
3717 return PH_ERROR_EOF;
3718
a69e5429
JH
3719 if (header->hdr_signature != htonl(PACK_SIGNATURE))
3720 /* "protocol error (pack signature mismatch detected)" */
3721 return PH_ERROR_PACK_SIGNATURE;
3722 if (!pack_version_ok(header->hdr_version))
3723 /* "protocol error (pack version unsupported)" */
3724 return PH_ERROR_PROTOCOL;
3725 return 0;
3726}
40d52ff7
JK
3727
3728void assert_sha1_type(const unsigned char *sha1, enum object_type expect)
3729{
3730 enum object_type type = sha1_object_info(sha1, NULL);
3731 if (type < 0)
3732 die("%s is not a valid object", sha1_to_hex(sha1));
3733 if (type != expect)
3734 die("%s is not a valid '%s' object", sha1_to_hex(sha1),
3735 typename(expect));
3736}
27e1e22d 3737
70c49050 3738int for_each_file_in_obj_subdir(unsigned int subdir_nr,
cc817ca3
RS
3739 struct strbuf *path,
3740 each_loose_object_fn obj_cb,
3741 each_loose_cruft_fn cruft_cb,
3742 each_loose_subdir_fn subdir_cb,
3743 void *data)
27e1e22d 3744{
0375f472
RS
3745 size_t origlen, baselen;
3746 DIR *dir;
27e1e22d
JK
3747 struct dirent *de;
3748 int r = 0;
3749
70c49050
RS
3750 if (subdir_nr > 0xff)
3751 BUG("invalid loose object subdirectory: %x", subdir_nr);
3752
0375f472
RS
3753 origlen = path->len;
3754 strbuf_complete(path, '/');
3755 strbuf_addf(path, "%02x", subdir_nr);
3756 baselen = path->len;
3757
3758 dir = opendir(path->buf);
27e1e22d 3759 if (!dir) {
0375f472
RS
3760 if (errno != ENOENT)
3761 r = error_errno("unable to open %s", path->buf);
3762 strbuf_setlen(path, origlen);
3763 return r;
27e1e22d
JK
3764 }
3765
3766 while ((de = readdir(dir))) {
3767 if (is_dot_or_dotdot(de->d_name))
3768 continue;
3769
3770 strbuf_setlen(path, baselen);
3771 strbuf_addf(path, "/%s", de->d_name);
3772
76c1d9a0 3773 if (strlen(de->d_name) == GIT_SHA1_HEXSZ - 2) {
dc01505f 3774 char hex[GIT_MAX_HEXSZ+1];
76c1d9a0 3775 struct object_id oid;
27e1e22d 3776
1a168e5c
JK
3777 xsnprintf(hex, sizeof(hex), "%02x%s",
3778 subdir_nr, de->d_name);
76c1d9a0 3779 if (!get_oid_hex(hex, &oid)) {
27e1e22d 3780 if (obj_cb) {
76c1d9a0 3781 r = obj_cb(&oid, path->buf, data);
27e1e22d
JK
3782 if (r)
3783 break;
3784 }
3785 continue;
3786 }
3787 }
3788
3789 if (cruft_cb) {
3790 r = cruft_cb(de->d_name, path->buf, data);
3791 if (r)
3792 break;
3793 }
3794 }
094c7e63 3795 closedir(dir);
27e1e22d 3796
094c7e63 3797 strbuf_setlen(path, baselen);
27e1e22d
JK
3798 if (!r && subdir_cb)
3799 r = subdir_cb(subdir_nr, path->buf, data);
3800
0375f472
RS
3801 strbuf_setlen(path, origlen);
3802
27e1e22d
JK
3803 return r;
3804}
3805
e6f875e0 3806int for_each_loose_file_in_objdir_buf(struct strbuf *path,
27e1e22d
JK
3807 each_loose_object_fn obj_cb,
3808 each_loose_cruft_fn cruft_cb,
3809 each_loose_subdir_fn subdir_cb,
3810 void *data)
3811{
27e1e22d
JK
3812 int r = 0;
3813 int i;
3814
27e1e22d 3815 for (i = 0; i < 256; i++) {
e6f875e0 3816 r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
27e1e22d 3817 subdir_cb, data);
27e1e22d
JK
3818 if (r)
3819 break;
3820 }
3821
e6f875e0
JK
3822 return r;
3823}
3824
3825int for_each_loose_file_in_objdir(const char *path,
3826 each_loose_object_fn obj_cb,
3827 each_loose_cruft_fn cruft_cb,
3828 each_loose_subdir_fn subdir_cb,
3829 void *data)
3830{
3831 struct strbuf buf = STRBUF_INIT;
3832 int r;
3833
3834 strbuf_addstr(&buf, path);
3835 r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
3836 subdir_cb, data);
27e1e22d 3837 strbuf_release(&buf);
e6f875e0 3838
27e1e22d
JK
3839 return r;
3840}
660c889e
JK
3841
3842struct loose_alt_odb_data {
3843 each_loose_object_fn *cb;
3844 void *data;
3845};
3846
3847static int loose_from_alt_odb(struct alternate_object_database *alt,
3848 void *vdata)
3849{
3850 struct loose_alt_odb_data *data = vdata;
b0a42642
JM
3851 struct strbuf buf = STRBUF_INIT;
3852 int r;
3853
597f9134 3854 strbuf_addstr(&buf, alt->path);
b0a42642
JM
3855 r = for_each_loose_file_in_objdir_buf(&buf,
3856 data->cb, NULL, NULL,
3857 data->data);
3858 strbuf_release(&buf);
3859 return r;
660c889e
JK
3860}
3861
1385bb7b 3862int for_each_loose_object(each_loose_object_fn cb, void *data, unsigned flags)
660c889e
JK
3863{
3864 struct loose_alt_odb_data alt;
3865 int r;
3866
3867 r = for_each_loose_file_in_objdir(get_object_directory(),
3868 cb, NULL, NULL, data);
3869 if (r)
3870 return r;
3871
1385bb7b
JK
3872 if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
3873 return 0;
3874
660c889e
JK
3875 alt.cb = cb;
3876 alt.data = data;
3877 return foreach_alt_odb(loose_from_alt_odb, &alt);
3878}
3879
3880static int for_each_object_in_pack(struct packed_git *p, each_packed_object_fn cb, void *data)
3881{
3882 uint32_t i;
3883 int r = 0;
3884
3885 for (i = 0; i < p->num_objects; i++) {
068f85e3 3886 struct object_id oid;
660c889e 3887
068f85e3 3888 if (!nth_packed_object_oid(&oid, p, i))
660c889e
JK
3889 return error("unable to get sha1 of object %u in %s",
3890 i, p->pack_name);
3891
76c1d9a0 3892 r = cb(&oid, p, i, data);
660c889e
JK
3893 if (r)
3894 break;
3895 }
3896 return r;
3897}
3898
1385bb7b 3899int for_each_packed_object(each_packed_object_fn cb, void *data, unsigned flags)
660c889e
JK
3900{
3901 struct packed_git *p;
3902 int r = 0;
f813e9ea 3903 int pack_errors = 0;
660c889e
JK
3904
3905 prepare_packed_git();
3906 for (p = packed_git; p; p = p->next) {
1385bb7b
JK
3907 if ((flags & FOR_EACH_OBJECT_LOCAL_ONLY) && !p->pack_local)
3908 continue;
f813e9ea
JK
3909 if (open_pack_index(p)) {
3910 pack_errors = 1;
3911 continue;
3912 }
660c889e
JK
3913 r = for_each_object_in_pack(p, cb, data);
3914 if (r)
3915 break;
3916 }
f813e9ea 3917 return r ? r : pack_errors;
660c889e 3918}
f6371f92
JK
3919
3920static int check_stream_sha1(git_zstream *stream,
3921 const char *hdr,
3922 unsigned long size,
3923 const char *path,
3924 const unsigned char *expected_sha1)
3925{
3926 git_SHA_CTX c;
cd02599c 3927 unsigned char real_sha1[GIT_MAX_RAWSZ];
f6371f92
JK
3928 unsigned char buf[4096];
3929 unsigned long total_read;
3930 int status = Z_OK;
3931
3932 git_SHA1_Init(&c);
3933 git_SHA1_Update(&c, hdr, stream->total_out);
3934
3935 /*
3936 * We already read some bytes into hdr, but the ones up to the NUL
3937 * do not count against the object's content size.
3938 */
3939 total_read = stream->total_out - strlen(hdr) - 1;
3940
3941 /*
3942 * This size comparison must be "<=" to read the final zlib packets;
3943 * see the comment in unpack_sha1_rest for details.
3944 */
3945 while (total_read <= size &&
3946 (status == Z_OK || status == Z_BUF_ERROR)) {
3947 stream->next_out = buf;
3948 stream->avail_out = sizeof(buf);
3949 if (size - total_read < stream->avail_out)
3950 stream->avail_out = size - total_read;
3951 status = git_inflate(stream, Z_FINISH);
3952 git_SHA1_Update(&c, buf, stream->next_out - buf);
3953 total_read += stream->next_out - buf;
3954 }
3955 git_inflate_end(stream);
3956
3957 if (status != Z_STREAM_END) {
3958 error("corrupt loose object '%s'", sha1_to_hex(expected_sha1));
3959 return -1;
3960 }
cce044df
JK
3961 if (stream->avail_in) {
3962 error("garbage at end of loose object '%s'",
3963 sha1_to_hex(expected_sha1));
3964 return -1;
3965 }
f6371f92
JK
3966
3967 git_SHA1_Final(real_sha1, &c);
3968 if (hashcmp(expected_sha1, real_sha1)) {
3969 error("sha1 mismatch for %s (expected %s)", path,
3970 sha1_to_hex(expected_sha1));
3971 return -1;
3972 }
3973
3974 return 0;
3975}
3976
3977int read_loose_object(const char *path,
3978 const unsigned char *expected_sha1,
3979 enum object_type *type,
3980 unsigned long *size,
3981 void **contents)
3982{
3983 int ret = -1;
f6371f92
JK
3984 void *map = NULL;
3985 unsigned long mapsize;
3986 git_zstream stream;
3987 char hdr[32];
3988
3989 *contents = NULL;
3990
3991 map = map_sha1_file_1(path, NULL, &mapsize);
3992 if (!map) {
3993 error_errno("unable to mmap %s", path);
3994 goto out;
3995 }
3996
3997 if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0) {
3998 error("unable to unpack header of %s", path);
3999 goto out;
4000 }
4001
4002 *type = parse_sha1_header(hdr, size);
4003 if (*type < 0) {
4004 error("unable to parse header of %s", path);
4005 git_inflate_end(&stream);
4006 goto out;
4007 }
4008
4009 if (*type == OBJ_BLOB) {
4010 if (check_stream_sha1(&stream, hdr, *size, path, expected_sha1) < 0)
4011 goto out;
4012 } else {
4013 *contents = unpack_sha1_rest(&stream, hdr, *size, expected_sha1);
4014 if (!*contents) {
4015 error("unable to unpack contents of %s", path);
4016 git_inflate_end(&stream);
4017 goto out;
4018 }
4019 if (check_sha1_signature(expected_sha1, *contents,
4020 *size, typename(*type))) {
4021 error("sha1 mismatch for %s (expected %s)", path,
4022 sha1_to_hex(expected_sha1));
4023 free(*contents);
4024 goto out;
4025 }
4026 }
4027
4028 ret = 0; /* everything checks out */
4029
4030out:
4031 if (map)
4032 munmap(map, mapsize);
f6371f92
JK
4033 return ret;
4034}