2005-06-06 06:59:54 +02:00
|
|
|
#include "cache.h"
|
2006-04-02 14:44:09 +02:00
|
|
|
#include "blob.h"
|
2009-01-10 13:07:50 +01:00
|
|
|
#include "dir.h"
|
2005-06-06 06:59:54 +02:00
|
|
|
|
2009-02-09 21:54:08 +01:00
|
|
|
static void create_directories(const char *path, int path_len,
|
|
|
|
const struct checkout *state)
|
2005-06-06 06:59:54 +02:00
|
|
|
{
|
2009-02-09 21:54:08 +01:00
|
|
|
char *buf = xmalloc(path_len + 1);
|
|
|
|
int len = 0;
|
|
|
|
|
|
|
|
while (len < path_len) {
|
|
|
|
do {
|
|
|
|
buf[len] = path[len];
|
|
|
|
len++;
|
|
|
|
} while (len < path_len && path[len] != '/');
|
|
|
|
if (len >= path_len)
|
|
|
|
break;
|
2005-06-06 06:59:54 +02:00
|
|
|
buf[len] = 0;
|
Do not expect unlink(2) to fail on a directory.
When "git checkout-index" checks out path A/B/C, it makes sure A
and A/B are truly directories; if there is a regular file or
symlink at A, we prefer to remove it.
We used to do this by catching an error return from mkdir(2),
and on EEXIST did unlink(2), and when it succeeded, tried
another mkdir(2).
Thomas Glanzmann found out the above does not work on Solaris
for a root user, as unlink(2) was so old fashioned there that it
allowed to unlink a directory.
As pointed out, this still doesn't guarantee that git won't call
"unlink()" on a directory (race conditions etc), but that's
fundamentally true (there is no "funlink()" like there is
"fstat()"), and besides, that is in no way git-specific (ie it's
true of any application that gets run as root).
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-18 07:58:28 +02:00
|
|
|
|
2009-01-18 16:14:52 +01:00
|
|
|
/*
|
|
|
|
* For 'checkout-index --prefix=<dir>', <dir> is
|
|
|
|
* allowed to be a symlink to an existing directory,
|
|
|
|
* and we set 'state->base_dir_len' below, such that
|
|
|
|
* we test the path components of the prefix with the
|
|
|
|
* stat() function instead of the lstat() function.
|
|
|
|
*/
|
2009-02-09 21:54:06 +01:00
|
|
|
if (has_dirs_only_path(buf, len, state->base_dir_len))
|
Do not expect unlink(2) to fail on a directory.
When "git checkout-index" checks out path A/B/C, it makes sure A
and A/B are truly directories; if there is a regular file or
symlink at A, we prefer to remove it.
We used to do this by catching an error return from mkdir(2),
and on EEXIST did unlink(2), and when it succeeded, tried
another mkdir(2).
Thomas Glanzmann found out the above does not work on Solaris
for a root user, as unlink(2) was so old fashioned there that it
allowed to unlink a directory.
As pointed out, this still doesn't guarantee that git won't call
"unlink()" on a directory (race conditions etc), but that's
fundamentally true (there is no "funlink()" like there is
"fstat()"), and besides, that is in no way git-specific (ie it's
true of any application that gets run as root).
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-18 07:58:28 +02:00
|
|
|
continue; /* ok, it is already a directory. */
|
|
|
|
|
|
|
|
/*
|
2009-01-18 16:14:52 +01:00
|
|
|
* If this mkdir() would fail, it could be that there
|
|
|
|
* is already a symlink or something else exists
|
|
|
|
* there, therefore we then try to unlink it and try
|
|
|
|
* one more time to create the directory.
|
Do not expect unlink(2) to fail on a directory.
When "git checkout-index" checks out path A/B/C, it makes sure A
and A/B are truly directories; if there is a regular file or
symlink at A, we prefer to remove it.
We used to do this by catching an error return from mkdir(2),
and on EEXIST did unlink(2), and when it succeeded, tried
another mkdir(2).
Thomas Glanzmann found out the above does not work on Solaris
for a root user, as unlink(2) was so old fashioned there that it
allowed to unlink a directory.
As pointed out, this still doesn't guarantee that git won't call
"unlink()" on a directory (race conditions etc), but that's
fundamentally true (there is no "funlink()" like there is
"fstat()"), and besides, that is in no way git-specific (ie it's
true of any application that gets run as root).
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-18 07:58:28 +02:00
|
|
|
*/
|
2005-07-06 10:21:46 +02:00
|
|
|
if (mkdir(buf, 0777)) {
|
Do not expect unlink(2) to fail on a directory.
When "git checkout-index" checks out path A/B/C, it makes sure A
and A/B are truly directories; if there is a regular file or
symlink at A, we prefer to remove it.
We used to do this by catching an error return from mkdir(2),
and on EEXIST did unlink(2), and when it succeeded, tried
another mkdir(2).
Thomas Glanzmann found out the above does not work on Solaris
for a root user, as unlink(2) was so old fashioned there that it
allowed to unlink a directory.
As pointed out, this still doesn't guarantee that git won't call
"unlink()" on a directory (race conditions etc), but that's
fundamentally true (there is no "funlink()" like there is
"fstat()"), and besides, that is in no way git-specific (ie it's
true of any application that gets run as root).
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-18 07:58:28 +02:00
|
|
|
if (errno == EEXIST && state->force &&
|
2009-04-29 23:22:56 +02:00
|
|
|
!unlink_or_warn(buf) && !mkdir(buf, 0777))
|
Do not expect unlink(2) to fail on a directory.
When "git checkout-index" checks out path A/B/C, it makes sure A
and A/B are truly directories; if there is a regular file or
symlink at A, we prefer to remove it.
We used to do this by catching an error return from mkdir(2),
and on EEXIST did unlink(2), and when it succeeded, tried
another mkdir(2).
Thomas Glanzmann found out the above does not work on Solaris
for a root user, as unlink(2) was so old fashioned there that it
allowed to unlink a directory.
As pointed out, this still doesn't guarantee that git won't call
"unlink()" on a directory (race conditions etc), but that's
fundamentally true (there is no "funlink()" like there is
"fstat()"), and besides, that is in no way git-specific (ie it's
true of any application that gets run as root).
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-18 07:58:28 +02:00
|
|
|
continue;
|
2009-06-27 17:58:47 +02:00
|
|
|
die_errno("cannot create directory at '%s'", buf);
|
2005-06-06 06:59:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void remove_subtree(const char *path)
|
|
|
|
{
|
|
|
|
DIR *dir = opendir(path);
|
|
|
|
struct dirent *de;
|
|
|
|
char pathbuf[PATH_MAX];
|
|
|
|
char *name;
|
2007-06-07 09:04:01 +02:00
|
|
|
|
2005-06-06 06:59:54 +02:00
|
|
|
if (!dir)
|
2009-06-27 17:58:46 +02:00
|
|
|
die_errno("cannot opendir '%s'", path);
|
2005-06-06 06:59:54 +02:00
|
|
|
strcpy(pathbuf, path);
|
|
|
|
name = pathbuf + strlen(path);
|
|
|
|
*name++ = '/';
|
|
|
|
while ((de = readdir(dir)) != NULL) {
|
|
|
|
struct stat st;
|
2009-01-10 13:07:50 +01:00
|
|
|
if (is_dot_or_dotdot(de->d_name))
|
2005-06-06 06:59:54 +02:00
|
|
|
continue;
|
|
|
|
strcpy(name, de->d_name);
|
|
|
|
if (lstat(pathbuf, &st))
|
2009-06-27 17:58:46 +02:00
|
|
|
die_errno("cannot lstat '%s'", pathbuf);
|
2005-06-06 06:59:54 +02:00
|
|
|
if (S_ISDIR(st.st_mode))
|
|
|
|
remove_subtree(pathbuf);
|
|
|
|
else if (unlink(pathbuf))
|
2009-06-27 17:58:46 +02:00
|
|
|
die_errno("cannot unlink '%s'", pathbuf);
|
2005-06-06 06:59:54 +02:00
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
if (rmdir(path))
|
2009-06-27 17:58:46 +02:00
|
|
|
die_errno("cannot rmdir '%s'", path);
|
2005-06-06 06:59:54 +02:00
|
|
|
}
|
|
|
|
|
2005-07-14 18:58:45 +02:00
|
|
|
static int create_file(const char *path, unsigned int mode)
|
2005-06-06 06:59:54 +02:00
|
|
|
{
|
|
|
|
mode = (mode & 0100) ? 0777 : 0666;
|
2006-01-05 09:58:06 +01:00
|
|
|
return open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
|
2005-06-06 06:59:54 +02:00
|
|
|
}
|
|
|
|
|
2009-02-09 21:54:50 +01:00
|
|
|
static void *read_blob_entry(struct cache_entry *ce, unsigned long *size)
|
2007-04-13 18:26:04 +02:00
|
|
|
{
|
|
|
|
enum object_type type;
|
|
|
|
void *new = read_sha1_file(ce->sha1, &type, size);
|
|
|
|
|
|
|
|
if (new) {
|
|
|
|
if (type == OBJ_BLOB)
|
|
|
|
return new;
|
|
|
|
free(new);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-04-25 16:18:08 +02:00
|
|
|
static int write_entry(struct cache_entry *ce, char *path, const struct checkout *state, int to_tempfile)
|
2005-06-06 06:59:54 +02:00
|
|
|
{
|
2009-02-09 21:54:50 +01:00
|
|
|
unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT;
|
2009-02-09 21:54:51 +01:00
|
|
|
int fd, ret, fstat_done = 0;
|
2009-02-09 21:54:50 +01:00
|
|
|
char *new;
|
|
|
|
struct strbuf buf = STRBUF_INIT;
|
|
|
|
unsigned long size;
|
|
|
|
size_t wrote, newsize = 0;
|
2009-02-09 21:54:51 +01:00
|
|
|
struct stat st;
|
2009-02-09 21:54:50 +01:00
|
|
|
|
|
|
|
switch (ce_mode_s_ifmt) {
|
2005-06-06 06:59:54 +02:00
|
|
|
case S_IFREG:
|
2009-02-09 21:54:50 +01:00
|
|
|
case S_IFLNK:
|
|
|
|
new = read_blob_entry(ce, &size);
|
2007-04-13 18:26:04 +02:00
|
|
|
if (!new)
|
2008-08-31 18:39:19 +02:00
|
|
|
return error("git checkout-index: unable to read sha1 file of %s (%s)",
|
2007-04-13 18:26:04 +02:00
|
|
|
path, sha1_to_hex(ce->sha1));
|
2007-08-14 10:41:02 +02:00
|
|
|
|
2009-02-09 21:54:50 +01:00
|
|
|
if (ce_mode_s_ifmt == S_IFLNK && has_symlinks && !to_tempfile) {
|
|
|
|
ret = symlink(new, path);
|
|
|
|
free(new);
|
|
|
|
if (ret)
|
|
|
|
return error("git checkout-index: unable to create symlink %s (%s)",
|
|
|
|
path, strerror(errno));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-08-14 10:41:02 +02:00
|
|
|
/*
|
|
|
|
* Convert from git internal format to working tree format
|
|
|
|
*/
|
2009-02-09 21:54:50 +01:00
|
|
|
if (ce_mode_s_ifmt == S_IFREG &&
|
|
|
|
convert_to_working_tree(ce->name, new, size, &buf)) {
|
2007-08-14 10:41:02 +02:00
|
|
|
free(new);
|
2007-10-21 11:23:49 +02:00
|
|
|
new = strbuf_detach(&buf, &newsize);
|
|
|
|
size = newsize;
|
2007-08-14 10:41:02 +02:00
|
|
|
}
|
|
|
|
|
2006-03-05 09:24:15 +01:00
|
|
|
if (to_tempfile) {
|
2009-02-09 21:54:50 +01:00
|
|
|
if (ce_mode_s_ifmt == S_IFREG)
|
|
|
|
strcpy(path, ".merge_file_XXXXXX");
|
|
|
|
else
|
|
|
|
strcpy(path, ".merge_link_XXXXXX");
|
2006-03-05 09:24:15 +01:00
|
|
|
fd = mkstemp(path);
|
2009-02-09 21:54:50 +01:00
|
|
|
} else if (ce_mode_s_ifmt == S_IFREG) {
|
2008-01-15 01:03:17 +01:00
|
|
|
fd = create_file(path, ce->ce_mode);
|
2009-02-09 21:54:50 +01:00
|
|
|
} else {
|
|
|
|
fd = create_file(path, 0666);
|
|
|
|
}
|
2005-06-06 06:59:54 +02:00
|
|
|
if (fd < 0) {
|
|
|
|
free(new);
|
2008-08-31 18:39:19 +02:00
|
|
|
return error("git checkout-index: unable to create file %s (%s)",
|
2005-06-06 06:59:54 +02:00
|
|
|
path, strerror(errno));
|
|
|
|
}
|
Lazy man's auto-CRLF
It currently does NOT know about file attributes, so it does its
conversion purely based on content. Maybe that is more in the "git
philosophy" anyway, since content is king, but I think we should try to do
the file attributes to turn it off on demand.
Anyway, BY DEFAULT it is off regardless, because it requires a
[core]
AutoCRLF = true
in your config file to be enabled. We could make that the default for
Windows, of course, the same way we do some other things (filemode etc).
But you can actually enable it on UNIX, and it will cause:
- "git update-index" will write blobs without CRLF
- "git diff" will diff working tree files without CRLF
- "git checkout" will write files to the working tree _with_ CRLF
and things work fine.
Funnily, it actually shows an odd file in git itself:
git clone -n git test-crlf
cd test-crlf
git config core.autocrlf true
git checkout
git diff
shows a diff for "Documentation/docbook-xsl.css". Why? Because we have
actually checked in that file *with* CRLF! So when "core.autocrlf" is
true, we'll always generate a *different* hash for it in the index,
because the index hash will be for the content _without_ CRLF.
Is this complete? I dunno. It seems to work for me. It doesn't use the
filename at all right now, and that's probably a deficiency (we could
certainly make the "is_binary()" heuristics also take standard filename
heuristics into account).
I don't pass in the filename at all for the "index_fd()" case
(git-update-index), so that would need to be passed around, but this
actually works fine.
NOTE NOTE NOTE! The "is_binary()" heuristics are totally made-up by yours
truly. I will not guarantee that they work at all reasonable. Caveat
emptor. But it _is_ simple, and it _is_ safe, since it's all off by
default.
The patch is pretty simple - the biggest part is the new "convert.c" file,
but even that is really just basic stuff that anybody can write in
"Teaching C 101" as a final project for their first class in programming.
Not to say that it's bug-free, of course - but at least we're not talking
about rocket surgery here.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-13 20:07:23 +01:00
|
|
|
|
2007-01-08 16:58:23 +01:00
|
|
|
wrote = write_in_full(fd, new, size);
|
2009-02-09 21:54:51 +01:00
|
|
|
/* use fstat() only when path == ce->name */
|
2009-04-20 10:17:00 +02:00
|
|
|
if (fstat_is_reliable() &&
|
|
|
|
state->refresh_cache && !to_tempfile && !state->base_dir_len) {
|
2009-02-09 21:54:51 +01:00
|
|
|
fstat(fd, &st);
|
|
|
|
fstat_done = 1;
|
|
|
|
}
|
2005-06-06 06:59:54 +02:00
|
|
|
close(fd);
|
|
|
|
free(new);
|
|
|
|
if (wrote != size)
|
2008-08-31 18:39:19 +02:00
|
|
|
return error("git checkout-index: unable to write file %s", path);
|
2005-06-06 06:59:54 +02:00
|
|
|
break;
|
2007-05-21 22:08:28 +02:00
|
|
|
case S_IFGITLINK:
|
2007-04-13 18:26:04 +02:00
|
|
|
if (to_tempfile)
|
2008-08-31 18:39:19 +02:00
|
|
|
return error("git checkout-index: cannot create temporary subproject %s", path);
|
2007-04-13 18:26:04 +02:00
|
|
|
if (mkdir(path, 0777) < 0)
|
2008-08-31 18:39:19 +02:00
|
|
|
return error("git checkout-index: cannot create subproject directory %s", path);
|
2007-04-13 18:26:04 +02:00
|
|
|
break;
|
2005-06-06 06:59:54 +02:00
|
|
|
default:
|
2008-08-31 18:39:19 +02:00
|
|
|
return error("git checkout-index: unknown file mode for %s", path);
|
2005-06-06 06:59:54 +02:00
|
|
|
}
|
|
|
|
|
2005-06-06 08:15:40 +02:00
|
|
|
if (state->refresh_cache) {
|
2009-02-09 21:54:51 +01:00
|
|
|
if (!fstat_done)
|
|
|
|
lstat(ce->name, &st);
|
2005-06-06 06:59:54 +02:00
|
|
|
fill_stat_cache_info(ce, &st);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-25 16:18:08 +02:00
|
|
|
int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath)
|
2005-06-06 06:59:54 +02:00
|
|
|
{
|
2006-08-26 16:09:17 +02:00
|
|
|
static char path[PATH_MAX + 1];
|
2006-03-05 09:24:15 +01:00
|
|
|
struct stat st;
|
2005-06-06 06:59:54 +02:00
|
|
|
int len = state->base_dir_len;
|
|
|
|
|
2006-03-05 09:24:15 +01:00
|
|
|
if (topath)
|
|
|
|
return write_entry(ce, topath, state, 1);
|
|
|
|
|
2005-06-06 06:59:54 +02:00
|
|
|
memcpy(path, state->base_dir, len);
|
|
|
|
strcpy(path + len, ce->name);
|
2009-02-09 21:54:08 +01:00
|
|
|
len += ce_namelen(ce);
|
2005-06-06 06:59:54 +02:00
|
|
|
|
|
|
|
if (!lstat(path, &st)) {
|
2007-11-10 09:15:03 +01:00
|
|
|
unsigned changed = ce_match_stat(ce, &st, CE_MATCH_IGNORE_VALID);
|
2005-06-06 06:59:54 +02:00
|
|
|
if (!changed)
|
|
|
|
return 0;
|
|
|
|
if (!state->force) {
|
|
|
|
if (!state->quiet)
|
2005-09-08 02:26:23 +02:00
|
|
|
fprintf(stderr, "git-checkout-index: %s already exists\n", path);
|
2005-10-03 21:44:48 +02:00
|
|
|
return -1;
|
2005-06-06 06:59:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We unlink the old file, to get the new one with the
|
|
|
|
* right permissions (including umask, which is nasty
|
|
|
|
* to emulate by hand - much easier to let the system
|
|
|
|
* just do the right thing)
|
|
|
|
*/
|
2005-07-14 18:58:45 +02:00
|
|
|
if (S_ISDIR(st.st_mode)) {
|
2007-04-13 18:26:04 +02:00
|
|
|
/* If it is a gitlink, leave it alone! */
|
2008-01-15 01:03:17 +01:00
|
|
|
if (S_ISGITLINK(ce->ce_mode))
|
2007-04-13 18:26:04 +02:00
|
|
|
return 0;
|
2005-07-14 18:58:45 +02:00
|
|
|
if (!state->force)
|
|
|
|
return error("%s is a directory", path);
|
|
|
|
remove_subtree(path);
|
2008-03-17 16:56:27 +01:00
|
|
|
} else if (unlink(path))
|
|
|
|
return error("unable to unlink old '%s' (%s)", path, strerror(errno));
|
2006-03-05 09:24:15 +01:00
|
|
|
} else if (state->not_new)
|
2005-06-06 06:59:54 +02:00
|
|
|
return 0;
|
2009-02-09 21:54:08 +01:00
|
|
|
create_directories(path, len, state);
|
2006-03-05 09:24:15 +01:00
|
|
|
return write_entry(ce, path, state, 0);
|
2005-06-06 06:59:54 +02:00
|
|
|
}
|