Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
7735ef86
Commit
7735ef86
authored
Jun 20, 2016
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only allow Git Access on the allowed protocol
parent
ea9d910c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
46 additions
and
13 deletions
+46
-13
app/controllers/projects/git_http_controller.rb
app/controllers/projects/git_http_controller.rb
+1
-1
app/helpers/application_settings_helper.rb
app/helpers/application_settings_helper.rb
+2
-2
app/helpers/button_helper.rb
app/helpers/button_helper.rb
+4
-4
app/models/application_setting.rb
app/models/application_setting.rb
+2
-1
lib/api/internal.rb
lib/api/internal.rb
+5
-2
lib/gitlab/git/hook.rb
lib/gitlab/git/hook.rb
+2
-1
lib/gitlab/git_access.rb
lib/gitlab/git_access.rb
+17
-2
lib/gitlab/protocol_access.rb
lib/gitlab/protocol_access.rb
+13
-0
No files found.
app/controllers/projects/git_http_controller.rb
View file @
7735ef86
...
...
@@ -162,7 +162,7 @@ class Projects::GitHttpController < Projects::ApplicationController
return
false
unless
Gitlab
.
config
.
gitlab_shell
.
upload_pack
if
user
Gitlab
::
GitAccess
.
new
(
user
,
project
).
download_access_check
.
allowed?
Gitlab
::
GitAccess
.
new
(
user
,
project
,
'http'
).
download_access_check
.
allowed?
else
ci?
||
project
.
public?
end
...
...
app/helpers/application_settings_helper.rb
View file @
7735ef86
...
...
@@ -47,9 +47,9 @@ module ApplicationSettingsHelper
def
enabled_project_tooltip
(
project
,
protocol
)
case
protocol
when
'ssh'
sanitize_clone_button
(
ssh_clone_button
(
project
))
sanitize_clone_button
(
ssh_clone_button
(
project
,
'bottom'
))
else
sanitize_clone_button
(
http_clone_button
(
project
))
sanitize_clone_button
(
http_clone_button
(
project
,
'bottom'
))
end
end
...
...
app/helpers/button_helper.rb
View file @
7735ef86
...
...
@@ -40,7 +40,7 @@ module ButtonHelper
type: :button
end
def
http_clone_button
(
project
)
def
http_clone_button
(
project
,
placement
=
'right'
)
klass
=
'http-selector'
klass
<<
' has-tooltip'
if
current_user
.
try
(
:require_password?
)
...
...
@@ -51,13 +51,13 @@ module ButtonHelper
href:
project
.
http_url_to_repo
,
data:
{
html:
true
,
placement:
'right'
,
placement:
placement
,
container:
'body'
,
title:
"Set a password on your account<br>to pull or push via
#{
protocol
}
"
}
end
def
ssh_clone_button
(
project
)
def
ssh_clone_button
(
project
,
placement
=
'right'
)
klass
=
'ssh-selector'
klass
<<
' has-tooltip'
if
current_user
.
try
(
:require_ssh_key?
)
...
...
@@ -66,7 +66,7 @@ module ButtonHelper
href:
project
.
ssh_url_to_repo
,
data:
{
html:
true
,
placement:
'right'
,
placement:
placement
,
container:
'body'
,
title:
'Add an SSH key to your profile<br>to pull or push via SSH.'
}
...
...
app/models/application_setting.rb
View file @
7735ef86
...
...
@@ -59,7 +59,8 @@ class ApplicationSetting < ActiveRecord::Base
presence:
true
,
inclusion:
{
in:
->
(
_object
)
{
Gitlab
.
config
.
repositories
.
storages
.
keys
}
}
validates_inclusion_of
:enabled_git_access_protocols
,
in:
%w(ssh http)
,
allow_blank:
true
,
allow_nil:
true
validates
:enabled_git_access_protocols
,
inclusion:
{
in:
%w(ssh http)
,
allow_blank:
true
,
allow_nil:
true
}
validates_each
:restricted_visibility_levels
do
|
record
,
attr
,
value
|
unless
value
.
nil?
...
...
lib/api/internal.rb
View file @
7735ef86
...
...
@@ -13,6 +13,7 @@ module API
# action - git action (git-upload-pack or git-receive-pack)
# ref - branch name
# forced_push - forced_push
# protocol - Git access protocol being used, e.g. HTTP or SSH
#
helpers
do
...
...
@@ -46,11 +47,13 @@ module API
User
.
find_by
(
id:
params
[
:user_id
])
end
protocol
=
params
[
:protocol
]
access
=
if
wiki?
Gitlab
::
GitAccessWiki
.
new
(
actor
,
project
)
Gitlab
::
GitAccessWiki
.
new
(
actor
,
project
,
protocol
)
else
Gitlab
::
GitAccess
.
new
(
actor
,
project
)
Gitlab
::
GitAccess
.
new
(
actor
,
project
,
protocol
)
end
access_status
=
access
.
check
(
params
[
:action
],
params
[
:changes
])
...
...
lib/gitlab/git/hook.rb
View file @
7735ef86
...
...
@@ -34,7 +34,8 @@ module Gitlab
vars
=
{
'GL_ID'
=>
gl_id
,
'PWD'
=>
repo_path
'PWD'
=>
repo_path
,
'PROTOCOL'
=>
'web'
}
options
=
{
...
...
lib/gitlab/git_access.rb
View file @
7735ef86
...
...
@@ -3,11 +3,12 @@ module Gitlab
DOWNLOAD_COMMANDS
=
%w{ git-upload-pack git-upload-archive }
PUSH_COMMANDS
=
%w{ git-receive-pack }
attr_reader
:actor
,
:project
attr_reader
:actor
,
:project
,
:protocol
def
initialize
(
actor
,
project
)
def
initialize
(
actor
,
project
,
protocol
=
nil
)
@actor
=
actor
@project
=
project
@protocol
=
protocol
end
def
user
...
...
@@ -49,6 +50,8 @@ module Gitlab
end
def
check
(
cmd
,
changes
=
nil
)
return
build_status_object
(
false
,
"Git access over
#{
protocol
.
upcase
}
is not allowed"
)
unless
protocol_allowed?
unless
actor
return
build_status_object
(
false
,
"No user or key was provided."
)
end
...
...
@@ -72,6 +75,8 @@ module Gitlab
end
def
download_access_check
return
build_status_object
(
false
,
"Git access over
#{
protocol
.
upcase
}
is not allowed"
)
unless
protocol_allowed?
if
user
user_download_access_check
elsif
deploy_key
...
...
@@ -82,6 +87,8 @@ module Gitlab
end
def
push_access_check
(
changes
)
return
build_status_object
(
false
,
"Git access over
#{
protocol
.
upcase
}
is not allowed"
)
unless
protocol_allowed?
if
user
user_push_access_check
(
changes
)
elsif
deploy_key
...
...
@@ -92,6 +99,8 @@ module Gitlab
end
def
user_download_access_check
return
build_status_object
(
false
,
"Git access over
#{
protocol
.
upcase
}
is not allowed"
)
unless
protocol_allowed?
unless
user
.
can?
(
:download_code
,
project
)
return
build_status_object
(
false
,
"You are not allowed to download code from this project."
)
end
...
...
@@ -100,6 +109,8 @@ module Gitlab
end
def
user_push_access_check
(
changes
)
return
build_status_object
(
false
,
"Git access over
#{
protocol
.
upcase
}
is not allowed"
)
unless
protocol_allowed?
if
changes
.
blank?
return
build_status_object
(
true
)
end
...
...
@@ -188,6 +199,10 @@ module Gitlab
Gitlab
::
UserAccess
.
allowed?
(
user
)
end
def
protocol_allowed?
protocol
?
Gitlab
::
ProtocolAccess
.
allowed?
(
protocol
)
:
true
end
def
branch_name
(
ref
)
ref
=
ref
.
to_s
if
Gitlab
::
Git
.
branch_ref?
(
ref
)
...
...
lib/gitlab/protocol_access.rb
0 → 100644
View file @
7735ef86
module
Gitlab
module
ProtocolAccess
def
self
.
allowed?
(
protocol
)
if
protocol
.
to_s
==
'web'
true
elsif
!
current_application_settings
.
enabled_git_access_protocols
.
present?
true
else
protocol
.
to_s
==
current_application_settings
.
enabled_git_access_protocols
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment