transport: add a protocol-whitelist environment variable
If we are cloning an untrusted remote repository into a
sandbox, we may also want to fetch remote submodules in
order to get the complete view as intended by the other
side. However, that opens us up to attacks where a malicious
user gets us to clone something they would not otherwise
have access to (this is not necessarily a problem by itself,
but we may then act on the cloned contents in a way that
exposes them to the attacker).
Ideally such a setup would sandbox git entirely away from
high-value items, but this is not always practical or easy
to set up (e.g., OS network controls may block multiple
protocols, and we would want to enable some but not others).
We can help this case by providing a way to restrict
particular protocols. We use a whitelist in the environment.
This is more annoying to set up than a blacklist, but
defaults to safety if the set of protocols git supports
grows). If no whitelist is specified, we continue to default
to allowing all protocols (this is an "unsafe" default, but
since the minority of users will want this sandboxing
effect, it is the only sensible one).
A note on the tests: ideally these would all be in a single
test file, but the git-daemon and httpd test infrastructure
is an all-or-nothing proposition rather than a test-by-test
prerequisite. By putting them all together, we would be
unable to test the file-local code on machines without
apache.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-09-16 19:12:52 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='test disabling of local paths in clone/fetch'
|
|
|
|
. ./test-lib.sh
|
|
|
|
. "$TEST_DIRECTORY/lib-proto-disable.sh"
|
|
|
|
|
|
|
|
test_expect_success 'setup repository to clone' '
|
|
|
|
test_commit one
|
|
|
|
'
|
|
|
|
|
|
|
|
test_proto "file://" file "file://$PWD"
|
|
|
|
test_proto "path" file .
|
|
|
|
|
2017-07-28 21:28:55 +02:00
|
|
|
test_expect_success 'setup repo with dash' '
|
|
|
|
git init --bare repo.git &&
|
|
|
|
git push repo.git HEAD &&
|
|
|
|
mv repo.git "$PWD/-repo.git"
|
|
|
|
'
|
|
|
|
|
|
|
|
# This will fail even without our rejection because upload-pack will
|
|
|
|
# complain about the bogus option. So let's make sure that GIT_TRACE
|
|
|
|
# doesn't show us even running upload-pack.
|
|
|
|
#
|
|
|
|
# We must also be sure to use "fetch" and not "clone" here, as the latter
|
|
|
|
# actually canonicalizes our input into an absolute path (which is fine
|
|
|
|
# to allow).
|
|
|
|
test_expect_success 'repo names starting with dash are rejected' '
|
|
|
|
rm -f trace.out &&
|
|
|
|
test_must_fail env GIT_TRACE="$PWD/trace.out" git fetch -- -repo.git &&
|
|
|
|
! grep upload-pack trace.out
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'full paths still work' '
|
|
|
|
git fetch "$PWD/-repo.git"
|
|
|
|
'
|
|
|
|
|
transport: add a protocol-whitelist environment variable
If we are cloning an untrusted remote repository into a
sandbox, we may also want to fetch remote submodules in
order to get the complete view as intended by the other
side. However, that opens us up to attacks where a malicious
user gets us to clone something they would not otherwise
have access to (this is not necessarily a problem by itself,
but we may then act on the cloned contents in a way that
exposes them to the attacker).
Ideally such a setup would sandbox git entirely away from
high-value items, but this is not always practical or easy
to set up (e.g., OS network controls may block multiple
protocols, and we would want to enable some but not others).
We can help this case by providing a way to restrict
particular protocols. We use a whitelist in the environment.
This is more annoying to set up than a blacklist, but
defaults to safety if the set of protocols git supports
grows). If no whitelist is specified, we continue to default
to allowing all protocols (this is an "unsafe" default, but
since the minority of users will want this sandboxing
effect, it is the only sensible one).
A note on the tests: ideally these would all be in a single
test file, but the git-daemon and httpd test infrastructure
is an all-or-nothing proposition rather than a test-by-test
prerequisite. By putting them all together, we would be
unable to test the file-local code on machines without
apache.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-09-16 19:12:52 +02:00
|
|
|
test_done
|