2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
10 * Default to not allowing changes to the list of files. The
11 * tool doesn't actually care, but this makes it harder to add
12 * files to the revision control by mistake by doing something
13 * like "update-cache *" and suddenly having all the object
14 * files be revision controlled.
16 static int allow_add
= 0, allow_remove
= 0, allow_replace
= 0, not_new
= 0;
18 /* Three functions to allow overloaded pointer return; see linux/err.h */
19 static inline void *ERR_PTR(long error
)
21 return (void *) error
;
24 static inline long PTR_ERR(const void *ptr
)
29 static inline long IS_ERR(const void *ptr
)
31 return (unsigned long)ptr
> (unsigned long)-1000L;
35 * This only updates the "non-critical" parts of the directory
36 * cache, ie the parts that aren't tracked by GIT, and only used
37 * to validate the cache.
39 static void fill_stat_cache_info(struct cache_entry
*ce
, struct stat
*st
)
41 ce
->ce_ctime
.sec
= htonl(st
->st_ctime
);
42 ce
->ce_mtime
.sec
= htonl(st
->st_mtime
);
44 ce
->ce_ctime
.nsec
= htonl(st
->st_ctim
.tv_nsec
);
45 ce
->ce_mtime
.nsec
= htonl(st
->st_mtim
.tv_nsec
);
47 ce
->ce_dev
= htonl(st
->st_dev
);
48 ce
->ce_ino
= htonl(st
->st_ino
);
49 ce
->ce_uid
= htonl(st
->st_uid
);
50 ce
->ce_gid
= htonl(st
->st_gid
);
51 ce
->ce_size
= htonl(st
->st_size
);
54 static int add_file_to_cache(char *path
)
56 int size
, namelen
, option
, status
;
57 struct cache_entry
*ce
;
62 status
= lstat(path
, &st
);
63 if (status
< 0 || S_ISDIR(st
.st_mode
)) {
64 /* When we used to have "path" and now we want to add
65 * "path/file", we need a way to remove "path" before
66 * being able to add "path/file". However,
67 * "git-update-cache --remove path" would not work.
68 * --force-remove can be used but this is more user
69 * friendly, especially since we can do the opposite
70 * case just fine without --force-remove.
72 if (status
== 0 || (errno
== ENOENT
|| errno
== ENOTDIR
)) {
74 return remove_file_from_cache(path
);
78 namelen
= strlen(path
);
79 size
= cache_entry_size(namelen
);
82 memcpy(ce
->name
, path
, namelen
);
83 fill_stat_cache_info(ce
, &st
);
84 ce
->ce_mode
= create_ce_mode(st
.st_mode
);
85 ce
->ce_flags
= htons(namelen
);
86 switch (st
.st_mode
& S_IFMT
) {
88 fd
= open(path
, O_RDONLY
);
91 if (index_fd(ce
->sha1
, fd
, &st
) < 0)
95 target
= xmalloc(st
.st_size
+1);
96 if (readlink(path
, target
, st
.st_size
+1) != st
.st_size
) {
100 if (write_sha1_file(target
, st
.st_size
, "blob", ce
->sha1
))
107 option
= allow_add
? ADD_CACHE_OK_TO_ADD
: 0;
108 option
|= allow_replace
? ADD_CACHE_OK_TO_REPLACE
: 0;
109 return add_cache_entry(ce
, option
);
112 static int match_data(int fd
, void *buffer
, unsigned long size
)
116 int ret
= read(fd
, compare
, sizeof(compare
));
118 if (ret
<= 0 || ret
> size
|| memcmp(buffer
, compare
, ret
))
126 static int compare_data(struct cache_entry
*ce
, unsigned long expected_size
)
129 int fd
= open(ce
->name
, O_RDONLY
);
136 buffer
= read_sha1_file(ce
->sha1
, type
, &size
);
138 if (size
== expected_size
&& !strcmp(type
, "blob"))
139 match
= match_data(fd
, buffer
, size
);
147 static int compare_link(struct cache_entry
*ce
, unsigned long expected_size
)
156 target
= xmalloc(expected_size
);
157 len
= readlink(ce
->name
, target
, expected_size
);
158 if (len
!= expected_size
) {
162 buffer
= read_sha1_file(ce
->sha1
, type
, &size
);
167 if (size
== expected_size
)
168 match
= memcmp(buffer
, target
, size
);
175 * "refresh" does not calculate a new sha1 file or bring the
176 * cache up-to-date for mode/content changes. But what it
177 * _does_ do is to "re-match" the stat information of a file
178 * with the cache, so that you can refresh the cache for a
179 * file that hasn't been changed but where the stat entry is
182 * For example, you'd want to do this after doing a "read-tree",
183 * to link up the stat cache details with the proper files.
185 static struct cache_entry
*refresh_entry(struct cache_entry
*ce
)
188 struct cache_entry
*updated
;
191 if (lstat(ce
->name
, &st
) < 0)
192 return ERR_PTR(-errno
);
194 changed
= cache_match_stat(ce
, &st
);
199 * If the mode or type has changed, there's no point in trying
200 * to refresh the entry - it's not going to match
202 if (changed
& (MODE_CHANGED
| TYPE_CHANGED
))
203 return ERR_PTR(-EINVAL
);
205 switch (st
.st_mode
& S_IFMT
) {
207 if (compare_data(ce
, st
.st_size
))
208 return ERR_PTR(-EINVAL
);
211 if (compare_link(ce
, st
.st_size
))
212 return ERR_PTR(-EINVAL
);
215 return ERR_PTR(-EINVAL
);
219 updated
= xmalloc(size
);
220 memcpy(updated
, ce
, size
);
221 fill_stat_cache_info(updated
, &st
);
225 static int refresh_cache(void)
230 for (i
= 0; i
< active_nr
; i
++) {
231 struct cache_entry
*ce
, *new;
232 ce
= active_cache
[i
];
234 printf("%s: needs merge\n", ce
->name
);
236 while ((i
< active_nr
) &&
237 ! strcmp(active_cache
[i
]->name
, ce
->name
))
243 new = refresh_entry(ce
);
245 if (!(not_new
&& PTR_ERR(new) == -ENOENT
)) {
246 printf("%s: needs update\n", ce
->name
);
251 active_cache_changed
= 1;
252 active_cache
[i
] = new;
258 * We fundamentally don't like some paths: we don't want
259 * dot or dot-dot anywhere, and in fact, we don't even want
260 * any other dot-files (.git or anything else). They
261 * are hidden, for chist sake.
263 * Also, we don't want double slashes or slashes at the
264 * end that can make pathnames ambiguous.
266 static int verify_path(char *path
)
277 if (c
!= '/' && c
!= '.' && c
!= '\0')
285 static int add_cacheinfo(char *arg1
, char *arg2
, char *arg3
)
287 int size
, len
, option
;
289 unsigned char sha1
[20];
290 struct cache_entry
*ce
;
292 if (sscanf(arg1
, "%o", &mode
) != 1)
294 if (get_sha1_hex(arg2
, sha1
))
296 if (!verify_path(arg3
))
300 size
= cache_entry_size(len
);
304 memcpy(ce
->sha1
, sha1
, 20);
305 memcpy(ce
->name
, arg3
, len
);
306 ce
->ce_flags
= htons(len
);
307 ce
->ce_mode
= create_ce_mode(mode
);
308 option
= allow_add
? ADD_CACHE_OK_TO_ADD
: 0;
309 option
|= allow_replace
? ADD_CACHE_OK_TO_REPLACE
: 0;
310 return add_cache_entry(ce
, option
);
313 static const char *lockfile_name
= NULL
;
315 static void remove_lock_file(void)
318 unlink(lockfile_name
);
321 static void remove_lock_file_on_signal(int signo
)
326 int main(int argc
, char **argv
)
328 int i
, newfd
, entries
, has_errors
= 0;
329 int allow_options
= 1;
330 static char lockfile
[MAXPATHLEN
+1];
331 const char *indexfile
= get_index_file();
333 snprintf(lockfile
, sizeof(lockfile
), "%s.lock", indexfile
);
335 newfd
= open(lockfile
, O_RDWR
| O_CREAT
| O_EXCL
, 0600);
337 die("unable to create new cachefile");
339 signal(SIGINT
, remove_lock_file_on_signal
);
340 atexit(remove_lock_file
);
341 lockfile_name
= lockfile
;
343 entries
= read_cache();
345 die("cache corrupted");
347 for (i
= 1 ; i
< argc
; i
++) {
348 char *path
= argv
[i
];
350 if (allow_options
&& *path
== '-') {
351 if (!strcmp(path
, "--")) {
355 if (!strcmp(path
, "--add")) {
359 if (!strcmp(path
, "--replace")) {
363 if (!strcmp(path
, "--remove")) {
367 if (!strcmp(path
, "--refresh")) {
368 has_errors
|= refresh_cache();
371 if (!strcmp(path
, "--cacheinfo")) {
373 die("update-cache: --cacheinfo <mode> <sha1> <path>");
374 if (add_cacheinfo(argv
[i
+1], argv
[i
+2], argv
[i
+3]))
375 die("update-cache: --cacheinfo cannot add %s", argv
[i
+3]);
379 if (!strcmp(path
, "--force-remove")) {
381 die("update-cache: --force-remove <path>");
382 if (remove_file_from_cache(argv
[i
+1]))
383 die("update-cache: --force-remove cannot remove %s", argv
[i
+1]);
388 if (!strcmp(path
, "--ignore-missing")) {
392 die("unknown option %s", path
);
394 if (!verify_path(path
)) {
395 fprintf(stderr
, "Ignoring path %s\n", argv
[i
]);
398 if (add_file_to_cache(path
))
399 die("Unable to add %s to database", path
);
401 if (write_cache(newfd
, active_cache
, active_nr
) || rename(lockfile
, indexfile
))
402 die("Unable to write new cachefile");
404 lockfile_name
= NULL
;
405 return has_errors
? 1 : 0;