packv4: Introduces packv4-test
[git/packv4.git] / sha1_file.c
blob70586a71b6af9d148fcc69dd56fe45f4da6064ca
1 /*
2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 * This handles basic git sha1 object files - packing, unpacking,
7 * creation etc.
8 */
9 #include "cache.h"
10 #include "delta.h"
11 #include "pack.h"
12 #include "blob.h"
13 #include "commit.h"
14 #include "tag.h"
15 #include "tree.h"
16 #include "refs.h"
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
26 #ifdef NO_C99_FORMAT
27 #define SZ_FMT "lu"
28 #else
29 #define SZ_FMT "zu"
30 #endif
32 const unsigned char null_sha1[20];
34 static unsigned int sha1_file_open_flag = O_NOATIME;
36 const signed 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 */
71 int get_sha1_hex(const char *hex, unsigned char *sha1)
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;
81 return 0;
84 int safe_create_leading_directories(char *path)
86 char *pos = path;
87 struct stat st;
89 if (*pos == '/')
90 pos++;
92 while (pos) {
93 pos = strchr(pos, '/');
94 if (!pos)
95 break;
96 *pos = 0;
97 if (!stat(path, &st)) {
98 /* path exists */
99 if (!S_ISDIR(st.st_mode)) {
100 *pos = '/';
101 return -3;
104 else if (mkdir(path, 0777)) {
105 *pos = '/';
106 return -1;
108 else if (adjust_shared_perm(path)) {
109 *pos = '/';
110 return -2;
112 *pos++ = '/';
114 return 0;
117 char * sha1_to_hex(const unsigned char *sha1)
119 static int bufno;
120 static char hexbuffer[4][50];
121 static const char hex[] = "0123456789abcdef";
122 char *buffer = hexbuffer[3 & ++bufno], *buf = buffer;
123 int i;
125 for (i = 0; i < 20; i++) {
126 unsigned int val = *sha1++;
127 *buf++ = hex[val >> 4];
128 *buf++ = hex[val & 0xf];
130 *buf = '\0';
132 return buffer;
135 static void fill_sha1_path(char *pathbuf, const unsigned char *sha1)
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];
148 * NOTE! This returns a statically allocated buffer, so you have to be
149 * careful about using it. Do a "xstrdup()" if you need to save the
150 * filename.
152 * Also note that this returns the location for creating. Reading
153 * SHA1 file can happen from any alternate directory listed in the
154 * DB_ENVIRONMENT environment variable if it is not found in
155 * the primary object database.
157 char *sha1_file_name(const unsigned char *sha1)
159 static char *name, *base;
161 if (!base) {
162 const char *sha1_file_directory = get_object_directory();
163 int len = strlen(sha1_file_directory);
164 base = xmalloc(len + 60);
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;
171 fill_sha1_path(name, sha1);
172 return base;
175 char *sha1_pack_name(const unsigned char *sha1)
177 static const char hex[] = "0123456789abcdef";
178 static char *name, *base, *buf;
179 int i;
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;
189 buf = name;
191 for (i = 0; i < 20; i++) {
192 unsigned int val = *sha1++;
193 *buf++ = hex[val >> 4];
194 *buf++ = hex[val & 0xf];
197 return base;
200 char *sha1_pack_index_name(const unsigned char *sha1)
202 static const char hex[] = "0123456789abcdef";
203 static char *name, *base, *buf;
204 int i;
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;
214 buf = name;
216 for (i = 0; i < 20; i++) {
217 unsigned int val = *sha1++;
218 *buf++ = hex[val >> 4];
219 *buf++ = hex[val & 0xf];
222 return base;
225 struct alternate_object_database *alt_odb_list;
226 static struct alternate_object_database **alt_odb_tail;
228 static void read_info_alternates(const char * alternates, int depth);
231 * Prepare alternate object database registry.
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,
237 * whose contents is similar to that environment variable but can be
238 * LF separated. Its base points at a statically allocated buffer that
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.
245 static int link_alt_odb_entry(const char * entry, int len, const char * relative_base, int depth)
247 struct stat st;
248 const char *objdir = get_object_directory();
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;
254 int base_len = -1;
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;
263 ent = xmalloc(sizeof(*ent) + entlen);
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);
270 else
271 memcpy(ent->base, entry, pfxlen);
273 ent->name = ent->base + pfxlen + 1;
274 ent->base[pfxlen + 3] = '/';
275 ent->base[pfxlen] = ent->base[entlen-1] = 0;
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;
286 /* Prevent the common mistake of listing the same
287 * thing twice, or object directory itself.
289 for (alt = alt_odb_list; alt; alt = alt->next) {
290 if (!memcmp(ent->base, alt->base, pfxlen)) {
291 free(ent);
292 return -1;
295 if (!memcmp(ent->base, objdir, pfxlen)) {
296 free(ent);
297 return -1;
300 /* add the alternate entry */
301 *alt_odb_tail = ent;
302 alt_odb_tail = &(ent->next);
303 ent->next = NULL;
305 /* recursively add alternates */
306 read_info_alternates(ent->base, depth + 1);
308 ent->base[pfxlen] = '/';
310 return 0;
313 static void link_alt_odb_entries(const char *alt, const char *ep, int sep,
314 const char *relative_base, int depth)
316 const char *cp, *last;
318 if (depth > 5) {
319 error("%s: ignoring alternate object stores, nesting too deep.",
320 relative_base);
321 return;
324 last = alt;
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;
333 while (cp < ep && *cp != sep)
334 cp++;
335 if (last != cp) {
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);
344 while (cp < ep && *cp == sep)
345 cp++;
346 last = cp;
350 static void read_info_alternates(const char * relative_base, int depth)
352 char *map;
353 size_t mapsz;
354 struct stat st;
355 const char alt_file_name[] = "info/alternates";
356 /* Given that relative_base is no longer than PATH_MAX,
357 ensure that "path" has enough space to append "/", the
358 file name, "info/alternates", and a trailing NUL. */
359 char path[PATH_MAX + 1 + sizeof alt_file_name];
360 int fd;
362 sprintf(path, "%s/%s", relative_base, alt_file_name);
363 fd = open(path, O_RDONLY);
364 if (fd < 0)
365 return;
366 if (fstat(fd, &st) || (st.st_size == 0)) {
367 close(fd);
368 return;
370 mapsz = xsize_t(st.st_size);
371 map = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, fd, 0);
372 close(fd);
374 link_alt_odb_entries(map, map + mapsz, '\n', relative_base, depth);
376 munmap(map, mapsz);
379 void prepare_alt_odb(void)
381 const char *alt;
383 if (alt_odb_tail)
384 return;
386 alt = getenv(ALTERNATE_DB_ENVIRONMENT);
387 if (!alt) alt = "";
389 alt_odb_tail = &alt_odb_list;
390 link_alt_odb_entries(alt, alt + strlen(alt), ':', NULL, 0);
392 read_info_alternates(get_object_directory(), 0);
395 static char *find_sha1_file(const unsigned char *sha1, struct stat *st)
397 char *name = sha1_file_name(sha1);
398 struct alternate_object_database *alt;
400 if (!stat(name, st))
401 return name;
402 prepare_alt_odb();
403 for (alt = alt_odb_list; alt; alt = alt->next) {
404 name = alt->name;
405 fill_sha1_path(name, sha1);
406 if (!stat(alt->base, st))
407 return alt->base;
409 return NULL;
412 static unsigned int pack_used_ctr;
413 static unsigned int pack_mmap_calls;
414 static unsigned int peak_pack_open_windows;
415 static unsigned int pack_open_windows;
416 static size_t peak_pack_mapped;
417 static size_t pack_mapped;
418 struct packed_git *packed_git;
420 void pack_report(void)
422 fprintf(stderr,
423 "pack_report: getpagesize() = %10" SZ_FMT "\n"
424 "pack_report: core.packedGitWindowSize = %10" SZ_FMT "\n"
425 "pack_report: core.packedGitLimit = %10" SZ_FMT "\n",
426 (size_t) getpagesize(),
427 packed_git_window_size,
428 packed_git_limit);
429 fprintf(stderr,
430 "pack_report: pack_used_ctr = %10u\n"
431 "pack_report: pack_mmap_calls = %10u\n"
432 "pack_report: pack_open_windows = %10u / %10u\n"
433 "pack_report: pack_mapped = "
434 "%10" SZ_FMT " / %10" SZ_FMT "\n",
435 pack_used_ctr,
436 pack_mmap_calls,
437 pack_open_windows, peak_pack_open_windows,
438 pack_mapped, peak_pack_mapped);
441 static int check_packed_git_idx(const char *path, struct packed_git *p)
443 void *idx_map;
444 struct pack_idx_header *hdr;
445 size_t idx_size;
446 uint32_t version, nr, i, *index;
447 int fd = open(path, O_RDONLY);
448 struct stat st;
450 if (fd < 0)
451 return -1;
452 if (fstat(fd, &st)) {
453 close(fd);
454 return -1;
456 idx_size = xsize_t(st.st_size);
457 if (idx_size < 4 * 256 + 20 + 20) {
458 close(fd);
459 return error("index file %s is too small", path);
461 idx_map = xmmap(NULL, idx_size, PROT_READ, MAP_PRIVATE, fd, 0);
462 close(fd);
464 hdr = idx_map;
465 if (hdr->idx_signature == htonl(PACK_IDX_SIGNATURE)) {
466 version = ntohl(hdr->idx_version);
467 if (version < 2 || version > 3) {
468 munmap(idx_map, idx_size);
469 return error("index file %s is version %d"
470 " and is not supported by this binary"
471 " (try upgrading GIT to a newer version)",
472 path, version);
474 } else
475 version = 1;
477 nr = 0;
478 index = idx_map;
479 if (version > 1)
480 index += 2; /* skip index header */
481 for (i = 0; i < 256; i++) {
482 uint32_t n = ntohl(index[i]);
483 if (n < nr) {
484 munmap(idx_map, idx_size);
485 return error("non-monotonic index %s", path);
487 nr = n;
490 if (version == 1) {
492 * Total size:
493 * - 256 index entries 4 bytes each
494 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
495 * - 20-byte SHA1 of the packfile
496 * - 20-byte SHA1 file checksum
498 if (idx_size != 4*256 + nr * 24 + 20 + 20) {
499 munmap(idx_map, idx_size);
500 return error("wrong index v1 file size in %s", path);
502 } else if (version == 2) {
504 * Minimum size:
505 * - 8 bytes of header
506 * - 256 index entries 4 bytes each
507 * - 20-byte sha1 entry * nr
508 * - 4-byte crc entry * nr
509 * - 4-byte offset entry * nr
510 * - 20-byte SHA1 of the packfile
511 * - 20-byte SHA1 file checksum
512 * And after the 4-byte offset table might be a
513 * variable sized table containing 8-byte entries
514 * for offsets larger than 2^31.
516 unsigned long min_size = 8 + 4*256 + nr*(20 + 4 + 4) + 20 + 20;
517 unsigned long max_size = min_size;
518 if (nr)
519 max_size += (nr - 1)*8;
520 if (idx_size < min_size || idx_size > max_size) {
521 munmap(idx_map, idx_size);
522 return error("wrong index v2 file size in %s", path);
524 if (idx_size != min_size) {
525 /* make sure we can deal with large pack offsets */
526 off_t x = 0x7fffffffUL, y = 0xffffffffUL;
527 if (x > (x + 1) || y > (y + 1)) {
528 munmap(idx_map, idx_size);
529 return error("pack too large for current definition of off_t in %s", path);
532 } else if (version == 3) {
534 * Minimum size:
535 * - 8 bytes of header
536 * - 256 index entries 4 bytes each
537 * - 4-byte crc entry * nr
538 * - 4-byte offset entry * nr
539 * - 20-byte SHA1 of the packfile
540 * - 20-byte SHA1 file checksum
541 * And after the 4-byte offset table might be a
542 * variable sized table containing 8-byte entries
543 * for offsets larger than 2^31.
545 unsigned long min_size = 8 + 4*256 + nr*(4 + 4) + 20 + 20;
546 unsigned long max_size = min_size;
547 if (nr)
548 max_size += (nr - 1)*8;
549 if (idx_size < min_size || idx_size > max_size) {
550 munmap(idx_map, idx_size);
551 return error("wrong index v3 file size in %s", path);
553 if (idx_size != min_size) {
554 /* make sure we can deal with large pack offsets */
555 off_t x = 0x7fffffffUL, y = 0xffffffffUL;
556 if (x > (x + 1) || y > (y + 1)) {
557 munmap(idx_map, idx_size);
558 return error("pack too large for current definition of off_t in %s", path);
563 p->index_version = version;
564 p->index_data = idx_map;
565 p->index_size = idx_size;
566 p->num_objects = nr;
567 return 0;
570 int open_pack_index(struct packed_git *p)
572 char *idx_name;
573 int ret;
575 if (p->index_data)
576 return 0;
578 idx_name = xstrdup(p->pack_name);
579 strcpy(idx_name + strlen(idx_name) - strlen(".pack"), ".idx");
580 ret = check_packed_git_idx(idx_name, p);
581 free(idx_name);
582 return ret;
585 static void scan_windows(struct packed_git *p,
586 struct packed_git **lru_p,
587 struct pack_window **lru_w,
588 struct pack_window **lru_l)
590 struct pack_window *w, *w_l;
592 for (w_l = NULL, w = p->windows; w; w = w->next) {
593 if (!w->inuse_cnt) {
594 if (!*lru_w || w->last_used < (*lru_w)->last_used) {
595 *lru_p = p;
596 *lru_w = w;
597 *lru_l = w_l;
600 w_l = w;
604 static int unuse_one_window(struct packed_git *current, int keep_fd)
606 struct packed_git *p, *lru_p = NULL;
607 struct pack_window *lru_w = NULL, *lru_l = NULL;
609 if (current)
610 scan_windows(current, &lru_p, &lru_w, &lru_l);
611 for (p = packed_git; p; p = p->next)
612 scan_windows(p, &lru_p, &lru_w, &lru_l);
613 if (lru_p) {
614 munmap(lru_w->base, lru_w->len);
615 pack_mapped -= lru_w->len;
616 if (lru_l)
617 lru_l->next = lru_w->next;
618 else {
619 lru_p->windows = lru_w->next;
620 if (!lru_p->windows && lru_p->pack_fd != keep_fd) {
621 close(lru_p->pack_fd);
622 lru_p->pack_fd = -1;
625 free(lru_w);
626 pack_open_windows--;
627 return 1;
629 return 0;
632 void release_pack_memory(size_t need, int fd)
634 size_t cur = pack_mapped;
635 while (need >= (cur - pack_mapped) && unuse_one_window(NULL, fd))
636 ; /* nothing */
639 void unuse_pack(struct pack_window **w_cursor)
641 struct pack_window *w = *w_cursor;
642 if (w) {
643 w->inuse_cnt--;
644 *w_cursor = NULL;
649 * Do not call this directly as this leaks p->pack_fd on error return;
650 * call open_packed_git() instead.
652 static int open_packed_git_1(struct packed_git *p)
654 struct stat st;
655 struct pack_header hdr;
656 unsigned char sha1[20];
657 unsigned char *idx_sha1;
658 long fd_flag;
660 if (!p->index_data && open_pack_index(p))
661 return error("packfile %s index unavailable", p->pack_name);
663 p->pack_fd = open(p->pack_name, O_RDONLY);
664 if (p->pack_fd < 0 || fstat(p->pack_fd, &st))
665 return -1;
667 /* If we created the struct before we had the pack we lack size. */
668 if (!p->pack_size) {
669 if (!S_ISREG(st.st_mode))
670 return error("packfile %s not a regular file", p->pack_name);
671 p->pack_size = st.st_size;
672 } else if (p->pack_size != st.st_size)
673 return error("packfile %s size changed", p->pack_name);
675 /* We leave these file descriptors open with sliding mmap;
676 * there is no point keeping them open across exec(), though.
678 fd_flag = fcntl(p->pack_fd, F_GETFD, 0);
679 if (fd_flag < 0)
680 return error("cannot determine file descriptor flags");
681 fd_flag |= FD_CLOEXEC;
682 if (fcntl(p->pack_fd, F_SETFD, fd_flag) == -1)
683 return error("cannot set FD_CLOEXEC");
685 /* Verify we recognize this pack file format. */
686 if (read_in_full(p->pack_fd, &hdr, sizeof(hdr)) != sizeof(hdr))
687 return error("file %s is far too short to be a packfile", p->pack_name);
688 if (hdr.hdr_signature != htonl(PACK_SIGNATURE))
689 return error("file %s is not a GIT packfile", p->pack_name);
690 if (!pack_version_ok(hdr.hdr_version))
691 return error("packfile %s is version %u and not supported"
692 " (try upgrading GIT to a newer version)",
693 p->pack_name, ntohl(hdr.hdr_version));
695 /* Verify the pack matches its index. */
696 if (p->num_objects != ntohl(hdr.hdr_entries))
697 return error("packfile %s claims to have %u objects"
698 " while index indicates %u objects",
699 p->pack_name, ntohl(hdr.hdr_entries),
700 p->num_objects);
701 if (lseek(p->pack_fd, p->pack_size - sizeof(sha1), SEEK_SET) == -1)
702 return error("end of packfile %s is unavailable", p->pack_name);
703 if (read_in_full(p->pack_fd, sha1, sizeof(sha1)) != sizeof(sha1))
704 return error("packfile %s signature is unavailable", p->pack_name);
705 idx_sha1 = ((unsigned char *)p->index_data) + p->index_size - 40;
706 if (hashcmp(sha1, idx_sha1))
707 return error("packfile %s does not match index", p->pack_name);
708 return 0;
711 static int open_packed_git(struct packed_git *p)
713 if (!open_packed_git_1(p))
714 return 0;
715 if (p->pack_fd != -1) {
716 close(p->pack_fd);
717 p->pack_fd = -1;
719 return -1;
722 static void open_pack_sha1_dict(struct packed_git *p)
724 const size_t offset = sizeof(struct pack_header);
726 if (p->pack_fd < 0 && open_packed_git(p))
727 die("Could not open pack file");
729 p->sha1_dict_base = xmmap(NULL, offset + p->num_objects * 20,
730 PROT_READ, MAP_PRIVATE, p->pack_fd, 0);
731 p->sha1_dict = p->sha1_dict_base + offset;
733 close(p->pack_fd);
734 p->pack_fd = -1;
737 static void close_pack_sha1_dict(struct packed_git *p)
739 munmap(p->sha1_dict_base, sizeof(struct pack_header) +
740 p->num_objects * 20);
743 static int in_window(struct pack_window *win, off_t offset)
745 /* We must promise at least 20 bytes (one hash) after the
746 * offset is available from this window, otherwise the offset
747 * is not actually in this window and a different window (which
748 * has that one hash excess) must be used. This is to support
749 * the object header and delta base parsing routines below.
751 off_t win_off = win->offset;
752 return win_off <= offset
753 && (offset + 20) <= (win_off + win->len);
756 unsigned char* use_pack(struct packed_git *p,
757 struct pack_window **w_cursor,
758 off_t offset,
759 unsigned int *left)
761 struct pack_window *win = *w_cursor;
763 if (p->pack_fd == -1 && open_packed_git(p))
764 die("packfile %s cannot be accessed", p->pack_name);
766 /* Since packfiles end in a hash of their content and its
767 * pointless to ask for an offset into the middle of that
768 * hash, and the in_window function above wouldn't match
769 * don't allow an offset too close to the end of the file.
771 if (offset > (p->pack_size - 20))
772 die("offset beyond end of packfile (truncated pack?)");
774 if (!win || !in_window(win, offset)) {
775 if (win)
776 win->inuse_cnt--;
777 for (win = p->windows; win; win = win->next) {
778 if (in_window(win, offset))
779 break;
781 if (!win) {
782 size_t window_align = packed_git_window_size / 2;
783 off_t len;
784 win = xcalloc(1, sizeof(*win));
785 win->offset = (offset / window_align) * window_align;
786 len = p->pack_size - win->offset;
787 if (len > packed_git_window_size)
788 len = packed_git_window_size;
789 win->len = (size_t)len;
790 pack_mapped += win->len;
791 while (packed_git_limit < pack_mapped
792 && unuse_one_window(p, p->pack_fd))
793 ; /* nothing */
794 win->base = xmmap(NULL, win->len,
795 PROT_READ, MAP_PRIVATE,
796 p->pack_fd, win->offset);
797 if (win->base == MAP_FAILED)
798 die("packfile %s cannot be mapped: %s",
799 p->pack_name,
800 strerror(errno));
801 pack_mmap_calls++;
802 pack_open_windows++;
803 if (pack_mapped > peak_pack_mapped)
804 peak_pack_mapped = pack_mapped;
805 if (pack_open_windows > peak_pack_open_windows)
806 peak_pack_open_windows = pack_open_windows;
807 win->next = p->windows;
808 p->windows = win;
811 if (win != *w_cursor) {
812 win->last_used = pack_used_ctr++;
813 win->inuse_cnt++;
814 *w_cursor = win;
816 offset -= win->offset;
817 if (left)
818 *left = win->len - xsize_t(offset);
819 return win->base + offset;
822 struct packed_git *add_packed_git(const char *path, int path_len, int local)
824 struct stat st;
825 struct packed_git *p = xmalloc(sizeof(*p) + path_len + 2);
828 * Make sure a corresponding .pack file exists and that
829 * the index looks sane.
831 path_len -= strlen(".idx");
832 if (path_len < 1)
833 return NULL;
834 memcpy(p->pack_name, path, path_len);
835 strcpy(p->pack_name + path_len, ".pack");
836 if (stat(p->pack_name, &st) || !S_ISREG(st.st_mode)) {
837 free(p);
838 return NULL;
841 /* ok, it looks sane as far as we can check without
842 * actually mapping the pack file.
844 p->index_version = 0;
845 p->index_data = NULL;
846 p->index_size = 0;
847 p->num_objects = 0;
848 p->pack_size = st.st_size;
849 p->next = NULL;
850 p->windows = NULL;
851 p->pack_fd = -1;
852 p->pack_local = local;
853 p->mtime = st.st_mtime;
854 if (path_len < 40 || get_sha1_hex(path + path_len - 40, p->sha1))
855 hashclr(p->sha1);
856 return p;
859 struct packed_git *parse_pack_index(unsigned char *sha1)
861 char *path = sha1_pack_index_name(sha1);
862 return parse_pack_index_file(sha1, path);
865 struct packed_git *parse_pack_index_file(const unsigned char *sha1,
866 const char *idx_path)
868 const char *path = sha1_pack_name(sha1);
869 struct packed_git *p = xmalloc(sizeof(*p) + strlen(path) + 2);
871 if (check_packed_git_idx(idx_path, p)) {
872 free(p);
873 return NULL;
876 strcpy(p->pack_name, path);
877 p->pack_size = 0;
878 p->next = NULL;
879 p->windows = NULL;
880 p->pack_fd = -1;
881 hashcpy(p->sha1, sha1);
882 return p;
885 void install_packed_git(struct packed_git *pack)
887 pack->next = packed_git;
888 packed_git = pack;
891 static void prepare_packed_git_one(char *objdir, int local)
893 /* Ensure that this buffer is large enough so that we can
894 append "/pack/" without clobbering the stack even if
895 strlen(objdir) were PATH_MAX. */
896 char path[PATH_MAX + 1 + 4 + 1 + 1];
897 int len;
898 DIR *dir;
899 struct dirent *de;
901 sprintf(path, "%s/pack", objdir);
902 len = strlen(path);
903 dir = opendir(path);
904 if (!dir) {
905 if (errno != ENOENT)
906 error("unable to open object pack directory: %s: %s",
907 path, strerror(errno));
908 return;
910 path[len++] = '/';
911 while ((de = readdir(dir)) != NULL) {
912 int namelen = strlen(de->d_name);
913 struct packed_git *p;
915 if (!has_extension(de->d_name, ".idx"))
916 continue;
918 if (len + namelen + 1 > sizeof(path))
919 continue;
921 /* Don't reopen a pack we already have. */
922 strcpy(path + len, de->d_name);
923 for (p = packed_git; p; p = p->next) {
924 if (!memcmp(path, p->pack_name, len + namelen - 4))
925 break;
927 if (p)
928 continue;
929 /* See if it really is a valid .idx file with corresponding
930 * .pack file that we can map.
932 p = add_packed_git(path, len + namelen, local);
933 if (!p)
934 continue;
935 install_packed_git(p);
937 closedir(dir);
940 static int sort_pack(const void *a_, const void *b_)
942 struct packed_git *a = *((struct packed_git **)a_);
943 struct packed_git *b = *((struct packed_git **)b_);
944 int st;
947 * Local packs tend to contain objects specific to our
948 * variant of the project than remote ones. In addition,
949 * remote ones could be on a network mounted filesystem.
950 * Favor local ones for these reasons.
952 st = a->pack_local - b->pack_local;
953 if (st)
954 return -st;
957 * Younger packs tend to contain more recent objects,
958 * and more recent objects tend to get accessed more
959 * often.
961 if (a->mtime < b->mtime)
962 return 1;
963 else if (a->mtime == b->mtime)
964 return 0;
965 return -1;
968 static void rearrange_packed_git(void)
970 struct packed_git **ary, *p;
971 int i, n;
973 for (n = 0, p = packed_git; p; p = p->next)
974 n++;
975 if (n < 2)
976 return;
978 /* prepare an array of packed_git for easier sorting */
979 ary = xcalloc(n, sizeof(struct packed_git *));
980 for (n = 0, p = packed_git; p; p = p->next)
981 ary[n++] = p;
983 qsort(ary, n, sizeof(struct packed_git *), sort_pack);
985 /* link them back again */
986 for (i = 0; i < n - 1; i++)
987 ary[i]->next = ary[i + 1];
988 ary[n - 1]->next = NULL;
989 packed_git = ary[0];
991 free(ary);
994 static int prepare_packed_git_run_once = 0;
995 void prepare_packed_git(void)
997 struct alternate_object_database *alt;
999 if (prepare_packed_git_run_once)
1000 return;
1001 prepare_packed_git_one(get_object_directory(), 1);
1002 prepare_alt_odb();
1003 for (alt = alt_odb_list; alt; alt = alt->next) {
1004 alt->name[-1] = 0;
1005 prepare_packed_git_one(alt->base, 0);
1006 alt->name[-1] = '/';
1008 rearrange_packed_git();
1009 prepare_packed_git_run_once = 1;
1012 void reprepare_packed_git(void)
1014 prepare_packed_git_run_once = 0;
1015 prepare_packed_git();
1018 int check_sha1_signature(const unsigned char *sha1, void *map, unsigned long size, const char *type)
1020 unsigned char real_sha1[20];
1021 hash_sha1_file(map, size, type, real_sha1);
1022 return hashcmp(sha1, real_sha1) ? -1 : 0;
1025 static void *map_sha1_file(const unsigned char *sha1, unsigned long *size)
1027 struct stat st;
1028 void *map;
1029 int fd;
1030 char *filename = find_sha1_file(sha1, &st);
1032 if (!filename) {
1033 return NULL;
1036 fd = open(filename, O_RDONLY | sha1_file_open_flag);
1037 if (fd < 0) {
1038 /* See if it works without O_NOATIME */
1039 switch (sha1_file_open_flag) {
1040 default:
1041 fd = open(filename, O_RDONLY);
1042 if (fd >= 0)
1043 break;
1044 /* Fallthrough */
1045 case 0:
1046 return NULL;
1049 /* If it failed once, it will probably fail again.
1050 * Stop using O_NOATIME
1052 sha1_file_open_flag = 0;
1054 *size = xsize_t(st.st_size);
1055 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
1056 close(fd);
1057 return map;
1060 static int legacy_loose_object(unsigned char *map)
1062 unsigned int word;
1065 * Is it a zlib-compressed buffer? If so, the first byte
1066 * must be 0x78 (15-bit window size, deflated), and the
1067 * first 16-bit word is evenly divisible by 31
1069 word = (map[0] << 8) + map[1];
1070 if (map[0] == 0x78 && !(word % 31))
1071 return 1;
1072 else
1073 return 0;
1076 unsigned long unpack_object_header_gently(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep)
1078 unsigned shift;
1079 unsigned char c;
1080 unsigned long size;
1081 unsigned long used = 0;
1083 c = buf[used++];
1084 *type = (c >> 4) & 7;
1085 size = c & 15;
1086 shift = 4;
1087 while (c & 0x80) {
1088 if (len <= used)
1089 return 0;
1090 if (sizeof(long) * 8 <= shift)
1091 return 0;
1092 c = buf[used++];
1093 size += (c & 0x7f) << shift;
1094 shift += 7;
1096 *sizep = size;
1097 return used;
1100 static int unpack_sha1_header(z_stream *stream, unsigned char *map, unsigned long mapsize, void *buffer, unsigned long bufsiz)
1102 unsigned long size, used;
1103 static const char valid_loose_object_type[8] = {
1104 0, /* OBJ_EXT */
1105 1, 1, 1, 1, /* "commit", "tree", "blob", "tag" */
1106 0, /* "delta" and others are invalid in a loose object */
1108 enum object_type type;
1110 /* Get the data stream */
1111 memset(stream, 0, sizeof(*stream));
1112 stream->next_in = map;
1113 stream->avail_in = mapsize;
1114 stream->next_out = buffer;
1115 stream->avail_out = bufsiz;
1117 if (legacy_loose_object(map)) {
1118 inflateInit(stream);
1119 return inflate(stream, 0);
1124 * There used to be a second loose object header format which
1125 * was meant to mimic the in-pack format, allowing for direct
1126 * copy of the object data. This format turned up not to be
1127 * really worth it and we don't write it any longer. But we
1128 * can still read it.
1130 used = unpack_object_header_gently(map, mapsize, &type, &size);
1131 if (!used || !valid_loose_object_type[type])
1132 return -1;
1133 map += used;
1134 mapsize -= used;
1136 /* Set up the stream for the rest.. */
1137 stream->next_in = map;
1138 stream->avail_in = mapsize;
1139 inflateInit(stream);
1141 /* And generate the fake traditional header */
1142 stream->total_out = 1 + snprintf(buffer, bufsiz, "%s %lu",
1143 typename(type), size);
1144 return 0;
1147 static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
1149 int bytes = strlen(buffer) + 1;
1150 unsigned char *buf = xmalloc(1+size);
1151 unsigned long n;
1152 int status = Z_OK;
1154 n = stream->total_out - bytes;
1155 if (n > size)
1156 n = size;
1157 memcpy(buf, (char *) buffer + bytes, n);
1158 bytes = n;
1159 if (bytes <= size) {
1161 * The above condition must be (bytes <= size), not
1162 * (bytes < size). In other words, even though we
1163 * expect no more output and set avail_out to zer0,
1164 * the input zlib stream may have bytes that express
1165 * "this concludes the stream", and we *do* want to
1166 * eat that input.
1168 * Otherwise we would not be able to test that we
1169 * consumed all the input to reach the expected size;
1170 * we also want to check that zlib tells us that all
1171 * went well with status == Z_STREAM_END at the end.
1173 stream->next_out = buf + bytes;
1174 stream->avail_out = size - bytes;
1175 while (status == Z_OK)
1176 status = inflate(stream, Z_FINISH);
1178 buf[size] = 0;
1179 if (status == Z_STREAM_END && !stream->avail_in) {
1180 inflateEnd(stream);
1181 return buf;
1184 if (status < 0)
1185 error("corrupt loose object '%s'", sha1_to_hex(sha1));
1186 else if (stream->avail_in)
1187 error("garbage at end of loose object '%s'",
1188 sha1_to_hex(sha1));
1189 free(buf);
1190 return NULL;
1194 * We used to just use "sscanf()", but that's actually way
1195 * too permissive for what we want to check. So do an anal
1196 * object header parse by hand.
1198 static int parse_sha1_header(const char *hdr, unsigned long *sizep)
1200 char type[10];
1201 int i;
1202 unsigned long size;
1205 * The type can be at most ten bytes (including the
1206 * terminating '\0' that we add), and is followed by
1207 * a space.
1209 i = 0;
1210 for (;;) {
1211 char c = *hdr++;
1212 if (c == ' ')
1213 break;
1214 type[i++] = c;
1215 if (i >= sizeof(type))
1216 return -1;
1218 type[i] = 0;
1221 * The length must follow immediately, and be in canonical
1222 * decimal format (ie "010" is not valid).
1224 size = *hdr++ - '0';
1225 if (size > 9)
1226 return -1;
1227 if (size) {
1228 for (;;) {
1229 unsigned long c = *hdr - '0';
1230 if (c > 9)
1231 break;
1232 hdr++;
1233 size = size * 10 + c;
1236 *sizep = size;
1239 * The length must be followed by a zero byte
1241 return *hdr ? -1 : type_from_string(type);
1244 static void *unpack_sha1_file(void *map, unsigned long mapsize, enum object_type *type, unsigned long *size, const unsigned char *sha1)
1246 int ret;
1247 z_stream stream;
1248 char hdr[8192];
1250 ret = unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr));
1251 if (ret < Z_OK || (*type = parse_sha1_header(hdr, size)) < 0)
1252 return NULL;
1254 return unpack_sha1_rest(&stream, hdr, *size, sha1);
1257 unsigned long get_size_from_delta(struct packed_git *p,
1258 struct pack_window **w_curs,
1259 off_t curpos)
1261 const unsigned char *data;
1262 unsigned char delta_head[20], *in;
1263 z_stream stream;
1264 int st;
1266 memset(&stream, 0, sizeof(stream));
1267 stream.next_out = delta_head;
1268 stream.avail_out = sizeof(delta_head);
1270 inflateInit(&stream);
1271 do {
1272 in = use_pack(p, w_curs, curpos, &stream.avail_in);
1273 stream.next_in = in;
1274 st = inflate(&stream, Z_FINISH);
1275 curpos += stream.next_in - in;
1276 } while ((st == Z_OK || st == Z_BUF_ERROR) &&
1277 stream.total_out < sizeof(delta_head));
1278 inflateEnd(&stream);
1279 if ((st != Z_STREAM_END) && stream.total_out != sizeof(delta_head))
1280 die("delta data unpack-initial failed");
1282 /* Examine the initial part of the delta to figure out
1283 * the result size.
1285 data = delta_head;
1287 /* ignore base size */
1288 get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1290 /* Read the result size */
1291 return get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1294 static off_t get_delta_base(struct packed_git *p,
1295 struct pack_window **w_curs,
1296 off_t *curpos,
1297 enum object_type type,
1298 off_t delta_obj_offset)
1300 unsigned char *base_info = use_pack(p, w_curs, *curpos, NULL);
1301 off_t base_offset;
1303 /* use_pack() assured us we have [base_info, base_info + 20)
1304 * as a range that we can look at without walking off the
1305 * end of the mapped window. Its actually the hash size
1306 * that is assured. An OFS_DELTA longer than the hash size
1307 * is stupid, as then a REF_DELTA would be smaller to store.
1309 if (type == OBJ_OFS_DELTA) {
1310 unsigned used = 0;
1311 unsigned char c = base_info[used++];
1312 base_offset = c & 127;
1313 while (c & 128) {
1314 base_offset += 1;
1315 if (!base_offset || MSB(base_offset, 7))
1316 die("offset value overflow for delta base object");
1317 c = base_info[used++];
1318 base_offset = (base_offset << 7) + (c & 127);
1320 base_offset = delta_obj_offset - base_offset;
1321 if (base_offset >= delta_obj_offset)
1322 die("delta base offset out of bound");
1323 *curpos += used;
1324 } else if (type == OBJ_REF_DELTA) {
1325 /* The base entry _must_ be in the same pack */
1326 base_offset = find_pack_entry_one(base_info, p);
1327 if (!base_offset)
1328 die("failed to find delta-pack base object %s",
1329 sha1_to_hex(base_info));
1330 *curpos += 20;
1331 } else
1332 die("I am totally screwed");
1333 return base_offset;
1336 /* forward declaration for a mutually recursive function */
1337 static int packed_object_info(struct packed_git *p, off_t offset,
1338 unsigned long *sizep);
1340 static int packed_delta_info(struct packed_git *p,
1341 struct pack_window **w_curs,
1342 off_t curpos,
1343 enum object_type type,
1344 off_t obj_offset,
1345 unsigned long *sizep)
1347 off_t base_offset;
1349 base_offset = get_delta_base(p, w_curs, &curpos, type, obj_offset);
1350 type = packed_object_info(p, base_offset, NULL);
1352 /* We choose to only get the type of the base object and
1353 * ignore potentially corrupt pack file that expects the delta
1354 * based on a base with a wrong size. This saves tons of
1355 * inflate() calls.
1357 if (sizep)
1358 *sizep = get_size_from_delta(p, w_curs, curpos);
1360 return type;
1363 static int unpack_object_header(struct packed_git *p,
1364 struct pack_window **w_curs,
1365 off_t *curpos,
1366 unsigned long *sizep)
1368 unsigned char *base;
1369 unsigned int left;
1370 unsigned long used;
1371 enum object_type type;
1373 /* use_pack() assures us we have [base, base + 20) available
1374 * as a range that we can look at at. (Its actually the hash
1375 * size that is assured.) With our object header encoding
1376 * the maximum deflated object size is 2^137, which is just
1377 * insane, so we know won't exceed what we have been given.
1379 base = use_pack(p, w_curs, *curpos, &left);
1380 used = unpack_object_header_gently(base, left, &type, sizep);
1381 if (!used)
1382 die("object offset outside of pack file");
1383 *curpos += used;
1385 return type;
1388 const char *packed_object_info_detail(struct packed_git *p,
1389 off_t obj_offset,
1390 unsigned long *size,
1391 unsigned long *store_size,
1392 unsigned int *delta_chain_length,
1393 unsigned char *base_sha1)
1395 struct pack_window *w_curs = NULL;
1396 off_t curpos;
1397 unsigned long dummy;
1398 unsigned char *next_sha1;
1399 enum object_type type;
1401 *delta_chain_length = 0;
1402 curpos = obj_offset;
1403 type = unpack_object_header(p, &w_curs, &curpos, size);
1405 for (;;) {
1406 switch (type) {
1407 default:
1408 die("pack %s contains unknown object type %d",
1409 p->pack_name, type);
1410 case OBJ_COMMIT:
1411 case OBJ_TREE:
1412 case OBJ_BLOB:
1413 case OBJ_TAG:
1414 *store_size = 0; /* notyet */
1415 unuse_pack(&w_curs);
1416 return typename(type);
1417 case OBJ_OFS_DELTA:
1418 obj_offset = get_delta_base(p, &w_curs, &curpos, type, obj_offset);
1419 if (*delta_chain_length == 0) {
1420 /* TODO: find base_sha1 as pointed by curpos */
1421 hashclr(base_sha1);
1423 break;
1424 case OBJ_REF_DELTA:
1425 next_sha1 = use_pack(p, &w_curs, curpos, NULL);
1426 if (*delta_chain_length == 0)
1427 hashcpy(base_sha1, next_sha1);
1428 obj_offset = find_pack_entry_one(next_sha1, p);
1429 break;
1431 (*delta_chain_length)++;
1432 curpos = obj_offset;
1433 type = unpack_object_header(p, &w_curs, &curpos, &dummy);
1437 static int packed_object_info(struct packed_git *p, off_t obj_offset,
1438 unsigned long *sizep)
1440 struct pack_window *w_curs = NULL;
1441 unsigned long size;
1442 off_t curpos = obj_offset;
1443 enum object_type type;
1445 type = unpack_object_header(p, &w_curs, &curpos, &size);
1447 switch (type) {
1448 case OBJ_OFS_DELTA:
1449 case OBJ_REF_DELTA:
1450 type = packed_delta_info(p, &w_curs, curpos,
1451 type, obj_offset, sizep);
1452 break;
1453 case OBJ_COMMIT:
1454 case OBJ_TREE:
1455 case OBJ_BLOB:
1456 case OBJ_TAG:
1457 if (sizep)
1458 *sizep = size;
1459 break;
1460 default:
1461 die("pack %s contains unknown object type %d",
1462 p->pack_name, type);
1464 unuse_pack(&w_curs);
1465 return type;
1468 static void *unpack_compressed_entry(struct packed_git *p,
1469 struct pack_window **w_curs,
1470 off_t curpos,
1471 unsigned long size)
1473 int st;
1474 z_stream stream;
1475 unsigned char *buffer, *in;
1477 buffer = xmalloc(size + 1);
1478 buffer[size] = 0;
1479 memset(&stream, 0, sizeof(stream));
1480 stream.next_out = buffer;
1481 stream.avail_out = size;
1483 inflateInit(&stream);
1484 do {
1485 in = use_pack(p, w_curs, curpos, &stream.avail_in);
1486 stream.next_in = in;
1487 st = inflate(&stream, Z_FINISH);
1488 curpos += stream.next_in - in;
1489 } while (st == Z_OK || st == Z_BUF_ERROR);
1490 inflateEnd(&stream);
1491 if ((st != Z_STREAM_END) || stream.total_out != size) {
1492 free(buffer);
1493 return NULL;
1496 return buffer;
1499 #define MAX_DELTA_CACHE (256)
1501 static size_t delta_base_cached;
1503 static struct delta_base_cache_lru_list {
1504 struct delta_base_cache_lru_list *prev;
1505 struct delta_base_cache_lru_list *next;
1506 } delta_base_cache_lru = { &delta_base_cache_lru, &delta_base_cache_lru };
1508 static struct delta_base_cache_entry {
1509 struct delta_base_cache_lru_list lru;
1510 void *data;
1511 struct packed_git *p;
1512 off_t base_offset;
1513 unsigned long size;
1514 enum object_type type;
1515 } delta_base_cache[MAX_DELTA_CACHE];
1517 static unsigned long pack_entry_hash(struct packed_git *p, off_t base_offset)
1519 unsigned long hash;
1521 hash = (unsigned long)p + (unsigned long)base_offset;
1522 hash += (hash >> 8) + (hash >> 16);
1523 return hash % MAX_DELTA_CACHE;
1526 static void *cache_or_unpack_entry(struct packed_git *p, off_t base_offset,
1527 unsigned long *base_size, enum object_type *type, int keep_cache)
1529 void *ret;
1530 unsigned long hash = pack_entry_hash(p, base_offset);
1531 struct delta_base_cache_entry *ent = delta_base_cache + hash;
1533 ret = ent->data;
1534 if (ret && ent->p == p && ent->base_offset == base_offset)
1535 goto found_cache_entry;
1536 return unpack_entry(p, base_offset, type, base_size);
1538 found_cache_entry:
1539 if (!keep_cache) {
1540 ent->data = NULL;
1541 ent->lru.next->prev = ent->lru.prev;
1542 ent->lru.prev->next = ent->lru.next;
1543 delta_base_cached -= ent->size;
1545 else {
1546 ret = xmalloc(ent->size + 1);
1547 memcpy(ret, ent->data, ent->size);
1548 ((char *)ret)[ent->size] = 0;
1550 *type = ent->type;
1551 *base_size = ent->size;
1552 return ret;
1555 static inline void release_delta_base_cache(struct delta_base_cache_entry *ent)
1557 if (ent->data) {
1558 free(ent->data);
1559 ent->data = NULL;
1560 ent->lru.next->prev = ent->lru.prev;
1561 ent->lru.prev->next = ent->lru.next;
1562 delta_base_cached -= ent->size;
1566 static void add_delta_base_cache(struct packed_git *p, off_t base_offset,
1567 void *base, unsigned long base_size, enum object_type type)
1569 unsigned long hash = pack_entry_hash(p, base_offset);
1570 struct delta_base_cache_entry *ent = delta_base_cache + hash;
1571 struct delta_base_cache_lru_list *lru;
1573 release_delta_base_cache(ent);
1574 delta_base_cached += base_size;
1576 for (lru = delta_base_cache_lru.next;
1577 delta_base_cached > delta_base_cache_limit
1578 && lru != &delta_base_cache_lru;
1579 lru = lru->next) {
1580 struct delta_base_cache_entry *f = (void *)lru;
1581 if (f->type == OBJ_BLOB)
1582 release_delta_base_cache(f);
1584 for (lru = delta_base_cache_lru.next;
1585 delta_base_cached > delta_base_cache_limit
1586 && lru != &delta_base_cache_lru;
1587 lru = lru->next) {
1588 struct delta_base_cache_entry *f = (void *)lru;
1589 release_delta_base_cache(f);
1592 ent->p = p;
1593 ent->base_offset = base_offset;
1594 ent->type = type;
1595 ent->data = base;
1596 ent->size = base_size;
1597 ent->lru.next = &delta_base_cache_lru;
1598 ent->lru.prev = delta_base_cache_lru.prev;
1599 delta_base_cache_lru.prev->next = &ent->lru;
1600 delta_base_cache_lru.prev = &ent->lru;
1603 static void *unpack_delta_entry(struct packed_git *p,
1604 struct pack_window **w_curs,
1605 off_t curpos,
1606 unsigned long delta_size,
1607 off_t obj_offset,
1608 enum object_type *type,
1609 unsigned long *sizep)
1611 void *delta_data, *result, *base;
1612 unsigned long base_size;
1613 off_t base_offset;
1615 base_offset = get_delta_base(p, w_curs, &curpos, *type, obj_offset);
1616 base = cache_or_unpack_entry(p, base_offset, &base_size, type, 0);
1617 if (!base)
1618 die("failed to read delta base object"
1619 " at %"PRIuMAX" from %s",
1620 (uintmax_t)base_offset, p->pack_name);
1622 delta_data = unpack_compressed_entry(p, w_curs, curpos, delta_size);
1623 if (!delta_data)
1624 die("failed to unpack compressed delta"
1625 " at %"PRIuMAX" from %s",
1626 (uintmax_t)curpos, p->pack_name);
1627 result = patch_delta(base, base_size,
1628 delta_data, delta_size,
1629 sizep);
1630 if (!result)
1631 die("failed to apply delta");
1632 free(delta_data);
1633 add_delta_base_cache(p, base_offset, base, base_size, *type);
1634 return result;
1637 void *unpack_entry(struct packed_git *p, off_t obj_offset,
1638 enum object_type *type, unsigned long *sizep)
1640 struct pack_window *w_curs = NULL;
1641 off_t curpos = obj_offset;
1642 void *data;
1644 *type = unpack_object_header(p, &w_curs, &curpos, sizep);
1645 switch (*type) {
1646 case OBJ_OFS_DELTA:
1647 case OBJ_REF_DELTA:
1648 data = unpack_delta_entry(p, &w_curs, curpos, *sizep,
1649 obj_offset, type, sizep);
1650 break;
1651 case OBJ_COMMIT:
1652 case OBJ_TREE:
1653 case OBJ_BLOB:
1654 case OBJ_TAG:
1655 data = unpack_compressed_entry(p, &w_curs, curpos, *sizep);
1656 break;
1657 default:
1658 die("unknown object type %i in %s", *type, p->pack_name);
1660 unuse_pack(&w_curs);
1661 return data;
1664 const unsigned char *nth_packed_object_sha1(struct packed_git *p,
1665 uint32_t n)
1667 const unsigned char *index = p->index_data;
1668 if (!index) {
1669 if (open_pack_index(p))
1670 return NULL;
1671 index = p->index_data;
1673 if (n >= p->num_objects)
1674 return NULL;
1675 index += 4 * 256;
1676 if (p->index_version == 1) {
1677 return index + 24 * n + 4;
1678 } else {
1679 index += 8;
1680 return index + 20 * n;
1684 static off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
1686 const unsigned char *index = p->index_data;
1687 index += 4 * 256;
1688 if (p->index_version == 1) {
1689 return ntohl(*((uint32_t *)(index + 24 * n)));
1690 } else if (p->index_version == 2) {
1691 uint32_t off;
1692 index += 8 + p->num_objects * (20 + 4);
1693 off = ntohl(*((uint32_t *)(index + 4 * n)));
1694 if (!(off & 0x80000000))
1695 return off;
1696 index += p->num_objects * 4 + (off & 0x7fffffff) * 8;
1697 return (((uint64_t)ntohl(*((uint32_t *)(index + 0)))) << 32) |
1698 ntohl(*((uint32_t *)(index + 4)));
1699 } else {
1700 uint32_t off;
1701 index += 8 + p->num_objects * 4;
1702 off = ntohl(*((uint32_t *)(index + 4 * n)));
1703 if (!(off & 0x80000000))
1704 return off;
1705 index += p->num_objects * 4 + (off & 0x7fffffff) * 8;
1706 return (((uint64_t)ntohl(*((uint32_t *)(index + 0)))) << 32) |
1707 ntohl(*((uint32_t *)(index + 4)));
1711 off_t find_pack_entry_one(const unsigned char *sha1,
1712 struct packed_git *p)
1714 const uint32_t *level1_ofs = p->index_data;
1715 const unsigned char *index = p->index_data;
1716 unsigned hi, lo;
1718 if (!index) {
1719 if (open_pack_index(p))
1720 return 0;
1721 level1_ofs = p->index_data;
1722 index = p->index_data;
1724 if (p->index_version > 1) {
1725 level1_ofs += 2;
1726 index += 8;
1729 if (p->index_version > 2) {
1730 open_pack_sha1_dict(p);
1731 index = p->sha1_dict;
1732 } else
1733 index += 4 * 256;
1735 hi = ntohl(level1_ofs[*sha1]);
1736 lo = ((*sha1 == 0x0) ? 0 : ntohl(level1_ofs[*sha1 - 1]));
1738 do {
1739 unsigned mi = (lo + hi) / 2;
1740 unsigned x = (p->index_version > 1) ? (mi * 20) : (mi * 24 + 4);
1741 int cmp = hashcmp(index + x, sha1);
1742 if (!cmp) {
1743 if (p->index_version > 2)
1744 close_pack_sha1_dict(p);
1745 return nth_packed_object_offset(p, mi);
1747 if (cmp > 0)
1748 hi = mi;
1749 else
1750 lo = mi+1;
1751 } while (lo < hi);
1753 if (p->index_version > 2)
1754 close_pack_sha1_dict(p);
1755 return 0;
1758 static int matches_pack_name(struct packed_git *p, const char *ig)
1760 const char *last_c, *c;
1762 if (!strcmp(p->pack_name, ig))
1763 return 0;
1765 for (c = p->pack_name, last_c = c; *c;)
1766 if (*c == '/')
1767 last_c = ++c;
1768 else
1769 ++c;
1770 if (!strcmp(last_c, ig))
1771 return 0;
1773 return 1;
1776 static int find_pack_entry(const unsigned char *sha1, struct pack_entry *e, const char **ignore_packed)
1778 static struct packed_git *last_found = (void *)1;
1779 struct packed_git *p;
1780 off_t offset;
1782 prepare_packed_git();
1783 if (!packed_git)
1784 return 0;
1785 p = (last_found == (void *)1) ? packed_git : last_found;
1787 do {
1788 if (ignore_packed) {
1789 const char **ig;
1790 for (ig = ignore_packed; *ig; ig++)
1791 if (!matches_pack_name(p, *ig))
1792 break;
1793 if (*ig)
1794 goto next;
1797 offset = find_pack_entry_one(sha1, p);
1798 if (offset) {
1800 * We are about to tell the caller where they can
1801 * locate the requested object. We better make
1802 * sure the packfile is still here and can be
1803 * accessed before supplying that answer, as
1804 * it may have been deleted since the index
1805 * was loaded!
1807 if (p->pack_fd == -1 && open_packed_git(p)) {
1808 error("packfile %s cannot be accessed", p->pack_name);
1809 goto next;
1811 e->offset = offset;
1812 e->p = p;
1813 hashcpy(e->sha1, sha1);
1814 last_found = p;
1815 return 1;
1818 next:
1819 if (p == last_found)
1820 p = packed_git;
1821 else
1822 p = p->next;
1823 if (p == last_found)
1824 p = p->next;
1825 } while (p);
1826 return 0;
1829 struct packed_git *find_sha1_pack(const unsigned char *sha1,
1830 struct packed_git *packs)
1832 struct packed_git *p;
1834 for (p = packs; p; p = p->next) {
1835 if (find_pack_entry_one(sha1, p))
1836 return p;
1838 return NULL;
1842 static int sha1_loose_object_info(const unsigned char *sha1, unsigned long *sizep)
1844 int status;
1845 unsigned long mapsize, size;
1846 void *map;
1847 z_stream stream;
1848 char hdr[32];
1850 map = map_sha1_file(sha1, &mapsize);
1851 if (!map)
1852 return error("unable to find %s", sha1_to_hex(sha1));
1853 if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
1854 status = error("unable to unpack %s header",
1855 sha1_to_hex(sha1));
1856 else if ((status = parse_sha1_header(hdr, &size)) < 0)
1857 status = error("unable to parse %s header", sha1_to_hex(sha1));
1858 else if (sizep)
1859 *sizep = size;
1860 inflateEnd(&stream);
1861 munmap(map, mapsize);
1862 return status;
1865 int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
1867 struct pack_entry e;
1869 if (!find_pack_entry(sha1, &e, NULL)) {
1870 reprepare_packed_git();
1871 if (!find_pack_entry(sha1, &e, NULL))
1872 return sha1_loose_object_info(sha1, sizep);
1874 return packed_object_info(e.p, e.offset, sizep);
1877 static void *read_packed_sha1(const unsigned char *sha1,
1878 enum object_type *type, unsigned long *size)
1880 struct pack_entry e;
1882 if (!find_pack_entry(sha1, &e, NULL))
1883 return NULL;
1884 else
1885 return cache_or_unpack_entry(e.p, e.offset, size, type, 1);
1889 * This is meant to hold a *small* number of objects that you would
1890 * want read_sha1_file() to be able to return, but yet you do not want
1891 * to write them into the object store (e.g. a browse-only
1892 * application).
1894 static struct cached_object {
1895 unsigned char sha1[20];
1896 enum object_type type;
1897 void *buf;
1898 unsigned long size;
1899 } *cached_objects;
1900 static int cached_object_nr, cached_object_alloc;
1902 static struct cached_object *find_cached_object(const unsigned char *sha1)
1904 int i;
1905 struct cached_object *co = cached_objects;
1907 for (i = 0; i < cached_object_nr; i++, co++) {
1908 if (!hashcmp(co->sha1, sha1))
1909 return co;
1911 return NULL;
1914 int pretend_sha1_file(void *buf, unsigned long len, enum object_type type,
1915 unsigned char *sha1)
1917 struct cached_object *co;
1919 hash_sha1_file(buf, len, typename(type), sha1);
1920 if (has_sha1_file(sha1) || find_cached_object(sha1))
1921 return 0;
1922 if (cached_object_alloc <= cached_object_nr) {
1923 cached_object_alloc = alloc_nr(cached_object_alloc);
1924 cached_objects = xrealloc(cached_objects,
1925 sizeof(*cached_objects) *
1926 cached_object_alloc);
1928 co = &cached_objects[cached_object_nr++];
1929 co->size = len;
1930 co->type = type;
1931 co->buf = xmalloc(len);
1932 memcpy(co->buf, buf, len);
1933 hashcpy(co->sha1, sha1);
1934 return 0;
1937 void *read_sha1_file(const unsigned char *sha1, enum object_type *type,
1938 unsigned long *size)
1940 unsigned long mapsize;
1941 void *map, *buf;
1942 struct cached_object *co;
1944 co = find_cached_object(sha1);
1945 if (co) {
1946 buf = xmalloc(co->size + 1);
1947 memcpy(buf, co->buf, co->size);
1948 ((char*)buf)[co->size] = 0;
1949 *type = co->type;
1950 *size = co->size;
1951 return buf;
1954 buf = read_packed_sha1(sha1, type, size);
1955 if (buf)
1956 return buf;
1957 map = map_sha1_file(sha1, &mapsize);
1958 if (map) {
1959 buf = unpack_sha1_file(map, mapsize, type, size, sha1);
1960 munmap(map, mapsize);
1961 return buf;
1963 reprepare_packed_git();
1964 return read_packed_sha1(sha1, type, size);
1967 void *read_object_with_reference(const unsigned char *sha1,
1968 const char *required_type_name,
1969 unsigned long *size,
1970 unsigned char *actual_sha1_return)
1972 enum object_type type, required_type;
1973 void *buffer;
1974 unsigned long isize;
1975 unsigned char actual_sha1[20];
1977 required_type = type_from_string(required_type_name);
1978 hashcpy(actual_sha1, sha1);
1979 while (1) {
1980 int ref_length = -1;
1981 const char *ref_type = NULL;
1983 buffer = read_sha1_file(actual_sha1, &type, &isize);
1984 if (!buffer)
1985 return NULL;
1986 if (type == required_type) {
1987 *size = isize;
1988 if (actual_sha1_return)
1989 hashcpy(actual_sha1_return, actual_sha1);
1990 return buffer;
1992 /* Handle references */
1993 else if (type == OBJ_COMMIT)
1994 ref_type = "tree ";
1995 else if (type == OBJ_TAG)
1996 ref_type = "object ";
1997 else {
1998 free(buffer);
1999 return NULL;
2001 ref_length = strlen(ref_type);
2003 if (memcmp(buffer, ref_type, ref_length) ||
2004 get_sha1_hex((char *) buffer + ref_length, actual_sha1)) {
2005 free(buffer);
2006 return NULL;
2008 free(buffer);
2009 /* Now we have the ID of the referred-to object in
2010 * actual_sha1. Check again. */
2014 static void write_sha1_file_prepare(const void *buf, unsigned long len,
2015 const char *type, unsigned char *sha1,
2016 char *hdr, int *hdrlen)
2018 SHA_CTX c;
2020 /* Generate the header */
2021 *hdrlen = sprintf(hdr, "%s %lu", type, len)+1;
2023 /* Sha1.. */
2024 SHA1_Init(&c);
2025 SHA1_Update(&c, hdr, *hdrlen);
2026 SHA1_Update(&c, buf, len);
2027 SHA1_Final(sha1, &c);
2031 * Link the tempfile to the final place, possibly creating the
2032 * last directory level as you do so.
2034 * Returns the errno on failure, 0 on success.
2036 static int link_temp_to_file(const char *tmpfile, const char *filename)
2038 int ret;
2039 char *dir;
2041 if (!link(tmpfile, filename))
2042 return 0;
2045 * Try to mkdir the last path component if that failed.
2047 * Re-try the "link()" regardless of whether the mkdir
2048 * succeeds, since a race might mean that somebody
2049 * else succeeded.
2051 ret = errno;
2052 dir = strrchr(filename, '/');
2053 if (dir) {
2054 *dir = 0;
2055 if (!mkdir(filename, 0777) && adjust_shared_perm(filename)) {
2056 *dir = '/';
2057 return -2;
2059 *dir = '/';
2060 if (!link(tmpfile, filename))
2061 return 0;
2062 ret = errno;
2064 return ret;
2068 * Move the just written object into its final resting place
2070 int move_temp_to_file(const char *tmpfile, const char *filename)
2072 int ret = link_temp_to_file(tmpfile, filename);
2075 * Coda hack - coda doesn't like cross-directory links,
2076 * so we fall back to a rename, which will mean that it
2077 * won't be able to check collisions, but that's not a
2078 * big deal.
2080 * The same holds for FAT formatted media.
2082 * When this succeeds, we just return 0. We have nothing
2083 * left to unlink.
2085 if (ret && ret != EEXIST) {
2086 if (!rename(tmpfile, filename))
2087 return 0;
2088 ret = errno;
2090 unlink(tmpfile);
2091 if (ret) {
2092 if (ret != EEXIST) {
2093 return error("unable to write sha1 filename %s: %s\n", filename, strerror(ret));
2095 /* FIXME!!! Collision check here ? */
2098 return 0;
2101 static int write_buffer(int fd, const void *buf, size_t len)
2103 if (write_in_full(fd, buf, len) < 0)
2104 return error("file write error (%s)", strerror(errno));
2105 return 0;
2108 int hash_sha1_file(const void *buf, unsigned long len, const char *type,
2109 unsigned char *sha1)
2111 char hdr[32];
2112 int hdrlen;
2113 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
2114 return 0;
2117 int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *returnsha1)
2119 int size, ret;
2120 unsigned char *compressed;
2121 z_stream stream;
2122 unsigned char sha1[20];
2123 char *filename;
2124 static char tmpfile[PATH_MAX];
2125 char hdr[32];
2126 int fd, hdrlen;
2128 /* Normally if we have it in the pack then we do not bother writing
2129 * it out into .git/objects/??/?{38} file.
2131 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
2132 filename = sha1_file_name(sha1);
2133 if (returnsha1)
2134 hashcpy(returnsha1, sha1);
2135 if (has_sha1_file(sha1))
2136 return 0;
2137 fd = open(filename, O_RDONLY);
2138 if (fd >= 0) {
2140 * FIXME!!! We might do collision checking here, but we'd
2141 * need to uncompress the old file and check it. Later.
2143 close(fd);
2144 return 0;
2147 if (errno != ENOENT) {
2148 return error("sha1 file %s: %s\n", filename, strerror(errno));
2151 snprintf(tmpfile, sizeof(tmpfile), "%s/tmp_obj_XXXXXX", get_object_directory());
2153 fd = mkstemp(tmpfile);
2154 if (fd < 0) {
2155 if (errno == EPERM)
2156 return error("insufficient permission for adding an object to repository database %s\n", get_object_directory());
2157 else
2158 return error("unable to create temporary sha1 filename %s: %s\n", tmpfile, strerror(errno));
2161 /* Set it up */
2162 memset(&stream, 0, sizeof(stream));
2163 deflateInit(&stream, zlib_compression_level);
2164 size = 8 + deflateBound(&stream, len+hdrlen);
2165 compressed = xmalloc(size);
2167 /* Compress it */
2168 stream.next_out = compressed;
2169 stream.avail_out = size;
2171 /* First header.. */
2172 stream.next_in = (unsigned char *)hdr;
2173 stream.avail_in = hdrlen;
2174 while (deflate(&stream, 0) == Z_OK)
2175 /* nothing */;
2177 /* Then the data itself.. */
2178 stream.next_in = buf;
2179 stream.avail_in = len;
2180 ret = deflate(&stream, Z_FINISH);
2181 if (ret != Z_STREAM_END)
2182 die("unable to deflate new object %s (%d)", sha1_to_hex(sha1), ret);
2184 ret = deflateEnd(&stream);
2185 if (ret != Z_OK)
2186 die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1), ret);
2188 size = stream.total_out;
2190 if (write_buffer(fd, compressed, size) < 0)
2191 die("unable to write sha1 file");
2192 fchmod(fd, 0444);
2193 if (close(fd))
2194 die("unable to write sha1 file");
2195 free(compressed);
2197 return move_temp_to_file(tmpfile, filename);
2201 * We need to unpack and recompress the object for writing
2202 * it out to a different file.
2204 static void *repack_object(const unsigned char *sha1, unsigned long *objsize)
2206 size_t size;
2207 z_stream stream;
2208 unsigned char *unpacked;
2209 unsigned long len;
2210 enum object_type type;
2211 char hdr[32];
2212 int hdrlen;
2213 void *buf;
2215 /* need to unpack and recompress it by itself */
2216 unpacked = read_packed_sha1(sha1, &type, &len);
2217 if (!unpacked)
2218 error("cannot read sha1_file for %s", sha1_to_hex(sha1));
2220 hdrlen = sprintf(hdr, "%s %lu", typename(type), len) + 1;
2222 /* Set it up */
2223 memset(&stream, 0, sizeof(stream));
2224 deflateInit(&stream, zlib_compression_level);
2225 size = deflateBound(&stream, len + hdrlen);
2226 buf = xmalloc(size);
2228 /* Compress it */
2229 stream.next_out = buf;
2230 stream.avail_out = size;
2232 /* First header.. */
2233 stream.next_in = (void *)hdr;
2234 stream.avail_in = hdrlen;
2235 while (deflate(&stream, 0) == Z_OK)
2236 /* nothing */;
2238 /* Then the data itself.. */
2239 stream.next_in = unpacked;
2240 stream.avail_in = len;
2241 while (deflate(&stream, Z_FINISH) == Z_OK)
2242 /* nothing */;
2243 deflateEnd(&stream);
2244 free(unpacked);
2246 *objsize = stream.total_out;
2247 return buf;
2250 int write_sha1_to_fd(int fd, const unsigned char *sha1)
2252 int retval;
2253 unsigned long objsize;
2254 void *buf = map_sha1_file(sha1, &objsize);
2256 if (buf) {
2257 retval = write_buffer(fd, buf, objsize);
2258 munmap(buf, objsize);
2259 return retval;
2262 buf = repack_object(sha1, &objsize);
2263 retval = write_buffer(fd, buf, objsize);
2264 free(buf);
2265 return retval;
2268 int write_sha1_from_fd(const unsigned char *sha1, int fd, char *buffer,
2269 size_t bufsize, size_t *bufposn)
2271 char tmpfile[PATH_MAX];
2272 int local;
2273 z_stream stream;
2274 unsigned char real_sha1[20];
2275 unsigned char discard[4096];
2276 int ret;
2277 SHA_CTX c;
2279 snprintf(tmpfile, sizeof(tmpfile), "%s/tmp_obj_XXXXXX", get_object_directory());
2281 local = mkstemp(tmpfile);
2282 if (local < 0) {
2283 if (errno == EPERM)
2284 return error("insufficient permission for adding an object to repository database %s\n", get_object_directory());
2285 else
2286 return error("unable to create temporary sha1 filename %s: %s\n", tmpfile, strerror(errno));
2289 memset(&stream, 0, sizeof(stream));
2291 inflateInit(&stream);
2293 SHA1_Init(&c);
2295 do {
2296 ssize_t size;
2297 if (*bufposn) {
2298 stream.avail_in = *bufposn;
2299 stream.next_in = (unsigned char *) buffer;
2300 do {
2301 stream.next_out = discard;
2302 stream.avail_out = sizeof(discard);
2303 ret = inflate(&stream, Z_SYNC_FLUSH);
2304 SHA1_Update(&c, discard, sizeof(discard) -
2305 stream.avail_out);
2306 } while (stream.avail_in && ret == Z_OK);
2307 if (write_buffer(local, buffer, *bufposn - stream.avail_in) < 0)
2308 die("unable to write sha1 file");
2309 memmove(buffer, buffer + *bufposn - stream.avail_in,
2310 stream.avail_in);
2311 *bufposn = stream.avail_in;
2312 if (ret != Z_OK)
2313 break;
2315 size = xread(fd, buffer + *bufposn, bufsize - *bufposn);
2316 if (size <= 0) {
2317 close(local);
2318 unlink(tmpfile);
2319 if (!size)
2320 return error("Connection closed?");
2321 perror("Reading from connection");
2322 return -1;
2324 *bufposn += size;
2325 } while (1);
2326 inflateEnd(&stream);
2328 fchmod(local, 0444);
2329 if (close(local) != 0)
2330 die("unable to write sha1 file");
2331 SHA1_Final(real_sha1, &c);
2332 if (ret != Z_STREAM_END) {
2333 unlink(tmpfile);
2334 return error("File %s corrupted", sha1_to_hex(sha1));
2336 if (hashcmp(sha1, real_sha1)) {
2337 unlink(tmpfile);
2338 return error("File %s has bad hash", sha1_to_hex(sha1));
2341 return move_temp_to_file(tmpfile, sha1_file_name(sha1));
2344 int has_pack_index(const unsigned char *sha1)
2346 struct stat st;
2347 if (stat(sha1_pack_index_name(sha1), &st))
2348 return 0;
2349 return 1;
2352 int has_pack_file(const unsigned char *sha1)
2354 struct stat st;
2355 if (stat(sha1_pack_name(sha1), &st))
2356 return 0;
2357 return 1;
2360 int has_sha1_pack(const unsigned char *sha1, const char **ignore_packed)
2362 struct pack_entry e;
2363 return find_pack_entry(sha1, &e, ignore_packed);
2366 int has_sha1_file(const unsigned char *sha1)
2368 struct stat st;
2369 struct pack_entry e;
2371 if (find_pack_entry(sha1, &e, NULL))
2372 return 1;
2373 return find_sha1_file(sha1, &st) ? 1 : 0;
2377 * reads from fd as long as possible into a supplied buffer of size bytes.
2378 * If necessary the buffer's size is increased using realloc()
2380 * returns 0 if anything went fine and -1 otherwise
2382 * The buffer is always NUL-terminated, not including it in returned size.
2384 * NOTE: both buf and size may change, but even when -1 is returned
2385 * you still have to free() it yourself.
2387 int read_fd(int fd, char **return_buf, unsigned long *return_size)
2389 char *buf = *return_buf;
2390 unsigned long size = *return_size;
2391 ssize_t iret;
2392 unsigned long off = 0;
2394 if (!buf || size <= 1) {
2395 size = 1024;
2396 buf = xrealloc(buf, size);
2399 do {
2400 iret = xread(fd, buf + off, (size - 1) - off);
2401 if (iret > 0) {
2402 off += iret;
2403 if (off == size - 1) {
2404 size = alloc_nr(size);
2405 buf = xrealloc(buf, size);
2408 } while (iret > 0);
2410 buf[off] = '\0';
2412 *return_buf = buf;
2413 *return_size = off;
2415 if (iret < 0)
2416 return -1;
2417 return 0;
2420 int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object)
2422 unsigned long size = 4096;
2423 char *buf = xmalloc(size);
2424 int ret;
2426 if (read_fd(fd, &buf, &size)) {
2427 free(buf);
2428 return -1;
2431 if (!type)
2432 type = blob_type;
2433 if (write_object)
2434 ret = write_sha1_file(buf, size, type, sha1);
2435 else
2436 ret = hash_sha1_file(buf, size, type, sha1);
2437 free(buf);
2438 return ret;
2441 int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object,
2442 enum object_type type, const char *path)
2444 size_t size = xsize_t(st->st_size);
2445 void *buf = NULL;
2446 int ret, re_allocated = 0;
2448 if (size)
2449 buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
2450 close(fd);
2452 if (!type)
2453 type = OBJ_BLOB;
2456 * Convert blobs to git internal format
2458 if ((type == OBJ_BLOB) && S_ISREG(st->st_mode)) {
2459 unsigned long nsize = size;
2460 char *nbuf = convert_to_git(path, buf, &nsize);
2461 if (nbuf) {
2462 munmap(buf, size);
2463 size = nsize;
2464 buf = nbuf;
2465 re_allocated = 1;
2469 if (write_object)
2470 ret = write_sha1_file(buf, size, typename(type), sha1);
2471 else
2472 ret = hash_sha1_file(buf, size, typename(type), sha1);
2473 if (re_allocated) {
2474 free(buf);
2475 return ret;
2477 if (size)
2478 munmap(buf, size);
2479 return ret;
2482 int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object)
2484 int fd;
2485 char *target;
2486 size_t len;
2488 switch (st->st_mode & S_IFMT) {
2489 case S_IFREG:
2490 fd = open(path, O_RDONLY);
2491 if (fd < 0)
2492 return error("open(\"%s\"): %s", path,
2493 strerror(errno));
2494 if (index_fd(sha1, fd, st, write_object, OBJ_BLOB, path) < 0)
2495 return error("%s: failed to insert into database",
2496 path);
2497 break;
2498 case S_IFLNK:
2499 len = xsize_t(st->st_size);
2500 target = xmalloc(len + 1);
2501 if (readlink(path, target, len + 1) != st->st_size) {
2502 char *errstr = strerror(errno);
2503 free(target);
2504 return error("readlink(\"%s\"): %s", path,
2505 errstr);
2507 if (!write_object)
2508 hash_sha1_file(target, len, blob_type, sha1);
2509 else if (write_sha1_file(target, len, blob_type, sha1))
2510 return error("%s: failed to insert into database",
2511 path);
2512 free(target);
2513 break;
2514 case S_IFDIR:
2515 return resolve_gitlink_ref(path, "HEAD", sha1);
2516 default:
2517 return error("%s: unsupported file type", path);
2519 return 0;
2522 int read_pack_header(int fd, struct pack_header *header)
2524 char *c = (char*)header;
2525 ssize_t remaining = sizeof(struct pack_header);
2526 do {
2527 ssize_t r = xread(fd, c, remaining);
2528 if (r <= 0)
2529 /* "eof before pack header was fully read" */
2530 return PH_ERROR_EOF;
2531 remaining -= r;
2532 c += r;
2533 } while (remaining > 0);
2534 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2535 /* "protocol error (pack signature mismatch detected)" */
2536 return PH_ERROR_PACK_SIGNATURE;
2537 if (!pack_version_ok(header->hdr_version))
2538 /* "protocol error (pack version unsupported)" */
2539 return PH_ERROR_PROTOCOL;
2540 return 0;