* [PATCH] Preserve file permissions on git-reflog expire
@ 2008-10-15 17:34 Samuel Lucas Vaz de Mello
2008-10-15 17:54 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Samuel Lucas Vaz de Mello @ 2008-10-15 17:34 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano, Shawn O. Pearce
Preserve file permissions on git-reflog expire to avoid problems with shared repositories and git-gc.
Signed-off-by: Samuel Lucas Vaz de Mello <samuellucas@datacom.ind.br>
---
This small patch fixes a bug with shared repositories and git-reflog expire.
If you have a shared repository created with git-init --shared, several users can push to it.
Once you run git-gc (which calls git-reflog expire) on the shared repository, the reflogs files are recreated with umask permissions, which defaults to 644 (with no group write). Since then, users receive the following error when trying to push:
samuel@erdinger:~/myrepo$ git push
Counting objects: 5, done.
Compressing objects: 100% (3/3), done.
Unpacking objects: 100% (3/3), done.
Writing objects: 100% (3/3), 295 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
error: Unable to append to logs/refs/heads/master: Permission denied
To /remote/myrepo/
! [remote rejected] master -> master (failed to write)
error: failed to push some refs to '/remote/myrepo/'
This patch avoid this error preserving the permissions on reflog files.
builtin-reflog.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/builtin-reflog.c b/builtin-reflog.c
index 6b3667e..92a0d53 100644
--- a/builtin-reflog.c
+++ b/builtin-reflog.c
@@ -265,6 +265,7 @@ static int expire_reflog(const char *ref, const unsigned char *sha1, int unused,
struct cmd_reflog_expire_cb *cmd = cb_data;
struct expire_reflog_cb cb;
struct ref_lock *lock;
+ struct stat filestat;
char *log_file, *newlog_path = NULL;
int status = 0;
@@ -303,6 +304,10 @@ static int expire_reflog(const char *ref, const unsigned char *sha1, int unused,
status |= error("Couldn't write %s",
lock->lk->filename);
unlink(newlog_path);
+ } else if (stat(log_file, &filestat)){
+ status |= error("unable to read permissions of %s", log_file);
+ } else if (chmod(newlog_path, filestat.st_mode)){
+ status |= error("cannot set permissions of %s", newlog_path);
} else if (rename(newlog_path, log_file)) {
status |= error("cannot rename %s to %s",
newlog_path, log_file);
--
1.6.0.2.532.g84ed4c.dirty
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Preserve file permissions on git-reflog expire
2008-10-15 17:34 [PATCH] Preserve file permissions on git-reflog expire Samuel Lucas Vaz de Mello
@ 2008-10-15 17:54 ` Junio C Hamano
2008-10-16 12:34 ` Johannes Schindelin
0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2008-10-15 17:54 UTC (permalink / raw)
To: Samuel Lucas Vaz de Mello; +Cc: git, Shawn O. Pearce
Samuel Lucas Vaz de Mello <samuellucas@datacom.ind.br> writes:
> Preserve file permissions on git-reflog expire to avoid problems with shared repositories and git-gc.
Looong line needs wrapped (I could do this myself if this was the only
issue, but...)
> Signed-off-by: Samuel Lucas Vaz de Mello <samuellucas@datacom.ind.br>
>
> ---
>
> This small patch fixes a bug with shared repositories and git-reflog expire.
> samuel@erdinger:~/myrepo$ git push
> Counting objects: 5, done.
> Compressing objects: 100% (3/3), done.
> Unpacking objects: 100% (3/3), done.
> Writing objects: 100% (3/3), 295 bytes, done.
> Total 3 (delta 2), reused 0 (delta 0)
> error: Unable to append to logs/refs/heads/master: Permission denied
> To /remote/myrepo/
> ! [remote rejected] master -> master (failed to write)
> error: failed to push some refs to '/remote/myrepo/'
Thanks for a reproduction recipe. I think an abbreviated version of this
would deserve to be in the commit log message proper.
> diff --git a/builtin-reflog.c b/builtin-reflog.c
> index 6b3667e..92a0d53 100644
> --- a/builtin-reflog.c
> +++ b/builtin-reflog.c
> @@ -265,6 +265,7 @@ static int expire_reflog(const char *ref, const unsigned char *sha1, int unused,
> struct cmd_reflog_expire_cb *cmd = cb_data;
> struct expire_reflog_cb cb;
> struct ref_lock *lock;
> + struct stat filestat;
> char *log_file, *newlog_path = NULL;
> int status = 0;
>
> @@ -303,6 +304,10 @@ static int expire_reflog(const char *ref, const unsigned char *sha1, int unused,
> status |= error("Couldn't write %s",
> lock->lk->filename);
> unlink(newlog_path);
> + } else if (stat(log_file, &filestat)){
> + status |= error("unable to read permissions of %s", log_file);
Hmmm. Is there a reason you did not use adjust_shared_perm() like all the
other codepaths for creating files under .git/ directory do?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Preserve file permissions on git-reflog expire
2008-10-15 17:54 ` Junio C Hamano
@ 2008-10-16 12:34 ` Johannes Schindelin
0 siblings, 0 replies; 3+ messages in thread
From: Johannes Schindelin @ 2008-10-16 12:34 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Samuel Lucas Vaz de Mello, git, Shawn O. Pearce
Hi,
On Wed, 15 Oct 2008, Junio C Hamano wrote:
> Samuel Lucas Vaz de Mello <samuellucas@datacom.ind.br> writes:
>
> > samuel@erdinger:~/myrepo$ git push
> > Counting objects: 5, done.
> > Compressing objects: 100% (3/3), done.
> > Unpacking objects: 100% (3/3), done.
> > Writing objects: 100% (3/3), 295 bytes, done.
> > Total 3 (delta 2), reused 0 (delta 0)
> > error: Unable to append to logs/refs/heads/master: Permission denied
> > To /remote/myrepo/
> > ! [remote rejected] master -> master (failed to write)
> > error: failed to push some refs to '/remote/myrepo/'
>
> Thanks for a reproduction recipe. I think an abbreviated version of this
> would deserve to be in the commit log message proper.
Or as a test script.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-10-16 12:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-15 17:34 [PATCH] Preserve file permissions on git-reflog expire Samuel Lucas Vaz de Mello
2008-10-15 17:54 ` Junio C Hamano
2008-10-16 12:34 ` Johannes Schindelin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.