2006-06-06 21:51:49 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2005, Junio C Hamano
|
|
|
|
*/
|
|
|
|
#include "cache.h"
|
|
|
|
|
|
|
|
static struct lock_file *lock_file_list;
|
2007-04-01 08:27:41 +02:00
|
|
|
static const char *alternate_index_output;
|
2006-06-06 21:51:49 +02:00
|
|
|
|
|
|
|
static void remove_lock_file(void)
|
|
|
|
{
|
2007-04-21 12:11:10 +02:00
|
|
|
pid_t me = getpid();
|
|
|
|
|
2006-06-06 21:51:49 +02:00
|
|
|
while (lock_file_list) {
|
2007-04-21 12:11:10 +02:00
|
|
|
if (lock_file_list->owner == me &&
|
2007-11-13 21:05:03 +01:00
|
|
|
lock_file_list->filename[0]) {
|
2008-01-16 20:05:32 +01:00
|
|
|
if (lock_file_list->fd >= 0)
|
|
|
|
close(lock_file_list->fd);
|
2006-06-06 21:51:49 +02:00
|
|
|
unlink(lock_file_list->filename);
|
2007-11-13 21:05:03 +01:00
|
|
|
}
|
2006-06-06 21:51:49 +02:00
|
|
|
lock_file_list = lock_file_list->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void remove_lock_file_on_signal(int signo)
|
|
|
|
{
|
|
|
|
remove_lock_file();
|
|
|
|
signal(SIGINT, SIG_DFL);
|
|
|
|
raise(signo);
|
|
|
|
}
|
|
|
|
|
2007-07-26 19:34:14 +02:00
|
|
|
/*
|
|
|
|
* p = absolute or relative path name
|
|
|
|
*
|
|
|
|
* Return a pointer into p showing the beginning of the last path name
|
|
|
|
* element. If p is empty or the root directory ("/"), just return p.
|
|
|
|
*/
|
|
|
|
static char *last_path_elm(char *p)
|
|
|
|
{
|
|
|
|
/* r starts pointing to null at the end of the string */
|
|
|
|
char *r = strchr(p, '\0');
|
|
|
|
|
|
|
|
if (r == p)
|
|
|
|
return p; /* just return empty string */
|
|
|
|
|
|
|
|
r--; /* back up to last non-null character */
|
|
|
|
|
|
|
|
/* back up past trailing slashes, if any */
|
|
|
|
while (r > p && *r == '/')
|
|
|
|
r--;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* then go backwards until I hit a slash, or the beginning of
|
|
|
|
* the string
|
|
|
|
*/
|
|
|
|
while (r > p && *(r-1) != '/')
|
|
|
|
r--;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* We allow "recursive" symbolic links. Only within reason, though */
|
|
|
|
#define MAXDEPTH 5
|
|
|
|
|
|
|
|
/*
|
|
|
|
* p = path that may be a symlink
|
|
|
|
* s = full size of p
|
|
|
|
*
|
|
|
|
* If p is a symlink, attempt to overwrite p with a path to the real
|
|
|
|
* file or directory (which may or may not exist), following a chain of
|
|
|
|
* symlinks if necessary. Otherwise, leave p unmodified.
|
|
|
|
*
|
|
|
|
* This is a best-effort routine. If an error occurs, p will either be
|
|
|
|
* left unmodified or will name a different symlink in a symlink chain
|
|
|
|
* that started with p's initial contents.
|
|
|
|
*
|
|
|
|
* Always returns p.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static char *resolve_symlink(char *p, size_t s)
|
|
|
|
{
|
|
|
|
int depth = MAXDEPTH;
|
|
|
|
|
|
|
|
while (depth--) {
|
|
|
|
char link[PATH_MAX];
|
|
|
|
int link_len = readlink(p, link, sizeof(link));
|
|
|
|
if (link_len < 0) {
|
|
|
|
/* not a symlink anymore */
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
else if (link_len < sizeof(link))
|
|
|
|
/* readlink() never null-terminates */
|
|
|
|
link[link_len] = '\0';
|
|
|
|
else {
|
|
|
|
warning("%s: symlink too long", p);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2007-11-25 23:29:03 +01:00
|
|
|
if (is_absolute_path(link)) {
|
2007-07-26 19:34:14 +02:00
|
|
|
/* absolute path simply replaces p */
|
|
|
|
if (link_len < s)
|
|
|
|
strcpy(p, link);
|
|
|
|
else {
|
|
|
|
warning("%s: symlink too long", p);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* link is a relative path, so I must replace the
|
|
|
|
* last element of p with it.
|
|
|
|
*/
|
|
|
|
char *r = (char*)last_path_elm(p);
|
|
|
|
if (r - p + link_len < s)
|
|
|
|
strcpy(r, link);
|
|
|
|
else {
|
|
|
|
warning("%s: symlink too long", p);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-12 10:03:47 +02:00
|
|
|
static int lock_file(struct lock_file *lk, const char *path)
|
2006-06-06 21:51:49 +02:00
|
|
|
{
|
2007-07-26 19:34:14 +02:00
|
|
|
if (strlen(path) >= sizeof(lk->filename)) return -1;
|
|
|
|
strcpy(lk->filename, path);
|
|
|
|
/*
|
|
|
|
* subtract 5 from size to make sure there's room for adding
|
|
|
|
* ".lock" for the lock file name
|
|
|
|
*/
|
|
|
|
resolve_symlink(lk->filename, sizeof(lk->filename)-5);
|
|
|
|
strcat(lk->filename, ".lock");
|
2007-11-13 21:05:03 +01:00
|
|
|
lk->fd = open(lk->filename, O_RDWR | O_CREAT | O_EXCL, 0666);
|
|
|
|
if (0 <= lk->fd) {
|
2007-07-13 16:14:50 +02:00
|
|
|
if (!lock_file_list) {
|
|
|
|
signal(SIGINT, remove_lock_file_on_signal);
|
|
|
|
atexit(remove_lock_file);
|
|
|
|
}
|
2007-04-21 12:11:10 +02:00
|
|
|
lk->owner = getpid();
|
2007-01-02 20:19:05 +01:00
|
|
|
if (!lk->on_list) {
|
2006-06-10 07:07:23 +02:00
|
|
|
lk->next = lock_file_list;
|
|
|
|
lock_file_list = lk;
|
2007-01-02 20:19:05 +01:00
|
|
|
lk->on_list = 1;
|
|
|
|
}
|
2006-06-10 07:07:23 +02:00
|
|
|
if (adjust_shared_perm(lk->filename))
|
|
|
|
return error("cannot fix permission bits on %s",
|
|
|
|
lk->filename);
|
2006-06-06 21:51:49 +02:00
|
|
|
}
|
2007-01-02 20:19:05 +01:00
|
|
|
else
|
|
|
|
lk->filename[0] = 0;
|
2007-11-13 21:05:03 +01:00
|
|
|
return lk->fd;
|
2006-06-06 21:51:49 +02:00
|
|
|
}
|
|
|
|
|
2006-08-12 10:03:47 +02:00
|
|
|
int hold_lock_file_for_update(struct lock_file *lk, const char *path, int die_on_error)
|
|
|
|
{
|
|
|
|
int fd = lock_file(lk, path);
|
|
|
|
if (fd < 0 && die_on_error)
|
2007-01-06 04:14:04 +01:00
|
|
|
die("unable to create '%s.lock': %s", path, strerror(errno));
|
2006-08-12 10:03:47 +02:00
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2008-01-16 20:05:32 +01:00
|
|
|
int close_lock_file(struct lock_file *lk)
|
|
|
|
{
|
|
|
|
int fd = lk->fd;
|
|
|
|
lk->fd = -1;
|
|
|
|
return close(fd);
|
|
|
|
}
|
|
|
|
|
2006-06-06 21:51:49 +02:00
|
|
|
int commit_lock_file(struct lock_file *lk)
|
|
|
|
{
|
|
|
|
char result_file[PATH_MAX];
|
2008-01-16 20:05:32 +01:00
|
|
|
size_t i;
|
|
|
|
if (lk->fd >= 0 && close_lock_file(lk))
|
|
|
|
return -1;
|
2006-06-06 21:51:49 +02:00
|
|
|
strcpy(result_file, lk->filename);
|
|
|
|
i = strlen(result_file) - 5; /* .lock */
|
|
|
|
result_file[i] = 0;
|
2008-01-16 20:05:32 +01:00
|
|
|
if (rename(lk->filename, result_file))
|
|
|
|
return -1;
|
2006-06-06 21:51:49 +02:00
|
|
|
lk->filename[0] = 0;
|
2008-01-16 20:05:32 +01:00
|
|
|
return 0;
|
2006-06-06 21:51:49 +02:00
|
|
|
}
|
|
|
|
|
_GIT_INDEX_OUTPUT: allow plumbing to output to an alternative index file.
When defined, this allows plumbing commands that update the
index (add, apply, checkout-index, merge-recursive, mv,
read-tree, rm, update-index, and write-tree) to write their
resulting index to an alternative index file while holding a
lock to the original index file. With this, git-commit that
jumps the index does not have to make an extra copy of the index
file, and more importantly, it can do the update while holding
the lock on the index.
However, I think the interface to let an environment variable
specify the output is a mistake, as shown in the documentation.
If a curious user has the environment variable set to something
other than the file GIT_INDEX_FILE points at, almost everything
will break. This should instead be a command line parameter to
tell these plumbing commands to write the result in the named
file, to prevent stupid mistakes.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-04-01 08:09:02 +02:00
|
|
|
int hold_locked_index(struct lock_file *lk, int die_on_error)
|
|
|
|
{
|
|
|
|
return hold_lock_file_for_update(lk, get_index_file(), die_on_error);
|
|
|
|
}
|
|
|
|
|
2007-04-01 08:27:41 +02:00
|
|
|
void set_alternate_index_output(const char *name)
|
|
|
|
{
|
|
|
|
alternate_index_output = name;
|
|
|
|
}
|
|
|
|
|
_GIT_INDEX_OUTPUT: allow plumbing to output to an alternative index file.
When defined, this allows plumbing commands that update the
index (add, apply, checkout-index, merge-recursive, mv,
read-tree, rm, update-index, and write-tree) to write their
resulting index to an alternative index file while holding a
lock to the original index file. With this, git-commit that
jumps the index does not have to make an extra copy of the index
file, and more importantly, it can do the update while holding
the lock on the index.
However, I think the interface to let an environment variable
specify the output is a mistake, as shown in the documentation.
If a curious user has the environment variable set to something
other than the file GIT_INDEX_FILE points at, almost everything
will break. This should instead be a command line parameter to
tell these plumbing commands to write the result in the named
file, to prevent stupid mistakes.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-04-01 08:09:02 +02:00
|
|
|
int commit_locked_index(struct lock_file *lk)
|
|
|
|
{
|
2007-04-01 08:27:41 +02:00
|
|
|
if (alternate_index_output) {
|
2008-01-16 20:05:32 +01:00
|
|
|
if (lk->fd >= 0 && close_lock_file(lk))
|
|
|
|
return -1;
|
|
|
|
if (rename(lk->filename, alternate_index_output))
|
|
|
|
return -1;
|
_GIT_INDEX_OUTPUT: allow plumbing to output to an alternative index file.
When defined, this allows plumbing commands that update the
index (add, apply, checkout-index, merge-recursive, mv,
read-tree, rm, update-index, and write-tree) to write their
resulting index to an alternative index file while holding a
lock to the original index file. With this, git-commit that
jumps the index does not have to make an extra copy of the index
file, and more importantly, it can do the update while holding
the lock on the index.
However, I think the interface to let an environment variable
specify the output is a mistake, as shown in the documentation.
If a curious user has the environment variable set to something
other than the file GIT_INDEX_FILE points at, almost everything
will break. This should instead be a command line parameter to
tell these plumbing commands to write the result in the named
file, to prevent stupid mistakes.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-04-01 08:09:02 +02:00
|
|
|
lk->filename[0] = 0;
|
2008-01-16 20:05:32 +01:00
|
|
|
return 0;
|
_GIT_INDEX_OUTPUT: allow plumbing to output to an alternative index file.
When defined, this allows plumbing commands that update the
index (add, apply, checkout-index, merge-recursive, mv,
read-tree, rm, update-index, and write-tree) to write their
resulting index to an alternative index file while holding a
lock to the original index file. With this, git-commit that
jumps the index does not have to make an extra copy of the index
file, and more importantly, it can do the update while holding
the lock on the index.
However, I think the interface to let an environment variable
specify the output is a mistake, as shown in the documentation.
If a curious user has the environment variable set to something
other than the file GIT_INDEX_FILE points at, almost everything
will break. This should instead be a command line parameter to
tell these plumbing commands to write the result in the named
file, to prevent stupid mistakes.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-04-01 08:09:02 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return commit_lock_file(lk);
|
|
|
|
}
|
|
|
|
|
2006-06-06 21:51:49 +02:00
|
|
|
void rollback_lock_file(struct lock_file *lk)
|
|
|
|
{
|
2007-11-13 21:05:03 +01:00
|
|
|
if (lk->filename[0]) {
|
2008-01-16 20:05:32 +01:00
|
|
|
if (lk->fd >= 0)
|
|
|
|
close(lk->fd);
|
2006-06-06 21:51:49 +02:00
|
|
|
unlink(lk->filename);
|
2007-11-13 21:05:03 +01:00
|
|
|
}
|
2006-06-06 21:51:49 +02:00
|
|
|
lk->filename[0] = 0;
|
|
|
|
}
|