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