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 char *git_path(const char *fmt
, ...)
107 static char pathname
[PATH_MAX
];
113 len
= strlen(git_dir
);
114 if (len
== 1 && *git_dir
== '.')
116 if (len
> PATH_MAX
-100)
118 memcpy(pathname
, git_dir
, len
);
119 if (len
&& git_dir
[len
-1] != '/')
120 pathname
[len
++] = '/';
122 vsnprintf(pathname
+ len
, sizeof(pathname
) - len
, fmt
, args
);
127 int get_sha1(const char *str
, unsigned char *sha1
)
129 static const char *prefix
[] = {
139 if (!get_sha1_hex(str
, sha1
))
142 for (p
= prefix
; *p
; p
++) {
143 char * pathname
= git_path("%s/%s", *p
, str
);
144 if (!get_sha1_file(pathname
, sha1
))
151 char * sha1_to_hex(const unsigned char *sha1
)
153 static char buffer
[50];
154 static const char hex
[] = "0123456789abcdef";
158 for (i
= 0; i
< 20; i
++) {
159 unsigned int val
= *sha1
++;
160 *buf
++ = hex
[val
>> 4];
161 *buf
++ = hex
[val
& 0xf];
166 static void fill_sha1_path(char *pathbuf
, const unsigned char *sha1
)
169 for (i
= 0; i
< 20; i
++) {
170 static char hex
[] = "0123456789abcdef";
171 unsigned int val
= sha1
[i
];
172 char *pos
= pathbuf
+ i
*2 + (i
> 0);
173 *pos
++ = hex
[val
>> 4];
174 *pos
= hex
[val
& 0xf];
179 * NOTE! This returns a statically allocated buffer, so you have to be
180 * careful about using it. Do a "strdup()" if you need to save the
183 * Also note that this returns the location for creating. Reading
184 * SHA1 file can happen from any alternate directory listed in the
185 * DB_ENVIRONMENT environment variable if it is not found in
186 * the primary object database.
188 char *sha1_file_name(const unsigned char *sha1
)
190 static char *name
, *base
;
193 const char *sha1_file_directory
= get_object_directory();
194 int len
= strlen(sha1_file_directory
);
195 base
= xmalloc(len
+ 60);
196 memcpy(base
, sha1_file_directory
, len
);
197 memset(base
+len
, 0, 60);
200 name
= base
+ len
+ 1;
202 fill_sha1_path(name
, sha1
);
206 struct alternate_object_database
*alt_odb
;
209 * Prepare alternate object database registry.
210 * alt_odb points at an array of struct alternate_object_database.
211 * This array is terminated with an element that has both its base
212 * and name set to NULL. alt_odb[n] comes from n'th non-empty
213 * element from colon separated ALTERNATE_DB_ENVIRONMENT environment
214 * variable, and its base points at a statically allocated buffer
215 * that contains "/the/directory/corresponding/to/.git/objects/...",
216 * while its name points just after the slash at the end of
217 * ".git/objects/" in the example above, and has enough space to hold
218 * 40-byte hex SHA1, an extra slash for the first level indirection,
219 * and the terminating NUL.
220 * This function allocates the alt_odb array and all the strings
221 * pointed by base fields of the array elements with one xmalloc();
222 * the string pool immediately follows the array.
224 void prepare_alt_odb(void)
227 const char *cp
, *last
;
229 const char *alt
= gitenv(ALTERNATE_DB_ENVIRONMENT
) ? : "";
233 /* The first pass counts how large an area to allocate to
234 * hold the entire alt_odb structure, including array of
235 * structs and path buffers for them. The second pass fills
236 * the structure and prepares the path buffers for use by
239 for (totlen
= pass
= 0; pass
< 2; pass
++) {
243 cp
= strchr(last
, ':') ? : last
+ strlen(last
);
245 /* 43 = 40-byte + 2 '/' + terminating NUL */
246 int pfxlen
= cp
- last
;
247 int entlen
= pfxlen
+ 43;
251 alt_odb
[i
].base
= op
;
252 alt_odb
[i
].name
= op
+ pfxlen
+ 1;
253 memcpy(op
, last
, pfxlen
);
254 op
[pfxlen
] = op
[pfxlen
+ 3] = '/';
260 while (*cp
&& *cp
== ':')
266 alt_odb
= xmalloc(sizeof(*alt_odb
) * (i
+ 1) + totlen
);
267 alt_odb
[i
].base
= alt_odb
[i
].name
= NULL
;
268 op
= (char*)(&alt_odb
[i
+1]);
272 static char *find_sha1_file(const unsigned char *sha1
, struct stat
*st
)
275 char *name
= sha1_file_name(sha1
);
280 for (i
= 0; (name
= alt_odb
[i
].name
) != NULL
; i
++) {
281 fill_sha1_path(name
, sha1
);
282 if (!stat(alt_odb
[i
].base
, st
))
283 return alt_odb
[i
].base
;
288 #define PACK_MAX_SZ (1<<26)
289 static int pack_used_ctr
;
290 static unsigned long pack_mapped
;
291 struct packed_git
*packed_git
;
293 static int check_packed_git_idx(const char *path
, unsigned long *idx_size_
,
298 unsigned long idx_size
;
300 int fd
= open(path
, O_RDONLY
);
304 if (fstat(fd
, &st
)) {
308 idx_size
= st
.st_size
;
309 idx_map
= mmap(NULL
, idx_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
311 if (idx_map
== MAP_FAILED
)
316 *idx_size_
= idx_size
;
318 /* check index map */
319 if (idx_size
< 4*256 + 20 + 20)
320 return error("index file too small");
322 for (i
= 0; i
< 256; i
++) {
323 unsigned int n
= ntohl(index
[i
]);
325 return error("non-monotonic index");
331 * - 256 index entries 4 bytes each
332 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
333 * - 20-byte SHA1 of the packfile
334 * - 20-byte SHA1 file checksum
336 if (idx_size
!= 4*256 + nr
* 24 + 20 + 20)
337 return error("wrong index file size");
342 static int unuse_one_packed_git(void)
344 struct packed_git
*p
, *lru
= NULL
;
346 for (p
= packed_git
; p
; p
= p
->next
) {
347 if (p
->pack_use_cnt
|| !p
->pack_base
)
349 if (!lru
|| p
->pack_last_used
< lru
->pack_last_used
)
354 munmap(lru
->pack_base
, lru
->pack_size
);
355 lru
->pack_base
= NULL
;
359 void unuse_packed_git(struct packed_git
*p
)
364 int use_packed_git(struct packed_git
*p
)
371 pack_mapped
+= p
->pack_size
;
372 while (PACK_MAX_SZ
< pack_mapped
&& unuse_one_packed_git())
374 fd
= open(p
->pack_name
, O_RDONLY
);
376 die("packfile %s cannot be opened", p
->pack_name
);
377 if (fstat(fd
, &st
)) {
379 die("packfile %s cannot be opened", p
->pack_name
);
381 if (st
.st_size
!= p
->pack_size
)
382 die("packfile %s size mismatch.", p
->pack_name
);
383 map
= mmap(NULL
, p
->pack_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
385 if (map
== MAP_FAILED
)
386 die("packfile %s cannot be mapped.", p
->pack_name
);
389 /* Check if the pack file matches with the index file.
392 if (memcmp((char*)(p
->index_base
) + p
->index_size
- 40,
393 p
->pack_base
+ p
->pack_size
- 20, 20))
394 die("packfile %s does not match index.", p
->pack_name
);
396 p
->pack_last_used
= pack_used_ctr
++;
401 struct packed_git
*add_packed_git(char *path
, int path_len
)
404 struct packed_git
*p
;
405 unsigned long idx_size
;
408 if (check_packed_git_idx(path
, &idx_size
, &idx_map
))
411 /* do we have a corresponding .pack file? */
412 strcpy(path
+ path_len
- 4, ".pack");
413 if (stat(path
, &st
) || !S_ISREG(st
.st_mode
)) {
414 munmap(idx_map
, idx_size
);
417 /* ok, it looks sane as far as we can check without
418 * actually mapping the pack file.
420 p
= xmalloc(sizeof(*p
) + path_len
+ 2);
421 strcpy(p
->pack_name
, path
);
422 p
->index_size
= idx_size
;
423 p
->pack_size
= st
.st_size
;
424 p
->index_base
= idx_map
;
427 p
->pack_last_used
= 0;
432 static void prepare_packed_git_one(char *objdir
)
439 sprintf(path
, "%s/pack", objdir
);
445 while ((de
= readdir(dir
)) != NULL
) {
446 int namelen
= strlen(de
->d_name
);
447 struct packed_git
*p
;
449 if (strcmp(de
->d_name
+ namelen
- 4, ".idx"))
452 /* we have .idx. Is it a file we can map? */
453 strcpy(path
+ len
, de
->d_name
);
454 p
= add_packed_git(path
, len
+ namelen
);
457 p
->next
= packed_git
;
462 void prepare_packed_git(void)
465 static int run_once
= 0;
470 prepare_packed_git_one(get_object_directory());
472 for (i
= 0; alt_odb
[i
].base
!= NULL
; i
++) {
473 alt_odb
[i
].name
[0] = 0;
474 prepare_packed_git_one(alt_odb
[i
].base
);
478 int check_sha1_signature(const unsigned char *sha1
, void *map
, unsigned long size
, const char *type
)
481 unsigned char real_sha1
[20];
485 SHA1_Update(&c
, header
, 1+sprintf(header
, "%s %lu", type
, size
));
486 SHA1_Update(&c
, map
, size
);
487 SHA1_Final(real_sha1
, &c
);
488 return memcmp(sha1
, real_sha1
, 20) ? -1 : 0;
491 static void *map_sha1_file_internal(const unsigned char *sha1
,
498 char *filename
= find_sha1_file(sha1
, &st
);
502 error("cannot map sha1 file %s", sha1_to_hex(sha1
));
506 fd
= open(filename
, O_RDONLY
| sha1_file_open_flag
);
508 /* See if it works without O_NOATIME */
509 switch (sha1_file_open_flag
) {
511 fd
= open(filename
, O_RDONLY
);
521 /* If it failed once, it will probably fail again.
522 * Stop using O_NOATIME
524 sha1_file_open_flag
= 0;
526 map
= mmap(NULL
, st
.st_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
528 if (-1 == (int)(long)map
)
534 void *map_sha1_file(const unsigned char *sha1
, unsigned long *size
)
536 return map_sha1_file_internal(sha1
, size
, 1);
539 int unpack_sha1_header(z_stream
*stream
, void *map
, unsigned long mapsize
, void *buffer
, unsigned long size
)
541 /* Get the data stream */
542 memset(stream
, 0, sizeof(*stream
));
543 stream
->next_in
= map
;
544 stream
->avail_in
= mapsize
;
545 stream
->next_out
= buffer
;
546 stream
->avail_out
= size
;
549 return inflate(stream
, 0);
552 static void *unpack_sha1_rest(z_stream
*stream
, void *buffer
, unsigned long size
)
554 int bytes
= strlen(buffer
) + 1;
555 unsigned char *buf
= xmalloc(1+size
);
557 memcpy(buf
, buffer
+ bytes
, stream
->total_out
- bytes
);
558 bytes
= stream
->total_out
- bytes
;
560 stream
->next_out
= buf
+ bytes
;
561 stream
->avail_out
= size
- bytes
;
562 while (inflate(stream
, Z_FINISH
) == Z_OK
)
571 * We used to just use "sscanf()", but that's actually way
572 * too permissive for what we want to check. So do an anal
573 * object header parse by hand.
575 int parse_sha1_header(char *hdr
, char *type
, unsigned long *sizep
)
581 * The type can be at most ten bytes (including the
582 * terminating '\0' that we add), and is followed by
597 * The length must follow immediately, and be in canonical
598 * decimal format (ie "010" is not valid).
605 unsigned long c
= *hdr
- '0';
609 size
= size
* 10 + c
;
615 * The length must be followed by a zero byte
617 return *hdr
? -1 : 0;
620 void * unpack_sha1_file(void *map
, unsigned long mapsize
, char *type
, unsigned long *size
)
626 ret
= unpack_sha1_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
));
627 if (ret
< Z_OK
|| parse_sha1_header(hdr
, type
, size
) < 0)
630 return unpack_sha1_rest(&stream
, hdr
, *size
);
633 /* forward declaration for a mutually recursive function */
634 static int packed_object_info(struct pack_entry
*entry
,
635 char *type
, unsigned long *sizep
);
637 static int packed_delta_info(unsigned char *base_sha1
,
638 unsigned long delta_size
,
641 unsigned long *sizep
,
642 struct packed_git
*p
)
644 struct pack_entry base_ent
;
647 die("truncated pack file");
649 /* The base entry _must_ be in the same pack */
650 if (!find_pack_entry_one(base_sha1
, &base_ent
, p
))
651 die("failed to find delta-pack base object %s",
652 sha1_to_hex(base_sha1
));
654 /* We choose to only get the type of the base object and
655 * ignore potentially corrupt pack file that expects the delta
656 * based on a base with a wrong size. This saves tons of
660 if (packed_object_info(&base_ent
, type
, NULL
))
661 die("cannot get info for delta-pack base");
664 const unsigned char *data
;
665 unsigned char delta_head
[64];
666 unsigned long result_size
;
670 memset(&stream
, 0, sizeof(stream
));
672 data
= stream
.next_in
= base_sha1
+ 20;
673 stream
.avail_in
= left
- 20;
674 stream
.next_out
= delta_head
;
675 stream
.avail_out
= sizeof(delta_head
);
677 inflateInit(&stream
);
678 st
= inflate(&stream
, Z_FINISH
);
680 if ((st
!= Z_STREAM_END
) &&
681 stream
.total_out
!= sizeof(delta_head
))
682 die("delta data unpack-initial failed");
684 /* Examine the initial part of the delta to figure out
688 get_delta_hdr_size(&data
); /* ignore base size */
690 /* Read the result size */
691 result_size
= get_delta_hdr_size(&data
);
692 *sizep
= result_size
;
697 static unsigned long unpack_object_header(struct packed_git
*p
, unsigned long offset
,
698 enum object_type
*type
, unsigned long *sizep
)
701 unsigned char *pack
, c
;
704 if (offset
>= p
->pack_size
)
705 die("object offset outside of pack file");
707 pack
= p
->pack_base
+ offset
;
710 *type
= (c
>> 4) & 7;
714 if (offset
>= p
->pack_size
)
715 die("object offset outside of pack file");
718 size
+= (c
& 0x7f) << shift
;
725 void packed_object_info_detail(struct pack_entry
*e
,
728 unsigned long *store_size
,
729 int *delta_chain_length
,
730 unsigned char *base_sha1
)
732 struct packed_git
*p
= e
->p
;
733 unsigned long offset
, left
;
735 enum object_type kind
;
737 offset
= unpack_object_header(p
, e
->offset
, &kind
, size
);
738 pack
= p
->pack_base
+ offset
;
739 left
= p
->pack_size
- offset
;
740 if (kind
!= OBJ_DELTA
)
741 *delta_chain_length
= 0;
743 int chain_length
= 0;
744 memcpy(base_sha1
, pack
, 20);
746 struct pack_entry base_ent
;
749 find_pack_entry_one(pack
, &base_ent
, p
);
750 offset
= unpack_object_header(p
, base_ent
.offset
,
752 pack
= p
->pack_base
+ offset
;
754 } while (kind
== OBJ_DELTA
);
755 *delta_chain_length
= chain_length
;
759 strcpy(type
, "commit");
762 strcpy(type
, "tree");
765 strcpy(type
, "blob");
771 die("corrupted pack file");
773 *store_size
= 0; /* notyet */
776 static int packed_object_info(struct pack_entry
*entry
,
777 char *type
, unsigned long *sizep
)
779 struct packed_git
*p
= entry
->p
;
780 unsigned long offset
, size
, left
;
782 enum object_type kind
;
785 if (use_packed_git(p
))
786 die("cannot map packed file");
788 offset
= unpack_object_header(p
, entry
->offset
, &kind
, &size
);
789 pack
= p
->pack_base
+ offset
;
790 left
= p
->pack_size
- offset
;
794 retval
= packed_delta_info(pack
, size
, left
, type
, sizep
, p
);
798 strcpy(type
, "commit");
801 strcpy(type
, "tree");
804 strcpy(type
, "blob");
810 die("corrupted pack file");
818 /* forward declaration for a mutually recursive function */
819 static void *unpack_entry(struct pack_entry
*, char *, unsigned long *);
821 static void *unpack_delta_entry(unsigned char *base_sha1
,
822 unsigned long delta_size
,
825 unsigned long *sizep
,
826 struct packed_git
*p
)
828 struct pack_entry base_ent
;
829 void *data
, *delta_data
, *result
, *base
;
830 unsigned long data_size
, result_size
, base_size
;
835 die("truncated pack file");
836 data
= base_sha1
+ 20;
837 data_size
= left
- 20;
838 delta_data
= xmalloc(delta_size
);
840 memset(&stream
, 0, sizeof(stream
));
842 stream
.next_in
= data
;
843 stream
.avail_in
= data_size
;
844 stream
.next_out
= delta_data
;
845 stream
.avail_out
= delta_size
;
847 inflateInit(&stream
);
848 st
= inflate(&stream
, Z_FINISH
);
850 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= delta_size
)
851 die("delta data unpack failed");
853 /* The base entry _must_ be in the same pack */
854 if (!find_pack_entry_one(base_sha1
, &base_ent
, p
))
855 die("failed to find delta-pack base object %s",
856 sha1_to_hex(base_sha1
));
857 base
= unpack_entry_gently(&base_ent
, type
, &base_size
);
859 die("failed to read delta-pack base object %s",
860 sha1_to_hex(base_sha1
));
861 result
= patch_delta(base
, base_size
,
862 delta_data
, delta_size
,
865 die("failed to apply delta");
868 *sizep
= result_size
;
872 static void *unpack_non_delta_entry(unsigned char *data
,
878 unsigned char *buffer
;
880 buffer
= xmalloc(size
+ 1);
882 memset(&stream
, 0, sizeof(stream
));
883 stream
.next_in
= data
;
884 stream
.avail_in
= left
;
885 stream
.next_out
= buffer
;
886 stream
.avail_out
= size
;
888 inflateInit(&stream
);
889 st
= inflate(&stream
, Z_FINISH
);
891 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= size
) {
899 static void *unpack_entry(struct pack_entry
*entry
,
900 char *type
, unsigned long *sizep
)
902 struct packed_git
*p
= entry
->p
;
905 if (use_packed_git(p
))
906 die("cannot map packed file");
907 retval
= unpack_entry_gently(entry
, type
, sizep
);
910 die("corrupted pack file");
914 /* The caller is responsible for use_packed_git()/unuse_packed_git() pair */
915 void *unpack_entry_gently(struct pack_entry
*entry
,
916 char *type
, unsigned long *sizep
)
918 struct packed_git
*p
= entry
->p
;
919 unsigned long offset
, size
, left
;
921 enum object_type kind
;
924 offset
= unpack_object_header(p
, entry
->offset
, &kind
, &size
);
925 pack
= p
->pack_base
+ offset
;
926 left
= p
->pack_size
- offset
;
929 retval
= unpack_delta_entry(pack
, size
, left
, type
, sizep
, p
);
932 strcpy(type
, "commit");
935 strcpy(type
, "tree");
938 strcpy(type
, "blob");
947 retval
= unpack_non_delta_entry(pack
, size
, left
);
951 int num_packed_objects(const struct packed_git
*p
)
953 /* See check_packed_git_idx() */
954 return (p
->index_size
- 20 - 20 - 4*256) / 24;
957 int nth_packed_object_sha1(const struct packed_git
*p
, int n
,
960 void *index
= p
->index_base
+ 256;
961 if (n
< 0 || num_packed_objects(p
) <= n
)
963 memcpy(sha1
, (index
+ 24 * n
+ 4), 20);
967 int find_pack_entry_one(const unsigned char *sha1
,
968 struct pack_entry
*e
, struct packed_git
*p
)
970 unsigned int *level1_ofs
= p
->index_base
;
971 int hi
= ntohl(level1_ofs
[*sha1
]);
972 int lo
= ((*sha1
== 0x0) ? 0 : ntohl(level1_ofs
[*sha1
- 1]));
973 void *index
= p
->index_base
+ 256;
976 int mi
= (lo
+ hi
) / 2;
977 int cmp
= memcmp(index
+ 24 * mi
+ 4, sha1
, 20);
979 e
->offset
= ntohl(*((int*)(index
+ 24 * mi
)));
980 memcpy(e
->sha1
, sha1
, 20);
992 static int find_pack_entry(const unsigned char *sha1
, struct pack_entry
*e
)
994 struct packed_git
*p
;
995 prepare_packed_git();
997 for (p
= packed_git
; p
; p
= p
->next
) {
998 if (find_pack_entry_one(sha1
, e
, p
))
1004 int sha1_object_info(const unsigned char *sha1
, char *type
, unsigned long *sizep
)
1007 unsigned long mapsize
, size
;
1012 map
= map_sha1_file_internal(sha1
, &mapsize
, 0);
1014 struct pack_entry e
;
1016 if (!find_pack_entry(sha1
, &e
))
1017 return error("unable to find %s", sha1_to_hex(sha1
));
1018 return packed_object_info(&e
, type
, sizep
);
1020 if (unpack_sha1_header(&stream
, map
, mapsize
, hdr
, sizeof(hdr
)) < 0)
1021 status
= error("unable to unpack %s header",
1023 if (parse_sha1_header(hdr
, type
, &size
) < 0)
1024 status
= error("unable to parse %s header", sha1_to_hex(sha1
));
1030 inflateEnd(&stream
);
1031 munmap(map
, mapsize
);
1035 static void *read_packed_sha1(const unsigned char *sha1
, char *type
, unsigned long *size
)
1037 struct pack_entry e
;
1039 if (!find_pack_entry(sha1
, &e
)) {
1040 error("cannot read sha1_file for %s", sha1_to_hex(sha1
));
1043 return unpack_entry(&e
, type
, size
);
1046 void * read_sha1_file(const unsigned char *sha1
, char *type
, unsigned long *size
)
1048 unsigned long mapsize
;
1051 map
= map_sha1_file_internal(sha1
, &mapsize
, 0);
1053 buf
= unpack_sha1_file(map
, mapsize
, type
, size
);
1054 munmap(map
, mapsize
);
1057 return read_packed_sha1(sha1
, type
, size
);
1060 void *read_object_with_reference(const unsigned char *sha1
,
1061 const char *required_type
,
1062 unsigned long *size
,
1063 unsigned char *actual_sha1_return
)
1067 unsigned long isize
;
1068 unsigned char actual_sha1
[20];
1070 memcpy(actual_sha1
, sha1
, 20);
1072 int ref_length
= -1;
1073 const char *ref_type
= NULL
;
1075 buffer
= read_sha1_file(actual_sha1
, type
, &isize
);
1078 if (!strcmp(type
, required_type
)) {
1080 if (actual_sha1_return
)
1081 memcpy(actual_sha1_return
, actual_sha1
, 20);
1084 /* Handle references */
1085 else if (!strcmp(type
, "commit"))
1087 else if (!strcmp(type
, "tag"))
1088 ref_type
= "object ";
1093 ref_length
= strlen(ref_type
);
1095 if (memcmp(buffer
, ref_type
, ref_length
) ||
1096 get_sha1_hex(buffer
+ ref_length
, actual_sha1
)) {
1100 /* Now we have the ID of the referred-to object in
1101 * actual_sha1. Check again. */
1105 static char *write_sha1_file_prepare(void *buf
,
1108 unsigned char *sha1
,
1114 /* Generate the header */
1115 *hdrlen
= sprintf((char *)hdr
, "%s %lu", type
, len
)+1;
1119 SHA1_Update(&c
, hdr
, *hdrlen
);
1120 SHA1_Update(&c
, buf
, len
);
1121 SHA1_Final(sha1
, &c
);
1123 return sha1_file_name(sha1
);
1126 int write_sha1_file(void *buf
, unsigned long len
, const char *type
, unsigned char *returnsha1
)
1129 unsigned char *compressed
;
1131 unsigned char sha1
[20];
1133 static char tmpfile
[PATH_MAX
];
1134 unsigned char hdr
[50];
1135 int fd
, hdrlen
, ret
;
1137 /* Normally if we have it in the pack then we do not bother writing
1138 * it out into .git/objects/??/?{38} file.
1140 filename
= write_sha1_file_prepare(buf
, len
, type
, sha1
, hdr
, &hdrlen
);
1142 memcpy(returnsha1
, sha1
, 20);
1143 if (has_sha1_file(sha1
))
1145 fd
= open(filename
, O_RDONLY
);
1148 * FIXME!!! We might do collision checking here, but we'd
1149 * need to uncompress the old file and check it. Later.
1155 if (errno
!= ENOENT
) {
1156 fprintf(stderr
, "sha1 file %s: %s", filename
, strerror(errno
));
1160 snprintf(tmpfile
, sizeof(tmpfile
), "%s/obj_XXXXXX", get_object_directory());
1162 fd
= mkstemp(tmpfile
);
1164 fprintf(stderr
, "unable to create temporary sha1 filename %s: %s", tmpfile
, strerror(errno
));
1169 memset(&stream
, 0, sizeof(stream
));
1170 deflateInit(&stream
, Z_BEST_COMPRESSION
);
1171 size
= deflateBound(&stream
, len
+hdrlen
);
1172 compressed
= xmalloc(size
);
1175 stream
.next_out
= compressed
;
1176 stream
.avail_out
= size
;
1178 /* First header.. */
1179 stream
.next_in
= hdr
;
1180 stream
.avail_in
= hdrlen
;
1181 while (deflate(&stream
, 0) == Z_OK
)
1184 /* Then the data itself.. */
1185 stream
.next_in
= buf
;
1186 stream
.avail_in
= len
;
1187 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
1189 deflateEnd(&stream
);
1190 size
= stream
.total_out
;
1192 if (write(fd
, compressed
, size
) != size
)
1193 die("unable to write file");
1198 ret
= link(tmpfile
, filename
);
1203 * Coda hack - coda doesn't like cross-directory links,
1204 * so we fall back to a rename, which will mean that it
1205 * won't be able to check collisions, but that's not a
1208 * When this succeeds, we just return 0. We have nothing
1211 if (ret
== EXDEV
&& !rename(tmpfile
, filename
))
1216 if (ret
!= EEXIST
) {
1217 fprintf(stderr
, "unable to write sha1 filename %s: %s", filename
, strerror(ret
));
1220 /* FIXME!!! Collision check here ? */
1226 int write_sha1_from_fd(const unsigned char *sha1
, int fd
)
1228 char *filename
= sha1_file_name(sha1
);
1232 unsigned char real_sha1
[20];
1233 unsigned char buf
[4096];
1234 unsigned char discard
[4096];
1238 local
= open(filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1241 return error("Couldn't open %s\n", filename
);
1243 memset(&stream
, 0, sizeof(stream
));
1245 inflateInit(&stream
);
1251 size
= read(fd
, buf
, 4096);
1256 return error("Connection closed?");
1257 perror("Reading from connection");
1260 write(local
, buf
, size
);
1261 stream
.avail_in
= size
;
1262 stream
.next_in
= buf
;
1264 stream
.next_out
= discard
;
1265 stream
.avail_out
= sizeof(discard
);
1266 ret
= inflate(&stream
, Z_SYNC_FLUSH
);
1267 SHA1_Update(&c
, discard
, sizeof(discard
) -
1269 } while (stream
.avail_in
&& ret
== Z_OK
);
1271 } while (ret
== Z_OK
);
1272 inflateEnd(&stream
);
1275 SHA1_Final(real_sha1
, &c
);
1276 if (ret
!= Z_STREAM_END
) {
1278 return error("File %s corrupted", sha1_to_hex(sha1
));
1280 if (memcmp(sha1
, real_sha1
, 20)) {
1282 return error("File %s has bad hash\n", sha1_to_hex(sha1
));
1288 int has_sha1_pack(const unsigned char *sha1
)
1290 struct pack_entry e
;
1291 return find_pack_entry(sha1
, &e
);
1294 int has_sha1_file(const unsigned char *sha1
)
1297 struct pack_entry e
;
1299 if (find_sha1_file(sha1
, &st
))
1301 return find_pack_entry(sha1
, &e
);
1304 int index_fd(unsigned char *sha1
, int fd
, struct stat
*st
)
1306 unsigned long size
= st
->st_size
;
1312 buf
= mmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1314 if ((int)(long)buf
== -1)
1317 ret
= write_sha1_file(buf
, size
, "blob", sha1
);