blob: 257ab46e943f1f8b7445f01c10d949224c17112f [file] [log] [blame]
Linus Torvalds12dccc12005-06-05 21:59:54 -07001#include "cache.h"
Peter Eriksen8e440252006-04-02 14:44:09 +02002#include "blob.h"
Linus Torvalds12dccc12005-06-05 21:59:54 -07003
Luiz Fernando N. Capitulinoefbc5832007-04-25 11:18:08 -03004static void create_directories(const char *path, const struct checkout *state)
Linus Torvalds12dccc12005-06-05 21:59:54 -07005{
6 int len = strlen(path);
7 char *buf = xmalloc(len + 1);
8 const char *slash = path;
9
10 while ((slash = strchr(slash+1, '/')) != NULL) {
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070011 struct stat st;
12 int stat_status;
13
Linus Torvalds12dccc12005-06-05 21:59:54 -070014 len = slash - path;
15 memcpy(buf, path, len);
16 buf[len] = 0;
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070017
18 if (len <= state->base_dir_len)
19 /*
20 * checkout-index --prefix=<dir>; <dir> is
21 * allowed to be a symlink to an existing
22 * directory.
23 */
24 stat_status = stat(buf, &st);
25 else
26 /*
27 * if there currently is a symlink, we would
28 * want to replace it with a real directory.
29 */
30 stat_status = lstat(buf, &st);
31
32 if (!stat_status && S_ISDIR(st.st_mode))
33 continue; /* ok, it is already a directory. */
34
35 /*
36 * We know stat_status == 0 means something exists
37 * there and this mkdir would fail, but that is an
38 * error codepath; we do not care, as we unlink and
39 * mkdir again in such a case.
40 */
Junio C Hamanof312de02005-07-06 01:21:46 -070041 if (mkdir(buf, 0777)) {
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070042 if (errno == EEXIST && state->force &&
43 !unlink(buf) && !mkdir(buf, 0777))
44 continue;
Linus Torvalds12dccc12005-06-05 21:59:54 -070045 die("cannot create directory at %s", buf);
46 }
47 }
48 free(buf);
49}
50
51static void remove_subtree(const char *path)
52{
53 DIR *dir = opendir(path);
54 struct dirent *de;
55 char pathbuf[PATH_MAX];
56 char *name;
Junio C Hamanoa6080a02007-06-07 00:04:01 -070057
Linus Torvalds12dccc12005-06-05 21:59:54 -070058 if (!dir)
Luiz Fernando N. Capitulinocc2903f2007-04-25 11:17:56 -030059 die("cannot opendir %s (%s)", path, strerror(errno));
Linus Torvalds12dccc12005-06-05 21:59:54 -070060 strcpy(pathbuf, path);
61 name = pathbuf + strlen(path);
62 *name++ = '/';
63 while ((de = readdir(dir)) != NULL) {
64 struct stat st;
65 if ((de->d_name[0] == '.') &&
66 ((de->d_name[1] == 0) ||
67 ((de->d_name[1] == '.') && de->d_name[2] == 0)))
68 continue;
69 strcpy(name, de->d_name);
70 if (lstat(pathbuf, &st))
Luiz Fernando N. Capitulinocc2903f2007-04-25 11:17:56 -030071 die("cannot lstat %s (%s)", pathbuf, strerror(errno));
Linus Torvalds12dccc12005-06-05 21:59:54 -070072 if (S_ISDIR(st.st_mode))
73 remove_subtree(pathbuf);
74 else if (unlink(pathbuf))
Luiz Fernando N. Capitulinocc2903f2007-04-25 11:17:56 -030075 die("cannot unlink %s (%s)", pathbuf, strerror(errno));
Linus Torvalds12dccc12005-06-05 21:59:54 -070076 }
77 closedir(dir);
78 if (rmdir(path))
Luiz Fernando N. Capitulinocc2903f2007-04-25 11:17:56 -030079 die("cannot rmdir %s (%s)", path, strerror(errno));
Linus Torvalds12dccc12005-06-05 21:59:54 -070080}
81
Linus Torvaldsd48a72f2005-07-14 09:58:45 -070082static int create_file(const char *path, unsigned int mode)
Linus Torvalds12dccc12005-06-05 21:59:54 -070083{
Linus Torvalds12dccc12005-06-05 21:59:54 -070084 mode = (mode & 0100) ? 0777 : 0666;
Alex Riesen781411e2006-01-05 09:58:06 +010085 return open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
Linus Torvalds12dccc12005-06-05 21:59:54 -070086}
87
Linus Torvaldsf0807e62007-04-13 09:26:04 -070088static void *read_blob_entry(struct cache_entry *ce, const char *path, unsigned long *size)
89{
90 enum object_type type;
91 void *new = read_sha1_file(ce->sha1, &type, size);
92
93 if (new) {
94 if (type == OBJ_BLOB)
95 return new;
96 free(new);
97 }
98 return NULL;
99}
100
Luiz Fernando N. Capitulinoefbc5832007-04-25 11:18:08 -0300101static int write_entry(struct cache_entry *ce, char *path, const struct checkout *state, int to_tempfile)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700102{
103 int fd;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700104 long wrote;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700105
Linus Torvalds12dccc12005-06-05 21:59:54 -0700106 switch (ntohl(ce->ce_mode) & S_IFMT) {
Pierre Habouzit5ecd2932007-09-16 15:51:04 +0200107 char *new;
108 struct strbuf buf;
Junio C Hamanoa2d7c6c2007-04-21 17:38:00 -0700109 unsigned long size;
Linus Torvalds6c510be2007-02-13 11:07:23 -0800110
Linus Torvalds12dccc12005-06-05 21:59:54 -0700111 case S_IFREG:
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700112 new = read_blob_entry(ce, path, &size);
113 if (!new)
114 return error("git-checkout-index: unable to read sha1 file of %s (%s)",
115 path, sha1_to_hex(ce->sha1));
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700116
117 /*
118 * Convert from git internal format to working tree format
119 */
Pierre Habouzit5ecd2932007-09-16 15:51:04 +0200120 strbuf_init(&buf, 0);
121 if (convert_to_working_tree(ce->name, new, size, &buf)) {
René Scharfec32f7492007-10-21 11:23:49 +0200122 size_t newsize = 0;
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700123 free(new);
René Scharfec32f7492007-10-21 11:23:49 +0200124 new = strbuf_detach(&buf, &newsize);
125 size = newsize;
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700126 }
127
Shawn Pearcede84f992006-03-05 03:24:15 -0500128 if (to_tempfile) {
129 strcpy(path, ".merge_file_XXXXXX");
130 fd = mkstemp(path);
131 } else
132 fd = create_file(path, ntohl(ce->ce_mode));
Linus Torvalds12dccc12005-06-05 21:59:54 -0700133 if (fd < 0) {
134 free(new);
Junio C Hamano215a7ad2005-09-07 17:26:23 -0700135 return error("git-checkout-index: unable to create file %s (%s)",
Linus Torvalds12dccc12005-06-05 21:59:54 -0700136 path, strerror(errno));
137 }
Linus Torvalds6c510be2007-02-13 11:07:23 -0800138
Andy Whitcroft93822c22007-01-08 15:58:23 +0000139 wrote = write_in_full(fd, new, size);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700140 close(fd);
141 free(new);
142 if (wrote != size)
Junio C Hamano215a7ad2005-09-07 17:26:23 -0700143 return error("git-checkout-index: unable to write file %s", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700144 break;
145 case S_IFLNK:
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700146 new = read_blob_entry(ce, path, &size);
147 if (!new)
148 return error("git-checkout-index: unable to read sha1 file of %s (%s)",
149 path, sha1_to_hex(ce->sha1));
Johannes Sixt78a8d642007-03-02 22:11:30 +0100150 if (to_tempfile || !has_symlinks) {
151 if (to_tempfile) {
152 strcpy(path, ".merge_link_XXXXXX");
153 fd = mkstemp(path);
154 } else
155 fd = create_file(path, 0666);
Shawn Pearcede84f992006-03-05 03:24:15 -0500156 if (fd < 0) {
157 free(new);
158 return error("git-checkout-index: unable to create "
159 "file %s (%s)", path, strerror(errno));
160 }
Andy Whitcroft93822c22007-01-08 15:58:23 +0000161 wrote = write_in_full(fd, new, size);
Shawn Pearcede84f992006-03-05 03:24:15 -0500162 close(fd);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700163 free(new);
Shawn Pearcede84f992006-03-05 03:24:15 -0500164 if (wrote != size)
165 return error("git-checkout-index: unable to write file %s",
166 path);
167 } else {
168 wrote = symlink(new, path);
169 free(new);
170 if (wrote)
171 return error("git-checkout-index: unable to create "
172 "symlink %s (%s)", path, strerror(errno));
Linus Torvalds12dccc12005-06-05 21:59:54 -0700173 }
Linus Torvalds12dccc12005-06-05 21:59:54 -0700174 break;
Martin Waitz302b9282007-05-21 22:08:28 +0200175 case S_IFGITLINK:
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700176 if (to_tempfile)
177 return error("git-checkout-index: cannot create temporary subproject %s", path);
178 if (mkdir(path, 0777) < 0)
179 return error("git-checkout-index: cannot create subproject directory %s", path);
180 break;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700181 default:
Junio C Hamano215a7ad2005-09-07 17:26:23 -0700182 return error("git-checkout-index: unknown file mode for %s", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700183 }
184
Linus Torvalds6ee67f22005-06-05 23:15:40 -0700185 if (state->refresh_cache) {
Linus Torvalds12dccc12005-06-05 21:59:54 -0700186 struct stat st;
187 lstat(ce->name, &st);
188 fill_stat_cache_info(ce, &st);
189 }
190 return 0;
191}
192
Luiz Fernando N. Capitulinoefbc5832007-04-25 11:18:08 -0300193int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700194{
Jonas Fonseca095c4242006-08-26 16:09:17 +0200195 static char path[PATH_MAX + 1];
Shawn Pearcede84f992006-03-05 03:24:15 -0500196 struct stat st;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700197 int len = state->base_dir_len;
198
Shawn Pearcede84f992006-03-05 03:24:15 -0500199 if (topath)
200 return write_entry(ce, topath, state, 1);
201
Linus Torvalds12dccc12005-06-05 21:59:54 -0700202 memcpy(path, state->base_dir, len);
203 strcpy(path + len, ce->name);
204
205 if (!lstat(path, &st)) {
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -0800206 unsigned changed = ce_match_stat(ce, &st, CE_MATCH_IGNORE_VALID);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700207 if (!changed)
208 return 0;
209 if (!state->force) {
210 if (!state->quiet)
Junio C Hamano215a7ad2005-09-07 17:26:23 -0700211 fprintf(stderr, "git-checkout-index: %s already exists\n", path);
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700212 return -1;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700213 }
214
215 /*
216 * We unlink the old file, to get the new one with the
217 * right permissions (including umask, which is nasty
218 * to emulate by hand - much easier to let the system
219 * just do the right thing)
220 */
221 unlink(path);
Linus Torvaldsd48a72f2005-07-14 09:58:45 -0700222 if (S_ISDIR(st.st_mode)) {
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700223 /* If it is a gitlink, leave it alone! */
Martin Waitz302b9282007-05-21 22:08:28 +0200224 if (S_ISGITLINK(ntohl(ce->ce_mode)))
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700225 return 0;
Linus Torvaldsd48a72f2005-07-14 09:58:45 -0700226 if (!state->force)
227 return error("%s is a directory", path);
228 remove_subtree(path);
229 }
Shawn Pearcede84f992006-03-05 03:24:15 -0500230 } else if (state->not_new)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700231 return 0;
232 create_directories(path, state);
Shawn Pearcede84f992006-03-05 03:24:15 -0500233 return write_entry(ce, path, state, 0);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700234}