6a04cf194c98d1d04bee8f6748262d6e56bcbb46
[git.git] / read-cache.c
1 /*
2  * GIT - The information manager from hell
3  *
4  * Copyright (C) Linus Torvalds, 2005
5  */
6 #include <stdarg.h>
7 #include "cache.h"
8
9 struct cache_entry **active_cache = NULL;
10 unsigned int active_nr = 0, active_alloc = 0, active_cache_changed = 0;
11
12 int cache_match_stat(struct cache_entry *ce, struct stat *st)
13 {
14         unsigned int changed = 0;
15
16         switch (ntohl(ce->ce_mode) & S_IFMT) {
17         case S_IFREG:
18                 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0;
19                 /* We consider only the owner x bit to be relevant for "mode changes" */
20                 if (0100 & (ntohl(ce->ce_mode) ^ st->st_mode))
21                         changed |= MODE_CHANGED;
22                 break;
23         case S_IFLNK:
24                 changed |= !S_ISLNK(st->st_mode) ? TYPE_CHANGED : 0;
25                 break;
26         default:
27                 die("internal error: ce_mode is %o", ntohl(ce->ce_mode));
28         }
29         if (ce->ce_mtime.sec != htonl(st->st_mtime))
30                 changed |= MTIME_CHANGED;
31         if (ce->ce_ctime.sec != htonl(st->st_ctime))
32                 changed |= CTIME_CHANGED;
33
34 #ifdef NSEC
35         /*
36          * nsec seems unreliable - not all filesystems support it, so
37          * as long as it is in the inode cache you get right nsec
38          * but after it gets flushed, you get zero nsec.
39          */
40         if (ce->ce_mtime.nsec != htonl(st->st_mtim.tv_nsec))
41                 changed |= MTIME_CHANGED;
42         if (ce->ce_ctime.nsec != htonl(st->st_ctim.tv_nsec))
43                 changed |= CTIME_CHANGED;
44 #endif  
45
46         if (ce->ce_uid != htonl(st->st_uid) ||
47             ce->ce_gid != htonl(st->st_gid))
48                 changed |= OWNER_CHANGED;
49         if (ce->ce_dev != htonl(st->st_dev) ||
50             ce->ce_ino != htonl(st->st_ino))
51                 changed |= INODE_CHANGED;
52         if (ce->ce_size != htonl(st->st_size))
53                 changed |= DATA_CHANGED;
54         return changed;
55 }
56
57 int cache_name_compare(const char *name1, int flags1, const char *name2, int flags2)
58 {
59         int len1 = flags1 & CE_NAMEMASK;
60         int len2 = flags2 & CE_NAMEMASK;
61         int len = len1 < len2 ? len1 : len2;
62         int cmp;
63
64         cmp = memcmp(name1, name2, len);
65         if (cmp)
66                 return cmp;
67         if (len1 < len2)
68                 return -1;
69         if (len1 > len2)
70                 return 1;
71         if (flags1 < flags2)
72                 return -1;
73         if (flags1 > flags2)
74                 return 1;
75         return 0;
76 }
77
78 int cache_name_pos(const char *name, int namelen)
79 {
80         int first, last;
81
82         first = 0;
83         last = active_nr;
84         while (last > first) {
85                 int next = (last + first) >> 1;
86                 struct cache_entry *ce = active_cache[next];
87                 int cmp = cache_name_compare(name, namelen, ce->name, htons(ce->ce_flags));
88                 if (!cmp)
89                         return next;
90                 if (cmp < 0) {
91                         last = next;
92                         continue;
93                 }
94                 first = next+1;
95         }
96         return -first-1;
97 }
98
99 /* Remove entry, return true if there are more entries to go.. */
100 int remove_entry_at(int pos)
101 {
102         active_cache_changed = 1;
103         active_nr--;
104         if (pos >= active_nr)
105                 return 0;
106         memmove(active_cache + pos, active_cache + pos + 1, (active_nr - pos) * sizeof(struct cache_entry *));
107         return 1;
108 }
109
110 int remove_file_from_cache(char *path)
111 {
112         int pos = cache_name_pos(path, strlen(path));
113         if (pos < 0)
114                 pos = -pos-1;
115         while (pos < active_nr && !strcmp(active_cache[pos]->name, path))
116                 remove_entry_at(pos);
117         return 0;
118 }
119
120 int same_name(struct cache_entry *a, struct cache_entry *b)
121 {
122         int len = ce_namelen(a);
123         return ce_namelen(b) == len && !memcmp(a->name, b->name, len);
124 }
125
126 int add_cache_entry(struct cache_entry *ce, int ok_to_add)
127 {
128         int pos;
129
130         pos = cache_name_pos(ce->name, htons(ce->ce_flags));
131
132         /* existing match? Just replace it */
133         if (pos >= 0) {
134                 active_cache_changed = 1;
135                 active_cache[pos] = ce;
136                 return 0;
137         }
138         pos = -pos-1;
139
140         /*
141          * Inserting a merged entry ("stage 0") into the index
142          * will always replace all non-merged entries..
143          */
144         if (pos < active_nr && ce_stage(ce) == 0) {
145                 while (same_name(active_cache[pos], ce)) {
146                         ok_to_add = 1;
147                         if (!remove_entry_at(pos))
148                                 break;
149                 }
150         }
151
152         if (!ok_to_add)
153                 return -1;
154
155         /* Make sure the array is big enough .. */
156         if (active_nr == active_alloc) {
157                 active_alloc = alloc_nr(active_alloc);
158                 active_cache = xrealloc(active_cache, active_alloc * sizeof(struct cache_entry *));
159         }
160
161         /* Add it in.. */
162         active_nr++;
163         if (active_nr > pos)
164                 memmove(active_cache + pos + 1, active_cache + pos, (active_nr - pos - 1) * sizeof(ce));
165         active_cache[pos] = ce;
166         active_cache_changed = 1;
167         return 0;
168 }
169
170 static int verify_hdr(struct cache_header *hdr, unsigned long size)
171 {
172         SHA_CTX c;
173         unsigned char sha1[20];
174
175         if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
176                 return error("bad signature");
177         if (hdr->hdr_version != htonl(2))
178                 return error("bad index version");
179         SHA1_Init(&c);
180         SHA1_Update(&c, hdr, size - 20);
181         SHA1_Final(sha1, &c);
182         if (memcmp(sha1, (void *)hdr + size - 20, 20))
183                 return error("bad index file sha1 signature");
184         return 0;
185 }
186
187 int read_cache(void)
188 {
189         int fd, i;
190         struct stat st;
191         unsigned long size, offset;
192         void *map;
193         struct cache_header *hdr;
194
195         errno = EBUSY;
196         if (active_cache)
197                 return error("more than one cachefile");
198         errno = ENOENT;
199         sha1_file_directory = getenv(DB_ENVIRONMENT);
200         if (!sha1_file_directory)
201                 sha1_file_directory = DEFAULT_DB_ENVIRONMENT;
202         if (access(sha1_file_directory, X_OK) < 0)
203                 return error("no access to SHA1 file directory");
204         fd = open(get_index_file(), O_RDONLY);
205         if (fd < 0)
206                 return (errno == ENOENT) ? 0 : error("open failed");
207
208         size = 0; // avoid gcc warning
209         map = (void *)-1;
210         if (!fstat(fd, &st)) {
211                 size = st.st_size;
212                 errno = EINVAL;
213                 if (size >= sizeof(struct cache_header) + 20)
214                         map = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
215         }
216         close(fd);
217         if (-1 == (int)(long)map)
218                 return error("mmap failed");
219
220         hdr = map;
221         if (verify_hdr(hdr, size) < 0)
222                 goto unmap;
223
224         active_nr = ntohl(hdr->hdr_entries);
225         active_alloc = alloc_nr(active_nr);
226         active_cache = calloc(active_alloc, sizeof(struct cache_entry *));
227
228         offset = sizeof(*hdr);
229         for (i = 0; i < active_nr; i++) {
230                 struct cache_entry *ce = map + offset;
231                 offset = offset + ce_size(ce);
232                 active_cache[i] = ce;
233         }
234         return active_nr;
235
236 unmap:
237         munmap(map, size);
238         errno = EINVAL;
239         return error("verify header failed");
240 }
241
242 #define WRITE_BUFFER_SIZE 8192
243 static char write_buffer[WRITE_BUFFER_SIZE];
244 static unsigned long write_buffer_len;
245
246 static int ce_write(SHA_CTX *context, int fd, void *data, unsigned int len)
247 {
248         while (len) {
249                 unsigned int buffered = write_buffer_len;
250                 unsigned int partial = WRITE_BUFFER_SIZE - buffered;
251                 if (partial > len)
252                         partial = len;
253                 memcpy(write_buffer + buffered, data, partial);
254                 buffered += partial;
255                 if (buffered == WRITE_BUFFER_SIZE) {
256                         SHA1_Update(context, write_buffer, WRITE_BUFFER_SIZE);
257                         if (write(fd, write_buffer, WRITE_BUFFER_SIZE) != WRITE_BUFFER_SIZE)
258                                 return -1;
259                         buffered = 0;
260                 }
261                 write_buffer_len = buffered;
262                 len -= partial;
263                 data += partial;
264         }
265         return 0;
266 }
267
268 static int ce_flush(SHA_CTX *context, int fd)
269 {
270         unsigned int left = write_buffer_len;
271
272         if (left) {
273                 write_buffer_len = 0;
274                 SHA1_Update(context, write_buffer, left);
275         }
276
277         /* Append the SHA1 signature at the end */
278         SHA1_Final(write_buffer + left, context);
279         left += 20;
280         if (write(fd, write_buffer, left) != left)
281                 return -1;
282         return 0;
283 }
284
285 int write_cache(int newfd, struct cache_entry **cache, int entries)
286 {
287         SHA_CTX c;
288         struct cache_header hdr;
289         int i;
290
291         hdr.hdr_signature = htonl(CACHE_SIGNATURE);
292         hdr.hdr_version = htonl(2);
293         hdr.hdr_entries = htonl(entries);
294
295         SHA1_Init(&c);
296         if (ce_write(&c, newfd, &hdr, sizeof(hdr)) < 0)
297                 return -1;
298
299         for (i = 0; i < entries; i++) {
300                 struct cache_entry *ce = cache[i];
301                 if (ce_write(&c, newfd, ce, ce_size(ce)) < 0)
302                         return -1;
303         }
304         return ce_flush(&c, newfd);
305 }