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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
6b2ebea7
Commit
6b2ebea7
authored
Jul 09, 2018
by
Jan Provaznik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added test and used Array() instead of .wrap
parent
e2ec97a9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletion
+28
-1
lib/uploaded_file.rb
lib/uploaded_file.rb
+1
-1
spec/lib/gitlab/middleware/multipart_spec.rb
spec/lib/gitlab/middleware/multipart_spec.rb
+27
-0
No files found.
lib/uploaded_file.rb
View file @
6b2ebea7
...
...
@@ -37,7 +37,7 @@ class UploadedFile
file_path
=
File
.
realpath
(
params
[
"
#{
field
}
.path"
])
paths
=
Array
.
wrap
(
upload_paths
)
<<
Dir
.
tmpdir
paths
=
Array
(
upload_paths
)
<<
Dir
.
tmpdir
unless
self
.
allowed_path?
(
file_path
,
paths
.
compact
)
raise
InvalidPathError
,
"insecure path used '
#{
file_path
}
'"
end
...
...
spec/lib/gitlab/middleware/multipart_spec.rb
View file @
6b2ebea7
...
...
@@ -75,6 +75,33 @@ describe Gitlab::Middleware::Multipart do
it_behaves_like
'multipart upload files'
end
it
'allows symlinks for uploads dir'
do
Tempfile
.
open
(
'two-levels'
)
do
|
tempfile
|
symlinked_dir
=
'/some/dir/uploads'
symlinked_path
=
File
.
join
(
symlinked_dir
,
File
.
basename
(
tempfile
.
path
))
env
=
post_env
({
'file'
=>
symlinked_path
},
{
'file.name'
=>
original_filename
,
'file.path'
=>
symlinked_path
},
Gitlab
::
Workhorse
.
secret
,
'gitlab-workhorse'
)
allow
(
FileUploader
).
to
receive
(
:root
).
and_return
(
symlinked_dir
)
allow
(
UploadedFile
).
to
receive
(
:allowed_paths
).
and_return
([
symlinked_dir
,
Gitlab
.
config
.
uploads
.
storage_path
])
allow
(
File
).
to
receive
(
:realpath
).
and_call_original
allow
(
File
).
to
receive
(
:realpath
).
with
(
symlinked_dir
).
and_return
(
Dir
.
tmpdir
)
allow
(
File
).
to
receive
(
:realpath
).
with
(
symlinked_path
).
and_return
(
tempfile
.
path
)
allow
(
File
).
to
receive
(
:exist?
).
and_call_original
allow
(
File
).
to
receive
(
:exist?
).
with
(
symlinked_dir
).
and_return
(
true
)
# override Dir.tmpdir because this dir is in the list of allowed paths
# and it would match FileUploader.root path (which in this test is linked
# to /tmp too)
allow
(
Dir
).
to
receive
(
:tmpdir
).
and_return
(
File
.
join
(
Dir
.
tmpdir
,
'tmpsubdir'
))
expect
(
app
).
to
receive
(
:call
)
do
|
env
|
expect
(
Rack
::
Request
.
new
(
env
).
params
[
'file'
]).
to
be_a
(
::
UploadedFile
)
end
middleware
.
call
(
env
)
end
end
def
post_env
(
rewritten_fields
,
params
,
secret
,
issuer
)
token
=
JWT
.
encode
({
'iss'
=>
issuer
,
'rewritten_fields'
=>
rewritten_fields
},
secret
,
'HS256'
)
Rack
::
MockRequest
.
env_for
(
...
...
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