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, 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
)
57 struct cache_entry
*ce
;
63 if (lstat(path
, &st
) < 0) {
64 if (errno
== ENOENT
|| errno
== ENOTDIR
) {
66 return remove_file_from_cache(path
);
70 namelen
= strlen(path
);
71 size
= cache_entry_size(namelen
);
74 memcpy(ce
->name
, path
, namelen
);
75 fill_stat_cache_info(ce
, &st
);
76 ce
->ce_mode
= create_ce_mode(st
.st_mode
);
77 ce
->ce_flags
= htons(namelen
);
78 switch (st
.st_mode
& S_IFMT
) {
80 fd
= open(path
, O_RDONLY
);
83 if (index_fd(ce
->sha1
, fd
, &st
) < 0)
87 len
= readlink(path
, target
, sizeof(target
));
88 if (len
== -1 || len
+1 > sizeof(target
))
90 if (write_sha1_file(target
, len
, "blob", ce
->sha1
))
96 return add_cache_entry(ce
, allow_add
);
99 static int match_data(int fd
, void *buffer
, unsigned long size
)
103 int ret
= read(fd
, compare
, sizeof(compare
));
105 if (ret
<= 0 || ret
> size
|| memcmp(buffer
, compare
, ret
))
113 static int compare_data(struct cache_entry
*ce
, unsigned long expected_size
)
116 int fd
= open(ce
->name
, O_RDONLY
);
123 buffer
= read_sha1_file(ce
->sha1
, type
, &size
);
125 if (size
== expected_size
&& !strcmp(type
, "blob"))
126 match
= match_data(fd
, buffer
, size
);
135 * "refresh" does not calculate a new sha1 file or bring the
136 * cache up-to-date for mode/content changes. But what it
137 * _does_ do is to "re-match" the stat information of a file
138 * with the cache, so that you can refresh the cache for a
139 * file that hasn't been changed but where the stat entry is
142 * For example, you'd want to do this after doing a "read-tree",
143 * to link up the stat cache details with the proper files.
145 static struct cache_entry
*refresh_entry(struct cache_entry
*ce
)
148 struct cache_entry
*updated
;
151 if (lstat(ce
->name
, &st
) < 0)
152 return ERR_PTR(-errno
);
154 changed
= cache_match_stat(ce
, &st
);
159 * If the mode or type has changed, there's no point in trying
160 * to refresh the entry - it's not going to match
162 if (changed
& (MODE_CHANGED
| TYPE_CHANGED
))
163 return ERR_PTR(-EINVAL
);
165 if (compare_data(ce
, st
.st_size
))
166 return ERR_PTR(-EINVAL
);
169 updated
= xmalloc(size
);
170 memcpy(updated
, ce
, size
);
171 fill_stat_cache_info(updated
, &st
);
175 static int refresh_cache(void)
180 for (i
= 0; i
< active_nr
; i
++) {
181 struct cache_entry
*ce
, *new;
182 ce
= active_cache
[i
];
184 printf("%s: needs merge\n", ce
->name
);
186 while ((i
< active_nr
) &&
187 ! strcmp(active_cache
[i
]->name
, ce
->name
))
193 new = refresh_entry(ce
);
195 if (!(not_new
&& PTR_ERR(new) == -ENOENT
)) {
196 printf("%s: needs update\n", ce
->name
);
201 active_cache
[i
] = new;
207 * We fundamentally don't like some paths: we don't want
208 * dot or dot-dot anywhere, and in fact, we don't even want
209 * any other dot-files (.git or anything else). They
210 * are hidden, for chist sake.
212 * Also, we don't want double slashes or slashes at the
213 * end that can make pathnames ambiguous.
215 static int verify_path(char *path
)
226 if (c
!= '/' && c
!= '.' && c
!= '\0')
234 static int add_cacheinfo(char *arg1
, char *arg2
, char *arg3
)
238 unsigned char sha1
[20];
239 struct cache_entry
*ce
;
241 if (sscanf(arg1
, "%o", &mode
) != 1)
243 if (get_sha1_hex(arg2
, sha1
))
245 if (!verify_path(arg3
))
249 size
= cache_entry_size(len
);
253 memcpy(ce
->sha1
, sha1
, 20);
254 memcpy(ce
->name
, arg3
, len
);
255 ce
->ce_flags
= htons(len
);
256 ce
->ce_mode
= create_ce_mode(mode
);
257 return add_cache_entry(ce
, allow_add
);
260 static const char *lockfile_name
= NULL
;
262 static void remove_lock_file(void)
265 unlink(lockfile_name
);
268 static void remove_lock_file_on_signal(int signo
)
273 int main(int argc
, char **argv
)
275 int i
, newfd
, entries
, has_errors
= 0;
276 int allow_options
= 1;
277 static char lockfile
[MAXPATHLEN
+1];
278 const char *indexfile
= get_index_file();
280 snprintf(lockfile
, sizeof(lockfile
), "%s.lock", indexfile
);
282 newfd
= open(lockfile
, O_RDWR
| O_CREAT
| O_EXCL
, 0600);
284 die("unable to create new cachefile");
286 signal(SIGINT
, remove_lock_file_on_signal
);
287 atexit(remove_lock_file
);
288 lockfile_name
= lockfile
;
290 entries
= read_cache();
292 die("cache corrupted");
294 for (i
= 1 ; i
< argc
; i
++) {
295 char *path
= argv
[i
];
297 if (allow_options
&& *path
== '-') {
298 if (!strcmp(path
, "--")) {
302 if (!strcmp(path
, "--add")) {
306 if (!strcmp(path
, "--remove")) {
310 if (!strcmp(path
, "--refresh")) {
311 has_errors
|= refresh_cache();
314 if (!strcmp(path
, "--cacheinfo")) {
315 if (i
+3 >= argc
|| add_cacheinfo(argv
[i
+1], argv
[i
+2], argv
[i
+3]))
316 die("update-cache: --cacheinfo <mode> <sha1> <path>");
320 if (!strcmp(path
, "--force-remove")) {
322 die("update-cache: --force-remove <path>");
323 if (remove_file_from_cache(argv
[i
+1]))
324 die("update-cache: --force-remove cannot remove %s", argv
[i
+1]);
329 if (!strcmp(path
, "--ignore-missing")) {
333 die("unknown option %s", path
);
335 if (!verify_path(path
)) {
336 fprintf(stderr
, "Ignoring path %s\n", argv
[i
]);
339 if (add_file_to_cache(path
))
340 die("Unable to add %s to database", path
);
342 if (write_cache(newfd
, active_cache
, active_nr
) || rename(lockfile
, indexfile
))
343 die("Unable to write new cachefile");
345 lockfile_name
= NULL
;