2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
9 struct cache_entry
**active_cache
= NULL
;
10 unsigned int active_nr
= 0, active_alloc
= 0, active_cache_changed
= 0;
12 int cache_match_stat(struct cache_entry
*ce
, struct stat
*st
)
14 unsigned int changed
= 0;
16 switch (ntohl(ce
->ce_mode
) & S_IFMT
) {
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
;
24 changed
|= !S_ISLNK(st
->st_mode
) ? TYPE_CHANGED
: 0;
27 die("internal error: ce_mode is %o", ntohl(ce
->ce_mode
));
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
;
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.
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
;
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
;
57 int cache_name_compare(const char *name1
, int flags1
, const char *name2
, int flags2
)
59 int len1
= flags1
& CE_NAMEMASK
;
60 int len2
= flags2
& CE_NAMEMASK
;
61 int len
= len1
< len2
? len1
: len2
;
64 cmp
= memcmp(name1
, name2
, len
);
78 int cache_name_pos(const char *name
, int namelen
)
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
));
99 /* Remove entry, return true if there are more entries to go.. */
100 int remove_entry_at(int pos
)
102 active_cache_changed
= 1;
104 if (pos
>= active_nr
)
106 memmove(active_cache
+ pos
, active_cache
+ pos
+ 1, (active_nr
- pos
) * sizeof(struct cache_entry
*));
110 int remove_file_from_cache(char *path
)
112 int pos
= cache_name_pos(path
, strlen(path
));
115 while (pos
< active_nr
&& !strcmp(active_cache
[pos
]->name
, path
))
116 remove_entry_at(pos
);
120 int same_name(struct cache_entry
*a
, struct cache_entry
*b
)
122 int len
= ce_namelen(a
);
123 return ce_namelen(b
) == len
&& !memcmp(a
->name
, b
->name
, len
);
126 /* We may be in a situation where we already have path/file and path
127 * is being added, or we already have path and path/file is being
128 * added. Either one would result in a nonsense tree that has path
129 * twice when git-write-tree tries to write it out. Prevent it.
131 * If ok-to-replace is specified, we remove the conflicting entries
132 * from the cache so the caller should recompute the insert position.
133 * When this happens, we return non-zero.
135 static int check_file_directory_conflict(const struct cache_entry
*ce
,
138 int pos
, replaced
= 0;
139 const char *path
= ce
->name
;
140 int namelen
= strlen(path
);
141 int stage
= ce_stage(ce
);
142 char *pathbuf
= xmalloc(namelen
+ 1);
145 memcpy(pathbuf
, path
, namelen
+ 1);
148 * We are inserting path/file. Do they have path registered at
149 * the same stage? We need to do this for all the levels of our
154 char *ep
= strchr(cp
, '/');
157 *ep
= 0; /* first cut it at slash */
158 pos
= cache_name_pos(pathbuf
,
159 htons(create_ce_flags(ep
-cp
, stage
)));
161 /* Our leading path component is registered as a file,
162 * and we are trying to make it a directory. This is
165 if (!ok_to_replace
) {
169 fprintf(stderr
, "removing file '%s' to replace it with a directory to create '%s'.\n", pathbuf
, path
);
170 remove_entry_at(pos
);
173 *ep
= '/'; /* then restore it and go downwards */
178 /* Do we have an entry in the cache that makes our path a prefix
179 * of it? That is, are we creating a file where they already expect
182 pos
= cache_name_pos(path
,
183 htons(create_ce_flags(namelen
, stage
)));
185 /* (0 <= pos) cannot happen because add_cache_entry()
186 * should have taken care of that case.
190 /* pos would point at an existing entry that would come immediately
191 * after our path. It could be the same as our path in higher stage,
192 * or different path but in a lower stage.
194 * E.g. when we are inserting path at stage 2,
203 * We need to examine pos, ignore it because it is at different
204 * stage, examine next to find the path/file at stage 2, and
205 * complain. We need to do this until we are not the leading
206 * path of an existing entry anymore.
209 while (pos
< active_nr
) {
210 struct cache_entry
*other
= active_cache
[pos
];
211 if (strncmp(other
->name
, path
, namelen
))
212 break; /* it is not our "subdirectory" anymore */
213 if ((ce_stage(other
) == stage
) &&
214 other
->name
[namelen
] == '/') {
217 fprintf(stderr
, "removing file '%s' under '%s' to be replaced with a file\n", other
->name
, path
);
218 remove_entry_at(pos
);
220 continue; /* cycle without updating pos */
227 int add_cache_entry(struct cache_entry
*ce
, int option
)
230 int ok_to_add
= option
& ADD_CACHE_OK_TO_ADD
;
231 int ok_to_replace
= option
& ADD_CACHE_OK_TO_REPLACE
;
232 pos
= cache_name_pos(ce
->name
, htons(ce
->ce_flags
));
234 /* existing match? Just replace it */
236 active_cache_changed
= 1;
237 active_cache
[pos
] = ce
;
243 * Inserting a merged entry ("stage 0") into the index
244 * will always replace all non-merged entries..
246 if (pos
< active_nr
&& ce_stage(ce
) == 0) {
247 while (same_name(active_cache
[pos
], ce
)) {
249 if (!remove_entry_at(pos
))
257 if (check_file_directory_conflict(ce
, ok_to_replace
)) {
260 pos
= cache_name_pos(ce
->name
, htons(ce
->ce_flags
));
264 /* Make sure the array is big enough .. */
265 if (active_nr
== active_alloc
) {
266 active_alloc
= alloc_nr(active_alloc
);
267 active_cache
= xrealloc(active_cache
, active_alloc
* sizeof(struct cache_entry
*));
273 memmove(active_cache
+ pos
+ 1, active_cache
+ pos
, (active_nr
- pos
- 1) * sizeof(ce
));
274 active_cache
[pos
] = ce
;
275 active_cache_changed
= 1;
279 static int verify_hdr(struct cache_header
*hdr
, unsigned long size
)
282 unsigned char sha1
[20];
284 if (hdr
->hdr_signature
!= htonl(CACHE_SIGNATURE
))
285 return error("bad signature");
286 if (hdr
->hdr_version
!= htonl(2))
287 return error("bad index version");
289 SHA1_Update(&c
, hdr
, size
- 20);
290 SHA1_Final(sha1
, &c
);
291 if (memcmp(sha1
, (void *)hdr
+ size
- 20, 20))
292 return error("bad index file sha1 signature");
300 unsigned long size
, offset
;
302 struct cache_header
*hdr
;
306 return error("more than one cachefile");
308 fd
= open(get_index_file(), O_RDONLY
);
310 return (errno
== ENOENT
) ? 0 : error("open failed");
312 size
= 0; // avoid gcc warning
314 if (!fstat(fd
, &st
)) {
317 if (size
>= sizeof(struct cache_header
) + 20)
318 map
= mmap(NULL
, size
, PROT_READ
| PROT_WRITE
, MAP_PRIVATE
, fd
, 0);
321 if (-1 == (int)(long)map
)
322 return error("mmap failed");
325 if (verify_hdr(hdr
, size
) < 0)
328 active_nr
= ntohl(hdr
->hdr_entries
);
329 active_alloc
= alloc_nr(active_nr
);
330 active_cache
= calloc(active_alloc
, sizeof(struct cache_entry
*));
332 offset
= sizeof(*hdr
);
333 for (i
= 0; i
< active_nr
; i
++) {
334 struct cache_entry
*ce
= map
+ offset
;
335 offset
= offset
+ ce_size(ce
);
336 active_cache
[i
] = ce
;
343 return error("verify header failed");
346 #define WRITE_BUFFER_SIZE 8192
347 static char write_buffer
[WRITE_BUFFER_SIZE
];
348 static unsigned long write_buffer_len
;
350 static int ce_write(SHA_CTX
*context
, int fd
, void *data
, unsigned int len
)
353 unsigned int buffered
= write_buffer_len
;
354 unsigned int partial
= WRITE_BUFFER_SIZE
- buffered
;
357 memcpy(write_buffer
+ buffered
, data
, partial
);
359 if (buffered
== WRITE_BUFFER_SIZE
) {
360 SHA1_Update(context
, write_buffer
, WRITE_BUFFER_SIZE
);
361 if (write(fd
, write_buffer
, WRITE_BUFFER_SIZE
) != WRITE_BUFFER_SIZE
)
365 write_buffer_len
= buffered
;
372 static int ce_flush(SHA_CTX
*context
, int fd
)
374 unsigned int left
= write_buffer_len
;
377 write_buffer_len
= 0;
378 SHA1_Update(context
, write_buffer
, left
);
381 /* Append the SHA1 signature at the end */
382 SHA1_Final(write_buffer
+ left
, context
);
384 if (write(fd
, write_buffer
, left
) != left
)
389 int write_cache(int newfd
, struct cache_entry
**cache
, int entries
)
392 struct cache_header hdr
;
395 hdr
.hdr_signature
= htonl(CACHE_SIGNATURE
);
396 hdr
.hdr_version
= htonl(2);
397 hdr
.hdr_entries
= htonl(entries
);
400 if (ce_write(&c
, newfd
, &hdr
, sizeof(hdr
)) < 0)
403 for (i
= 0; i
< entries
; i
++) {
404 struct cache_entry
*ce
= cache
[i
];
405 if (ce_write(&c
, newfd
, ce
, ce_size(ce
)) < 0)
408 return ce_flush(&c
, newfd
);