1#include "cache.h"2#include "blob.h"3#include "dir.h"45static void create_directories(const char *path, int path_len,6const struct checkout *state)7{8char *buf = xmalloc(path_len + 1);9int len = 0;1011while (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> is22* allowed to be a symlink to an existing directory,23* and we set 'state->base_dir_len' below, such that24* we test the path components of the prefix with the25* 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 there32* is already a symlink or something else exists33* there, therefore we then try to unlink it and try34* one more time to create the directory.35*/36if (mkdir(buf, 0777)) {37if (errno == EEXIST && state->force &&38!unlink_or_warn(buf) && !mkdir(buf, 0777))39continue;40die("cannot create directory at %s", buf);41}42}43free(buf);44}4546static void remove_subtree(const char *path)47{48DIR *dir = opendir(path);49struct dirent *de;50char pathbuf[PATH_MAX];51char *name;5253if (!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}7475static 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}8081static 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);8586if (new) {87if (type == OBJ_BLOB)88return new;89free(new);90}91return NULL;92}9394static 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;103104switch (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));111112if (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 format123*/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}130131if (to_tempfile) {132if (ce_mode_s_ifmt == S_IFREG)133strcpy(path, ".merge_file_XXXXXX");134else135strcpy(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}147148wrote = write_in_full(fd, new, size);149/* use fstat() only when path == ce->name */150if (fstat_is_reliable() &&151state->refresh_cache && !to_tempfile && !state->base_dir_len) {152fstat(fd, &st);153fstat_done = 1;154}155close(fd);156free(new);157if (wrote != size)158return error("git checkout-index: unable to write file %s", path);159break;160case S_IFGITLINK:161if (to_tempfile)162return error("git checkout-index: cannot create temporary subproject %s", path);163if (mkdir(path, 0777) < 0)164return error("git checkout-index: cannot create subproject directory %s", path);165break;166default:167return error("git checkout-index: unknown file mode for %s", path);168}169170if (state->refresh_cache) {171if (!fstat_done)172lstat(ce->name, &st);173fill_stat_cache_info(ce, &st);174}175return 0;176}177178int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath)179{180static char path[PATH_MAX + 1];181struct stat st;182int len = state->base_dir_len;183184if (topath)185return write_entry(ce, topath, state, 1);186187memcpy(path, state->base_dir, len);188strcpy(path + len, ce->name);189len += ce_namelen(ce);190191if (!lstat(path, &st)) {192unsigned changed = ce_match_stat(ce, &st, CE_MATCH_IGNORE_VALID);193if (!changed)194return 0;195if (!state->force) {196if (!state->quiet)197fprintf(stderr, "git-checkout-index: %s already exists\n", path);198return -1;199}200201/*202* We unlink the old file, to get the new one with the203* right permissions (including umask, which is nasty204* to emulate by hand - much easier to let the system205* just do the right thing)206*/207if (S_ISDIR(st.st_mode)) {208/* If it is a gitlink, leave it alone! */209if (S_ISGITLINK(ce->ce_mode))210return 0;211if (!state->force)212return error("%s is a directory", path);213remove_subtree(path);214} else if (unlink(path))215return error("unable to unlink old '%s' (%s)", path, strerror(errno));216} else if (state->not_new)217return 0;218create_directories(path, len, state);219return write_entry(ce, path, state, 0);220}