1#include "cache.h"
2#include "blob.h"
3#include "dir.h"
45
static void create_directories(const char *path, int path_len,
6const struct checkout *state)
7{
8char *buf = xmalloc(path_len + 1);
9int len = 0;
1011
while (len < path_len) {
12do {
13buf[len] = path[len];
14len++;
15} while (len < path_len && path[len] != '/');
16if (len >= path_len)
17break;
18buf[len] = 0;
1920
/*
21* For 'checkout-index --prefix=<dir>', <dir> is
22* allowed to be a symlink to an existing directory,
23* and we set 'state->base_dir_len' below, such that
24* we test the path components of the prefix with the
25* stat() function instead of the lstat() function.
26*/
27if (has_dirs_only_path(buf, len, state->base_dir_len))
28continue; /* ok, it is already a directory. */
2930
/*
31* If this mkdir() would fail, it could be that there
32* is already a symlink or something else exists
33* there, therefore we then try to unlink it and try
34* one more time to create the directory.
35*/
36if (mkdir(buf, 0777)) {
37if (errno == EEXIST && state->force &&
38!unlink(buf) && !mkdir(buf, 0777))
39continue;
40die("cannot create directory at %s", buf);
41}
42}
43free(buf);
44}
4546
static void remove_subtree(const char *path)
47{
48DIR *dir = opendir(path);
49struct dirent *de;
50char pathbuf[PATH_MAX];
51char *name;
5253
if (!dir)
54die("cannot opendir %s (%s)", path, strerror(errno));
55strcpy(pathbuf, path);
56name = pathbuf + strlen(path);
57*name++ = '/';
58while ((de = readdir(dir)) != NULL) {
59struct stat st;
60if (is_dot_or_dotdot(de->d_name))
61continue;
62strcpy(name, de->d_name);
63if (lstat(pathbuf, &st))
64die("cannot lstat %s (%s)", pathbuf, strerror(errno));
65if (S_ISDIR(st.st_mode))
66remove_subtree(pathbuf);
67else if (unlink(pathbuf))
68die("cannot unlink %s (%s)", pathbuf, strerror(errno));
69}
70closedir(dir);
71if (rmdir(path))
72die("cannot rmdir %s (%s)", path, strerror(errno));
73}
7475
static int create_file(const char *path, unsigned int mode)
76{
77mode = (mode & 0100) ? 0777 : 0666;
78return open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
79}
8081
static void *read_blob_entry(struct cache_entry *ce, unsigned long *size)
82{
83enum object_type type;
84void *new = read_sha1_file(ce->sha1, &type, size);
8586
if (new) {
87if (type == OBJ_BLOB)
88return new;
89free(new);
90}
91return NULL;
92}
9394
static int write_entry(struct cache_entry *ce, char *path, const struct checkout *state, int to_tempfile)
95{
96unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT;
97int fd, ret, fstat_done = 0;
98char *new;
99struct strbuf buf = STRBUF_INIT;
100unsigned long size;
101size_t wrote, newsize = 0;
102struct stat st;
103104
switch (ce_mode_s_ifmt) {
105case S_IFREG:
106case S_IFLNK:
107new = read_blob_entry(ce, &size);
108if (!new)
109return error("git checkout-index: unable to read sha1 file of %s (%s)",
110path, sha1_to_hex(ce->sha1));
111112
if (ce_mode_s_ifmt == S_IFLNK && has_symlinks && !to_tempfile) {
113ret = symlink(new, path);
114free(new);
115if (ret)
116return error("git checkout-index: unable to create symlink %s (%s)",
117path, strerror(errno));
118break;
119}
120121
/*
122* Convert from git internal format to working tree format
123*/
124if (ce_mode_s_ifmt == S_IFREG &&
125convert_to_working_tree(ce->name, new, size, &buf)) {
126free(new);
127new = strbuf_detach(&buf, &newsize);
128size = newsize;
129}
130131
if (to_tempfile) {
132if (ce_mode_s_ifmt == S_IFREG)
133strcpy(path, ".merge_file_XXXXXX");
134else
135strcpy(path, ".merge_link_XXXXXX");
136fd = mkstemp(path);
137} else if (ce_mode_s_ifmt == S_IFREG) {
138fd = create_file(path, ce->ce_mode);
139} else {
140fd = create_file(path, 0666);
141}
142if (fd < 0) {
143free(new);
144return error("git checkout-index: unable to create file %s (%s)",
145path, strerror(errno));
146}
147148
wrote = write_in_full(fd, new, size);
149/* use fstat() only when path == ce->name */
150if (state->refresh_cache && !to_tempfile && !state->base_dir_len) {
151fstat(fd, &st);
152fstat_done = 1;
153}
154close(fd);
155free(new);
156if (wrote != size)
157return error("git checkout-index: unable to write file %s", path);
158break;
159case S_IFGITLINK:
160if (to_tempfile)
161return error("git checkout-index: cannot create temporary subproject %s", path);
162if (mkdir(path, 0777) < 0)
163return error("git checkout-index: cannot create subproject directory %s", path);
164break;
165default:
166return error("git checkout-index: unknown file mode for %s", path);
167}
168169
if (state->refresh_cache) {
170if (!fstat_done)
171lstat(ce->name, &st);
172fill_stat_cache_info(ce, &st);
173}
174return 0;
175}
176177
int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath)
178{
179static char path[PATH_MAX + 1];
180struct stat st;
181int len = state->base_dir_len;
182183
if (topath)
184return write_entry(ce, topath, state, 1);
185186
memcpy(path, state->base_dir, len);
187strcpy(path + len, ce->name);
188len += ce_namelen(ce);
189190
if (!lstat(path, &st)) {
191unsigned changed = ce_match_stat(ce, &st, CE_MATCH_IGNORE_VALID);
192if (!changed)
193return 0;
194if (!state->force) {
195if (!state->quiet)
196fprintf(stderr, "git-checkout-index: %s already exists\n", path);
197return -1;
198}
199200
/*
201* We unlink the old file, to get the new one with the
202* right permissions (including umask, which is nasty
203* to emulate by hand - much easier to let the system
204* just do the right thing)
205*/
206if (S_ISDIR(st.st_mode)) {
207/* If it is a gitlink, leave it alone! */
208if (S_ISGITLINK(ce->ce_mode))
209return 0;
210if (!state->force)
211return error("%s is a directory", path);
212remove_subtree(path);
213} else if (unlink(path))
214return error("unable to unlink old '%s' (%s)", path, strerror(errno));
215} else if (state->not_new)
216return 0;
217create_directories(path, len, state);
218return write_entry(ce, path, state, 0);
219}