2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 * This handles basic git sha1 object files - packing, unpacking,
16 #if defined(__linux__) && (defined(__i386__) || defined(__PPC__))
17 #define O_NOATIME 01000000
23 static unsigned int sha1_file_open_flag
= O_NOATIME
;
25 static unsigned hexval(char c
)
27 if (c
>= '0' && c
<= '9')
29 if (c
>= 'a' && c
<= 'f')
31 if (c
>= 'A' && c
<= 'F')
36 int get_sha1_hex(const char *hex
, unsigned char *sha1
)
39 for (i
= 0; i
< 20; i
++) {
40 unsigned int val
= (hexval(hex
[0]) << 4) | hexval(hex
[1]);
49 static int get_sha1_file(const char *path
, unsigned char *result
)
52 int fd
= open(path
, O_RDONLY
);
57 len
= read(fd
, buffer
, sizeof(buffer
));
61 return get_sha1_hex(buffer
, result
);
64 static char *git_dir
, *git_object_dir
, *git_index_file
, *git_refs_dir
;
65 static void setup_git_env(void)
67 git_dir
= gitenv(GIT_DIR_ENVIRONMENT
);
69 git_dir
= DEFAULT_GIT_DIR_ENVIRONMENT
;
70 git_object_dir
= gitenv(DB_ENVIRONMENT
);
71 if (!git_object_dir
) {
72 git_object_dir
= xmalloc(strlen(git_dir
) + 9);
73 sprintf(git_object_dir
, "%s/objects", git_dir
);
75 git_refs_dir
= xmalloc(strlen(git_dir
) + 6);
76 sprintf(git_refs_dir
, "%s/refs", git_dir
);
77 git_index_file
= gitenv(INDEX_ENVIRONMENT
);
78 if (!git_index_file
) {
79 git_index_file
= xmalloc(strlen(git_dir
) + 7);
80 sprintf(git_index_file
, "%s/index", git_dir
);
84 char *get_object_directory(void)
88 return git_object_dir
;
91 char *get_refs_directory(void)
98 char *get_index_file(void)
102 return git_index_file
;
105 int safe_create_leading_directories(char *path
)
110 pos
= strchr(pos
, '/');
114 if (mkdir(path
, 0777) < 0)
115 if (errno
!= EEXIST
) {
124 int get_sha1(const char *str
, unsigned char *sha1
)
126 static const char *prefix
[] = {
136 if (!get_sha1_hex(str
, sha1
))
139 for (p
= prefix
; *p
; p
++) {
140 char * pathname
= git_path("%s/%s", *p
, str
);
141 if (!get_sha1_file(pathname
, sha1
))
148 char * sha1_to_hex(const unsigned char *sha1
)
150 static char buffer
[50];
151 static const char hex
[] = "0123456789abcdef";
155 for (i
= 0; i
< 20; i
++) {
156 unsigned int val
= *sha1
++;
157 *buf
++ = hex
[val
>> 4];
158 *buf
++ = hex
[val
& 0xf];
163 static void fill_sha1_path(char *pathbuf
, const unsigned char *sha1
)
166 for (i
= 0; i
< 20; i
++) {
167 static char hex
[] = "0123456789abcdef";
168 unsigned int val
= sha1
[i
];
169 char *pos
= pathbuf
+ i
*2 + (i
> 0);
170 *pos
++ = hex
[val
>> 4];
171 *pos
= hex
[val
& 0xf];
176 * NOTE! This returns a statically allocated buffer, so you have to be
177 * careful about using it. Do a "strdup()" if you need to save the
180 * Also note that this returns the location for creating. Reading
181 * SHA1 file can happen from any alternate directory listed in the
182 * DB_ENVIRONMENT environment variable if it is not found in
183 * the primary object database.
185 char *sha1_file_name(const unsigned char *sha1
)
187 static char *name
, *base
;
190 const char *sha1_file_directory
= get_object_directory();
191 int len
= strlen(sha1_file_directory
);
192 base
= xmalloc(len
+ 60);
193 memcpy(base
, sha1_file_directory
, len
);
194 memset(base
+len
, 0, 60);
197 name
= base
+ len
+ 1;
199 fill_sha1_path(name
, sha1
);
203 struct alternate_object_database
*alt_odb
;
206 * Prepare alternate object database registry.
207 * alt_odb points at an array of struct alternate_object_database.
208 * This array is terminated with an element that has both its base
209 * and name set to NULL. alt_odb[n] comes from n'th non-empty
210 * element from colon separated ALTERNATE_DB_ENVIRONMENT environment
211 * variable, and its base points at a statically allocated buffer
212 * that contains "/the/directory/corresponding/to/.git/objects/...",
213 * while its name points just after the slash at the end of
214 * ".git/objects/" in the example above, and has enough space to hold
215 * 40-byte hex SHA1, an extra slash for the first level indirection,
216 * and the terminating NUL.
217 * This function allocates the alt_odb array and all the strings
218 * pointed by base fields of the array elements with one xmalloc();
219 * the string pool immediately follows the array.
221 void prepare_alt_odb(void)
224 const char *cp
, *last
;
226 const char *alt
= gitenv(ALTERNATE_DB_ENVIRONMENT
) ? : "";
230 /* The first pass counts how large an area to allocate to
231 * hold the entire alt_odb structure, including array of
232 * structs and path buffers for them. The second pass fills
233 * the structure and prepares the path buffers for use by
236 for (totlen
= pass
= 0; pass
< 2; pass
++) {
240 cp
= strchr(last
, ':') ? : last
+ strlen(last
);
242 /* 43 = 40-byte + 2 '/' + terminating NUL */
243 int pfxlen
= cp
- last
;
244 int entlen
= pfxlen
+ 43;
248 alt_odb
[i
].base
= op
;
249 alt_odb
[i
].name
= op
+ pfxlen
+ 1;
250 memcpy(op
, last
, pfxlen
);
251 op
[pfxlen
] = op
[pfxlen
+ 3] = '/';
257 while (*cp
&& *cp
== ':')
263 alt_odb
= xmalloc(sizeof(*alt_odb
) * (i
+ 1) + totlen
);
264 alt_odb
[i
].base
= alt_odb
[i
].name
= NULL
;
265 op
= (char*)(&alt_odb
[i
+1]);
269 static char *find_sha1_file(const unsigned char *sha1
, struct stat
*st
)
272 char *name
= sha1_file_name(sha1
);
277 for (i
= 0; (name
= alt_odb
[i
].name
) != NULL
; i
++) {
278 fill_sha1_path(name
, sha1
);
279 if (!stat(alt_odb
[i
].base
, st
))
280 return alt_odb
[i
].base
;
285 #define PACK_MAX_SZ (1<<26)
286 static int pack_used_ctr
;
287 static unsigned long pack_mapped
;
288 struct packed_git
*packed_git
;
290 static int check_packed_git_idx(const char *path
, unsigned long *idx_size_
,
295 unsigned long idx_size
;
297 int fd
= open(path
, O_RDONLY
);
301 if (fstat(fd
, &st
)) {
305 idx_size
= st
.st_size
;
306 idx_map
= mmap(NULL
, idx_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
308 if (idx_map
== MAP_FAILED
)
313 *idx_size_
= idx_size
;
315 /* check index map */
316 if (idx_size
< 4*256 + 20 + 20)
317 return error("index file too small");
319 for (i
= 0; i
< 256; i
++) {
320 unsigned int n
= ntohl(index
[i
]);
322 return error("non-monotonic index");
328 * - 256 index entries 4 bytes each
329 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
330 * - 20-byte SHA1 of the packfile
331 * - 20-byte SHA1 file checksum
333 if (idx_size
!= 4*256 + nr
* 24 + 20 + 20)
334 return error("wrong index file size");
339 static int unuse_one_packed_git(void)
341 struct packed_git
*p
, *lru
= NULL
;
343 for (p
= packed_git
; p
; p
= p
->next
) {
344 if (p
->pack_use_cnt
|| !p
->pack_base
)
346 if (!lru
|| p
->pack_last_used
< lru
->pack_last_used
)
351 munmap(lru
->pack_base
, lru
->pack_size
);
352 lru
->pack_base
= NULL
;
356 void unuse_packed_git(struct packed_git
*p
)
361 int use_packed_git(struct packed_git
*p
)
368 pack_mapped
+= p
->pack_size
;
369 while (PACK_MAX_SZ
< pack_mapped
&& unuse_one_packed_git())
371 fd
= open(p
->pack_name
, O_RDONLY
);
373 die("packfile %s cannot be opened", p
->pack_name
);
374 if (fstat(fd
, &st
)) {
376 die("packfile %s cannot be opened", p
->pack_name
);
378 if (st
.st_size
!= p
->pack_size
)
379 die("packfile %s size mismatch.", p
->pack_name
);
380 map
= mmap(NULL
, p
->pack_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
382 if (map
== MAP_FAILED
)
383 die("packfile %s cannot be mapped.", p
->pack_name
);
386 /* Check if the pack file matches with the index file.
389 if (memcmp((char*)(p
->index_base
) + p
->index_size
- 40,
390 p
->pack_base
+ p
->pack_size
- 20, 20))
391 die("packfile %s does not match index.", p
->pack_name
);
393 p
->pack_last_used
= pack_used_ctr
++;
398 struct packed_git
*add_packed_git(char *path
, int path_len
)
401 struct packed_git
*p
;
402 unsigned long idx_size
;
405 if (check_packed_git_idx(path
, &idx_size
, &idx_map
))
408 /* do we have a corresponding .pack file? */
409 strcpy(path
+ path_len
- 4, ".pack");
410 if (stat(path
, &st
) || !S_ISREG(st
.st_mode
)) {
411 munmap(idx_map
, idx_size
);
414 /* ok, it looks sane as far as we can check without
415 * actually mapping the pack file.
417 p
= xmalloc(sizeof(*p
) + path_len
+ 2);
418 strcpy(p
->pack_name
, path
);
419 p
->index_size
= idx_size
;
420 p
->pack_size
= st
.st_size
;
421 p
->index_base
= idx_map
;
424 p
->pack_last_used
= 0;
429 static void prepare_packed_git_one(char *objdir
)
436 sprintf(path
, "%s/pack", objdir
);
442 while ((de
= readdir(dir
)) != NULL
) {
443 int namelen
= strlen(de
->d_name
);
444 struct packed_git
*p
;
446 if (strcmp(de
->d_name
+ namelen
- 4, ".idx"))
449 /* we have .idx. Is it a file we can map? */
450 strcpy(path
+ len
, de
->d_name
);
451 p
= add_packed_git(path
, len
+ namelen
);
454 p
->next
= packed_git
;
460 void prepare_packed_git(void)
463 static int run_once
= 0;
468 prepare_packed_git_one(get_object_directory());
470 for (i
= 0; alt_odb
[i
].base
!= NULL
; i
++) {
471 alt_odb
[i
].name
[0] = 0;
472 prepare_packed_git_one(alt_odb
[i
].base
);
476 int check_sha1_signature(const unsigned char *sha1
, void *map
, unsigned long size
, const char *type
)
479 unsigned char real_sha1
[20];
483 SHA1_Update(&c
, header
, 1+sprintf(header
, "%s %lu", type
, size
));
484 SHA1_Update(&c
, map
, size
);
485 SHA1_Final(real_sha1
, &c
);
486 return memcmp(sha1
, real_sha1
, 20) ? -1 : 0;
489 static void *map_sha1_file_internal(const unsigned char *sha1
,
496 char *filename
= find_sha1_file(sha1
, &st
);
500 error("cannot map sha1 file %s", sha1_to_hex(sha1
));
504 fd
= open(filename
, O_RDONLY
| sha1_file_open_flag
);
506 /* See if it works without O_NOATIME */
507 switch (sha1_file_open_flag
) {
509 fd
= open(filename
, O_RDONLY
);
519 /* If it failed once, it will probably fail again.
520 * Stop using O_NOATIME
522 sha1_file_open_flag
= 0;
524 map
= mmap(NULL
, st
.st_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
526 if (-1 == (int)(long)map
)
532 void *map_sha1_file(const unsigned char *sha1
, unsigned long *size
)
534 return map_sha1_file_internal(sha1
, size
, 1);
537 int unpack_sha1_header(z_stream
*stream
, void *map
, unsigned long mapsize
, void *buffer
, unsigned long size
)
539 /* Get the data stream */
540 memset(stream
, 0, sizeof(*stream
));
541 stream
->next_in
= map
;
542 stream
->avail_in
= mapsize
;
543 stream
->next_out
= buffer
;
544 stream
->avail_out
= size
;
547 return inflate(stream
, 0);
550 static void *unpack_sha1_rest(z_stream
*stream
, void *buffer
, unsigned long size
)
552 int bytes
= strlen(buffer
) + 1;
553 unsigned char *buf
= xmalloc(1+size
);
555 memcpy(buf
, buffer
+ bytes
, stream
->total_out
- bytes
);
556 bytes
= stream
->total_out
- bytes
;
558 stream
->next_out
= buf
+ bytes
;
559 stream
->avail_out
= size
- bytes
;
560 while (inflate(stream
, Z_FINISH
) == Z_OK
)
569 * We used to just use "sscanf()", but that's actually way
570 * too permissive for what we want to check. So do an anal
571 * object header parse by hand.
573 int parse_sha1_header(char *hdr
, char *type
, unsigned long *sizep
)
579 * The type can be at most ten bytes (including the
580 * terminating '\0' that we add), and is followed by
595 * The length must follow immediately, and be in canonical
596 * decimal format (ie "010" is not valid).
603 unsigned long c
= *hdr
- '0';
607 size
= size
* 10 + c
;
613 * The length must be followed by a zero byte
615 return *hdr
? -1 : 0;
618 void * unpack_sha1_file(void *map
, unsigned long mapsize
, char *type
, unsigned long *size
)
624 ret
= unpack_sha1_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
));
625 if (ret
< Z_OK
|| parse_sha1_header(hdr
, type
, size
) < 0)
628 return unpack_sha1_rest(&stream
, hdr
, *size
);
631 /* forward declaration for a mutually recursive function */
632 static int packed_object_info(struct pack_entry
*entry
,
633 char *type
, unsigned long *sizep
);
635 static int packed_delta_info(unsigned char *base_sha1
,
636 unsigned long delta_size
,
639 unsigned long *sizep
,
640 struct packed_git
*p
)
642 struct pack_entry base_ent
;
645 die("truncated pack file");
647 /* The base entry _must_ be in the same pack */
648 if (!find_pack_entry_one(base_sha1
, &base_ent
, p
))
649 die("failed to find delta-pack base object %s",
650 sha1_to_hex(base_sha1
));
652 /* We choose to only get the type of the base object and
653 * ignore potentially corrupt pack file that expects the delta
654 * based on a base with a wrong size. This saves tons of
658 if (packed_object_info(&base_ent
, type
, NULL
))
659 die("cannot get info for delta-pack base");
662 const unsigned char *data
;
663 unsigned char delta_head
[64];
664 unsigned long result_size
;
668 memset(&stream
, 0, sizeof(stream
));
670 data
= stream
.next_in
= base_sha1
+ 20;
671 stream
.avail_in
= left
- 20;
672 stream
.next_out
= delta_head
;
673 stream
.avail_out
= sizeof(delta_head
);
675 inflateInit(&stream
);
676 st
= inflate(&stream
, Z_FINISH
);
678 if ((st
!= Z_STREAM_END
) &&
679 stream
.total_out
!= sizeof(delta_head
))
680 die("delta data unpack-initial failed");
682 /* Examine the initial part of the delta to figure out
686 get_delta_hdr_size(&data
); /* ignore base size */
688 /* Read the result size */
689 result_size
= get_delta_hdr_size(&data
);
690 *sizep
= result_size
;
695 static unsigned long unpack_object_header(struct packed_git
*p
, unsigned long offset
,
696 enum object_type
*type
, unsigned long *sizep
)
699 unsigned char *pack
, c
;
702 if (offset
>= p
->pack_size
)
703 die("object offset outside of pack file");
705 pack
= p
->pack_base
+ offset
;
708 *type
= (c
>> 4) & 7;
712 if (offset
>= p
->pack_size
)
713 die("object offset outside of pack file");
716 size
+= (c
& 0x7f) << shift
;
723 void packed_object_info_detail(struct pack_entry
*e
,
726 unsigned long *store_size
,
727 int *delta_chain_length
,
728 unsigned char *base_sha1
)
730 struct packed_git
*p
= e
->p
;
731 unsigned long offset
, left
;
733 enum object_type kind
;
735 offset
= unpack_object_header(p
, e
->offset
, &kind
, size
);
736 pack
= p
->pack_base
+ offset
;
737 left
= p
->pack_size
- offset
;
738 if (kind
!= OBJ_DELTA
)
739 *delta_chain_length
= 0;
741 int chain_length
= 0;
742 memcpy(base_sha1
, pack
, 20);
744 struct pack_entry base_ent
;
747 find_pack_entry_one(pack
, &base_ent
, p
);
748 offset
= unpack_object_header(p
, base_ent
.offset
,
750 pack
= p
->pack_base
+ offset
;
752 } while (kind
== OBJ_DELTA
);
753 *delta_chain_length
= chain_length
;
757 strcpy(type
, "commit");
760 strcpy(type
, "tree");
763 strcpy(type
, "blob");
769 die("corrupted pack file");
771 *store_size
= 0; /* notyet */
774 static int packed_object_info(struct pack_entry
*entry
,
775 char *type
, unsigned long *sizep
)
777 struct packed_git
*p
= entry
->p
;
778 unsigned long offset
, size
, left
;
780 enum object_type kind
;
783 if (use_packed_git(p
))
784 die("cannot map packed file");
786 offset
= unpack_object_header(p
, entry
->offset
, &kind
, &size
);
787 pack
= p
->pack_base
+ offset
;
788 left
= p
->pack_size
- offset
;
792 retval
= packed_delta_info(pack
, size
, left
, type
, sizep
, p
);
796 strcpy(type
, "commit");
799 strcpy(type
, "tree");
802 strcpy(type
, "blob");
808 die("corrupted pack file");
816 /* forward declaration for a mutually recursive function */
817 static void *unpack_entry(struct pack_entry
*, char *, unsigned long *);
819 static void *unpack_delta_entry(unsigned char *base_sha1
,
820 unsigned long delta_size
,
823 unsigned long *sizep
,
824 struct packed_git
*p
)
826 struct pack_entry base_ent
;
827 void *data
, *delta_data
, *result
, *base
;
828 unsigned long data_size
, result_size
, base_size
;
833 die("truncated pack file");
834 data
= base_sha1
+ 20;
835 data_size
= left
- 20;
836 delta_data
= xmalloc(delta_size
);
838 memset(&stream
, 0, sizeof(stream
));
840 stream
.next_in
= data
;
841 stream
.avail_in
= data_size
;
842 stream
.next_out
= delta_data
;
843 stream
.avail_out
= delta_size
;
845 inflateInit(&stream
);
846 st
= inflate(&stream
, Z_FINISH
);
848 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= delta_size
)
849 die("delta data unpack failed");
851 /* The base entry _must_ be in the same pack */
852 if (!find_pack_entry_one(base_sha1
, &base_ent
, p
))
853 die("failed to find delta-pack base object %s",
854 sha1_to_hex(base_sha1
));
855 base
= unpack_entry_gently(&base_ent
, type
, &base_size
);
857 die("failed to read delta-pack base object %s",
858 sha1_to_hex(base_sha1
));
859 result
= patch_delta(base
, base_size
,
860 delta_data
, delta_size
,
863 die("failed to apply delta");
866 *sizep
= result_size
;
870 static void *unpack_non_delta_entry(unsigned char *data
,
876 unsigned char *buffer
;
878 buffer
= xmalloc(size
+ 1);
880 memset(&stream
, 0, sizeof(stream
));
881 stream
.next_in
= data
;
882 stream
.avail_in
= left
;
883 stream
.next_out
= buffer
;
884 stream
.avail_out
= size
;
886 inflateInit(&stream
);
887 st
= inflate(&stream
, Z_FINISH
);
889 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= size
) {
897 static void *unpack_entry(struct pack_entry
*entry
,
898 char *type
, unsigned long *sizep
)
900 struct packed_git
*p
= entry
->p
;
903 if (use_packed_git(p
))
904 die("cannot map packed file");
905 retval
= unpack_entry_gently(entry
, type
, sizep
);
908 die("corrupted pack file");
912 /* The caller is responsible for use_packed_git()/unuse_packed_git() pair */
913 void *unpack_entry_gently(struct pack_entry
*entry
,
914 char *type
, unsigned long *sizep
)
916 struct packed_git
*p
= entry
->p
;
917 unsigned long offset
, size
, left
;
919 enum object_type kind
;
922 offset
= unpack_object_header(p
, entry
->offset
, &kind
, &size
);
923 pack
= p
->pack_base
+ offset
;
924 left
= p
->pack_size
- offset
;
927 retval
= unpack_delta_entry(pack
, size
, left
, type
, sizep
, p
);
930 strcpy(type
, "commit");
933 strcpy(type
, "tree");
936 strcpy(type
, "blob");
945 retval
= unpack_non_delta_entry(pack
, size
, left
);
949 int num_packed_objects(const struct packed_git
*p
)
951 /* See check_packed_git_idx() */
952 return (p
->index_size
- 20 - 20 - 4*256) / 24;
955 int nth_packed_object_sha1(const struct packed_git
*p
, int n
,
958 void *index
= p
->index_base
+ 256;
959 if (n
< 0 || num_packed_objects(p
) <= n
)
961 memcpy(sha1
, (index
+ 24 * n
+ 4), 20);
965 int find_pack_entry_one(const unsigned char *sha1
,
966 struct pack_entry
*e
, struct packed_git
*p
)
968 unsigned int *level1_ofs
= p
->index_base
;
969 int hi
= ntohl(level1_ofs
[*sha1
]);
970 int lo
= ((*sha1
== 0x0) ? 0 : ntohl(level1_ofs
[*sha1
- 1]));
971 void *index
= p
->index_base
+ 256;
974 int mi
= (lo
+ hi
) / 2;
975 int cmp
= memcmp(index
+ 24 * mi
+ 4, sha1
, 20);
977 e
->offset
= ntohl(*((int*)(index
+ 24 * mi
)));
978 memcpy(e
->sha1
, sha1
, 20);
990 static int find_pack_entry(const unsigned char *sha1
, struct pack_entry
*e
)
992 struct packed_git
*p
;
993 prepare_packed_git();
995 for (p
= packed_git
; p
; p
= p
->next
) {
996 if (find_pack_entry_one(sha1
, e
, p
))
1002 int sha1_object_info(const unsigned char *sha1
, char *type
, unsigned long *sizep
)
1005 unsigned long mapsize
, size
;
1010 map
= map_sha1_file_internal(sha1
, &mapsize
, 0);
1012 struct pack_entry e
;
1014 if (!find_pack_entry(sha1
, &e
))
1015 return error("unable to find %s", sha1_to_hex(sha1
));
1016 return packed_object_info(&e
, type
, sizep
);
1018 if (unpack_sha1_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
)) < 0)
1019 status
= error("unable to unpack %s header",
1021 if (parse_sha1_header(hdr
, type
, &size
) < 0)
1022 status
= error("unable to parse %s header", sha1_to_hex(sha1
));
1028 inflateEnd(&stream
);
1029 munmap(map
, mapsize
);
1033 static void *read_packed_sha1(const unsigned char *sha1
, char *type
, unsigned long *size
)
1035 struct pack_entry e
;
1037 if (!find_pack_entry(sha1
, &e
)) {
1038 error("cannot read sha1_file for %s", sha1_to_hex(sha1
));
1041 return unpack_entry(&e
, type
, size
);
1044 void * read_sha1_file(const unsigned char *sha1
, char *type
, unsigned long *size
)
1046 unsigned long mapsize
;
1049 map
= map_sha1_file_internal(sha1
, &mapsize
, 0);
1051 buf
= unpack_sha1_file(map
, mapsize
, type
, size
);
1052 munmap(map
, mapsize
);
1055 return read_packed_sha1(sha1
, type
, size
);
1058 void *read_object_with_reference(const unsigned char *sha1
,
1059 const char *required_type
,
1060 unsigned long *size
,
1061 unsigned char *actual_sha1_return
)
1065 unsigned long isize
;
1066 unsigned char actual_sha1
[20];
1068 memcpy(actual_sha1
, sha1
, 20);
1070 int ref_length
= -1;
1071 const char *ref_type
= NULL
;
1073 buffer
= read_sha1_file(actual_sha1
, type
, &isize
);
1076 if (!strcmp(type
, required_type
)) {
1078 if (actual_sha1_return
)
1079 memcpy(actual_sha1_return
, actual_sha1
, 20);
1082 /* Handle references */
1083 else if (!strcmp(type
, "commit"))
1085 else if (!strcmp(type
, "tag"))
1086 ref_type
= "object ";
1091 ref_length
= strlen(ref_type
);
1093 if (memcmp(buffer
, ref_type
, ref_length
) ||
1094 get_sha1_hex(buffer
+ ref_length
, actual_sha1
)) {
1098 /* Now we have the ID of the referred-to object in
1099 * actual_sha1. Check again. */
1103 char *write_sha1_file_prepare(void *buf
,
1106 unsigned char *sha1
,
1112 /* Generate the header */
1113 *hdrlen
= sprintf((char *)hdr
, "%s %lu", type
, len
)+1;
1117 SHA1_Update(&c
, hdr
, *hdrlen
);
1118 SHA1_Update(&c
, buf
, len
);
1119 SHA1_Final(sha1
, &c
);
1121 return sha1_file_name(sha1
);
1124 int write_sha1_file(void *buf
, unsigned long len
, const char *type
, unsigned char *returnsha1
)
1127 unsigned char *compressed
;
1129 unsigned char sha1
[20];
1131 static char tmpfile
[PATH_MAX
];
1132 unsigned char hdr
[50];
1133 int fd
, hdrlen
, ret
;
1135 /* Normally if we have it in the pack then we do not bother writing
1136 * it out into .git/objects/??/?{38} file.
1138 filename
= write_sha1_file_prepare(buf
, len
, type
, sha1
, hdr
, &hdrlen
);
1140 memcpy(returnsha1
, sha1
, 20);
1141 if (has_sha1_file(sha1
))
1143 fd
= open(filename
, O_RDONLY
);
1146 * FIXME!!! We might do collision checking here, but we'd
1147 * need to uncompress the old file and check it. Later.
1153 if (errno
!= ENOENT
) {
1154 fprintf(stderr
, "sha1 file %s: %s", filename
, strerror(errno
));
1158 snprintf(tmpfile
, sizeof(tmpfile
), "%s/obj_XXXXXX", get_object_directory());
1160 fd
= mkstemp(tmpfile
);
1162 fprintf(stderr
, "unable to create temporary sha1 filename %s: %s", tmpfile
, strerror(errno
));
1167 memset(&stream
, 0, sizeof(stream
));
1168 deflateInit(&stream
, Z_BEST_COMPRESSION
);
1169 size
= deflateBound(&stream
, len
+hdrlen
);
1170 compressed
= xmalloc(size
);
1173 stream
.next_out
= compressed
;
1174 stream
.avail_out
= size
;
1176 /* First header.. */
1177 stream
.next_in
= hdr
;
1178 stream
.avail_in
= hdrlen
;
1179 while (deflate(&stream
, 0) == Z_OK
)
1182 /* Then the data itself.. */
1183 stream
.next_in
= buf
;
1184 stream
.avail_in
= len
;
1185 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
1187 deflateEnd(&stream
);
1188 size
= stream
.total_out
;
1190 if (write(fd
, compressed
, size
) != size
)
1191 die("unable to write file");
1196 ret
= link(tmpfile
, filename
);
1201 * Coda hack - coda doesn't like cross-directory links,
1202 * so we fall back to a rename, which will mean that it
1203 * won't be able to check collisions, but that's not a
1206 * When this succeeds, we just return 0. We have nothing
1209 if (ret
== EXDEV
&& !rename(tmpfile
, filename
))
1214 if (ret
!= EEXIST
) {
1215 fprintf(stderr
, "unable to write sha1 filename %s: %s", filename
, strerror(ret
));
1218 /* FIXME!!! Collision check here ? */
1224 int write_sha1_from_fd(const unsigned char *sha1
, int fd
)
1226 char *filename
= sha1_file_name(sha1
);
1230 unsigned char real_sha1
[20];
1231 unsigned char buf
[4096];
1232 unsigned char discard
[4096];
1236 local
= open(filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1239 return error("Couldn't open %s\n", filename
);
1241 memset(&stream
, 0, sizeof(stream
));
1243 inflateInit(&stream
);
1249 size
= read(fd
, buf
, 4096);
1254 return error("Connection closed?");
1255 perror("Reading from connection");
1258 write(local
, buf
, size
);
1259 stream
.avail_in
= size
;
1260 stream
.next_in
= buf
;
1262 stream
.next_out
= discard
;
1263 stream
.avail_out
= sizeof(discard
);
1264 ret
= inflate(&stream
, Z_SYNC_FLUSH
);
1265 SHA1_Update(&c
, discard
, sizeof(discard
) -
1267 } while (stream
.avail_in
&& ret
== Z_OK
);
1269 } while (ret
== Z_OK
);
1270 inflateEnd(&stream
);
1273 SHA1_Final(real_sha1
, &c
);
1274 if (ret
!= Z_STREAM_END
) {
1276 return error("File %s corrupted", sha1_to_hex(sha1
));
1278 if (memcmp(sha1
, real_sha1
, 20)) {
1280 return error("File %s has bad hash\n", sha1_to_hex(sha1
));
1286 int has_sha1_pack(const unsigned char *sha1
)
1288 struct pack_entry e
;
1289 return find_pack_entry(sha1
, &e
);
1292 int has_sha1_file(const unsigned char *sha1
)
1295 struct pack_entry e
;
1297 if (find_sha1_file(sha1
, &st
))
1299 return find_pack_entry(sha1
, &e
);
1302 int index_fd(unsigned char *sha1
, int fd
, struct stat
*st
, int write_object
, const char *type
)
1304 unsigned long size
= st
->st_size
;
1307 unsigned char hdr
[50];
1312 buf
= mmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1314 if ((int)(long)buf
== -1)
1320 ret
= write_sha1_file(buf
, size
, type
, sha1
);
1322 write_sha1_file_prepare(buf
, size
, type
, sha1
, hdr
, &hdrlen
);