format-patch: pretty-print timestamp correctly.
[git.git] / sha1_file.c
blobf08b1d6ee84617d8d866e9dab66e95ce5a5cc420
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"
13 #ifndef O_NOATIME
14 #if defined(__linux__) && (defined(__i386__) || defined(__PPC__))
15 #define O_NOATIME 01000000
16 #else
17 #define O_NOATIME 0
18 #endif
19 #endif
21 const unsigned char null_sha1[20] = { 0, };
23 static unsigned int sha1_file_open_flag = O_NOATIME;
25 static unsigned hexval(char c)
27 if (c >= '0' && c <= '9')
28 return c - '0';
29 if (c >= 'a' && c <= 'f')
30 return c - 'a' + 10;
31 if (c >= 'A' && c <= 'F')
32 return c - 'A' + 10;
33 return ~0;
36 int get_sha1_hex(const char *hex, unsigned char *sha1)
38 int i;
39 for (i = 0; i < 20; i++) {
40 unsigned int val = (hexval(hex[0]) << 4) | hexval(hex[1]);
41 if (val & ~0xff)
42 return -1;
43 *sha1++ = val;
44 hex += 2;
46 return 0;
49 int adjust_shared_perm(const char *path)
51 struct stat st;
52 int mode;
54 if (!shared_repository)
55 return 0;
56 if (lstat(path, &st) < 0)
57 return -1;
58 mode = st.st_mode;
59 if (mode & S_IRUSR)
60 mode |= S_IRGRP;
61 if (mode & S_IWUSR)
62 mode |= S_IWGRP;
63 if (mode & S_IXUSR)
64 mode |= S_IXGRP;
65 if (S_ISDIR(mode))
66 mode |= S_ISGID;
67 if (chmod(path, mode) < 0)
68 return -2;
69 return 0;
72 int safe_create_leading_directories(char *path)
74 char *pos = path;
75 struct stat st;
77 if (*pos == '/')
78 pos++;
80 while (pos) {
81 pos = strchr(pos, '/');
82 if (!pos)
83 break;
84 *pos = 0;
85 if (!stat(path, &st)) {
86 /* path exists */
87 if (!S_ISDIR(st.st_mode)) {
88 *pos = '/';
89 return -3;
92 else if (mkdir(path, 0777)) {
93 *pos = '/';
94 return -1;
96 else if (adjust_shared_perm(path)) {
97 *pos = '/';
98 return -2;
100 *pos++ = '/';
102 return 0;
105 char * sha1_to_hex(const unsigned char *sha1)
107 static char buffer[50];
108 static const char hex[] = "0123456789abcdef";
109 char *buf = buffer;
110 int i;
112 for (i = 0; i < 20; i++) {
113 unsigned int val = *sha1++;
114 *buf++ = hex[val >> 4];
115 *buf++ = hex[val & 0xf];
117 *buf = '\0';
119 return buffer;
122 static void fill_sha1_path(char *pathbuf, const unsigned char *sha1)
124 int i;
125 for (i = 0; i < 20; i++) {
126 static char hex[] = "0123456789abcdef";
127 unsigned int val = sha1[i];
128 char *pos = pathbuf + i*2 + (i > 0);
129 *pos++ = hex[val >> 4];
130 *pos = hex[val & 0xf];
135 * NOTE! This returns a statically allocated buffer, so you have to be
136 * careful about using it. Do a "strdup()" if you need to save the
137 * filename.
139 * Also note that this returns the location for creating. Reading
140 * SHA1 file can happen from any alternate directory listed in the
141 * DB_ENVIRONMENT environment variable if it is not found in
142 * the primary object database.
144 char *sha1_file_name(const unsigned char *sha1)
146 static char *name, *base;
148 if (!base) {
149 const char *sha1_file_directory = get_object_directory();
150 int len = strlen(sha1_file_directory);
151 base = xmalloc(len + 60);
152 memcpy(base, sha1_file_directory, len);
153 memset(base+len, 0, 60);
154 base[len] = '/';
155 base[len+3] = '/';
156 name = base + len + 1;
158 fill_sha1_path(name, sha1);
159 return base;
162 char *sha1_pack_name(const unsigned char *sha1)
164 static const char hex[] = "0123456789abcdef";
165 static char *name, *base, *buf;
166 int i;
168 if (!base) {
169 const char *sha1_file_directory = get_object_directory();
170 int len = strlen(sha1_file_directory);
171 base = xmalloc(len + 60);
172 sprintf(base, "%s/pack/pack-1234567890123456789012345678901234567890.pack", sha1_file_directory);
173 name = base + len + 11;
176 buf = name;
178 for (i = 0; i < 20; i++) {
179 unsigned int val = *sha1++;
180 *buf++ = hex[val >> 4];
181 *buf++ = hex[val & 0xf];
184 return base;
187 char *sha1_pack_index_name(const unsigned char *sha1)
189 static const char hex[] = "0123456789abcdef";
190 static char *name, *base, *buf;
191 int i;
193 if (!base) {
194 const char *sha1_file_directory = get_object_directory();
195 int len = strlen(sha1_file_directory);
196 base = xmalloc(len + 60);
197 sprintf(base, "%s/pack/pack-1234567890123456789012345678901234567890.idx", sha1_file_directory);
198 name = base + len + 11;
201 buf = name;
203 for (i = 0; i < 20; i++) {
204 unsigned int val = *sha1++;
205 *buf++ = hex[val >> 4];
206 *buf++ = hex[val & 0xf];
209 return base;
212 struct alternate_object_database *alt_odb_list;
213 static struct alternate_object_database **alt_odb_tail;
216 * Prepare alternate object database registry.
218 * The variable alt_odb_list points at the list of struct
219 * alternate_object_database. The elements on this list come from
220 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
221 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
222 * whose contents is similar to that environment variable but can be
223 * LF separated. Its base points at a statically allocated buffer that
224 * contains "/the/directory/corresponding/to/.git/objects/...", while
225 * its name points just after the slash at the end of ".git/objects/"
226 * in the example above, and has enough space to hold 40-byte hex
227 * SHA1, an extra slash for the first level indirection, and the
228 * terminating NUL.
230 static void link_alt_odb_entries(const char *alt, const char *ep, int sep,
231 const char *relative_base)
233 const char *cp, *last;
234 struct alternate_object_database *ent;
235 const char *objdir = get_object_directory();
236 int base_len = -1;
238 last = alt;
239 while (last < ep) {
240 cp = last;
241 if (cp < ep && *cp == '#') {
242 while (cp < ep && *cp != sep)
243 cp++;
244 last = cp + 1;
245 continue;
247 for ( ; cp < ep && *cp != sep; cp++)
249 if (last != cp) {
250 struct alternate_object_database *alt;
251 /* 43 = 40-byte + 2 '/' + terminating NUL */
252 int pfxlen = cp - last;
253 int entlen = pfxlen + 43;
255 if (*last != '/' && relative_base) {
256 /* Relative alt-odb */
257 if (base_len < 0)
258 base_len = strlen(relative_base) + 1;
259 entlen += base_len;
260 pfxlen += base_len;
262 ent = xmalloc(sizeof(*ent) + entlen);
264 if (*last != '/' && relative_base) {
265 memcpy(ent->base, relative_base, base_len - 1);
266 ent->base[base_len - 1] = '/';
267 memcpy(ent->base + base_len,
268 last, cp - last);
270 else
271 memcpy(ent->base, last, pfxlen);
272 ent->name = ent->base + pfxlen + 1;
273 ent->base[pfxlen] = ent->base[pfxlen + 3] = '/';
274 ent->base[entlen-1] = 0;
276 /* Prevent the common mistake of listing the same
277 * thing twice, or object directory itself.
279 for (alt = alt_odb_list; alt; alt = alt->next)
280 if (!memcmp(ent->base, alt->base, pfxlen))
281 goto bad;
282 if (!memcmp(ent->base, objdir, pfxlen)) {
283 bad:
284 free(ent);
286 else {
287 *alt_odb_tail = ent;
288 alt_odb_tail = &(ent->next);
289 ent->next = NULL;
292 while (cp < ep && *cp == sep)
293 cp++;
294 last = cp;
298 void prepare_alt_odb(void)
300 char path[PATH_MAX];
301 char *map;
302 int fd;
303 struct stat st;
304 char *alt;
306 alt = getenv(ALTERNATE_DB_ENVIRONMENT);
307 if (!alt) alt = "";
309 if (alt_odb_tail)
310 return;
311 alt_odb_tail = &alt_odb_list;
312 link_alt_odb_entries(alt, alt + strlen(alt), ':', NULL);
314 sprintf(path, "%s/info/alternates", get_object_directory());
315 fd = open(path, O_RDONLY);
316 if (fd < 0)
317 return;
318 if (fstat(fd, &st) || (st.st_size == 0)) {
319 close(fd);
320 return;
322 map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
323 close(fd);
324 if (map == MAP_FAILED)
325 return;
327 link_alt_odb_entries(map, map + st.st_size, '\n',
328 get_object_directory());
329 munmap(map, st.st_size);
332 static char *find_sha1_file(const unsigned char *sha1, struct stat *st)
334 char *name = sha1_file_name(sha1);
335 struct alternate_object_database *alt;
337 if (!stat(name, st))
338 return name;
339 prepare_alt_odb();
340 for (alt = alt_odb_list; alt; alt = alt->next) {
341 name = alt->name;
342 fill_sha1_path(name, sha1);
343 if (!stat(alt->base, st))
344 return alt->base;
346 return NULL;
349 #define PACK_MAX_SZ (1<<26)
350 static int pack_used_ctr;
351 static unsigned long pack_mapped;
352 struct packed_git *packed_git;
354 static int check_packed_git_idx(const char *path, unsigned long *idx_size_,
355 void **idx_map_)
357 void *idx_map;
358 unsigned int *index;
359 unsigned long idx_size;
360 int nr, i;
361 int fd = open(path, O_RDONLY);
362 struct stat st;
363 if (fd < 0)
364 return -1;
365 if (fstat(fd, &st)) {
366 close(fd);
367 return -1;
369 idx_size = st.st_size;
370 idx_map = mmap(NULL, idx_size, PROT_READ, MAP_PRIVATE, fd, 0);
371 close(fd);
372 if (idx_map == MAP_FAILED)
373 return -1;
375 index = idx_map;
376 *idx_map_ = idx_map;
377 *idx_size_ = idx_size;
379 /* check index map */
380 if (idx_size < 4*256 + 20 + 20)
381 return error("index file too small");
382 nr = 0;
383 for (i = 0; i < 256; i++) {
384 unsigned int n = ntohl(index[i]);
385 if (n < nr)
386 return error("non-monotonic index");
387 nr = n;
391 * Total size:
392 * - 256 index entries 4 bytes each
393 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
394 * - 20-byte SHA1 of the packfile
395 * - 20-byte SHA1 file checksum
397 if (idx_size != 4*256 + nr * 24 + 20 + 20)
398 return error("wrong index file size");
400 return 0;
403 static int unuse_one_packed_git(void)
405 struct packed_git *p, *lru = NULL;
407 for (p = packed_git; p; p = p->next) {
408 if (p->pack_use_cnt || !p->pack_base)
409 continue;
410 if (!lru || p->pack_last_used < lru->pack_last_used)
411 lru = p;
413 if (!lru)
414 return 0;
415 munmap(lru->pack_base, lru->pack_size);
416 lru->pack_base = NULL;
417 return 1;
420 void unuse_packed_git(struct packed_git *p)
422 p->pack_use_cnt--;
425 int use_packed_git(struct packed_git *p)
427 if (!p->pack_size) {
428 struct stat st;
429 // We created the struct before we had the pack
430 stat(p->pack_name, &st);
431 if (!S_ISREG(st.st_mode))
432 die("packfile %s not a regular file", p->pack_name);
433 p->pack_size = st.st_size;
435 if (!p->pack_base) {
436 int fd;
437 struct stat st;
438 void *map;
440 pack_mapped += p->pack_size;
441 while (PACK_MAX_SZ < pack_mapped && unuse_one_packed_git())
442 ; /* nothing */
443 fd = open(p->pack_name, O_RDONLY);
444 if (fd < 0)
445 die("packfile %s cannot be opened", p->pack_name);
446 if (fstat(fd, &st)) {
447 close(fd);
448 die("packfile %s cannot be opened", p->pack_name);
450 if (st.st_size != p->pack_size)
451 die("packfile %s size mismatch.", p->pack_name);
452 map = mmap(NULL, p->pack_size, PROT_READ, MAP_PRIVATE, fd, 0);
453 close(fd);
454 if (map == MAP_FAILED)
455 die("packfile %s cannot be mapped.", p->pack_name);
456 p->pack_base = map;
458 /* Check if the pack file matches with the index file.
459 * this is cheap.
461 if (memcmp((char*)(p->index_base) + p->index_size - 40,
462 p->pack_base + p->pack_size - 20, 20)) {
464 die("packfile %s does not match index.", p->pack_name);
467 p->pack_last_used = pack_used_ctr++;
468 p->pack_use_cnt++;
469 return 0;
472 struct packed_git *add_packed_git(char *path, int path_len, int local)
474 struct stat st;
475 struct packed_git *p;
476 unsigned long idx_size;
477 void *idx_map;
478 unsigned char sha1[20];
480 if (check_packed_git_idx(path, &idx_size, &idx_map))
481 return NULL;
483 /* do we have a corresponding .pack file? */
484 strcpy(path + path_len - 4, ".pack");
485 if (stat(path, &st) || !S_ISREG(st.st_mode)) {
486 munmap(idx_map, idx_size);
487 return NULL;
489 /* ok, it looks sane as far as we can check without
490 * actually mapping the pack file.
492 p = xmalloc(sizeof(*p) + path_len + 2);
493 strcpy(p->pack_name, path);
494 p->index_size = idx_size;
495 p->pack_size = st.st_size;
496 p->index_base = idx_map;
497 p->next = NULL;
498 p->pack_base = NULL;
499 p->pack_last_used = 0;
500 p->pack_use_cnt = 0;
501 p->pack_local = local;
502 if ((path_len > 44) && !get_sha1_hex(path + path_len - 44, sha1))
503 memcpy(p->sha1, sha1, 20);
504 return p;
507 struct packed_git *parse_pack_index(unsigned char *sha1)
509 char *path = sha1_pack_index_name(sha1);
510 return parse_pack_index_file(sha1, path);
513 struct packed_git *parse_pack_index_file(const unsigned char *sha1, char *idx_path)
515 struct packed_git *p;
516 unsigned long idx_size;
517 void *idx_map;
518 char *path;
520 if (check_packed_git_idx(idx_path, &idx_size, &idx_map))
521 return NULL;
523 path = sha1_pack_name(sha1);
525 p = xmalloc(sizeof(*p) + strlen(path) + 2);
526 strcpy(p->pack_name, path);
527 p->index_size = idx_size;
528 p->pack_size = 0;
529 p->index_base = idx_map;
530 p->next = NULL;
531 p->pack_base = NULL;
532 p->pack_last_used = 0;
533 p->pack_use_cnt = 0;
534 memcpy(p->sha1, sha1, 20);
535 return p;
538 void install_packed_git(struct packed_git *pack)
540 pack->next = packed_git;
541 packed_git = pack;
544 static void prepare_packed_git_one(char *objdir, int local)
546 char path[PATH_MAX];
547 int len;
548 DIR *dir;
549 struct dirent *de;
551 sprintf(path, "%s/pack", objdir);
552 len = strlen(path);
553 dir = opendir(path);
554 if (!dir) {
555 fprintf(stderr, "unable to open object pack directory: %s: %s\n", path, strerror(errno));
556 return;
558 path[len++] = '/';
559 while ((de = readdir(dir)) != NULL) {
560 int namelen = strlen(de->d_name);
561 struct packed_git *p;
563 if (strcmp(de->d_name + namelen - 4, ".idx"))
564 continue;
566 /* we have .idx. Is it a file we can map? */
567 strcpy(path + len, de->d_name);
568 p = add_packed_git(path, len + namelen, local);
569 if (!p)
570 continue;
571 p->next = packed_git;
572 packed_git = p;
574 closedir(dir);
577 void prepare_packed_git(void)
579 static int run_once = 0;
580 struct alternate_object_database *alt;
582 if (run_once)
583 return;
584 prepare_packed_git_one(get_object_directory(), 1);
585 prepare_alt_odb();
586 for (alt = alt_odb_list; alt; alt = alt->next) {
587 alt->name[-1] = 0;
588 prepare_packed_git_one(alt->base, 0);
589 alt->name[-1] = '/';
591 run_once = 1;
594 int check_sha1_signature(const unsigned char *sha1, void *map, unsigned long size, const char *type)
596 char header[100];
597 unsigned char real_sha1[20];
598 SHA_CTX c;
600 SHA1_Init(&c);
601 SHA1_Update(&c, header, 1+sprintf(header, "%s %lu", type, size));
602 SHA1_Update(&c, map, size);
603 SHA1_Final(real_sha1, &c);
604 return memcmp(sha1, real_sha1, 20) ? -1 : 0;
607 static void *map_sha1_file_internal(const unsigned char *sha1,
608 unsigned long *size)
610 struct stat st;
611 void *map;
612 int fd;
613 char *filename = find_sha1_file(sha1, &st);
615 if (!filename) {
616 return NULL;
619 fd = open(filename, O_RDONLY | sha1_file_open_flag);
620 if (fd < 0) {
621 /* See if it works without O_NOATIME */
622 switch (sha1_file_open_flag) {
623 default:
624 fd = open(filename, O_RDONLY);
625 if (fd >= 0)
626 break;
627 /* Fallthrough */
628 case 0:
629 return NULL;
632 /* If it failed once, it will probably fail again.
633 * Stop using O_NOATIME
635 sha1_file_open_flag = 0;
637 map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
638 close(fd);
639 if (map == MAP_FAILED)
640 return NULL;
641 *size = st.st_size;
642 return map;
645 int unpack_sha1_header(z_stream *stream, void *map, unsigned long mapsize, void *buffer, unsigned long size)
647 /* Get the data stream */
648 memset(stream, 0, sizeof(*stream));
649 stream->next_in = map;
650 stream->avail_in = mapsize;
651 stream->next_out = buffer;
652 stream->avail_out = size;
654 inflateInit(stream);
655 return inflate(stream, 0);
658 static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size)
660 int bytes = strlen(buffer) + 1;
661 unsigned char *buf = xmalloc(1+size);
663 memcpy(buf, buffer + bytes, stream->total_out - bytes);
664 bytes = stream->total_out - bytes;
665 if (bytes < size) {
666 stream->next_out = buf + bytes;
667 stream->avail_out = size - bytes;
668 while (inflate(stream, Z_FINISH) == Z_OK)
669 /* nothing */;
671 buf[size] = 0;
672 inflateEnd(stream);
673 return buf;
677 * We used to just use "sscanf()", but that's actually way
678 * too permissive for what we want to check. So do an anal
679 * object header parse by hand.
681 int parse_sha1_header(char *hdr, char *type, unsigned long *sizep)
683 int i;
684 unsigned long size;
687 * The type can be at most ten bytes (including the
688 * terminating '\0' that we add), and is followed by
689 * a space.
691 i = 10;
692 for (;;) {
693 char c = *hdr++;
694 if (c == ' ')
695 break;
696 if (!--i)
697 return -1;
698 *type++ = c;
700 *type = 0;
703 * The length must follow immediately, and be in canonical
704 * decimal format (ie "010" is not valid).
706 size = *hdr++ - '0';
707 if (size > 9)
708 return -1;
709 if (size) {
710 for (;;) {
711 unsigned long c = *hdr - '0';
712 if (c > 9)
713 break;
714 hdr++;
715 size = size * 10 + c;
718 *sizep = size;
721 * The length must be followed by a zero byte
723 return *hdr ? -1 : 0;
726 void * unpack_sha1_file(void *map, unsigned long mapsize, char *type, unsigned long *size)
728 int ret;
729 z_stream stream;
730 char hdr[8192];
732 ret = unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr));
733 if (ret < Z_OK || parse_sha1_header(hdr, type, size) < 0)
734 return NULL;
736 return unpack_sha1_rest(&stream, hdr, *size);
739 /* forward declaration for a mutually recursive function */
740 static int packed_object_info(struct pack_entry *entry,
741 char *type, unsigned long *sizep);
743 static int packed_delta_info(unsigned char *base_sha1,
744 unsigned long delta_size,
745 unsigned long left,
746 char *type,
747 unsigned long *sizep,
748 struct packed_git *p)
750 struct pack_entry base_ent;
752 if (left < 20)
753 die("truncated pack file");
755 /* The base entry _must_ be in the same pack */
756 if (!find_pack_entry_one(base_sha1, &base_ent, p))
757 die("failed to find delta-pack base object %s",
758 sha1_to_hex(base_sha1));
760 /* We choose to only get the type of the base object and
761 * ignore potentially corrupt pack file that expects the delta
762 * based on a base with a wrong size. This saves tons of
763 * inflate() calls.
766 if (packed_object_info(&base_ent, type, NULL))
767 die("cannot get info for delta-pack base");
769 if (sizep) {
770 const unsigned char *data;
771 unsigned char delta_head[64];
772 unsigned long result_size;
773 z_stream stream;
774 int st;
776 memset(&stream, 0, sizeof(stream));
778 data = stream.next_in = base_sha1 + 20;
779 stream.avail_in = left - 20;
780 stream.next_out = delta_head;
781 stream.avail_out = sizeof(delta_head);
783 inflateInit(&stream);
784 st = inflate(&stream, Z_FINISH);
785 inflateEnd(&stream);
786 if ((st != Z_STREAM_END) &&
787 stream.total_out != sizeof(delta_head))
788 die("delta data unpack-initial failed");
790 /* Examine the initial part of the delta to figure out
791 * the result size.
793 data = delta_head;
794 get_delta_hdr_size(&data); /* ignore base size */
796 /* Read the result size */
797 result_size = get_delta_hdr_size(&data);
798 *sizep = result_size;
800 return 0;
803 static unsigned long unpack_object_header(struct packed_git *p, unsigned long offset,
804 enum object_type *type, unsigned long *sizep)
806 unsigned shift;
807 unsigned char *pack, c;
808 unsigned long size;
810 if (offset >= p->pack_size)
811 die("object offset outside of pack file");
813 pack = p->pack_base + offset;
814 c = *pack++;
815 offset++;
816 *type = (c >> 4) & 7;
817 size = c & 15;
818 shift = 4;
819 while (c & 0x80) {
820 if (offset >= p->pack_size)
821 die("object offset outside of pack file");
822 c = *pack++;
823 offset++;
824 size += (c & 0x7f) << shift;
825 shift += 7;
827 *sizep = size;
828 return offset;
831 void packed_object_info_detail(struct pack_entry *e,
832 char *type,
833 unsigned long *size,
834 unsigned long *store_size,
835 int *delta_chain_length,
836 unsigned char *base_sha1)
838 struct packed_git *p = e->p;
839 unsigned long offset, left;
840 unsigned char *pack;
841 enum object_type kind;
843 offset = unpack_object_header(p, e->offset, &kind, size);
844 pack = p->pack_base + offset;
845 left = p->pack_size - offset;
846 if (kind != OBJ_DELTA)
847 *delta_chain_length = 0;
848 else {
849 int chain_length = 0;
850 memcpy(base_sha1, pack, 20);
851 do {
852 struct pack_entry base_ent;
853 unsigned long junk;
855 find_pack_entry_one(pack, &base_ent, p);
856 offset = unpack_object_header(p, base_ent.offset,
857 &kind, &junk);
858 pack = p->pack_base + offset;
859 chain_length++;
860 } while (kind == OBJ_DELTA);
861 *delta_chain_length = chain_length;
863 switch (kind) {
864 case OBJ_COMMIT:
865 strcpy(type, "commit");
866 break;
867 case OBJ_TREE:
868 strcpy(type, "tree");
869 break;
870 case OBJ_BLOB:
871 strcpy(type, "blob");
872 break;
873 case OBJ_TAG:
874 strcpy(type, "tag");
875 break;
876 default:
877 die("corrupted pack file %s containing object of kind %d",
878 p->pack_name, kind);
880 *store_size = 0; /* notyet */
883 static int packed_object_info(struct pack_entry *entry,
884 char *type, unsigned long *sizep)
886 struct packed_git *p = entry->p;
887 unsigned long offset, size, left;
888 unsigned char *pack;
889 enum object_type kind;
890 int retval;
892 if (use_packed_git(p))
893 die("cannot map packed file");
895 offset = unpack_object_header(p, entry->offset, &kind, &size);
896 pack = p->pack_base + offset;
897 left = p->pack_size - offset;
899 switch (kind) {
900 case OBJ_DELTA:
901 retval = packed_delta_info(pack, size, left, type, sizep, p);
902 unuse_packed_git(p);
903 return retval;
904 case OBJ_COMMIT:
905 strcpy(type, "commit");
906 break;
907 case OBJ_TREE:
908 strcpy(type, "tree");
909 break;
910 case OBJ_BLOB:
911 strcpy(type, "blob");
912 break;
913 case OBJ_TAG:
914 strcpy(type, "tag");
915 break;
916 default:
917 die("corrupted pack file %s containing object of kind %d",
918 p->pack_name, kind);
920 if (sizep)
921 *sizep = size;
922 unuse_packed_git(p);
923 return 0;
926 /* forward declaration for a mutually recursive function */
927 static void *unpack_entry(struct pack_entry *, char *, unsigned long *);
929 static void *unpack_delta_entry(unsigned char *base_sha1,
930 unsigned long delta_size,
931 unsigned long left,
932 char *type,
933 unsigned long *sizep,
934 struct packed_git *p)
936 struct pack_entry base_ent;
937 void *data, *delta_data, *result, *base;
938 unsigned long data_size, result_size, base_size;
939 z_stream stream;
940 int st;
942 if (left < 20)
943 die("truncated pack file");
944 data = base_sha1 + 20;
945 data_size = left - 20;
946 delta_data = xmalloc(delta_size);
948 memset(&stream, 0, sizeof(stream));
950 stream.next_in = data;
951 stream.avail_in = data_size;
952 stream.next_out = delta_data;
953 stream.avail_out = delta_size;
955 inflateInit(&stream);
956 st = inflate(&stream, Z_FINISH);
957 inflateEnd(&stream);
958 if ((st != Z_STREAM_END) || stream.total_out != delta_size)
959 die("delta data unpack failed");
961 /* The base entry _must_ be in the same pack */
962 if (!find_pack_entry_one(base_sha1, &base_ent, p))
963 die("failed to find delta-pack base object %s",
964 sha1_to_hex(base_sha1));
965 base = unpack_entry_gently(&base_ent, type, &base_size);
966 if (!base)
967 die("failed to read delta-pack base object %s",
968 sha1_to_hex(base_sha1));
969 result = patch_delta(base, base_size,
970 delta_data, delta_size,
971 &result_size);
972 if (!result)
973 die("failed to apply delta");
974 free(delta_data);
975 free(base);
976 *sizep = result_size;
977 return result;
980 static void *unpack_non_delta_entry(unsigned char *data,
981 unsigned long size,
982 unsigned long left)
984 int st;
985 z_stream stream;
986 unsigned char *buffer;
988 buffer = xmalloc(size + 1);
989 buffer[size] = 0;
990 memset(&stream, 0, sizeof(stream));
991 stream.next_in = data;
992 stream.avail_in = left;
993 stream.next_out = buffer;
994 stream.avail_out = size;
996 inflateInit(&stream);
997 st = inflate(&stream, Z_FINISH);
998 inflateEnd(&stream);
999 if ((st != Z_STREAM_END) || stream.total_out != size) {
1000 free(buffer);
1001 return NULL;
1004 return buffer;
1007 static void *unpack_entry(struct pack_entry *entry,
1008 char *type, unsigned long *sizep)
1010 struct packed_git *p = entry->p;
1011 void *retval;
1013 if (use_packed_git(p))
1014 die("cannot map packed file");
1015 retval = unpack_entry_gently(entry, type, sizep);
1016 unuse_packed_git(p);
1017 if (!retval)
1018 die("corrupted pack file %s", p->pack_name);
1019 return retval;
1022 /* The caller is responsible for use_packed_git()/unuse_packed_git() pair */
1023 void *unpack_entry_gently(struct pack_entry *entry,
1024 char *type, unsigned long *sizep)
1026 struct packed_git *p = entry->p;
1027 unsigned long offset, size, left;
1028 unsigned char *pack;
1029 enum object_type kind;
1030 void *retval;
1032 offset = unpack_object_header(p, entry->offset, &kind, &size);
1033 pack = p->pack_base + offset;
1034 left = p->pack_size - offset;
1035 switch (kind) {
1036 case OBJ_DELTA:
1037 retval = unpack_delta_entry(pack, size, left, type, sizep, p);
1038 return retval;
1039 case OBJ_COMMIT:
1040 strcpy(type, "commit");
1041 break;
1042 case OBJ_TREE:
1043 strcpy(type, "tree");
1044 break;
1045 case OBJ_BLOB:
1046 strcpy(type, "blob");
1047 break;
1048 case OBJ_TAG:
1049 strcpy(type, "tag");
1050 break;
1051 default:
1052 return NULL;
1054 *sizep = size;
1055 retval = unpack_non_delta_entry(pack, size, left);
1056 return retval;
1059 int num_packed_objects(const struct packed_git *p)
1061 /* See check_packed_git_idx() */
1062 return (p->index_size - 20 - 20 - 4*256) / 24;
1065 int nth_packed_object_sha1(const struct packed_git *p, int n,
1066 unsigned char* sha1)
1068 void *index = p->index_base + 256;
1069 if (n < 0 || num_packed_objects(p) <= n)
1070 return -1;
1071 memcpy(sha1, (index + 24 * n + 4), 20);
1072 return 0;
1075 int find_pack_entry_one(const unsigned char *sha1,
1076 struct pack_entry *e, struct packed_git *p)
1078 unsigned int *level1_ofs = p->index_base;
1079 int hi = ntohl(level1_ofs[*sha1]);
1080 int lo = ((*sha1 == 0x0) ? 0 : ntohl(level1_ofs[*sha1 - 1]));
1081 void *index = p->index_base + 256;
1083 do {
1084 int mi = (lo + hi) / 2;
1085 int cmp = memcmp(index + 24 * mi + 4, sha1, 20);
1086 if (!cmp) {
1087 e->offset = ntohl(*((int*)(index + 24 * mi)));
1088 memcpy(e->sha1, sha1, 20);
1089 e->p = p;
1090 return 1;
1092 if (cmp > 0)
1093 hi = mi;
1094 else
1095 lo = mi+1;
1096 } while (lo < hi);
1097 return 0;
1100 static int find_pack_entry(const unsigned char *sha1, struct pack_entry *e)
1102 struct packed_git *p;
1103 prepare_packed_git();
1105 for (p = packed_git; p; p = p->next) {
1106 if (find_pack_entry_one(sha1, e, p))
1107 return 1;
1109 return 0;
1112 struct packed_git *find_sha1_pack(const unsigned char *sha1,
1113 struct packed_git *packs)
1115 struct packed_git *p;
1116 struct pack_entry e;
1118 for (p = packs; p; p = p->next) {
1119 if (find_pack_entry_one(sha1, &e, p))
1120 return p;
1122 return NULL;
1126 int sha1_object_info(const unsigned char *sha1, char *type, unsigned long *sizep)
1128 int status;
1129 unsigned long mapsize, size;
1130 void *map;
1131 z_stream stream;
1132 char hdr[128];
1134 map = map_sha1_file_internal(sha1, &mapsize);
1135 if (!map) {
1136 struct pack_entry e;
1138 if (!find_pack_entry(sha1, &e))
1139 return error("unable to find %s", sha1_to_hex(sha1));
1140 return packed_object_info(&e, type, sizep);
1142 if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
1143 status = error("unable to unpack %s header",
1144 sha1_to_hex(sha1));
1145 if (parse_sha1_header(hdr, type, &size) < 0)
1146 status = error("unable to parse %s header", sha1_to_hex(sha1));
1147 else {
1148 status = 0;
1149 if (sizep)
1150 *sizep = size;
1152 inflateEnd(&stream);
1153 munmap(map, mapsize);
1154 return status;
1157 static void *read_packed_sha1(const unsigned char *sha1, char *type, unsigned long *size)
1159 struct pack_entry e;
1161 if (!find_pack_entry(sha1, &e)) {
1162 error("cannot read sha1_file for %s", sha1_to_hex(sha1));
1163 return NULL;
1165 return unpack_entry(&e, type, size);
1168 void * read_sha1_file(const unsigned char *sha1, char *type, unsigned long *size)
1170 unsigned long mapsize;
1171 void *map, *buf;
1172 struct pack_entry e;
1174 if (find_pack_entry(sha1, &e))
1175 return read_packed_sha1(sha1, type, size);
1176 map = map_sha1_file_internal(sha1, &mapsize);
1177 if (map) {
1178 buf = unpack_sha1_file(map, mapsize, type, size);
1179 munmap(map, mapsize);
1180 return buf;
1182 return NULL;
1185 void *read_object_with_reference(const unsigned char *sha1,
1186 const char *required_type,
1187 unsigned long *size,
1188 unsigned char *actual_sha1_return)
1190 char type[20];
1191 void *buffer;
1192 unsigned long isize;
1193 unsigned char actual_sha1[20];
1195 memcpy(actual_sha1, sha1, 20);
1196 while (1) {
1197 int ref_length = -1;
1198 const char *ref_type = NULL;
1200 buffer = read_sha1_file(actual_sha1, type, &isize);
1201 if (!buffer)
1202 return NULL;
1203 if (!strcmp(type, required_type)) {
1204 *size = isize;
1205 if (actual_sha1_return)
1206 memcpy(actual_sha1_return, actual_sha1, 20);
1207 return buffer;
1209 /* Handle references */
1210 else if (!strcmp(type, "commit"))
1211 ref_type = "tree ";
1212 else if (!strcmp(type, "tag"))
1213 ref_type = "object ";
1214 else {
1215 free(buffer);
1216 return NULL;
1218 ref_length = strlen(ref_type);
1220 if (memcmp(buffer, ref_type, ref_length) ||
1221 get_sha1_hex(buffer + ref_length, actual_sha1)) {
1222 free(buffer);
1223 return NULL;
1225 free(buffer);
1226 /* Now we have the ID of the referred-to object in
1227 * actual_sha1. Check again. */
1231 char *write_sha1_file_prepare(void *buf,
1232 unsigned long len,
1233 const char *type,
1234 unsigned char *sha1,
1235 unsigned char *hdr,
1236 int *hdrlen)
1238 SHA_CTX c;
1240 /* Generate the header */
1241 *hdrlen = sprintf((char *)hdr, "%s %lu", type, len)+1;
1243 /* Sha1.. */
1244 SHA1_Init(&c);
1245 SHA1_Update(&c, hdr, *hdrlen);
1246 SHA1_Update(&c, buf, len);
1247 SHA1_Final(sha1, &c);
1249 return sha1_file_name(sha1);
1253 * Link the tempfile to the final place, possibly creating the
1254 * last directory level as you do so.
1256 * Returns the errno on failure, 0 on success.
1258 static int link_temp_to_file(const char *tmpfile, char *filename)
1260 int ret;
1262 if (!link(tmpfile, filename))
1263 return 0;
1266 * Try to mkdir the last path component if that failed
1267 * with an ENOENT.
1269 * Re-try the "link()" regardless of whether the mkdir
1270 * succeeds, since a race might mean that somebody
1271 * else succeeded.
1273 ret = errno;
1274 if (ret == ENOENT) {
1275 char *dir = strrchr(filename, '/');
1276 if (dir) {
1277 *dir = 0;
1278 mkdir(filename, 0777);
1279 if (adjust_shared_perm(filename))
1280 return -2;
1281 *dir = '/';
1282 if (!link(tmpfile, filename))
1283 return 0;
1284 ret = errno;
1287 return ret;
1291 * Move the just written object into its final resting place
1293 int move_temp_to_file(const char *tmpfile, char *filename)
1295 int ret = link_temp_to_file(tmpfile, filename);
1298 * Coda hack - coda doesn't like cross-directory links,
1299 * so we fall back to a rename, which will mean that it
1300 * won't be able to check collisions, but that's not a
1301 * big deal.
1303 * The same holds for FAT formatted media.
1305 * When this succeeds, we just return 0. We have nothing
1306 * left to unlink.
1308 if (ret && ret != EEXIST) {
1309 if (!rename(tmpfile, filename))
1310 return 0;
1311 ret = errno;
1313 unlink(tmpfile);
1314 if (ret) {
1315 if (ret != EEXIST) {
1316 fprintf(stderr, "unable to write sha1 filename %s: %s\n", filename, strerror(ret));
1317 return -1;
1319 /* FIXME!!! Collision check here ? */
1322 return 0;
1325 int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *returnsha1)
1327 int size;
1328 unsigned char *compressed;
1329 z_stream stream;
1330 unsigned char sha1[20];
1331 char *filename;
1332 static char tmpfile[PATH_MAX];
1333 unsigned char hdr[50];
1334 int fd, hdrlen;
1336 /* Normally if we have it in the pack then we do not bother writing
1337 * it out into .git/objects/??/?{38} file.
1339 filename = write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
1340 if (returnsha1)
1341 memcpy(returnsha1, sha1, 20);
1342 if (has_sha1_file(sha1))
1343 return 0;
1344 fd = open(filename, O_RDONLY);
1345 if (fd >= 0) {
1347 * FIXME!!! We might do collision checking here, but we'd
1348 * need to uncompress the old file and check it. Later.
1350 close(fd);
1351 return 0;
1354 if (errno != ENOENT) {
1355 fprintf(stderr, "sha1 file %s: %s\n", filename, strerror(errno));
1356 return -1;
1359 snprintf(tmpfile, sizeof(tmpfile), "%s/obj_XXXXXX", get_object_directory());
1361 fd = mkstemp(tmpfile);
1362 if (fd < 0) {
1363 fprintf(stderr, "unable to create temporary sha1 filename %s: %s\n", tmpfile, strerror(errno));
1364 return -1;
1367 /* Set it up */
1368 memset(&stream, 0, sizeof(stream));
1369 deflateInit(&stream, Z_BEST_COMPRESSION);
1370 size = deflateBound(&stream, len+hdrlen);
1371 compressed = xmalloc(size);
1373 /* Compress it */
1374 stream.next_out = compressed;
1375 stream.avail_out = size;
1377 /* First header.. */
1378 stream.next_in = hdr;
1379 stream.avail_in = hdrlen;
1380 while (deflate(&stream, 0) == Z_OK)
1381 /* nothing */;
1383 /* Then the data itself.. */
1384 stream.next_in = buf;
1385 stream.avail_in = len;
1386 while (deflate(&stream, Z_FINISH) == Z_OK)
1387 /* nothing */;
1388 deflateEnd(&stream);
1389 size = stream.total_out;
1391 if (write(fd, compressed, size) != size)
1392 die("unable to write file");
1393 fchmod(fd, 0444);
1394 close(fd);
1395 free(compressed);
1397 return move_temp_to_file(tmpfile, filename);
1400 int write_sha1_to_fd(int fd, const unsigned char *sha1)
1402 ssize_t size;
1403 unsigned long objsize;
1404 int posn = 0;
1405 void *map = map_sha1_file_internal(sha1, &objsize);
1406 void *buf = map;
1407 void *temp_obj = NULL;
1408 z_stream stream;
1410 if (!buf) {
1411 unsigned char *unpacked;
1412 unsigned long len;
1413 char type[20];
1414 char hdr[50];
1415 int hdrlen;
1416 // need to unpack and recompress it by itself
1417 unpacked = read_packed_sha1(sha1, type, &len);
1419 hdrlen = sprintf(hdr, "%s %lu", type, len) + 1;
1421 /* Set it up */
1422 memset(&stream, 0, sizeof(stream));
1423 deflateInit(&stream, Z_BEST_COMPRESSION);
1424 size = deflateBound(&stream, len + hdrlen);
1425 temp_obj = buf = xmalloc(size);
1427 /* Compress it */
1428 stream.next_out = buf;
1429 stream.avail_out = size;
1431 /* First header.. */
1432 stream.next_in = (void *)hdr;
1433 stream.avail_in = hdrlen;
1434 while (deflate(&stream, 0) == Z_OK)
1435 /* nothing */;
1437 /* Then the data itself.. */
1438 stream.next_in = unpacked;
1439 stream.avail_in = len;
1440 while (deflate(&stream, Z_FINISH) == Z_OK)
1441 /* nothing */;
1442 deflateEnd(&stream);
1443 free(unpacked);
1445 objsize = stream.total_out;
1448 do {
1449 size = write(fd, buf + posn, objsize - posn);
1450 if (size <= 0) {
1451 if (!size) {
1452 fprintf(stderr, "write closed\n");
1453 } else {
1454 perror("write ");
1456 return -1;
1458 posn += size;
1459 } while (posn < objsize);
1461 if (map)
1462 munmap(map, objsize);
1463 if (temp_obj)
1464 free(temp_obj);
1466 return 0;
1469 int write_sha1_from_fd(const unsigned char *sha1, int fd, char *buffer,
1470 size_t bufsize, size_t *bufposn)
1472 char tmpfile[PATH_MAX];
1473 int local;
1474 z_stream stream;
1475 unsigned char real_sha1[20];
1476 unsigned char discard[4096];
1477 int ret;
1478 SHA_CTX c;
1480 snprintf(tmpfile, sizeof(tmpfile), "%s/obj_XXXXXX", get_object_directory());
1482 local = mkstemp(tmpfile);
1483 if (local < 0)
1484 return error("Couldn't open %s for %s\n", tmpfile, sha1_to_hex(sha1));
1486 memset(&stream, 0, sizeof(stream));
1488 inflateInit(&stream);
1490 SHA1_Init(&c);
1492 do {
1493 ssize_t size;
1494 if (*bufposn) {
1495 stream.avail_in = *bufposn;
1496 stream.next_in = (unsigned char *) buffer;
1497 do {
1498 stream.next_out = discard;
1499 stream.avail_out = sizeof(discard);
1500 ret = inflate(&stream, Z_SYNC_FLUSH);
1501 SHA1_Update(&c, discard, sizeof(discard) -
1502 stream.avail_out);
1503 } while (stream.avail_in && ret == Z_OK);
1504 write(local, buffer, *bufposn - stream.avail_in);
1505 memmove(buffer, buffer + *bufposn - stream.avail_in,
1506 stream.avail_in);
1507 *bufposn = stream.avail_in;
1508 if (ret != Z_OK)
1509 break;
1511 size = read(fd, buffer + *bufposn, bufsize - *bufposn);
1512 if (size <= 0) {
1513 close(local);
1514 unlink(tmpfile);
1515 if (!size)
1516 return error("Connection closed?");
1517 perror("Reading from connection");
1518 return -1;
1520 *bufposn += size;
1521 } while (1);
1522 inflateEnd(&stream);
1524 close(local);
1525 SHA1_Final(real_sha1, &c);
1526 if (ret != Z_STREAM_END) {
1527 unlink(tmpfile);
1528 return error("File %s corrupted", sha1_to_hex(sha1));
1530 if (memcmp(sha1, real_sha1, 20)) {
1531 unlink(tmpfile);
1532 return error("File %s has bad hash\n", sha1_to_hex(sha1));
1535 return move_temp_to_file(tmpfile, sha1_file_name(sha1));
1538 int has_pack_index(const unsigned char *sha1)
1540 struct stat st;
1541 if (stat(sha1_pack_index_name(sha1), &st))
1542 return 0;
1543 return 1;
1546 int has_pack_file(const unsigned char *sha1)
1548 struct stat st;
1549 if (stat(sha1_pack_name(sha1), &st))
1550 return 0;
1551 return 1;
1554 int has_sha1_pack(const unsigned char *sha1)
1556 struct pack_entry e;
1557 return find_pack_entry(sha1, &e);
1560 int has_sha1_file(const unsigned char *sha1)
1562 struct stat st;
1563 struct pack_entry e;
1565 if (find_pack_entry(sha1, &e))
1566 return 1;
1567 return find_sha1_file(sha1, &st) ? 1 : 0;
1570 int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object)
1572 unsigned long size = 4096;
1573 char *buf = malloc(size);
1574 int iret, ret;
1575 unsigned long off = 0;
1576 unsigned char hdr[50];
1577 int hdrlen;
1578 do {
1579 iret = read(fd, buf + off, size - off);
1580 if (iret > 0) {
1581 off += iret;
1582 if (off == size) {
1583 size *= 2;
1584 buf = realloc(buf, size);
1587 } while (iret > 0);
1588 if (iret < 0) {
1589 free(buf);
1590 return -1;
1592 if (!type)
1593 type = "blob";
1594 if (write_object)
1595 ret = write_sha1_file(buf, off, type, sha1);
1596 else {
1597 write_sha1_file_prepare(buf, off, type, sha1, hdr, &hdrlen);
1598 ret = 0;
1600 free(buf);
1601 return ret;
1604 int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object, const char *type)
1606 unsigned long size = st->st_size;
1607 void *buf;
1608 int ret;
1609 unsigned char hdr[50];
1610 int hdrlen;
1612 buf = "";
1613 if (size)
1614 buf = mmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
1615 close(fd);
1616 if (buf == MAP_FAILED)
1617 return -1;
1619 if (!type)
1620 type = "blob";
1621 if (write_object)
1622 ret = write_sha1_file(buf, size, type, sha1);
1623 else {
1624 write_sha1_file_prepare(buf, size, type, sha1, hdr, &hdrlen);
1625 ret = 0;
1627 if (size)
1628 munmap(buf, size);
1629 return ret;
1632 int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object)
1634 int fd;
1635 char *target;
1637 switch (st->st_mode & S_IFMT) {
1638 case S_IFREG:
1639 fd = open(path, O_RDONLY);
1640 if (fd < 0)
1641 return error("open(\"%s\"): %s", path,
1642 strerror(errno));
1643 if (index_fd(sha1, fd, st, write_object, NULL) < 0)
1644 return error("%s: failed to insert into database",
1645 path);
1646 break;
1647 case S_IFLNK:
1648 target = xmalloc(st->st_size+1);
1649 if (readlink(path, target, st->st_size+1) != st->st_size) {
1650 char *errstr = strerror(errno);
1651 free(target);
1652 return error("readlink(\"%s\"): %s", path,
1653 errstr);
1655 if (!write_object) {
1656 unsigned char hdr[50];
1657 int hdrlen;
1658 write_sha1_file_prepare(target, st->st_size, "blob",
1659 sha1, hdr, &hdrlen);
1660 } else if (write_sha1_file(target, st->st_size, "blob", sha1))
1661 return error("%s: failed to insert into database",
1662 path);
1663 free(target);
1664 break;
1665 default:
1666 return error("%s: unsupported file type", path);
1668 return 0;