2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
8 const char *sha1_file_directory
= NULL
;
9 struct cache_entry
**active_cache
= NULL
;
10 unsigned int active_nr
= 0, active_alloc
= 0;
12 void usage(const char *err
, ...)
18 vsnprintf(string
, sizeof(string
), err
, args
);
20 fprintf(stderr
, "%s\n", string
);
24 static unsigned hexval(char c
)
26 if (c
>= '0' && c
<= '9')
28 if (c
>= 'a' && c
<= 'f')
30 if (c
>= 'A' && c
<= 'F')
35 int get_sha1_hex(const char *hex
, unsigned char *sha1
)
38 for (i
= 0; i
< 20; i
++) {
39 unsigned int val
= (hexval(hex
[0]) << 4) | hexval(hex
[1]);
48 char * sha1_to_hex(const unsigned char *sha1
)
50 static char buffer
[50];
51 static const char hex
[] = "0123456789abcdef";
55 for (i
= 0; i
< 20; i
++) {
56 unsigned int val
= *sha1
++;
57 *buf
++ = hex
[val
>> 4];
58 *buf
++ = hex
[val
& 0xf];
64 * NOTE! This returns a statically allocated buffer, so you have to be
65 * careful about using it. Do a "strdup()" if you need to save the
68 char *sha1_file_name(const unsigned char *sha1
)
71 static char *name
, *base
;
74 char *sha1_file_directory
= getenv(DB_ENVIRONMENT
) ? : DEFAULT_DB_ENVIRONMENT
;
75 int len
= strlen(sha1_file_directory
);
76 base
= malloc(len
+ 60);
77 memcpy(base
, sha1_file_directory
, len
);
78 memset(base
+len
, 0, 60);
81 name
= base
+ len
+ 1;
83 for (i
= 0; i
< 20; i
++) {
84 static char hex
[] = "0123456789abcdef";
85 unsigned int val
= sha1
[i
];
86 char *pos
= name
+ i
*2 + (i
> 0);
87 *pos
++ = hex
[val
>> 4];
88 *pos
= hex
[val
& 0xf];
93 int check_sha1_signature(unsigned char *sha1
, void *map
, unsigned long size
)
95 unsigned char real_sha1
[20];
99 SHA1_Update(&c
, map
, size
);
100 SHA1_Final(real_sha1
, &c
);
101 return memcmp(sha1
, real_sha1
, 20) ? -1 : 0;
104 void *map_sha1_file(const unsigned char *sha1
, unsigned long *size
)
106 char *filename
= sha1_file_name(sha1
);
107 int fd
= open(filename
, O_RDONLY
);
115 if (fstat(fd
, &st
) < 0) {
119 map
= mmap(NULL
, st
.st_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
121 if (-1 == (int)(long)map
)
127 void * unpack_sha1_file(void *map
, unsigned long mapsize
, char *type
, unsigned long *size
)
134 /* Get the data stream */
135 memset(&stream
, 0, sizeof(stream
));
136 stream
.next_in
= map
;
137 stream
.avail_in
= mapsize
;
138 stream
.next_out
= buffer
;
139 stream
.avail_out
= sizeof(buffer
);
141 inflateInit(&stream
);
142 ret
= inflate(&stream
, 0);
143 if (sscanf(buffer
, "%10s %lu", type
, size
) != 2)
146 bytes
= strlen(buffer
) + 1;
151 memcpy(buf
, buffer
+ bytes
, stream
.total_out
- bytes
);
152 bytes
= stream
.total_out
- bytes
;
153 if (bytes
< *size
&& ret
== Z_OK
) {
154 stream
.next_out
= buf
+ bytes
;
155 stream
.avail_out
= *size
- bytes
;
156 while (inflate(&stream
, Z_FINISH
) == Z_OK
)
163 void * read_sha1_file(const unsigned char *sha1
, char *type
, unsigned long *size
)
165 unsigned long mapsize
;
168 map
= map_sha1_file(sha1
, &mapsize
);
170 buf
= unpack_sha1_file(map
, mapsize
, type
, size
);
171 munmap(map
, mapsize
);
177 int write_sha1_file(char *buf
, unsigned len
, unsigned char *returnsha1
)
182 unsigned char sha1
[20];
186 memset(&stream
, 0, sizeof(stream
));
187 deflateInit(&stream
, Z_BEST_COMPRESSION
);
188 size
= deflateBound(&stream
, len
);
189 compressed
= malloc(size
);
192 stream
.next_in
= buf
;
193 stream
.avail_in
= len
;
194 stream
.next_out
= compressed
;
195 stream
.avail_out
= size
;
196 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
199 size
= stream
.total_out
;
203 SHA1_Update(&c
, compressed
, size
);
204 SHA1_Final(sha1
, &c
);
206 if (write_sha1_buffer(sha1
, compressed
, size
) < 0)
209 memcpy(returnsha1
, sha1
, 20);
213 int write_sha1_buffer(const unsigned char *sha1
, void *buf
, unsigned int size
)
215 char *filename
= sha1_file_name(sha1
);
218 fd
= open(filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
220 return (errno
== EEXIST
) ? 0 : -1;
221 write(fd
, buf
, size
);
226 static int error(const char * string
)
228 fprintf(stderr
, "error: %s\n", string
);
232 int cache_match_stat(struct cache_entry
*ce
, struct stat
*st
)
234 unsigned int changed
= 0;
236 if (ce
->mtime
.sec
!= (unsigned int)st
->st_mtim
.tv_sec
||
237 ce
->mtime
.nsec
!= (unsigned int)st
->st_mtim
.tv_nsec
)
238 changed
|= MTIME_CHANGED
;
239 if (ce
->ctime
.sec
!= (unsigned int)st
->st_ctim
.tv_sec
||
240 ce
->ctime
.nsec
!= (unsigned int)st
->st_ctim
.tv_nsec
)
241 changed
|= CTIME_CHANGED
;
242 if (ce
->st_uid
!= (unsigned int)st
->st_uid
||
243 ce
->st_gid
!= (unsigned int)st
->st_gid
)
244 changed
|= OWNER_CHANGED
;
245 if (ce
->st_mode
!= (unsigned int)st
->st_mode
)
246 changed
|= MODE_CHANGED
;
247 if (ce
->st_dev
!= (unsigned int)st
->st_dev
||
248 ce
->st_ino
!= (unsigned int)st
->st_ino
)
249 changed
|= INODE_CHANGED
;
250 if (ce
->st_size
!= (unsigned int)st
->st_size
)
251 changed
|= DATA_CHANGED
;
255 int cache_name_compare(const char *name1
, int len1
, const char *name2
, int len2
)
257 int len
= len1
< len2
? len1
: len2
;
260 cmp
= memcmp(name1
, name2
, len
);
270 int cache_name_pos(const char *name
, int namelen
)
276 while (last
> first
) {
277 int next
= (last
+ first
) >> 1;
278 struct cache_entry
*ce
= active_cache
[next
];
279 int cmp
= cache_name_compare(name
, namelen
, ce
->name
, ce
->namelen
);
291 int remove_file_from_cache(char *path
)
293 int pos
= cache_name_pos(path
, strlen(path
));
297 memmove(active_cache
+ pos
, active_cache
+ pos
+ 1, (active_nr
- pos
) * sizeof(struct cache_entry
*));
302 int add_cache_entry(struct cache_entry
*ce
, int ok_to_add
)
306 pos
= cache_name_pos(ce
->name
, ce
->namelen
);
308 /* existing match? Just replace it */
310 active_cache
[pos
] = ce
;
318 /* Make sure the array is big enough .. */
319 if (active_nr
== active_alloc
) {
320 active_alloc
= alloc_nr(active_alloc
);
321 active_cache
= realloc(active_cache
, active_alloc
* sizeof(struct cache_entry
*));
327 memmove(active_cache
+ pos
+ 1, active_cache
+ pos
, (active_nr
- pos
- 1) * sizeof(ce
));
328 active_cache
[pos
] = ce
;
332 static int verify_hdr(struct cache_header
*hdr
, unsigned long size
)
335 unsigned char sha1
[20];
337 if (hdr
->signature
!= CACHE_SIGNATURE
)
338 return error("bad signature");
339 if (hdr
->version
!= 1)
340 return error("bad version");
342 SHA1_Update(&c
, hdr
, offsetof(struct cache_header
, sha1
));
343 SHA1_Update(&c
, hdr
+1, size
- sizeof(*hdr
));
344 SHA1_Final(sha1
, &c
);
345 if (memcmp(sha1
, hdr
->sha1
, 20))
346 return error("bad header sha1");
354 unsigned long size
, offset
;
356 struct cache_header
*hdr
;
360 return error("more than one cachefile");
362 sha1_file_directory
= getenv(DB_ENVIRONMENT
);
363 if (!sha1_file_directory
)
364 sha1_file_directory
= DEFAULT_DB_ENVIRONMENT
;
365 if (access(sha1_file_directory
, X_OK
) < 0)
366 return error("no access to SHA1 file directory");
367 fd
= open(".git/index", O_RDONLY
);
369 return (errno
== ENOENT
) ? 0 : error("open failed");
371 size
= 0; // avoid gcc warning
373 if (!fstat(fd
, &st
)) {
376 if (size
>= sizeof(struct cache_header
))
377 map
= mmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
380 if (-1 == (int)(long)map
)
381 return error("mmap failed");
384 if (verify_hdr(hdr
, size
) < 0)
387 active_nr
= hdr
->entries
;
388 active_alloc
= alloc_nr(active_nr
);
389 active_cache
= calloc(active_alloc
, sizeof(struct cache_entry
*));
391 offset
= sizeof(*hdr
);
392 for (i
= 0; i
< hdr
->entries
; i
++) {
393 struct cache_entry
*ce
= map
+ offset
;
394 offset
= offset
+ ce_size(ce
);
395 active_cache
[i
] = ce
;
402 return error("verify header failed");
405 int write_cache(int newfd
, struct cache_entry
**cache
, int entries
)
408 struct cache_header hdr
;
411 hdr
.signature
= CACHE_SIGNATURE
;
413 hdr
.entries
= entries
;
416 SHA1_Update(&c
, &hdr
, offsetof(struct cache_header
, sha1
));
417 for (i
= 0; i
< entries
; i
++) {
418 struct cache_entry
*ce
= cache
[i
];
419 int size
= ce_size(ce
);
420 SHA1_Update(&c
, ce
, size
);
422 SHA1_Final(hdr
.sha1
, &c
);
424 if (write(newfd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
))
427 for (i
= 0; i
< entries
; i
++) {
428 struct cache_entry
*ce
= cache
[i
];
429 int size
= ce_size(ce
);
430 if (write(newfd
, ce
, size
) != size
)