06cbe85 (Make core.sharedRepository more generic, 2008-04-16) broke the traditional setting of core.sharedRepository to true, which was to make the repository group writable: with umask 022, it would clear the permission bits for 'other'. (umask 002 did not exhibit this behaviour since pre-chmod() check in adjust_shared_perm() fails in that case.) The call to adjust_shared_perm() should only loosen the permission. If the user has umask like 022 or 002 that allow others to read, the resulting files should be made readable and writable by group, without restricting the readability by others. This patch fixes the adjust_shared_perm() mode tweak based on Junio's suggestion and adds the appropriate tests to t/t1301-shared-repo.sh. Cc: Heikki Orsila <heikki.orsila@xxxxxx> Signed-off-by: Petr Baudis <pasky@xxxxxxx> --- Fourth iteration. The problem is in fact triggered with umask 022, not 002; fixed the description and extended the testsuite appropriately. Improved patch description as well as the adjust_shared_perm() fix based on Junio's suggestions here and on #git, so by now it's more of his patch than mine. :-) path.c | 2 +- t/t1301-shared-repo.sh | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletions(-) diff --git a/path.c b/path.c index 5983255..504eae0 100644 --- a/path.c +++ b/path.c @@ -272,7 +272,7 @@ int adjust_shared_perm(const char *path) int tweak = shared_repository; if (!(mode & S_IWUSR)) tweak &= ~0222; - mode = (mode & ~0777) | tweak; + mode |= tweak; } else { /* Preserve old PERM_UMASK behaviour */ if (mode & S_IWUSR) diff --git a/t/t1301-shared-repo.sh b/t/t1301-shared-repo.sh index 6c78c8b..4c6d0b6 100755 --- a/t/t1301-shared-repo.sh +++ b/t/t1301-shared-repo.sh @@ -17,6 +17,28 @@ test_expect_success 'shared = 0400 (faulty permission u-w)' ' test $ret != "0" ' +for u in 002 022; do + test_expect_success "shared=1 does not clear bits preset by umask $u" ' + mkdir sub && + cd sub && + umask $u && + git init --shared=1 && + test 1 = $(git config core.sharedrepository) && + actual="$(ls -l .git/HEAD)" && + cd .. && + rm -rf sub && + case "$actual" in + -rw-rw-r--*) + : happy + ;; + *) + echo Oops, .git/HEAD is not 0664 but $actual + false + ;; + esac + ' +done + test_expect_success 'shared=all' ' mkdir sub && cd sub && -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html