summaryrefslogtreecommitdiff
path: root/lib/gitlab/git_access.rb
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2017-05-16 09:02:52 -0700
committerMichael Kozono <mkozono@gmail.com>2017-06-05 05:32:26 -0700
commita738a446f4ade6204c10f016e355da354dbfc01f (patch)
tree5a689fa6086046d7e5f038c42839820bcf1ea781 /lib/gitlab/git_access.rb
parent2d6cafa781ae24586fcd5307ae01daf3f407aa25 (diff)
downloadgitlab-ce-a738a446f4ade6204c10f016e355da354dbfc01f.tar.gz
Check disabled commands in GitAccess instead
Diffstat (limited to 'lib/gitlab/git_access.rb')
-rw-r--r--lib/gitlab/git_access.rb27
1 files changed, 26 insertions, 1 deletions
diff --git a/lib/gitlab/git_access.rb b/lib/gitlab/git_access.rb
index 591f68cd415..1d052ac9b33 100644
--- a/lib/gitlab/git_access.rb
+++ b/lib/gitlab/git_access.rb
@@ -12,7 +12,9 @@ module Gitlab
no_repo: 'A repository for this project does not exist yet.',
project_not_found: 'The project you were looking for could not be found.',
account_blocked: 'Your account has been blocked.',
- command_not_allowed: "The command you're trying to execute is not allowed."
+ command_not_allowed: "The command you're trying to execute is not allowed.",
+ upload_pack_disabled_in_config: 'The command "git-upload-pack" is not allowed.',
+ receive_pack_disabled_in_config: 'The command "git-receive-pack" is not allowed.'
}.freeze
DOWNLOAD_COMMANDS = %w{ git-upload-pack git-upload-archive }.freeze
@@ -33,6 +35,7 @@ module Gitlab
check_protocol!
check_active_user!
check_project_accessibility!
+ check_command_disabled!(cmd)
check_command_existence!(cmd)
check_repository_existence!
@@ -86,6 +89,16 @@ module Gitlab
end
end
+ def check_command_disabled!(cmd)
+ if http?
+ if upload_pack?(cmd) && !Gitlab.config.gitlab_shell.upload_pack
+ raise UnauthorizedError, ERROR_MESSAGES[:upload_pack_disabled_in_config]
+ elsif receive_pack?(cmd) && !Gitlab.config.gitlab_shell.receive_pack
+ raise UnauthorizedError, ERROR_MESSAGES[:receive_pack_disabled_in_config]
+ end
+ end
+ end
+
def check_command_existence!(cmd)
unless ALL_COMMANDS.include?(cmd)
raise UnauthorizedError, ERROR_MESSAGES[:command_not_allowed]
@@ -179,6 +192,18 @@ module Gitlab
end || Guest.can?(:read_project, project)
end
+ def http?
+ protocol == 'http'
+ end
+
+ def upload_pack?(command)
+ command == 'git-upload-pack'
+ end
+
+ def receive_pack?(command)
+ command == 'git-receive-pack'
+ end
+
protected
def user