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