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