]> git.ipfire.org Git - thirdparty/git.git/blame - sha1_file.c
Merge branch 'maint-1.5.5' into maint-1.5.6
[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"
1f688557 10#include "delta.h"
a733cb60 11#include "pack.h"
8e440259
PE
12#include "blob.h"
13#include "commit.h"
14#include "tag.h"
15#include "tree.h"
f35a6d3b 16#include "refs.h"
70f5d5d3 17#include "pack-revindex.h"
628522ec 18#include "sha1-lookup.h"
0fcfd160 19
144bde78
LT
20#ifndef O_NOATIME
21#if defined(__linux__) && (defined(__i386__) || defined(__PPC__))
22#define O_NOATIME 01000000
23#else
24#define O_NOATIME 0
25#endif
26#endif
27
e05db0fd
PR
28#ifdef NO_C99_FORMAT
29#define SZ_FMT "lu"
9e42d6a1 30static unsigned long sz_fmt(size_t s) { return (unsigned long)s; }
e05db0fd
PR
31#else
32#define SZ_FMT "zu"
9e42d6a1 33static size_t sz_fmt(size_t s) { return s; }
e05db0fd
PR
34#endif
35
96f1e58f 36const unsigned char null_sha1[20];
88cd621d 37
192a6be2 38const signed char hexval_table[256] = {
e49521b5
JH
39 -1, -1, -1, -1, -1, -1, -1, -1, /* 00-07 */
40 -1, -1, -1, -1, -1, -1, -1, -1, /* 08-0f */
41 -1, -1, -1, -1, -1, -1, -1, -1, /* 10-17 */
42 -1, -1, -1, -1, -1, -1, -1, -1, /* 18-1f */
43 -1, -1, -1, -1, -1, -1, -1, -1, /* 20-27 */
44 -1, -1, -1, -1, -1, -1, -1, -1, /* 28-2f */
45 0, 1, 2, 3, 4, 5, 6, 7, /* 30-37 */
46 8, 9, -1, -1, -1, -1, -1, -1, /* 38-3f */
47 -1, 10, 11, 12, 13, 14, 15, -1, /* 40-47 */
48 -1, -1, -1, -1, -1, -1, -1, -1, /* 48-4f */
49 -1, -1, -1, -1, -1, -1, -1, -1, /* 50-57 */
50 -1, -1, -1, -1, -1, -1, -1, -1, /* 58-5f */
51 -1, 10, 11, 12, 13, 14, 15, -1, /* 60-67 */
52 -1, -1, -1, -1, -1, -1, -1, -1, /* 68-67 */
53 -1, -1, -1, -1, -1, -1, -1, -1, /* 70-77 */
54 -1, -1, -1, -1, -1, -1, -1, -1, /* 78-7f */
55 -1, -1, -1, -1, -1, -1, -1, -1, /* 80-87 */
56 -1, -1, -1, -1, -1, -1, -1, -1, /* 88-8f */
57 -1, -1, -1, -1, -1, -1, -1, -1, /* 90-97 */
58 -1, -1, -1, -1, -1, -1, -1, -1, /* 98-9f */
59 -1, -1, -1, -1, -1, -1, -1, -1, /* a0-a7 */
60 -1, -1, -1, -1, -1, -1, -1, -1, /* a8-af */
61 -1, -1, -1, -1, -1, -1, -1, -1, /* b0-b7 */
62 -1, -1, -1, -1, -1, -1, -1, -1, /* b8-bf */
63 -1, -1, -1, -1, -1, -1, -1, -1, /* c0-c7 */
64 -1, -1, -1, -1, -1, -1, -1, -1, /* c8-cf */
65 -1, -1, -1, -1, -1, -1, -1, -1, /* d0-d7 */
66 -1, -1, -1, -1, -1, -1, -1, -1, /* d8-df */
67 -1, -1, -1, -1, -1, -1, -1, -1, /* e0-e7 */
68 -1, -1, -1, -1, -1, -1, -1, -1, /* e8-ef */
69 -1, -1, -1, -1, -1, -1, -1, -1, /* f0-f7 */
70 -1, -1, -1, -1, -1, -1, -1, -1, /* f8-ff */
71};
0fcfd160
LT
72
73int get_sha1_hex(const char *hex, unsigned char *sha1)
74{
75 int i;
76 for (i = 0; i < 20; i++) {
77 unsigned int val = (hexval(hex[0]) << 4) | hexval(hex[1]);
78 if (val & ~0xff)
79 return -1;
80 *sha1++ = val;
81 hex += 2;
82 }
83 return 0;
84}
85
b2cb9425
JH
86int safe_create_leading_directories(char *path)
87{
88 char *pos = path;
67d42212
JR
89 struct stat st;
90
85dadc38 91 if (is_absolute_path(path))
67ffdf4c 92 pos++;
b2cb9425
JH
93
94 while (pos) {
95 pos = strchr(pos, '/');
96 if (!pos)
97 break;
98 *pos = 0;
67d42212
JR
99 if (!stat(path, &st)) {
100 /* path exists */
101 if (!S_ISDIR(st.st_mode)) {
b2cb9425 102 *pos = '/';
67d42212 103 return -3;
b2cb9425 104 }
457f06d6 105 }
67d42212
JR
106 else if (mkdir(path, 0777)) {
107 *pos = '/';
108 return -1;
109 }
457f06d6
JS
110 else if (adjust_shared_perm(path)) {
111 *pos = '/';
112 return -2;
113 }
b2cb9425
JH
114 *pos++ = '/';
115 }
116 return 0;
117}
723c31fe 118
2beebd22
JK
119int safe_create_leading_directories_const(const char *path)
120{
121 /* path points to cache entries, so xstrdup before messing with it */
122 char *buf = xstrdup(path);
123 int result = safe_create_leading_directories(buf);
124 free(buf);
125 return result;
126}
127
3bfaf018 128char *sha1_to_hex(const unsigned char *sha1)
0fcfd160 129{
dcb3450f
LT
130 static int bufno;
131 static char hexbuffer[4][50];
0fcfd160 132 static const char hex[] = "0123456789abcdef";
dcb3450f 133 char *buffer = hexbuffer[3 & ++bufno], *buf = buffer;
0fcfd160
LT
134 int i;
135
136 for (i = 0; i < 20; i++) {
137 unsigned int val = *sha1++;
138 *buf++ = hex[val >> 4];
139 *buf++ = hex[val & 0xf];
140 }
1e80e044
JS
141 *buf = '\0';
142
0fcfd160
LT
143 return buffer;
144}
145
ace1534d
JH
146static void fill_sha1_path(char *pathbuf, const unsigned char *sha1)
147{
148 int i;
149 for (i = 0; i < 20; i++) {
150 static char hex[] = "0123456789abcdef";
151 unsigned int val = sha1[i];
152 char *pos = pathbuf + i*2 + (i > 0);
153 *pos++ = hex[val >> 4];
154 *pos = hex[val & 0xf];
155 }
156}
157
0fcfd160
LT
158/*
159 * NOTE! This returns a statically allocated buffer, so you have to be
790296fd 160 * careful about using it. Do an "xstrdup()" if you need to save the
0fcfd160 161 * filename.
ace1534d
JH
162 *
163 * Also note that this returns the location for creating. Reading
164 * SHA1 file can happen from any alternate directory listed in the
d19938ab 165 * DB_ENVIRONMENT environment variable if it is not found in
ace1534d 166 * the primary object database.
0fcfd160
LT
167 */
168char *sha1_file_name(const unsigned char *sha1)
169{
0fcfd160
LT
170 static char *name, *base;
171
172 if (!base) {
d19938ab 173 const char *sha1_file_directory = get_object_directory();
0fcfd160 174 int len = strlen(sha1_file_directory);
812666c8 175 base = xmalloc(len + 60);
0fcfd160
LT
176 memcpy(base, sha1_file_directory, len);
177 memset(base+len, 0, 60);
178 base[len] = '/';
179 base[len+3] = '/';
180 name = base + len + 1;
181 }
ace1534d 182 fill_sha1_path(name, sha1);
0fcfd160
LT
183 return base;
184}
185
633f43e1 186static char *sha1_get_pack_name(const unsigned char *sha1,
6eec46bd 187 char **name, char **base, const char *which)
bf592c50
DB
188{
189 static const char hex[] = "0123456789abcdef";
633f43e1 190 char *buf;
bf592c50
DB
191 int i;
192
633f43e1 193 if (!*base) {
bf592c50
DB
194 const char *sha1_file_directory = get_object_directory();
195 int len = strlen(sha1_file_directory);
633f43e1 196 *base = xmalloc(len + 60);
6eec46bd
JH
197 sprintf(*base, "%s/pack/pack-1234567890123456789012345678901234567890.%s",
198 sha1_file_directory, which);
633f43e1 199 *name = *base + len + 11;
bf592c50
DB
200 }
201
633f43e1 202 buf = *name;
bf592c50
DB
203
204 for (i = 0; i < 20; i++) {
205 unsigned int val = *sha1++;
206 *buf++ = hex[val >> 4];
207 *buf++ = hex[val & 0xf];
208 }
a6080a0a 209
633f43e1 210 return *base;
bf592c50
DB
211}
212
633f43e1 213char *sha1_pack_name(const unsigned char *sha1)
bf592c50 214{
633f43e1 215 static char *name, *base;
bf592c50 216
6eec46bd 217 return sha1_get_pack_name(sha1, &name, &base, "pack");
633f43e1 218}
bf592c50 219
633f43e1
HO
220char *sha1_pack_index_name(const unsigned char *sha1)
221{
222 static char *name, *base;
a6080a0a 223
6eec46bd 224 return sha1_get_pack_name(sha1, &name, &base, "idx");
bf592c50
DB
225}
226
d5a63b99
JH
227struct alternate_object_database *alt_odb_list;
228static struct alternate_object_database **alt_odb_tail;
ace1534d 229
c2f493a4
MW
230static void read_info_alternates(const char * alternates, int depth);
231
ddd5d056
JH
232/*
233 * Prepare alternate object database registry.
d5a63b99
JH
234 *
235 * The variable alt_odb_list points at the list of struct
236 * alternate_object_database. The elements on this list come from
237 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
238 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
1494e038
JH
239 * whose contents is similar to that environment variable but can be
240 * LF separated. Its base points at a statically allocated buffer that
d5a63b99
JH
241 * contains "/the/directory/corresponding/to/.git/objects/...", while
242 * its name points just after the slash at the end of ".git/objects/"
243 * in the example above, and has enough space to hold 40-byte hex
244 * SHA1, an extra slash for the first level indirection, and the
245 * terminating NUL.
ddd5d056 246 */
c2f493a4 247static int link_alt_odb_entry(const char * entry, int len, const char * relative_base, int depth)
ace1534d 248{
c2f493a4 249 struct stat st;
1494e038 250 const char *objdir = get_object_directory();
c2f493a4
MW
251 struct alternate_object_database *ent;
252 struct alternate_object_database *alt;
253 /* 43 = 40-byte + 2 '/' + terminating NUL */
254 int pfxlen = len;
255 int entlen = pfxlen + 43;
ccfd3e99 256 int base_len = -1;
d5a63b99 257
85dadc38 258 if (!is_absolute_path(entry) && relative_base) {
c2f493a4
MW
259 /* Relative alt-odb */
260 if (base_len < 0)
261 base_len = strlen(relative_base) + 1;
262 entlen += base_len;
263 pfxlen += base_len;
264 }
265 ent = xmalloc(sizeof(*ent) + entlen);
266
85dadc38 267 if (!is_absolute_path(entry) && relative_base) {
c2f493a4
MW
268 memcpy(ent->base, relative_base, base_len - 1);
269 ent->base[base_len - 1] = '/';
270 memcpy(ent->base + base_len, entry, len);
271 }
272 else
273 memcpy(ent->base, entry, pfxlen);
274
275 ent->name = ent->base + pfxlen + 1;
276 ent->base[pfxlen + 3] = '/';
277 ent->base[pfxlen] = ent->base[entlen-1] = 0;
278
279 /* Detect cases where alternate disappeared */
280 if (stat(ent->base, &st) || !S_ISDIR(st.st_mode)) {
281 error("object directory %s does not exist; "
282 "check .git/objects/info/alternates.",
283 ent->base);
284 free(ent);
285 return -1;
286 }
287
288 /* Prevent the common mistake of listing the same
289 * thing twice, or object directory itself.
290 */
291 for (alt = alt_odb_list; alt; alt = alt->next) {
292 if (!memcmp(ent->base, alt->base, pfxlen)) {
293 free(ent);
294 return -1;
295 }
296 }
297 if (!memcmp(ent->base, objdir, pfxlen)) {
298 free(ent);
299 return -1;
300 }
301
302 /* add the alternate entry */
303 *alt_odb_tail = ent;
304 alt_odb_tail = &(ent->next);
305 ent->next = NULL;
306
307 /* recursively add alternates */
308 read_info_alternates(ent->base, depth + 1);
309
310 ent->base[pfxlen] = '/';
311
312 return 0;
313}
314
315static void link_alt_odb_entries(const char *alt, const char *ep, int sep,
316 const char *relative_base, int depth)
317{
318 const char *cp, *last;
319
320 if (depth > 5) {
321 error("%s: ignoring alternate object stores, nesting too deep.",
322 relative_base);
323 return;
324 }
325
d5a63b99 326 last = alt;
9577e7e3
JH
327 while (last < ep) {
328 cp = last;
329 if (cp < ep && *cp == '#') {
330 while (cp < ep && *cp != sep)
331 cp++;
332 last = cp + 1;
333 continue;
334 }
c2f493a4
MW
335 while (cp < ep && *cp != sep)
336 cp++;
d5a63b99 337 if (last != cp) {
85dadc38 338 if (!is_absolute_path(last) && depth) {
c2f493a4
MW
339 error("%s: ignoring relative alternate object store %s",
340 relative_base, last);
341 } else {
342 link_alt_odb_entry(last, cp - last,
343 relative_base, depth);
1494e038 344 }
d5a63b99 345 }
9577e7e3 346 while (cp < ep && *cp == sep)
d5a63b99
JH
347 cp++;
348 last = cp;
9577e7e3 349 }
d5a63b99
JH
350}
351
c2f493a4 352static void read_info_alternates(const char * relative_base, int depth)
d5a63b99 353{
9577e7e3 354 char *map;
dc49cd76 355 size_t mapsz;
d5a63b99 356 struct stat st;
9cb18f56
JM
357 const char alt_file_name[] = "info/alternates";
358 /* Given that relative_base is no longer than PATH_MAX,
359 ensure that "path" has enough space to append "/", the
360 file name, "info/alternates", and a trailing NUL. */
361 char path[PATH_MAX + 1 + sizeof alt_file_name];
c2f493a4 362 int fd;
d5a63b99 363
9cb18f56 364 sprintf(path, "%s/%s", relative_base, alt_file_name);
d5a63b99
JH
365 fd = open(path, O_RDONLY);
366 if (fd < 0)
367 return;
368 if (fstat(fd, &st) || (st.st_size == 0)) {
369 close(fd);
9a217f2a 370 return;
ace1534d 371 }
dc49cd76
SP
372 mapsz = xsize_t(st.st_size);
373 map = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, fd, 0);
d5a63b99 374 close(fd);
d5a63b99 375
dc49cd76 376 link_alt_odb_entries(map, map + mapsz, '\n', relative_base, depth);
c2f493a4 377
dc49cd76 378 munmap(map, mapsz);
ace1534d
JH
379}
380
bef70b22
DB
381void add_to_alternates_file(const char *reference)
382{
383 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
384 int fd = hold_lock_file_for_append(lock, git_path("objects/info/alternates"), 1);
385 char *alt = mkpath("%s/objects\n", reference);
386 write_or_die(fd, alt, strlen(alt));
387 if (commit_lock_file(lock))
388 die("could not close alternates file");
389 if (alt_odb_tail)
390 link_alt_odb_entries(alt, alt + strlen(alt), '\n', NULL, 0);
391}
392
c2f493a4
MW
393void prepare_alt_odb(void)
394{
554fe20d 395 const char *alt;
c2f493a4 396
7dc24aa5
SP
397 if (alt_odb_tail)
398 return;
399
c2f493a4
MW
400 alt = getenv(ALTERNATE_DB_ENVIRONMENT);
401 if (!alt) alt = "";
402
c2f493a4
MW
403 alt_odb_tail = &alt_odb_list;
404 link_alt_odb_entries(alt, alt + strlen(alt), ':', NULL, 0);
405
406 read_info_alternates(get_object_directory(), 0);
407}
408
c529d75a 409static int has_loose_object(const unsigned char *sha1)
ace1534d 410{
ace1534d 411 char *name = sha1_file_name(sha1);
d5a63b99 412 struct alternate_object_database *alt;
ace1534d 413
c529d75a
LT
414 if (!access(name, F_OK))
415 return 1;
9a217f2a 416 prepare_alt_odb();
d5a63b99
JH
417 for (alt = alt_odb_list; alt; alt = alt->next) {
418 name = alt->name;
ace1534d 419 fill_sha1_path(name, sha1);
c529d75a
LT
420 if (!access(alt->base, F_OK))
421 return 1;
ace1534d 422 }
c529d75a 423 return 0;
ace1534d
JH
424}
425
60bb8b14 426static unsigned int pack_used_ctr;
a53128b6
SP
427static unsigned int pack_mmap_calls;
428static unsigned int peak_pack_open_windows;
429static unsigned int pack_open_windows;
430static size_t peak_pack_mapped;
60bb8b14 431static size_t pack_mapped;
9a217f2a 432struct packed_git *packed_git;
1f688557 433
b79d18c9 434void pack_report(void)
a53128b6
SP
435{
436 fprintf(stderr,
e05db0fd
PR
437 "pack_report: getpagesize() = %10" SZ_FMT "\n"
438 "pack_report: core.packedGitWindowSize = %10" SZ_FMT "\n"
439 "pack_report: core.packedGitLimit = %10" SZ_FMT "\n",
9e42d6a1
SP
440 sz_fmt(getpagesize()),
441 sz_fmt(packed_git_window_size),
442 sz_fmt(packed_git_limit));
a53128b6
SP
443 fprintf(stderr,
444 "pack_report: pack_used_ctr = %10u\n"
445 "pack_report: pack_mmap_calls = %10u\n"
446 "pack_report: pack_open_windows = %10u / %10u\n"
e05db0fd
PR
447 "pack_report: pack_mapped = "
448 "%10" SZ_FMT " / %10" SZ_FMT "\n",
a53128b6
SP
449 pack_used_ctr,
450 pack_mmap_calls,
451 pack_open_windows, peak_pack_open_windows,
9e42d6a1 452 sz_fmt(pack_mapped), sz_fmt(peak_pack_mapped));
a53128b6
SP
453}
454
42873078 455static int check_packed_git_idx(const char *path, struct packed_git *p)
1f688557
JH
456{
457 void *idx_map;
42873078 458 struct pack_idx_header *hdr;
dc49cd76 459 size_t idx_size;
74e34e1f 460 uint32_t version, nr, i, *index;
e93ec6f9 461 int fd = open(path, O_RDONLY);
1f688557 462 struct stat st;
42873078 463
1f688557
JH
464 if (fd < 0)
465 return -1;
466 if (fstat(fd, &st)) {
467 close(fd);
468 return -1;
469 }
dc49cd76 470 idx_size = xsize_t(st.st_size);
2d88451b
SP
471 if (idx_size < 4 * 256 + 20 + 20) {
472 close(fd);
473 return error("index file %s is too small", path);
474 }
c4712e45 475 idx_map = xmmap(NULL, idx_size, PROT_READ, MAP_PRIVATE, fd, 0);
1f688557 476 close(fd);
1f688557 477
42873078
NP
478 hdr = idx_map;
479 if (hdr->idx_signature == htonl(PACK_IDX_SIGNATURE)) {
74e34e1f
NP
480 version = ntohl(hdr->idx_version);
481 if (version < 2 || version > 2) {
482 munmap(idx_map, idx_size);
483 return error("index file %s is version %d"
484 " and is not supported by this binary"
485 " (try upgrading GIT to a newer version)",
486 path, version);
487 }
488 } else
489 version = 1;
df1b059d 490
1f688557 491 nr = 0;
42873078 492 index = idx_map;
74e34e1f
NP
493 if (version > 1)
494 index += 2; /* skip index header */
1f688557 495 for (i = 0; i < 256; i++) {
326bf396 496 uint32_t n = ntohl(index[i]);
2d88451b
SP
497 if (n < nr) {
498 munmap(idx_map, idx_size);
df1b059d 499 return error("non-monotonic index %s", path);
2d88451b 500 }
1f688557
JH
501 nr = n;
502 }
503
74e34e1f
NP
504 if (version == 1) {
505 /*
506 * Total size:
507 * - 256 index entries 4 bytes each
508 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
509 * - 20-byte SHA1 of the packfile
510 * - 20-byte SHA1 file checksum
511 */
512 if (idx_size != 4*256 + nr * 24 + 20 + 20) {
513 munmap(idx_map, idx_size);
eef427a0 514 return error("wrong index v1 file size in %s", path);
74e34e1f
NP
515 }
516 } else if (version == 2) {
517 /*
518 * Minimum size:
519 * - 8 bytes of header
520 * - 256 index entries 4 bytes each
521 * - 20-byte sha1 entry * nr
522 * - 4-byte crc entry * nr
523 * - 4-byte offset entry * nr
524 * - 20-byte SHA1 of the packfile
525 * - 20-byte SHA1 file checksum
526 * And after the 4-byte offset table might be a
527 * variable sized table containing 8-byte entries
528 * for offsets larger than 2^31.
529 */
530 unsigned long min_size = 8 + 4*256 + nr*(20 + 4 + 4) + 20 + 20;
1164f1e4
LT
531 unsigned long max_size = min_size;
532 if (nr)
533 max_size += (nr - 1)*8;
534 if (idx_size < min_size || idx_size > max_size) {
74e34e1f 535 munmap(idx_map, idx_size);
eef427a0 536 return error("wrong index v2 file size in %s", path);
74e34e1f 537 }
7109c889
JH
538 if (idx_size != min_size &&
539 /*
540 * make sure we can deal with large pack offsets.
541 * 31-bit signed offset won't be enough, neither
542 * 32-bit unsigned one will be.
543 */
544 (sizeof(off_t) <= 4)) {
545 munmap(idx_map, idx_size);
546 return error("pack too large for current definition of off_t in %s", path);
74e34e1f 547 }
2d88451b 548 }
1f688557 549
74e34e1f 550 p->index_version = version;
42873078
NP
551 p->index_data = idx_map;
552 p->index_size = idx_size;
57059091 553 p->num_objects = nr;
1f688557
JH
554 return 0;
555}
556
bc8e478a 557int open_pack_index(struct packed_git *p)
d079837e
SP
558{
559 char *idx_name;
560 int ret;
561
562 if (p->index_data)
563 return 0;
564
565 idx_name = xstrdup(p->pack_name);
566 strcpy(idx_name + strlen(idx_name) - strlen(".pack"), ".idx");
567 ret = check_packed_git_idx(idx_name, p);
568 free(idx_name);
569 return ret;
570}
571
11daf39b
SP
572static void scan_windows(struct packed_git *p,
573 struct packed_git **lru_p,
574 struct pack_window **lru_w,
575 struct pack_window **lru_l)
1f688557 576{
11daf39b
SP
577 struct pack_window *w, *w_l;
578
579 for (w_l = NULL, w = p->windows; w; w = w->next) {
580 if (!w->inuse_cnt) {
581 if (!*lru_w || w->last_used < (*lru_w)->last_used) {
582 *lru_p = p;
583 *lru_w = w;
584 *lru_l = w_l;
54044bf8 585 }
54044bf8 586 }
11daf39b 587 w_l = w;
f9253394 588 }
11daf39b
SP
589}
590
d1efefa4 591static int unuse_one_window(struct packed_git *current, int keep_fd)
11daf39b
SP
592{
593 struct packed_git *p, *lru_p = NULL;
594 struct pack_window *lru_w = NULL, *lru_l = NULL;
595
596 if (current)
597 scan_windows(current, &lru_p, &lru_w, &lru_l);
598 for (p = packed_git; p; p = p->next)
599 scan_windows(p, &lru_p, &lru_w, &lru_l);
54044bf8
SP
600 if (lru_p) {
601 munmap(lru_w->base, lru_w->len);
602 pack_mapped -= lru_w->len;
603 if (lru_l)
604 lru_l->next = lru_w->next;
605 else {
606 lru_p->windows = lru_w->next;
d1efefa4 607 if (!lru_p->windows && lru_p->pack_fd != keep_fd) {
54044bf8
SP
608 close(lru_p->pack_fd);
609 lru_p->pack_fd = -1;
610 }
611 }
612 free(lru_w);
a53128b6 613 pack_open_windows--;
54044bf8
SP
614 return 1;
615 }
616 return 0;
f9253394
JH
617}
618
d1efefa4 619void release_pack_memory(size_t need, int fd)
97bfeb34
SP
620{
621 size_t cur = pack_mapped;
d1efefa4 622 while (need >= (cur - pack_mapped) && unuse_one_window(NULL, fd))
97bfeb34
SP
623 ; /* nothing */
624}
625
c9ced051
SP
626void close_pack_windows(struct packed_git *p)
627{
628 while (p->windows) {
629 struct pack_window *w = p->windows;
630
631 if (w->inuse_cnt)
632 die("pack '%s' still has open windows to it",
633 p->pack_name);
634 munmap(w->base, w->len);
635 pack_mapped -= w->len;
636 pack_open_windows--;
637 p->windows = w->next;
638 free(w);
639 }
640}
641
03e79c88 642void unuse_pack(struct pack_window **w_cursor)
f9253394 643{
03e79c88
SP
644 struct pack_window *w = *w_cursor;
645 if (w) {
646 w->inuse_cnt--;
647 *w_cursor = NULL;
648 }
1f688557
JH
649}
650
3cf8b462
SP
651/*
652 * Do not call this directly as this leaks p->pack_fd on error return;
653 * call open_packed_git() instead.
654 */
655static int open_packed_git_1(struct packed_git *p)
1f688557 656{
9bc879c1
SP
657 struct stat st;
658 struct pack_header hdr;
659 unsigned char sha1[20];
660 unsigned char *idx_sha1;
2c039da8 661 long fd_flag;
9bc879c1 662
d079837e
SP
663 if (!p->index_data && open_pack_index(p))
664 return error("packfile %s index unavailable", p->pack_name);
665
9bc879c1
SP
666 p->pack_fd = open(p->pack_name, O_RDONLY);
667 if (p->pack_fd < 0 || fstat(p->pack_fd, &st))
072db278 668 return -1;
9bc879c1
SP
669
670 /* If we created the struct before we had the pack we lack size. */
bf592c50 671 if (!p->pack_size) {
bf592c50 672 if (!S_ISREG(st.st_mode))
072db278 673 return error("packfile %s not a regular file", p->pack_name);
bf592c50 674 p->pack_size = st.st_size;
9bc879c1 675 } else if (p->pack_size != st.st_size)
072db278 676 return error("packfile %s size changed", p->pack_name);
9bc879c1 677
2c039da8
JH
678 /* We leave these file descriptors open with sliding mmap;
679 * there is no point keeping them open across exec(), though.
680 */
681 fd_flag = fcntl(p->pack_fd, F_GETFD, 0);
682 if (fd_flag < 0)
072db278 683 return error("cannot determine file descriptor flags");
2c039da8
JH
684 fd_flag |= FD_CLOEXEC;
685 if (fcntl(p->pack_fd, F_SETFD, fd_flag) == -1)
072db278 686 return error("cannot set FD_CLOEXEC");
2c039da8 687
9bc879c1 688 /* Verify we recognize this pack file format. */
e6e2bd62 689 if (read_in_full(p->pack_fd, &hdr, sizeof(hdr)) != sizeof(hdr))
072db278 690 return error("file %s is far too short to be a packfile", p->pack_name);
9bc879c1 691 if (hdr.hdr_signature != htonl(PACK_SIGNATURE))
072db278 692 return error("file %s is not a GIT packfile", p->pack_name);
9bc879c1 693 if (!pack_version_ok(hdr.hdr_version))
072db278 694 return error("packfile %s is version %u and not supported"
9bc879c1
SP
695 " (try upgrading GIT to a newer version)",
696 p->pack_name, ntohl(hdr.hdr_version));
697
698 /* Verify the pack matches its index. */
57059091 699 if (p->num_objects != ntohl(hdr.hdr_entries))
072db278 700 return error("packfile %s claims to have %u objects"
57059091
NP
701 " while index indicates %u objects",
702 p->pack_name, ntohl(hdr.hdr_entries),
703 p->num_objects);
9bc879c1 704 if (lseek(p->pack_fd, p->pack_size - sizeof(sha1), SEEK_SET) == -1)
072db278 705 return error("end of packfile %s is unavailable", p->pack_name);
e6e2bd62 706 if (read_in_full(p->pack_fd, sha1, sizeof(sha1)) != sizeof(sha1))
072db278 707 return error("packfile %s signature is unavailable", p->pack_name);
42873078 708 idx_sha1 = ((unsigned char *)p->index_data) + p->index_size - 40;
9bc879c1 709 if (hashcmp(sha1, idx_sha1))
072db278
SP
710 return error("packfile %s does not match index", p->pack_name);
711 return 0;
9bc879c1
SP
712}
713
3cf8b462
SP
714static int open_packed_git(struct packed_git *p)
715{
716 if (!open_packed_git_1(p))
717 return 0;
718 if (p->pack_fd != -1) {
719 close(p->pack_fd);
720 p->pack_fd = -1;
721 }
722 return -1;
723}
724
c4001d92 725static int in_window(struct pack_window *win, off_t offset)
60bb8b14
SP
726{
727 /* We must promise at least 20 bytes (one hash) after the
728 * offset is available from this window, otherwise the offset
729 * is not actually in this window and a different window (which
730 * has that one hash excess) must be used. This is to support
731 * the object header and delta base parsing routines below.
732 */
733 off_t win_off = win->offset;
734 return win_off <= offset
735 && (offset + 20) <= (win_off + win->len);
736}
737
03e79c88
SP
738unsigned char* use_pack(struct packed_git *p,
739 struct pack_window **w_cursor,
c4001d92 740 off_t offset,
03e79c88 741 unsigned int *left)
9bc879c1 742{
60bb8b14 743 struct pack_window *win = *w_cursor;
03e79c88 744
072db278
SP
745 if (p->pack_fd == -1 && open_packed_git(p))
746 die("packfile %s cannot be accessed", p->pack_name);
60bb8b14
SP
747
748 /* Since packfiles end in a hash of their content and its
749 * pointless to ask for an offset into the middle of that
750 * hash, and the in_window function above wouldn't match
751 * don't allow an offset too close to the end of the file.
752 */
753 if (offset > (p->pack_size - 20))
754 die("offset beyond end of packfile (truncated pack?)");
755
756 if (!win || !in_window(win, offset)) {
757 if (win)
758 win->inuse_cnt--;
759 for (win = p->windows; win; win = win->next) {
760 if (in_window(win, offset))
761 break;
762 }
763 if (!win) {
78a28df9 764 size_t window_align = packed_git_window_size / 2;
dc49cd76 765 off_t len;
60bb8b14 766 win = xcalloc(1, sizeof(*win));
78a28df9 767 win->offset = (offset / window_align) * window_align;
dc49cd76
SP
768 len = p->pack_size - win->offset;
769 if (len > packed_git_window_size)
770 len = packed_git_window_size;
771 win->len = (size_t)len;
60bb8b14 772 pack_mapped += win->len;
11daf39b 773 while (packed_git_limit < pack_mapped
d1efefa4 774 && unuse_one_window(p, p->pack_fd))
60bb8b14 775 ; /* nothing */
c4712e45 776 win->base = xmmap(NULL, win->len,
60bb8b14
SP
777 PROT_READ, MAP_PRIVATE,
778 p->pack_fd, win->offset);
779 if (win->base == MAP_FAILED)
73b4e4be
SP
780 die("packfile %s cannot be mapped: %s",
781 p->pack_name,
782 strerror(errno));
a53128b6
SP
783 pack_mmap_calls++;
784 pack_open_windows++;
785 if (pack_mapped > peak_pack_mapped)
786 peak_pack_mapped = pack_mapped;
787 if (pack_open_windows > peak_pack_open_windows)
788 peak_pack_open_windows = pack_open_windows;
60bb8b14
SP
789 win->next = p->windows;
790 p->windows = win;
791 }
1f688557 792 }
03e79c88
SP
793 if (win != *w_cursor) {
794 win->last_used = pack_used_ctr++;
795 win->inuse_cnt++;
796 *w_cursor = win;
797 }
60bb8b14 798 offset -= win->offset;
03e79c88 799 if (left)
dc49cd76 800 *left = win->len - xsize_t(offset);
03e79c88 801 return win->base + offset;
1f688557
JH
802}
803
42873078 804struct packed_git *add_packed_git(const char *path, int path_len, int local)
1f688557
JH
805{
806 struct stat st;
42873078 807 struct packed_git *p = xmalloc(sizeof(*p) + path_len + 2);
1f688557 808
42873078
NP
809 /*
810 * Make sure a corresponding .pack file exists and that
811 * the index looks sane.
812 */
813 path_len -= strlen(".idx");
814 if (path_len < 1)
1f688557 815 return NULL;
42873078
NP
816 memcpy(p->pack_name, path, path_len);
817 strcpy(p->pack_name + path_len, ".pack");
d079837e 818 if (stat(p->pack_name, &st) || !S_ISREG(st.st_mode)) {
42873078 819 free(p);
1f688557
JH
820 return NULL;
821 }
42873078 822
1f688557
JH
823 /* ok, it looks sane as far as we can check without
824 * actually mapping the pack file.
825 */
d079837e
SP
826 p->index_version = 0;
827 p->index_data = NULL;
828 p->index_size = 0;
829 p->num_objects = 0;
1f688557 830 p->pack_size = st.st_size;
1f688557 831 p->next = NULL;
c41ee586 832 p->windows = NULL;
9bc879c1 833 p->pack_fd = -1;
9d835df2 834 p->pack_local = local;
b867092f 835 p->mtime = st.st_mtime;
42873078
NP
836 if (path_len < 40 || get_sha1_hex(path + path_len - 40, p->sha1))
837 hashclr(p->sha1);
1f688557
JH
838 return p;
839}
840
bf592c50 841struct packed_git *parse_pack_index(unsigned char *sha1)
c508df5e 842{
79c6dca4 843 const char *idx_path = sha1_pack_index_name(sha1);
42873078
NP
844 const char *path = sha1_pack_name(sha1);
845 struct packed_git *p = xmalloc(sizeof(*p) + strlen(path) + 2);
bf592c50 846
42873078
NP
847 if (check_packed_git_idx(idx_path, p)) {
848 free(p);
bf592c50 849 return NULL;
42873078 850 }
bf592c50 851
bf592c50 852 strcpy(p->pack_name, path);
bf592c50 853 p->pack_size = 0;
bf592c50 854 p->next = NULL;
c41ee586 855 p->windows = NULL;
9bc879c1 856 p->pack_fd = -1;
e702496e 857 hashcpy(p->sha1, sha1);
bf592c50
DB
858 return p;
859}
860
861void install_packed_git(struct packed_git *pack)
862{
863 pack->next = packed_git;
864 packed_git = pack;
865}
866
9d835df2 867static void prepare_packed_git_one(char *objdir, int local)
1f688557 868{
9cb18f56
JM
869 /* Ensure that this buffer is large enough so that we can
870 append "/pack/" without clobbering the stack even if
871 strlen(objdir) were PATH_MAX. */
872 char path[PATH_MAX + 1 + 4 + 1 + 1];
1f688557
JH
873 int len;
874 DIR *dir;
875 struct dirent *de;
876
877 sprintf(path, "%s/pack", objdir);
878 len = strlen(path);
879 dir = opendir(path);
b5b16990 880 if (!dir) {
26125f6b 881 if (errno != ENOENT)
bd2afde8 882 error("unable to open object pack directory: %s: %s",
26125f6b 883 path, strerror(errno));
1f688557 884 return;
b5b16990 885 }
1f688557
JH
886 path[len++] = '/';
887 while ((de = readdir(dir)) != NULL) {
888 int namelen = strlen(de->d_name);
889 struct packed_git *p;
890
5bb1cda5 891 if (!has_extension(de->d_name, ".idx"))
1f688557
JH
892 continue;
893
9cb18f56
JM
894 if (len + namelen + 1 > sizeof(path))
895 continue;
896
54a15a8d 897 /* Don't reopen a pack we already have. */
1f688557 898 strcpy(path + len, de->d_name);
86f7780c
JK
899 for (p = packed_git; p; p = p->next) {
900 if (!memcmp(path, p->pack_name, len + namelen - 4))
901 break;
902 }
903 if (p)
904 continue;
54a15a8d
SP
905 /* See if it really is a valid .idx file with corresponding
906 * .pack file that we can map.
907 */
9d835df2 908 p = add_packed_git(path, len + namelen, local);
1f688557
JH
909 if (!p)
910 continue;
625e9421 911 install_packed_git(p);
1f688557 912 }
5b35bcd5 913 closedir(dir);
1f688557
JH
914}
915
b867092f
JH
916static int sort_pack(const void *a_, const void *b_)
917{
918 struct packed_git *a = *((struct packed_git **)a_);
919 struct packed_git *b = *((struct packed_git **)b_);
920 int st;
921
922 /*
923 * Local packs tend to contain objects specific to our
924 * variant of the project than remote ones. In addition,
925 * remote ones could be on a network mounted filesystem.
926 * Favor local ones for these reasons.
927 */
928 st = a->pack_local - b->pack_local;
929 if (st)
930 return -st;
931
932 /*
933 * Younger packs tend to contain more recent objects,
934 * and more recent objects tend to get accessed more
935 * often.
936 */
937 if (a->mtime < b->mtime)
938 return 1;
939 else if (a->mtime == b->mtime)
940 return 0;
941 return -1;
942}
943
944static void rearrange_packed_git(void)
945{
946 struct packed_git **ary, *p;
947 int i, n;
948
949 for (n = 0, p = packed_git; p; p = p->next)
950 n++;
951 if (n < 2)
952 return;
953
954 /* prepare an array of packed_git for easier sorting */
955 ary = xcalloc(n, sizeof(struct packed_git *));
956 for (n = 0, p = packed_git; p; p = p->next)
957 ary[n++] = p;
958
959 qsort(ary, n, sizeof(struct packed_git *), sort_pack);
960
961 /* link them back again */
962 for (i = 0; i < n - 1; i++)
963 ary[i]->next = ary[i + 1];
964 ary[n - 1]->next = NULL;
965 packed_git = ary[0];
966
967 free(ary);
968}
969
637cdd9d 970static int prepare_packed_git_run_once = 0;
9a217f2a 971void prepare_packed_git(void)
1f688557 972{
d5a63b99 973 struct alternate_object_database *alt;
1f688557 974
637cdd9d 975 if (prepare_packed_git_run_once)
1f688557 976 return;
9d835df2 977 prepare_packed_git_one(get_object_directory(), 1);
9a217f2a 978 prepare_alt_odb();
d5a63b99 979 for (alt = alt_odb_list; alt; alt = alt->next) {
1494e038 980 alt->name[-1] = 0;
9d835df2 981 prepare_packed_git_one(alt->base, 0);
1494e038 982 alt->name[-1] = '/';
1f688557 983 }
b867092f 984 rearrange_packed_git();
637cdd9d
JK
985 prepare_packed_git_run_once = 1;
986}
987
fc04c412 988void reprepare_packed_git(void)
637cdd9d
JK
989{
990 prepare_packed_git_run_once = 0;
991 prepare_packed_git();
1f688557
JH
992}
993
5d6ccf5c 994int check_sha1_signature(const unsigned char *sha1, void *map, unsigned long size, const char *type)
0fcfd160
LT
995{
996 unsigned char real_sha1[20];
7cfb5f36 997 hash_sha1_file(map, size, type, real_sha1);
a89fccd2 998 return hashcmp(sha1, real_sha1) ? -1 : 0;
0fcfd160
LT
999}
1000
44d1c19e
LT
1001static int git_open_noatime(const char *name)
1002{
1003 static int sha1_file_open_flag = O_NOATIME;
1004 int fd = open(name, O_RDONLY | sha1_file_open_flag);
1005
1006 /* Might the failure be due to O_NOATIME? */
1007 if (fd < 0 && errno != ENOENT && sha1_file_open_flag) {
1008 fd = open(name, O_RDONLY);
1009 if (fd >= 0)
1010 sha1_file_open_flag = 0;
1011 }
1012 return fd;
1013}
1014
1015static int open_sha1_file(const unsigned char *sha1)
1016{
1017 int fd;
1018 char *name = sha1_file_name(sha1);
1019 struct alternate_object_database *alt;
1020
1021 fd = git_open_noatime(name);
1022 if (fd >= 0)
1023 return fd;
1024
1025 prepare_alt_odb();
1026 errno = ENOENT;
1027 for (alt = alt_odb_list; alt; alt = alt->next) {
1028 name = alt->name;
1029 fill_sha1_path(name, sha1);
1030 fd = git_open_noatime(alt->base);
1031 if (fd >= 0)
1032 return fd;
1033 }
1034 return -1;
1035}
1036
4175e9e3 1037static void *map_sha1_file(const unsigned char *sha1, unsigned long *size)
0fcfd160 1038{
0fcfd160 1039 void *map;
144bde78 1040 int fd;
ace1534d 1041
44d1c19e
LT
1042 fd = open_sha1_file(sha1);
1043 map = NULL;
1044 if (fd >= 0) {
1045 struct stat st;
0fcfd160 1046
44d1c19e
LT
1047 if (!fstat(fd, &st)) {
1048 *size = xsize_t(st.st_size);
1049 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
144bde78 1050 }
44d1c19e 1051 close(fd);
0fcfd160 1052 }
0fcfd160
LT
1053 return map;
1054}
1055
726f852b 1056static int legacy_loose_object(unsigned char *map)
bb6b8e4f
JH
1057{
1058 unsigned int word;
1059
1060 /*
1061 * Is it a zlib-compressed buffer? If so, the first byte
1062 * must be 0x78 (15-bit window size, deflated), and the
1063 * first 16-bit word is evenly divisible by 31
1064 */
1065 word = (map[0] << 8) + map[1];
1066 if (map[0] == 0x78 && !(word % 31))
1067 return 1;
1068 else
1069 return 0;
1070}
1071
72518e9c 1072unsigned long unpack_object_header_gently(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep)
c4483576 1073{
ad1ed5ee 1074 unsigned shift;
93821bd9 1075 unsigned char c;
93821bd9 1076 unsigned long size;
ad1ed5ee
JH
1077 unsigned long used = 0;
1078
1079 c = buf[used++];
1080 *type = (c >> 4) & 7;
1081 size = c & 15;
1082 shift = 4;
1083 while (c & 0x80) {
1084 if (len <= used)
1085 return 0;
1086 if (sizeof(long) * 8 <= shift)
1087 return 0;
1088 c = buf[used++];
1089 size += (c & 0x7f) << shift;
1090 shift += 7;
1091 }
1092 *sizep = size;
1093 return used;
1094}
1095
1096static int unpack_sha1_header(z_stream *stream, unsigned char *map, unsigned long mapsize, void *buffer, unsigned long bufsiz)
1097{
1098 unsigned long size, used;
1099 static const char valid_loose_object_type[8] = {
1100 0, /* OBJ_EXT */
1101 1, 1, 1, 1, /* "commit", "tree", "blob", "tag" */
1102 0, /* "delta" and others are invalid in a loose object */
93821bd9 1103 };
ad1ed5ee 1104 enum object_type type;
93821bd9 1105
c4483576
LT
1106 /* Get the data stream */
1107 memset(stream, 0, sizeof(*stream));
1108 stream->next_in = map;
1109 stream->avail_in = mapsize;
1110 stream->next_out = buffer;
93821bd9
LT
1111 stream->avail_out = bufsiz;
1112
bb6b8e4f 1113 if (legacy_loose_object(map)) {
93821bd9
LT
1114 inflateInit(stream);
1115 return inflate(stream, 0);
1116 }
1117
726f852b
NP
1118
1119 /*
1120 * There used to be a second loose object header format which
1121 * was meant to mimic the in-pack format, allowing for direct
1122 * copy of the object data. This format turned up not to be
1123 * really worth it and we don't write it any longer. But we
1124 * can still read it.
1125 */
ad1ed5ee
JH
1126 used = unpack_object_header_gently(map, mapsize, &type, &size);
1127 if (!used || !valid_loose_object_type[type])
93821bd9 1128 return -1;
ad1ed5ee
JH
1129 map += used;
1130 mapsize -= used;
93821bd9
LT
1131
1132 /* Set up the stream for the rest.. */
1133 stream->next_in = map;
1134 stream->avail_in = mapsize;
c4483576 1135 inflateInit(stream);
93821bd9
LT
1136
1137 /* And generate the fake traditional header */
ad1ed5ee 1138 stream->total_out = 1 + snprintf(buffer, bufsiz, "%s %lu",
df843662 1139 typename(type), size);
93821bd9 1140 return 0;
c4483576
LT
1141}
1142
7efbff75 1143static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
5180cacc
LT
1144{
1145 int bytes = strlen(buffer) + 1;
d565b341 1146 unsigned char *buf = xmalloc(1+size);
93821bd9 1147 unsigned long n;
7efbff75 1148 int status = Z_OK;
5180cacc 1149
93821bd9
LT
1150 n = stream->total_out - bytes;
1151 if (n > size)
1152 n = size;
1153 memcpy(buf, (char *) buffer + bytes, n);
1154 bytes = n;
456cdf6e
LT
1155 if (bytes <= size) {
1156 /*
1157 * The above condition must be (bytes <= size), not
1158 * (bytes < size). In other words, even though we
1159 * expect no more output and set avail_out to zer0,
1160 * the input zlib stream may have bytes that express
1161 * "this concludes the stream", and we *do* want to
1162 * eat that input.
1163 *
1164 * Otherwise we would not be able to test that we
1165 * consumed all the input to reach the expected size;
1166 * we also want to check that zlib tells us that all
1167 * went well with status == Z_STREAM_END at the end.
1168 */
5180cacc
LT
1169 stream->next_out = buf + bytes;
1170 stream->avail_out = size - bytes;
7efbff75
JH
1171 while (status == Z_OK)
1172 status = inflate(stream, Z_FINISH);
5180cacc
LT
1173 }
1174 buf[size] = 0;
456cdf6e 1175 if (status == Z_STREAM_END && !stream->avail_in) {
7efbff75
JH
1176 inflateEnd(stream);
1177 return buf;
1178 }
1179
1180 if (status < 0)
1181 error("corrupt loose object '%s'", sha1_to_hex(sha1));
1182 else if (stream->avail_in)
1183 error("garbage at end of loose object '%s'",
1184 sha1_to_hex(sha1));
1185 free(buf);
1186 return NULL;
5180cacc
LT
1187}
1188
1189/*
1190 * We used to just use "sscanf()", but that's actually way
1191 * too permissive for what we want to check. So do an anal
1192 * object header parse by hand.
1193 */
21666f1a 1194static int parse_sha1_header(const char *hdr, unsigned long *sizep)
5180cacc 1195{
21666f1a 1196 char type[10];
5180cacc
LT
1197 int i;
1198 unsigned long size;
1199
1200 /*
a6080a0a 1201 * The type can be at most ten bytes (including the
5180cacc 1202 * terminating '\0' that we add), and is followed by
21666f1a 1203 * a space.
5180cacc 1204 */
21666f1a 1205 i = 0;
5180cacc
LT
1206 for (;;) {
1207 char c = *hdr++;
1208 if (c == ' ')
1209 break;
21666f1a
NP
1210 type[i++] = c;
1211 if (i >= sizeof(type))
5180cacc 1212 return -1;
5180cacc 1213 }
21666f1a 1214 type[i] = 0;
5180cacc
LT
1215
1216 /*
1217 * The length must follow immediately, and be in canonical
1218 * decimal format (ie "010" is not valid).
1219 */
1220 size = *hdr++ - '0';
1221 if (size > 9)
1222 return -1;
1223 if (size) {
1224 for (;;) {
1225 unsigned long c = *hdr - '0';
1226 if (c > 9)
1227 break;
1228 hdr++;
1229 size = size * 10 + c;
1230 }
1231 }
1232 *sizep = size;
1233
1234 /*
1235 * The length must be followed by a zero byte
1236 */
21666f1a 1237 return *hdr ? -1 : type_from_string(type);
5180cacc
LT
1238}
1239
7efbff75 1240static void *unpack_sha1_file(void *map, unsigned long mapsize, enum object_type *type, unsigned long *size, const unsigned char *sha1)
0fcfd160 1241{
5180cacc 1242 int ret;
0fcfd160 1243 z_stream stream;
5180cacc 1244 char hdr[8192];
0fcfd160 1245
5180cacc 1246 ret = unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr));
21666f1a 1247 if (ret < Z_OK || (*type = parse_sha1_header(hdr, size)) < 0)
0fcfd160
LT
1248 return NULL;
1249
7efbff75 1250 return unpack_sha1_rest(&stream, hdr, *size, sha1);
0fcfd160
LT
1251}
1252
54dab52a
NP
1253unsigned long get_size_from_delta(struct packed_git *p,
1254 struct pack_window **w_curs,
1255 off_t curpos)
1256{
1257 const unsigned char *data;
1258 unsigned char delta_head[20], *in;
1259 z_stream stream;
1260 int st;
1261
1262 memset(&stream, 0, sizeof(stream));
1263 stream.next_out = delta_head;
1264 stream.avail_out = sizeof(delta_head);
1265
1266 inflateInit(&stream);
1267 do {
1268 in = use_pack(p, w_curs, curpos, &stream.avail_in);
1269 stream.next_in = in;
1270 st = inflate(&stream, Z_FINISH);
1271 curpos += stream.next_in - in;
1272 } while ((st == Z_OK || st == Z_BUF_ERROR) &&
1273 stream.total_out < sizeof(delta_head));
1274 inflateEnd(&stream);
1275 if ((st != Z_STREAM_END) && stream.total_out != sizeof(delta_head))
1276 die("delta data unpack-initial failed");
1277
1278 /* Examine the initial part of the delta to figure out
1279 * the result size.
1280 */
1281 data = delta_head;
1282
1283 /* ignore base size */
1284 get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1285
1286 /* Read the result size */
1287 return get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1288}
1289
c4001d92 1290static off_t get_delta_base(struct packed_git *p,
03e79c88 1291 struct pack_window **w_curs,
c4001d92 1292 off_t *curpos,
21666f1a 1293 enum object_type type,
c4001d92 1294 off_t delta_obj_offset)
eb32d236 1295{
2b87c45b 1296 unsigned char *base_info = use_pack(p, w_curs, *curpos, NULL);
c4001d92 1297 off_t base_offset;
eb32d236 1298
8d8a4ea5
SP
1299 /* use_pack() assured us we have [base_info, base_info + 20)
1300 * as a range that we can look at without walking off the
1301 * end of the mapped window. Its actually the hash size
1302 * that is assured. An OFS_DELTA longer than the hash size
1303 * is stupid, as then a REF_DELTA would be smaller to store.
1304 */
21666f1a 1305 if (type == OBJ_OFS_DELTA) {
eb32d236
NP
1306 unsigned used = 0;
1307 unsigned char c = base_info[used++];
1308 base_offset = c & 127;
1309 while (c & 128) {
1310 base_offset += 1;
8723f216 1311 if (!base_offset || MSB(base_offset, 7))
eb32d236
NP
1312 die("offset value overflow for delta base object");
1313 c = base_info[used++];
1314 base_offset = (base_offset << 7) + (c & 127);
1315 }
1316 base_offset = delta_obj_offset - base_offset;
1317 if (base_offset >= delta_obj_offset)
1318 die("delta base offset out of bound");
2b87c45b 1319 *curpos += used;
21666f1a 1320 } else if (type == OBJ_REF_DELTA) {
eb32d236
NP
1321 /* The base entry _must_ be in the same pack */
1322 base_offset = find_pack_entry_one(base_info, p);
1323 if (!base_offset)
1324 die("failed to find delta-pack base object %s",
1325 sha1_to_hex(base_info));
2b87c45b 1326 *curpos += 20;
eb32d236
NP
1327 } else
1328 die("I am totally screwed");
2b87c45b 1329 return base_offset;
eb32d236
NP
1330}
1331
f3bf9224 1332/* forward declaration for a mutually recursive function */
c4001d92 1333static int packed_object_info(struct packed_git *p, off_t offset,
21666f1a 1334 unsigned long *sizep);
f3bf9224 1335
43057304 1336static int packed_delta_info(struct packed_git *p,
03e79c88 1337 struct pack_window **w_curs,
c4001d92 1338 off_t curpos,
21666f1a 1339 enum object_type type,
c4001d92 1340 off_t obj_offset,
43057304 1341 unsigned long *sizep)
5db47c2b 1342{
c4001d92 1343 off_t base_offset;
f3bf9224 1344
21666f1a
NP
1345 base_offset = get_delta_base(p, w_curs, &curpos, type, obj_offset);
1346 type = packed_object_info(p, base_offset, NULL);
f3bf9224 1347
c62266f3
JH
1348 /* We choose to only get the type of the base object and
1349 * ignore potentially corrupt pack file that expects the delta
1350 * based on a base with a wrong size. This saves tons of
1351 * inflate() calls.
1352 */
54dab52a
NP
1353 if (sizep)
1354 *sizep = get_size_from_delta(p, w_curs, curpos);
21666f1a
NP
1355
1356 return type;
5db47c2b
JH
1357}
1358
2b87c45b
NP
1359static int unpack_object_header(struct packed_git *p,
1360 struct pack_window **w_curs,
c4001d92 1361 off_t *curpos,
2b87c45b 1362 unsigned long *sizep)
a733cb60 1363{
03e79c88
SP
1364 unsigned char *base;
1365 unsigned int left;
ad1ed5ee 1366 unsigned long used;
2b87c45b 1367 enum object_type type;
a733cb60 1368
8d8a4ea5
SP
1369 /* use_pack() assures us we have [base, base + 20) available
1370 * as a range that we can look at at. (Its actually the hash
3dff5379 1371 * size that is assured.) With our object header encoding
8d8a4ea5
SP
1372 * the maximum deflated object size is 2^137, which is just
1373 * insane, so we know won't exceed what we have been given.
1374 */
2b87c45b
NP
1375 base = use_pack(p, w_curs, *curpos, &left);
1376 used = unpack_object_header_gently(base, left, &type, sizep);
ad1ed5ee
JH
1377 if (!used)
1378 die("object offset outside of pack file");
2b87c45b 1379 *curpos += used;
ad1ed5ee 1380
2b87c45b 1381 return type;
a733cb60
LT
1382}
1383
21666f1a 1384const char *packed_object_info_detail(struct packed_git *p,
c4001d92 1385 off_t obj_offset,
21666f1a
NP
1386 unsigned long *size,
1387 unsigned long *store_size,
1388 unsigned int *delta_chain_length,
1389 unsigned char *base_sha1)
ad8c80a5 1390{
03e79c88 1391 struct pack_window *w_curs = NULL;
c4001d92
SP
1392 off_t curpos;
1393 unsigned long dummy;
43057304 1394 unsigned char *next_sha1;
21666f1a 1395 enum object_type type;
70f5d5d3 1396 struct revindex_entry *revidx;
ad8c80a5 1397
43057304 1398 *delta_chain_length = 0;
2b87c45b 1399 curpos = obj_offset;
21666f1a 1400 type = unpack_object_header(p, &w_curs, &curpos, size);
43057304 1401
70f5d5d3
NP
1402 revidx = find_pack_revindex(p, obj_offset);
1403 *store_size = revidx[1].offset - obj_offset;
1404
43057304 1405 for (;;) {
21666f1a 1406 switch (type) {
43057304 1407 default:
08a19d87 1408 die("pack %s contains unknown object type %d",
21666f1a 1409 p->pack_name, type);
43057304
NP
1410 case OBJ_COMMIT:
1411 case OBJ_TREE:
1412 case OBJ_BLOB:
1413 case OBJ_TAG:
03e79c88 1414 unuse_pack(&w_curs);
21666f1a 1415 return typename(type);
eb32d236 1416 case OBJ_OFS_DELTA:
21666f1a 1417 obj_offset = get_delta_base(p, &w_curs, &curpos, type, obj_offset);
eb32d236 1418 if (*delta_chain_length == 0) {
70f5d5d3
NP
1419 revidx = find_pack_revindex(p, obj_offset);
1420 hashcpy(base_sha1, nth_packed_object_sha1(p, revidx->nr));
eb32d236
NP
1421 }
1422 break;
1423 case OBJ_REF_DELTA:
2b87c45b 1424 next_sha1 = use_pack(p, &w_curs, curpos, NULL);
43057304
NP
1425 if (*delta_chain_length == 0)
1426 hashcpy(base_sha1, next_sha1);
2b87c45b 1427 obj_offset = find_pack_entry_one(next_sha1, p);
43057304
NP
1428 break;
1429 }
43057304 1430 (*delta_chain_length)++;
2b87c45b 1431 curpos = obj_offset;
21666f1a 1432 type = unpack_object_header(p, &w_curs, &curpos, &dummy);
ad8c80a5 1433 }
ad8c80a5
JH
1434}
1435
c4001d92 1436static int packed_object_info(struct packed_git *p, off_t obj_offset,
21666f1a 1437 unsigned long *sizep)
1f688557 1438{
03e79c88 1439 struct pack_window *w_curs = NULL;
c4001d92
SP
1440 unsigned long size;
1441 off_t curpos = obj_offset;
21666f1a 1442 enum object_type type;
5db47c2b 1443
21666f1a 1444 type = unpack_object_header(p, &w_curs, &curpos, &size);
5db47c2b 1445
21666f1a 1446 switch (type) {
eb32d236
NP
1447 case OBJ_OFS_DELTA:
1448 case OBJ_REF_DELTA:
21666f1a
NP
1449 type = packed_delta_info(p, &w_curs, curpos,
1450 type, obj_offset, sizep);
2b87c45b 1451 break;
a733cb60 1452 case OBJ_COMMIT:
a733cb60 1453 case OBJ_TREE:
a733cb60 1454 case OBJ_BLOB:
a733cb60 1455 case OBJ_TAG:
2b87c45b
NP
1456 if (sizep)
1457 *sizep = size;
a69d0943 1458 break;
1f688557 1459 default:
08a19d87 1460 die("pack %s contains unknown object type %d",
21666f1a 1461 p->pack_name, type);
1f688557 1462 }
2b87c45b 1463 unuse_pack(&w_curs);
21666f1a 1464 return type;
1f688557
JH
1465}
1466
eb950c19 1467static void *unpack_compressed_entry(struct packed_git *p,
03e79c88 1468 struct pack_window **w_curs,
c4001d92 1469 off_t curpos,
eb950c19 1470 unsigned long size)
de530aaa
SP
1471{
1472 int st;
1473 z_stream stream;
079afb18 1474 unsigned char *buffer, *in;
de530aaa
SP
1475
1476 buffer = xmalloc(size + 1);
1477 buffer[size] = 0;
1478 memset(&stream, 0, sizeof(stream));
de530aaa
SP
1479 stream.next_out = buffer;
1480 stream.avail_out = size;
1481
1482 inflateInit(&stream);
079afb18 1483 do {
2b87c45b 1484 in = use_pack(p, w_curs, curpos, &stream.avail_in);
079afb18
SP
1485 stream.next_in = in;
1486 st = inflate(&stream, Z_FINISH);
2b87c45b 1487 curpos += stream.next_in - in;
079afb18 1488 } while (st == Z_OK || st == Z_BUF_ERROR);
de530aaa
SP
1489 inflateEnd(&stream);
1490 if ((st != Z_STREAM_END) || stream.total_out != size) {
1491 free(buffer);
1492 return NULL;
1493 }
1494
1495 return buffer;
1496}
1497
e5e01619
LT
1498#define MAX_DELTA_CACHE (256)
1499
18bdec11 1500static size_t delta_base_cached;
5e08ecbf
NP
1501
1502static struct delta_base_cache_lru_list {
1503 struct delta_base_cache_lru_list *prev;
1504 struct delta_base_cache_lru_list *next;
1505} delta_base_cache_lru = { &delta_base_cache_lru, &delta_base_cache_lru };
1506
e5e01619 1507static struct delta_base_cache_entry {
5e08ecbf
NP
1508 struct delta_base_cache_lru_list lru;
1509 void *data;
e5e01619
LT
1510 struct packed_git *p;
1511 off_t base_offset;
1512 unsigned long size;
e5e01619
LT
1513 enum object_type type;
1514} delta_base_cache[MAX_DELTA_CACHE];
1515
1516static unsigned long pack_entry_hash(struct packed_git *p, off_t base_offset)
1517{
1518 unsigned long hash;
1519
1520 hash = (unsigned long)p + (unsigned long)base_offset;
1521 hash += (hash >> 8) + (hash >> 16);
3358004a 1522 return hash % MAX_DELTA_CACHE;
e5e01619
LT
1523}
1524
62f255ad 1525static void *cache_or_unpack_entry(struct packed_git *p, off_t base_offset,
a0cba108 1526 unsigned long *base_size, enum object_type *type, int keep_cache)
62f255ad 1527{
e5e01619
LT
1528 void *ret;
1529 unsigned long hash = pack_entry_hash(p, base_offset);
1530 struct delta_base_cache_entry *ent = delta_base_cache + hash;
1531
1532 ret = ent->data;
1533 if (ret && ent->p == p && ent->base_offset == base_offset)
1534 goto found_cache_entry;
62f255ad 1535 return unpack_entry(p, base_offset, type, base_size);
e5e01619
LT
1536
1537found_cache_entry:
18bdec11 1538 if (!keep_cache) {
a0cba108 1539 ent->data = NULL;
5e08ecbf
NP
1540 ent->lru.next->prev = ent->lru.prev;
1541 ent->lru.prev->next = ent->lru.next;
18bdec11 1542 delta_base_cached -= ent->size;
182af834
PH
1543 } else {
1544 ret = xmemdupz(ent->data, ent->size);
a0cba108 1545 }
e5e01619
LT
1546 *type = ent->type;
1547 *base_size = ent->size;
1548 return ret;
62f255ad
LT
1549}
1550
18bdec11
SP
1551static inline void release_delta_base_cache(struct delta_base_cache_entry *ent)
1552{
1553 if (ent->data) {
1554 free(ent->data);
1555 ent->data = NULL;
5e08ecbf
NP
1556 ent->lru.next->prev = ent->lru.prev;
1557 ent->lru.prev->next = ent->lru.next;
18bdec11
SP
1558 delta_base_cached -= ent->size;
1559 }
1560}
1561
62f255ad
LT
1562static void add_delta_base_cache(struct packed_git *p, off_t base_offset,
1563 void *base, unsigned long base_size, enum object_type type)
1564{
5e08ecbf 1565 unsigned long hash = pack_entry_hash(p, base_offset);
e5e01619 1566 struct delta_base_cache_entry *ent = delta_base_cache + hash;
5e08ecbf 1567 struct delta_base_cache_lru_list *lru;
e5e01619 1568
18bdec11
SP
1569 release_delta_base_cache(ent);
1570 delta_base_cached += base_size;
5e08ecbf
NP
1571
1572 for (lru = delta_base_cache_lru.next;
1573 delta_base_cached > delta_base_cache_limit
1574 && lru != &delta_base_cache_lru;
1575 lru = lru->next) {
1576 struct delta_base_cache_entry *f = (void *)lru;
18bdec11
SP
1577 if (f->type == OBJ_BLOB)
1578 release_delta_base_cache(f);
1579 }
5e08ecbf
NP
1580 for (lru = delta_base_cache_lru.next;
1581 delta_base_cached > delta_base_cache_limit
1582 && lru != &delta_base_cache_lru;
1583 lru = lru->next) {
1584 struct delta_base_cache_entry *f = (void *)lru;
1585 release_delta_base_cache(f);
1586 }
18bdec11 1587
e5e01619
LT
1588 ent->p = p;
1589 ent->base_offset = base_offset;
1590 ent->type = type;
1591 ent->data = base;
1592 ent->size = base_size;
5e08ecbf
NP
1593 ent->lru.next = &delta_base_cache_lru;
1594 ent->lru.prev = delta_base_cache_lru.prev;
1595 delta_base_cache_lru.prev->next = &ent->lru;
1596 delta_base_cache_lru.prev = &ent->lru;
62f255ad
LT
1597}
1598
eb950c19 1599static void *unpack_delta_entry(struct packed_git *p,
03e79c88 1600 struct pack_window **w_curs,
c4001d92 1601 off_t curpos,
1f688557 1602 unsigned long delta_size,
c4001d92 1603 off_t obj_offset,
21666f1a 1604 enum object_type *type,
eb950c19 1605 unsigned long *sizep)
1f688557 1606{
7c3e8be3 1607 void *delta_data, *result, *base;
c4001d92
SP
1608 unsigned long base_size;
1609 off_t base_offset;
43057304 1610
21666f1a 1611 base_offset = get_delta_base(p, w_curs, &curpos, *type, obj_offset);
eac12e2d 1612 unuse_pack(w_curs);
a0cba108 1613 base = cache_or_unpack_entry(p, base_offset, &base_size, type, 0);
67686d95 1614 if (!base)
c4001d92
SP
1615 die("failed to read delta base object"
1616 " at %"PRIuMAX" from %s",
1617 (uintmax_t)base_offset, p->pack_name);
67686d95 1618
2b87c45b 1619 delta_data = unpack_compressed_entry(p, w_curs, curpos, delta_size);
9064d87b
SP
1620 if (!delta_data)
1621 die("failed to unpack compressed delta"
1622 " at %"PRIuMAX" from %s",
1623 (uintmax_t)curpos, p->pack_name);
1f688557
JH
1624 result = patch_delta(base, base_size,
1625 delta_data, delta_size,
21666f1a 1626 sizep);
1f688557
JH
1627 if (!result)
1628 die("failed to apply delta");
1629 free(delta_data);
62f255ad 1630 add_delta_base_cache(p, base_offset, base, base_size, *type);
1f688557
JH
1631 return result;
1632}
1633
c4001d92 1634void *unpack_entry(struct packed_git *p, off_t obj_offset,
21666f1a 1635 enum object_type *type, unsigned long *sizep)
1f688557 1636{
03e79c88 1637 struct pack_window *w_curs = NULL;
c4001d92 1638 off_t curpos = obj_offset;
21666f1a 1639 void *data;
1f688557 1640
21666f1a
NP
1641 *type = unpack_object_header(p, &w_curs, &curpos, sizep);
1642 switch (*type) {
eb32d236
NP
1643 case OBJ_OFS_DELTA:
1644 case OBJ_REF_DELTA:
21666f1a
NP
1645 data = unpack_delta_entry(p, &w_curs, curpos, *sizep,
1646 obj_offset, type, sizep);
4d703a1a 1647 break;
a733cb60 1648 case OBJ_COMMIT:
a733cb60 1649 case OBJ_TREE:
a733cb60 1650 case OBJ_BLOB:
a733cb60 1651 case OBJ_TAG:
21666f1a 1652 data = unpack_compressed_entry(p, &w_curs, curpos, *sizep);
4d703a1a 1653 break;
1f688557 1654 default:
21666f1a 1655 die("unknown object type %i in %s", *type, p->pack_name);
1f688557 1656 }
03e79c88 1657 unuse_pack(&w_curs);
21666f1a 1658 return data;
1f688557
JH
1659}
1660
d079837e 1661const unsigned char *nth_packed_object_sha1(struct packed_git *p,
d72308e0 1662 uint32_t n)
9a217f2a 1663{
42873078 1664 const unsigned char *index = p->index_data;
d079837e
SP
1665 if (!index) {
1666 if (open_pack_index(p))
1667 return NULL;
1668 index = p->index_data;
1669 }
57059091 1670 if (n >= p->num_objects)
d72308e0 1671 return NULL;
74e34e1f
NP
1672 index += 4 * 256;
1673 if (p->index_version == 1) {
1674 return index + 24 * n + 4;
1675 } else {
1676 index += 8;
1677 return index + 20 * n;
1678 }
1679}
1680
1681static off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
1682{
1683 const unsigned char *index = p->index_data;
1684 index += 4 * 256;
1685 if (p->index_version == 1) {
1686 return ntohl(*((uint32_t *)(index + 24 * n)));
1687 } else {
1688 uint32_t off;
1689 index += 8 + p->num_objects * (20 + 4);
1690 off = ntohl(*((uint32_t *)(index + 4 * n)));
1691 if (!(off & 0x80000000))
1692 return off;
1693 index += p->num_objects * 4 + (off & 0x7fffffff) * 8;
1694 return (((uint64_t)ntohl(*((uint32_t *)(index + 0)))) << 32) |
1695 ntohl(*((uint32_t *)(index + 4)));
1696 }
9a217f2a
JH
1697}
1698
c4001d92 1699off_t find_pack_entry_one(const unsigned char *sha1,
43057304 1700 struct packed_git *p)
1f688557 1701{
42873078 1702 const uint32_t *level1_ofs = p->index_data;
42873078 1703 const unsigned char *index = p->index_data;
628522ec
JH
1704 unsigned hi, lo, stride;
1705 static int use_lookup = -1;
1706 static int debug_lookup = -1;
1707
1708 if (debug_lookup < 0)
1709 debug_lookup = !!getenv("GIT_DEBUG_LOOKUP");
42873078 1710
d079837e
SP
1711 if (!index) {
1712 if (open_pack_index(p))
1713 return 0;
1714 level1_ofs = p->index_data;
1715 index = p->index_data;
1716 }
74e34e1f
NP
1717 if (p->index_version > 1) {
1718 level1_ofs += 2;
1719 index += 8;
1720 }
42873078 1721 index += 4 * 256;
74e34e1f
NP
1722 hi = ntohl(level1_ofs[*sha1]);
1723 lo = ((*sha1 == 0x0) ? 0 : ntohl(level1_ofs[*sha1 - 1]));
628522ec
JH
1724 if (p->index_version > 1) {
1725 stride = 20;
1726 } else {
1727 stride = 24;
1728 index += 4;
1729 }
1730
1731 if (debug_lookup)
1732 printf("%02x%02x%02x... lo %u hi %u nr %u\n",
1733 sha1[0], sha1[1], sha1[2], lo, hi, p->num_objects);
1734
1735 if (use_lookup < 0)
1736 use_lookup = !!getenv("GIT_USE_LOOKUP");
1737 if (use_lookup) {
1738 int pos = sha1_entry_pos(index, stride, 0,
1739 lo, hi, p->num_objects, sha1);
1740 if (pos < 0)
1741 return 0;
1742 return nth_packed_object_offset(p, pos);
1743 }
1f688557
JH
1744
1745 do {
74e34e1f 1746 unsigned mi = (lo + hi) / 2;
628522ec
JH
1747 int cmp = hashcmp(index + mi * stride, sha1);
1748
1749 if (debug_lookup)
1750 printf("lo %u hi %u rg %u mi %u\n",
1751 lo, hi, hi - lo, mi);
43057304 1752 if (!cmp)
74e34e1f 1753 return nth_packed_object_offset(p, mi);
1f688557
JH
1754 if (cmp > 0)
1755 hi = mi;
1756 else
1757 lo = mi+1;
1758 } while (lo < hi);
1759 return 0;
1760}
1761
000dfd3f 1762int matches_pack_name(struct packed_git *p, const char *name)
d4ff6d92
SP
1763{
1764 const char *last_c, *c;
1765
000dfd3f
JH
1766 if (!strcmp(p->pack_name, name))
1767 return 1;
d4ff6d92
SP
1768
1769 for (c = p->pack_name, last_c = c; *c;)
1770 if (*c == '/')
1771 last_c = ++c;
1772 else
1773 ++c;
000dfd3f
JH
1774 if (!strcmp(last_c, name))
1775 return 1;
d4ff6d92 1776
000dfd3f 1777 return 0;
d4ff6d92
SP
1778}
1779
106d710b 1780static int find_pack_entry(const unsigned char *sha1, struct pack_entry *e, const char **ignore_packed)
1f688557 1781{
f7c22cc6 1782 static struct packed_git *last_found = (void *)1;
1f688557 1783 struct packed_git *p;
c4001d92 1784 off_t offset;
43057304 1785
1f688557 1786 prepare_packed_git();
f7c22cc6
NP
1787 if (!packed_git)
1788 return 0;
1789 p = (last_found == (void *)1) ? packed_git : last_found;
1f688557 1790
f7c22cc6 1791 do {
106d710b
JH
1792 if (ignore_packed) {
1793 const char **ig;
1794 for (ig = ignore_packed; *ig; ig++)
000dfd3f 1795 if (matches_pack_name(p, *ig))
106d710b
JH
1796 break;
1797 if (*ig)
f7c22cc6 1798 goto next;
106d710b 1799 }
f7c22cc6 1800
43057304
NP
1801 offset = find_pack_entry_one(sha1, p);
1802 if (offset) {
c715f783
SP
1803 /*
1804 * We are about to tell the caller where they can
1805 * locate the requested object. We better make
1806 * sure the packfile is still here and can be
1807 * accessed before supplying that answer, as
1808 * it may have been deleted since the index
1809 * was loaded!
1810 */
1811 if (p->pack_fd == -1 && open_packed_git(p)) {
1812 error("packfile %s cannot be accessed", p->pack_name);
f7c22cc6 1813 goto next;
c715f783 1814 }
43057304
NP
1815 e->offset = offset;
1816 e->p = p;
1817 hashcpy(e->sha1, sha1);
f7c22cc6 1818 last_found = p;
1f688557 1819 return 1;
43057304 1820 }
f7c22cc6
NP
1821
1822 next:
1823 if (p == last_found)
1824 p = packed_git;
1825 else
1826 p = p->next;
1827 if (p == last_found)
1828 p = p->next;
1829 } while (p);
1f688557
JH
1830 return 0;
1831}
1832
a6080a0a 1833struct packed_git *find_sha1_pack(const unsigned char *sha1,
bf592c50
DB
1834 struct packed_git *packs)
1835{
1836 struct packed_git *p;
bf592c50
DB
1837
1838 for (p = packs; p; p = p->next) {
43057304 1839 if (find_pack_entry_one(sha1, p))
bf592c50
DB
1840 return p;
1841 }
1842 return NULL;
21666f1a 1843
bf592c50
DB
1844}
1845
21666f1a 1846static int sha1_loose_object_info(const unsigned char *sha1, unsigned long *sizep)
65c2e0c3 1847{
36e4d74a 1848 int status;
65c2e0c3
JH
1849 unsigned long mapsize, size;
1850 void *map;
1851 z_stream stream;
d65a16f6 1852 char hdr[32];
65c2e0c3 1853
bb6b8e4f 1854 map = map_sha1_file(sha1, &mapsize);
f0df4ed5
JS
1855 if (!map)
1856 return error("unable to find %s", sha1_to_hex(sha1));
36e4d74a
JH
1857 if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
1858 status = error("unable to unpack %s header",
1859 sha1_to_hex(sha1));
21666f1a 1860 else if ((status = parse_sha1_header(hdr, &size)) < 0)
36e4d74a 1861 status = error("unable to parse %s header", sha1_to_hex(sha1));
21666f1a
NP
1862 else if (sizep)
1863 *sizep = size;
65c2e0c3
JH
1864 inflateEnd(&stream);
1865 munmap(map, mapsize);
1866 return status;
1867}
1868
21666f1a 1869int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
f0df4ed5 1870{
f0df4ed5
JS
1871 struct pack_entry e;
1872
1873 if (!find_pack_entry(sha1, &e, NULL)) {
1874 reprepare_packed_git();
1875 if (!find_pack_entry(sha1, &e, NULL))
21666f1a 1876 return sha1_loose_object_info(sha1, sizep);
f0df4ed5 1877 }
21666f1a 1878 return packed_object_info(e.p, e.offset, sizep);
f0df4ed5
JS
1879}
1880
21666f1a
NP
1881static void *read_packed_sha1(const unsigned char *sha1,
1882 enum object_type *type, unsigned long *size)
1f688557
JH
1883{
1884 struct pack_entry e;
1885
8276c007 1886 if (!find_pack_entry(sha1, &e, NULL))
1f688557 1887 return NULL;
8276c007 1888 else
a0cba108 1889 return cache_or_unpack_entry(e.p, e.offset, size, type, 1);
1f688557
JH
1890}
1891
d66b37bb
JH
1892/*
1893 * This is meant to hold a *small* number of objects that you would
1894 * want read_sha1_file() to be able to return, but yet you do not want
1895 * to write them into the object store (e.g. a browse-only
1896 * application).
1897 */
1898static struct cached_object {
1899 unsigned char sha1[20];
21666f1a 1900 enum object_type type;
d66b37bb
JH
1901 void *buf;
1902 unsigned long size;
1903} *cached_objects;
1904static int cached_object_nr, cached_object_alloc;
1905
346245a1
JK
1906static struct cached_object empty_tree = {
1907 /* empty tree sha1: 4b825dc642cb6eb9a060e54bf8d69288fbee4904 */
1908 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60"
1909 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04",
1910 OBJ_TREE,
1911 "",
1912 0
1913};
1914
d66b37bb
JH
1915static struct cached_object *find_cached_object(const unsigned char *sha1)
1916{
1917 int i;
1918 struct cached_object *co = cached_objects;
1919
1920 for (i = 0; i < cached_object_nr; i++, co++) {
1921 if (!hashcmp(co->sha1, sha1))
1922 return co;
1923 }
346245a1
JK
1924 if (!hashcmp(sha1, empty_tree.sha1))
1925 return &empty_tree;
d66b37bb
JH
1926 return NULL;
1927}
1928
21666f1a
NP
1929int pretend_sha1_file(void *buf, unsigned long len, enum object_type type,
1930 unsigned char *sha1)
d66b37bb
JH
1931{
1932 struct cached_object *co;
1933
21666f1a 1934 hash_sha1_file(buf, len, typename(type), sha1);
d66b37bb
JH
1935 if (has_sha1_file(sha1) || find_cached_object(sha1))
1936 return 0;
1937 if (cached_object_alloc <= cached_object_nr) {
1938 cached_object_alloc = alloc_nr(cached_object_alloc);
1939 cached_objects = xrealloc(cached_objects,
1940 sizeof(*cached_objects) *
1941 cached_object_alloc);
1942 }
1943 co = &cached_objects[cached_object_nr++];
1944 co->size = len;
21666f1a 1945 co->type = type;
efa13f7b
JH
1946 co->buf = xmalloc(len);
1947 memcpy(co->buf, buf, len);
d66b37bb
JH
1948 hashcpy(co->sha1, sha1);
1949 return 0;
1950}
1951
21666f1a
NP
1952void *read_sha1_file(const unsigned char *sha1, enum object_type *type,
1953 unsigned long *size)
0fcfd160
LT
1954{
1955 unsigned long mapsize;
1956 void *map, *buf;
d66b37bb
JH
1957 struct cached_object *co;
1958
1959 co = find_cached_object(sha1);
1960 if (co) {
21666f1a 1961 *type = co->type;
d66b37bb 1962 *size = co->size;
182af834 1963 return xmemdupz(co->buf, co->size);
d66b37bb 1964 }
0fcfd160 1965
8276c007
PE
1966 buf = read_packed_sha1(sha1, type, size);
1967 if (buf)
1968 return buf;
bb6b8e4f 1969 map = map_sha1_file(sha1, &mapsize);
0fcfd160 1970 if (map) {
7efbff75 1971 buf = unpack_sha1_file(map, mapsize, type, size, sha1);
0fcfd160
LT
1972 munmap(map, mapsize);
1973 return buf;
1974 }
637cdd9d 1975 reprepare_packed_git();
8276c007 1976 return read_packed_sha1(sha1, type, size);
0fcfd160
LT
1977}
1978
40469ee9 1979void *read_object_with_reference(const unsigned char *sha1,
21666f1a 1980 const char *required_type_name,
40469ee9
JH
1981 unsigned long *size,
1982 unsigned char *actual_sha1_return)
f4913f91 1983{
21666f1a 1984 enum object_type type, required_type;
f4913f91
JH
1985 void *buffer;
1986 unsigned long isize;
40469ee9 1987 unsigned char actual_sha1[20];
f4913f91 1988
21666f1a 1989 required_type = type_from_string(required_type_name);
e702496e 1990 hashcpy(actual_sha1, sha1);
40469ee9
JH
1991 while (1) {
1992 int ref_length = -1;
1993 const char *ref_type = NULL;
f4913f91 1994
21666f1a 1995 buffer = read_sha1_file(actual_sha1, &type, &isize);
40469ee9
JH
1996 if (!buffer)
1997 return NULL;
21666f1a 1998 if (type == required_type) {
40469ee9
JH
1999 *size = isize;
2000 if (actual_sha1_return)
e702496e 2001 hashcpy(actual_sha1_return, actual_sha1);
40469ee9
JH
2002 return buffer;
2003 }
2004 /* Handle references */
21666f1a 2005 else if (type == OBJ_COMMIT)
40469ee9 2006 ref_type = "tree ";
21666f1a 2007 else if (type == OBJ_TAG)
40469ee9
JH
2008 ref_type = "object ";
2009 else {
2010 free(buffer);
2011 return NULL;
2012 }
2013 ref_length = strlen(ref_type);
f4913f91 2014
50974ec9
MK
2015 if (ref_length + 40 > isize ||
2016 memcmp(buffer, ref_type, ref_length) ||
1d7f171c 2017 get_sha1_hex((char *) buffer + ref_length, actual_sha1)) {
40469ee9
JH
2018 free(buffer);
2019 return NULL;
2020 }
1cf58e72 2021 free(buffer);
40469ee9
JH
2022 /* Now we have the ID of the referred-to object in
2023 * actual_sha1. Check again. */
f4913f91 2024 }
f4913f91
JH
2025}
2026
ce9fbf16 2027static void write_sha1_file_prepare(const void *buf, unsigned long len,
972a9155 2028 const char *type, unsigned char *sha1,
d65a16f6 2029 char *hdr, int *hdrlen)
d410c0f5
JH
2030{
2031 SHA_CTX c;
2032
2033 /* Generate the header */
d65a16f6 2034 *hdrlen = sprintf(hdr, "%s %lu", type, len)+1;
d410c0f5
JH
2035
2036 /* Sha1.. */
2037 SHA1_Init(&c);
2038 SHA1_Update(&c, hdr, *hdrlen);
2039 SHA1_Update(&c, buf, len);
2040 SHA1_Final(sha1, &c);
d410c0f5
JH
2041}
2042
230f1322
LT
2043/*
2044 * Move the just written object into its final resting place
2045 */
839837b9 2046int move_temp_to_file(const char *tmpfile, const char *filename)
230f1322 2047{
5723fe7e 2048 int ret = link(tmpfile, filename);
7ebb6fca
LT
2049
2050 /*
2051 * Coda hack - coda doesn't like cross-directory links,
2052 * so we fall back to a rename, which will mean that it
2053 * won't be able to check collisions, but that's not a
2054 * big deal.
2055 *
2056 * The same holds for FAT formatted media.
2057 *
2058 * When this succeeds, we just return 0. We have nothing
2059 * left to unlink.
2060 */
2061 if (ret && ret != EEXIST) {
2062 if (!rename(tmpfile, filename))
230f1322 2063 return 0;
9e48b389 2064 ret = errno;
230f1322
LT
2065 }
2066 unlink(tmpfile);
2067 if (ret) {
2068 if (ret != EEXIST) {
916d081b 2069 return error("unable to write sha1 filename %s: %s\n", filename, strerror(ret));
230f1322
LT
2070 }
2071 /* FIXME!!! Collision check here ? */
2072 }
2073
2074 return 0;
2075}
2076
4d548150
LT
2077static int write_buffer(int fd, const void *buf, size_t len)
2078{
d34cf19b 2079 if (write_in_full(fd, buf, len) < 0)
93822c22 2080 return error("file write error (%s)", strerror(errno));
4d548150
LT
2081 return 0;
2082}
2083
ce9fbf16 2084int hash_sha1_file(const void *buf, unsigned long len, const char *type,
abdc3fc8
RS
2085 unsigned char *sha1)
2086{
d65a16f6 2087 char hdr[32];
abdc3fc8
RS
2088 int hdrlen;
2089 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
2090 return 0;
2091}
2092
e9039dd3
LT
2093/* Finalize a file on disk, and close it. */
2094static void close_sha1_file(int fd)
2095{
aafe9fba
LT
2096 if (fsync_object_files)
2097 fsync_or_die(fd, "sha1 file");
e9039dd3
LT
2098 fchmod(fd, 0444);
2099 if (close(fd) != 0)
2100 die("unable to write sha1 file");
2101}
2102
5723fe7e
LT
2103/* Size of directory component, including the ending '/' */
2104static inline int directory_size(const char *filename)
2105{
2106 const char *s = strrchr(filename, '/');
2107 if (!s)
2108 return 0;
2109 return s - filename + 1;
2110}
2111
2112/*
2113 * This creates a temporary file in the same directory as the final
2114 * 'filename'
2115 *
2116 * We want to avoid cross-directory filename renames, because those
2117 * can have problems on various filesystems (FAT, NFS, Coda).
2118 */
2119static int create_tmpfile(char *buffer, size_t bufsiz, const char *filename)
2120{
2121 int fd, dirlen = directory_size(filename);
2122
2123 if (dirlen + 20 > bufsiz) {
2124 errno = ENAMETOOLONG;
2125 return -1;
2126 }
2127 memcpy(buffer, filename, dirlen);
2128 strcpy(buffer + dirlen, "tmp_obj_XXXXXX");
2129 fd = mkstemp(buffer);
2130 if (fd < 0 && dirlen) {
2131 /* Make sure the directory exists */
6ff6af62 2132 memcpy(buffer, filename, dirlen);
5723fe7e 2133 buffer[dirlen-1] = 0;
3bfaf018 2134 if (mkdir(buffer, 0777) || adjust_shared_perm(buffer))
5723fe7e
LT
2135 return -1;
2136
2137 /* Try again */
2138 strcpy(buffer + dirlen - 1, "/tmp_obj_XXXXXX");
2139 fd = mkstemp(buffer);
2140 }
2141 return fd;
2142}
2143
bbac7311
NP
2144static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
2145 void *buf, unsigned long len, time_t mtime)
0fcfd160 2146{
bbac7311 2147 int fd, size, ret;
bf0f910d 2148 unsigned char *compressed;
0fcfd160 2149 z_stream stream;
706bc531 2150 char *filename;
aac17941 2151 static char tmpfile[PATH_MAX];
a44c9a5e 2152
972a9155 2153 filename = sha1_file_name(sha1);
5723fe7e 2154 fd = create_tmpfile(tmpfile, sizeof(tmpfile), filename);
aac17941 2155 if (fd < 0) {
916d081b
PB
2156 if (errno == EPERM)
2157 return error("insufficient permission for adding an object to repository database %s\n", get_object_directory());
2158 else
2159 return error("unable to create temporary sha1 filename %s: %s\n", tmpfile, strerror(errno));
aac17941
LT
2160 }
2161
0fcfd160
LT
2162 /* Set it up */
2163 memset(&stream, 0, sizeof(stream));
12f6c308 2164 deflateInit(&stream, zlib_compression_level);
93821bd9 2165 size = 8 + deflateBound(&stream, len+hdrlen);
812666c8 2166 compressed = xmalloc(size);
0fcfd160
LT
2167
2168 /* Compress it */
0fcfd160
LT
2169 stream.next_out = compressed;
2170 stream.avail_out = size;
a44c9a5e
LT
2171
2172 /* First header.. */
d65a16f6 2173 stream.next_in = (unsigned char *)hdr;
a44c9a5e 2174 stream.avail_in = hdrlen;
726f852b
NP
2175 while (deflate(&stream, 0) == Z_OK)
2176 /* nothing */;
a44c9a5e
LT
2177
2178 /* Then the data itself.. */
2179 stream.next_in = buf;
2180 stream.avail_in = len;
ac54c277
LT
2181 ret = deflate(&stream, Z_FINISH);
2182 if (ret != Z_STREAM_END)
2183 die("unable to deflate new object %s (%d)", sha1_to_hex(sha1), ret);
2184
2185 ret = deflateEnd(&stream);
2186 if (ret != Z_OK)
2187 die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1), ret);
2188
0fcfd160
LT
2189 size = stream.total_out;
2190
4d548150
LT
2191 if (write_buffer(fd, compressed, size) < 0)
2192 die("unable to write sha1 file");
e9039dd3 2193 close_sha1_file(fd);
383f85b7 2194 free(compressed);
0fcfd160 2195
bbac7311
NP
2196 if (mtime) {
2197 struct utimbuf utb;
2198 utb.actime = mtime;
2199 utb.modtime = mtime;
2200 if (utime(tmpfile, &utb) < 0)
2201 warning("failed utime() on %s: %s",
2202 tmpfile, strerror(errno));
2203 }
2204
230f1322 2205 return move_temp_to_file(tmpfile, filename);
0fcfd160 2206}
8237b185 2207
bbac7311
NP
2208int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *returnsha1)
2209{
2210 unsigned char sha1[20];
2211 char hdr[32];
2212 int hdrlen;
2213
2214 /* Normally if we have it in the pack then we do not bother writing
2215 * it out into .git/objects/??/?{38} file.
2216 */
2217 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
2218 if (returnsha1)
2219 hashcpy(returnsha1, sha1);
2220 if (has_sha1_file(sha1))
2221 return 0;
2222 return write_loose_object(sha1, hdr, hdrlen, buf, len, 0);
2223}
2224
2225int force_object_loose(const unsigned char *sha1, time_t mtime)
2226{
bbac7311
NP
2227 void *buf;
2228 unsigned long len;
2229 enum object_type type;
2230 char hdr[32];
2231 int hdrlen;
2232
c529d75a 2233 if (has_loose_object(sha1))
bbac7311
NP
2234 return 0;
2235 buf = read_packed_sha1(sha1, &type, &len);
2236 if (!buf)
2237 return error("cannot read sha1_file for %s", sha1_to_hex(sha1));
2238 hdrlen = sprintf(hdr, "%s %lu", typename(type), len) + 1;
2239 return write_loose_object(sha1, hdr, hdrlen, buf, len, mtime);
2240}
2241
bf592c50
DB
2242int has_pack_index(const unsigned char *sha1)
2243{
2244 struct stat st;
2245 if (stat(sha1_pack_index_name(sha1), &st))
2246 return 0;
2247 return 1;
2248}
2249
2250int has_pack_file(const unsigned char *sha1)
2251{
2252 struct stat st;
2253 if (stat(sha1_pack_name(sha1), &st))
2254 return 0;
2255 return 1;
2256}
2257
106d710b 2258int has_sha1_pack(const unsigned char *sha1, const char **ignore_packed)
dade09c2
LT
2259{
2260 struct pack_entry e;
106d710b 2261 return find_pack_entry(sha1, &e, ignore_packed);
dade09c2
LT
2262}
2263
8237b185
DB
2264int has_sha1_file(const unsigned char *sha1)
2265{
1f688557
JH
2266 struct pack_entry e;
2267
106d710b 2268 if (find_pack_entry(sha1, &e, NULL))
1f688557 2269 return 1;
c529d75a 2270 return has_loose_object(sha1);
8237b185 2271}
74400e71 2272
e7332f96
BE
2273int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object)
2274{
fd17f5b5 2275 struct strbuf buf;
e7332f96 2276 int ret;
e7332f96 2277
fd17f5b5
PH
2278 strbuf_init(&buf, 0);
2279 if (strbuf_read(&buf, fd, 4096) < 0) {
2280 strbuf_release(&buf);
024510c8
DB
2281 return -1;
2282 }
e7332f96 2283
024510c8 2284 if (!type)
8e440259 2285 type = blob_type;
024510c8 2286 if (write_object)
fd17f5b5 2287 ret = write_sha1_file(buf.buf, buf.len, type, sha1);
abdc3fc8 2288 else
fd17f5b5
PH
2289 ret = hash_sha1_file(buf.buf, buf.len, type, sha1);
2290 strbuf_release(&buf);
2291
024510c8
DB
2292 return ret;
2293}
2294
edaec3fb 2295int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object,
53bca91a 2296 enum object_type type, const char *path)
74400e71 2297{
dc49cd76 2298 size_t size = xsize_t(st->st_size);
3a55602e 2299 void *buf = NULL;
6c510bee 2300 int ret, re_allocated = 0;
74400e71 2301
74400e71 2302 if (size)
c4712e45 2303 buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
74400e71 2304 close(fd);
74400e71 2305
7672db20 2306 if (!type)
edaec3fb 2307 type = OBJ_BLOB;
6c510bee
LT
2308
2309 /*
2310 * Convert blobs to git internal format
2311 */
d0d8e14d 2312 if ((type == OBJ_BLOB) && S_ISREG(st->st_mode)) {
5ecd293d
PH
2313 struct strbuf nbuf;
2314 strbuf_init(&nbuf, 0);
21e5ad50
SP
2315 if (convert_to_git(path, buf, size, &nbuf,
2316 write_object ? safe_crlf : 0)) {
ac78e548 2317 munmap(buf, size);
b315c5c0 2318 buf = strbuf_detach(&nbuf, &size);
6c510bee
LT
2319 re_allocated = 1;
2320 }
2321 }
2322
7672db20 2323 if (write_object)
edaec3fb 2324 ret = write_sha1_file(buf, size, typename(type), sha1);
abdc3fc8 2325 else
edaec3fb 2326 ret = hash_sha1_file(buf, size, typename(type), sha1);
6c510bee
LT
2327 if (re_allocated) {
2328 free(buf);
2329 return ret;
2330 }
aac17941
LT
2331 if (size)
2332 munmap(buf, size);
2333 return ret;
74400e71 2334}
ec1fcc16
JH
2335
2336int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object)
2337{
2338 int fd;
2339 char *target;
dc49cd76 2340 size_t len;
ec1fcc16
JH
2341
2342 switch (st->st_mode & S_IFMT) {
2343 case S_IFREG:
2344 fd = open(path, O_RDONLY);
2345 if (fd < 0)
2346 return error("open(\"%s\"): %s", path,
2347 strerror(errno));
53bca91a 2348 if (index_fd(sha1, fd, st, write_object, OBJ_BLOB, path) < 0)
ec1fcc16
JH
2349 return error("%s: failed to insert into database",
2350 path);
2351 break;
2352 case S_IFLNK:
dc49cd76
SP
2353 len = xsize_t(st->st_size);
2354 target = xmalloc(len + 1);
2355 if (readlink(path, target, len + 1) != st->st_size) {
ec1fcc16
JH
2356 char *errstr = strerror(errno);
2357 free(target);
2358 return error("readlink(\"%s\"): %s", path,
2359 errstr);
2360 }
abdc3fc8 2361 if (!write_object)
dc49cd76
SP
2362 hash_sha1_file(target, len, blob_type, sha1);
2363 else if (write_sha1_file(target, len, blob_type, sha1))
ec1fcc16
JH
2364 return error("%s: failed to insert into database",
2365 path);
2366 free(target);
2367 break;
f35a6d3b
LT
2368 case S_IFDIR:
2369 return resolve_gitlink_ref(path, "HEAD", sha1);
ec1fcc16
JH
2370 default:
2371 return error("%s: unsupported file type", path);
2372 }
2373 return 0;
2374}
a69e5429
JH
2375
2376int read_pack_header(int fd, struct pack_header *header)
2377{
c697ad14
HO
2378 if (read_in_full(fd, header, sizeof(*header)) < sizeof(*header))
2379 /* "eof before pack header was fully read" */
2380 return PH_ERROR_EOF;
2381
a69e5429
JH
2382 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2383 /* "protocol error (pack signature mismatch detected)" */
2384 return PH_ERROR_PACK_SIGNATURE;
2385 if (!pack_version_ok(header->hdr_version))
2386 /* "protocol error (pack version unsupported)" */
2387 return PH_ERROR_PROTOCOL;
2388 return 0;
2389}