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
761d890a
Commit
761d890a
authored
May 03, 2018
by
Francisco Javier López
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Blacklisting attributes in the project import process
parent
7c3838ea
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
93 additions
and
18 deletions
+93
-18
changelogs/unreleased/security-fj-import-export-assignment.yml
...elogs/unreleased/security-fj-import-export-assignment.yml
+5
-0
lib/gitlab/import_export/attribute_cleaner.rb
lib/gitlab/import_export/attribute_cleaner.rb
+9
-2
lib/gitlab/import_export/attributes_finder.rb
lib/gitlab/import_export/attributes_finder.rb
+4
-0
lib/gitlab/import_export/import_export.yml
lib/gitlab/import_export/import_export.yml
+0
-2
lib/gitlab/import_export/project_tree_restorer.rb
lib/gitlab/import_export/project_tree_restorer.rb
+15
-8
lib/gitlab/import_export/reader.rb
lib/gitlab/import_export/reader.rb
+1
-1
lib/gitlab/import_export/relation_factory.rb
lib/gitlab/import_export/relation_factory.rb
+9
-1
spec/lib/gitlab/import_export/attribute_cleaner_spec.rb
spec/lib/gitlab/import_export/attribute_cleaner_spec.rb
+26
-3
spec/lib/gitlab/import_export/project.json
spec/lib/gitlab/import_export/project.json
+2
-0
spec/lib/gitlab/import_export/project.light.json
spec/lib/gitlab/import_export/project.light.json
+2
-0
spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
+9
-0
spec/lib/gitlab/import_export/relation_factory_spec.rb
spec/lib/gitlab/import_export/relation_factory_spec.rb
+11
-1
No files found.
changelogs/unreleased/security-fj-import-export-assignment.yml
0 → 100644
View file @
761d890a
---
title
:
Fixed bug that allowed importing arbitrary project attributes
merge_request
:
author
:
type
:
security
lib/gitlab/import_export/attribute_cleaner.rb
View file @
761d890a
...
@@ -7,14 +7,15 @@ module Gitlab
...
@@ -7,14 +7,15 @@ module Gitlab
new
(
*
args
).
clean
new
(
*
args
).
clean
end
end
def
initialize
(
relation_hash
:,
relation_class
:)
def
initialize
(
relation_hash
:,
relation_class
:
,
excluded_keys:
[]
)
@relation_hash
=
relation_hash
@relation_hash
=
relation_hash
@relation_class
=
relation_class
@relation_class
=
relation_class
@excluded_keys
=
excluded_keys
end
end
def
clean
def
clean
@relation_hash
.
reject
do
|
key
,
_value
|
@relation_hash
.
reject
do
|
key
,
_value
|
prohibited_key?
(
key
)
||
!
@relation_class
.
attribute_method?
(
key
)
prohibited_key?
(
key
)
||
!
@relation_class
.
attribute_method?
(
key
)
||
excluded_key?
(
key
)
end
.
except
(
'id'
)
end
.
except
(
'id'
)
end
end
...
@@ -23,6 +24,12 @@ module Gitlab
...
@@ -23,6 +24,12 @@ module Gitlab
def
prohibited_key?
(
key
)
def
prohibited_key?
(
key
)
key
.
end_with?
(
'_id'
)
&&
!
ALLOWED_REFERENCES
.
include?
(
key
)
key
.
end_with?
(
'_id'
)
&&
!
ALLOWED_REFERENCES
.
include?
(
key
)
end
end
def
excluded_key?
(
key
)
return
false
if
@excluded_keys
.
empty?
@excluded_keys
.
include?
(
key
)
end
end
end
end
end
end
end
lib/gitlab/import_export/attributes_finder.rb
View file @
761d890a
...
@@ -32,6 +32,10 @@ module Gitlab
...
@@ -32,6 +32,10 @@ module Gitlab
@methods
[
key
].
nil?
?
{}
:
{
methods:
@methods
[
key
]
}
@methods
[
key
].
nil?
?
{}
:
{
methods:
@methods
[
key
]
}
end
end
def
find_excluded_keys
(
klass_name
)
@excluded_attributes
[
klass_name
.
to_sym
]
&
.
map
(
&
:to_s
)
||
[]
end
private
private
def
find_attributes_only
(
value
)
def
find_attributes_only
(
value
)
...
...
lib/gitlab/import_export/import_export.yml
View file @
761d890a
...
@@ -98,8 +98,6 @@ excluded_attributes:
...
@@ -98,8 +98,6 @@ excluded_attributes:
-
:import_jid
-
:import_jid
-
:created_at
-
:created_at
-
:updated_at
-
:updated_at
-
:import_jid
-
:import_jid
-
:id
-
:id
-
:star_count
-
:star_count
-
:last_activity_at
-
:last_activity_at
...
...
lib/gitlab/import_export/project_tree_restorer.rb
View file @
761d890a
...
@@ -88,16 +88,18 @@ module Gitlab
...
@@ -88,16 +88,18 @@ module Gitlab
end
end
def
project_params
def
project_params
@project_params
||=
json_params
.
merge
(
override_params
)
@project_params
||=
begin
attrs
=
json_params
.
merge
(
override_params
)
# Cleaning all imported and overridden params
Gitlab
::
ImportExport
::
AttributeCleaner
.
clean
(
relation_hash:
attrs
,
relation_class:
Project
,
excluded_keys:
excluded_keys_for_relation
(
:project
))
end
end
end
def
override_params
def
override_params
return
{}
unless
params
=
@project
.
import_data
&
.
data
&
.
fetch
(
'override_params'
,
nil
)
@override_params
||=
@project
.
import_data
&
.
data
&
.
fetch
(
'override_params'
,
nil
)
||
{}
@override_params
||=
params
.
select
do
|
key
,
_value
|
Project
.
column_names
.
include?
(
key
.
to_s
)
&&
!
reader
.
project_tree
[
:except
].
include?
(
key
.
to_sym
)
end
end
end
def
json_params
def
json_params
...
@@ -171,7 +173,8 @@ module Gitlab
...
@@ -171,7 +173,8 @@ module Gitlab
relation_hash:
parsed_relation_hash
(
relation_hash
,
relation
.
to_sym
),
relation_hash:
parsed_relation_hash
(
relation_hash
,
relation
.
to_sym
),
members_mapper:
members_mapper
,
members_mapper:
members_mapper
,
user:
@user
,
user:
@user
,
project:
@restored_project
)
project:
@restored_project
,
excluded_keys:
excluded_keys_for_relation
(
relation
))
end
.
compact
end
.
compact
relation_hash_list
.
is_a?
(
Array
)
?
relation_array
:
relation_array
.
first
relation_hash_list
.
is_a?
(
Array
)
?
relation_array
:
relation_array
.
first
...
@@ -192,6 +195,10 @@ module Gitlab
...
@@ -192,6 +195,10 @@ module Gitlab
def
reader
def
reader
@reader
||=
Gitlab
::
ImportExport
::
Reader
.
new
(
shared:
@shared
)
@reader
||=
Gitlab
::
ImportExport
::
Reader
.
new
(
shared:
@shared
)
end
end
def
excluded_keys_for_relation
(
relation
)
@reader
.
attributes_finder
.
find_excluded_keys
(
relation
)
end
end
end
end
end
end
end
lib/gitlab/import_export/reader.rb
View file @
761d890a
module
Gitlab
module
Gitlab
module
ImportExport
module
ImportExport
class
Reader
class
Reader
attr_reader
:tree
attr_reader
:tree
,
:attributes_finder
def
initialize
(
shared
:)
def
initialize
(
shared
:)
@shared
=
shared
@shared
=
shared
...
...
lib/gitlab/import_export/relation_factory.rb
View file @
761d890a
...
@@ -36,13 +36,21 @@ module Gitlab
...
@@ -36,13 +36,21 @@ module Gitlab
new
(
*
args
).
create
new
(
*
args
).
create
end
end
def
initialize
(
relation_sym
:,
relation_hash
:,
members_mapper
:,
user
:,
project
:)
def
initialize
(
relation_sym
:,
relation_hash
:,
members_mapper
:,
user
:,
project
:
,
excluded_keys:
[]
)
@relation_name
=
OVERRIDES
[
relation_sym
]
||
relation_sym
@relation_name
=
OVERRIDES
[
relation_sym
]
||
relation_sym
@relation_hash
=
relation_hash
.
except
(
'noteable_id'
)
@relation_hash
=
relation_hash
.
except
(
'noteable_id'
)
@members_mapper
=
members_mapper
@members_mapper
=
members_mapper
@user
=
user
@user
=
user
@project
=
project
@project
=
project
@imported_object_retries
=
0
@imported_object_retries
=
0
# Remove excluded keys from relation_hash
# We don't do this in the parsed_relation_hash because of the 'transformed attributes'
# For example, MergeRequestDiffFiles exports its diff attribute as utf8_diff. Then,
# in the create method that attribute is renamed to diff. And because diff is an excluded key,
# if we clean the excluded keys in the parsed_relation_hash, it will be removed
# from the object attributes and the export will fail.
@relation_hash
.
except!
(
*
excluded_keys
)
end
end
# Creates an object from an actual model with name "relation_sym" with params from
# Creates an object from an actual model with name "relation_sym" with params from
...
...
spec/lib/gitlab/import_export/attribute_cleaner_spec.rb
View file @
761d890a
...
@@ -15,7 +15,10 @@ describe Gitlab::ImportExport::AttributeCleaner do
...
@@ -15,7 +15,10 @@ describe Gitlab::ImportExport::AttributeCleaner do
'project_id'
=>
99
,
'project_id'
=>
99
,
'user_id'
=>
99
,
'user_id'
=>
99
,
'random_id_in_the_middle'
=>
99
,
'random_id_in_the_middle'
=>
99
,
'notid'
=>
99
'notid'
=>
99
,
'import_source'
=>
'whatever'
,
'import_type'
=>
'whatever'
,
'non_existent_attr'
=>
'whatever'
}
}
end
end
...
@@ -28,10 +31,30 @@ describe Gitlab::ImportExport::AttributeCleaner do
...
@@ -28,10 +31,30 @@ describe Gitlab::ImportExport::AttributeCleaner do
}
}
end
end
let
(
:excluded_keys
)
{
%w[import_source import_type]
}
subject
{
described_class
.
clean
(
relation_hash:
unsafe_hash
,
relation_class:
relation_class
,
excluded_keys:
excluded_keys
)
}
before
do
allow
(
relation_class
).
to
receive
(
:attribute_method?
).
and_return
(
true
)
allow
(
relation_class
).
to
receive
(
:attribute_method?
).
with
(
'non_existent_attr'
).
and_return
(
false
)
end
it
'removes unwanted attributes from the hash'
do
it
'removes unwanted attributes from the hash'
do
# allow(relation_class).to receive(:attribute_method?).and_return(true)
expect
(
subject
).
to
eq
(
post_safe_hash
)
end
it
'removes attributes not present in relation_class'
do
expect
(
subject
.
keys
).
not_to
include
'non_existent_attr'
end
it
'removes excluded keys from the hash'
do
expect
(
subject
.
keys
).
not_to
include
excluded_keys
end
it
'does not remove excluded key if not listed'
do
parsed_hash
=
described_class
.
clean
(
relation_hash:
unsafe_hash
,
relation_class:
relation_class
)
parsed_hash
=
described_class
.
clean
(
relation_hash:
unsafe_hash
,
relation_class:
relation_class
)
expect
(
parsed_hash
).
to
eq
(
post_safe_hash
)
expect
(
parsed_hash
.
keys
).
to
eq
post_safe_hash
.
keys
+
excluded_keys
end
end
end
end
spec/lib/gitlab/import_export/project.json
View file @
761d890a
{
{
"description"
:
"Nisi et repellendus ut enim quo accusamus vel magnam."
,
"description"
:
"Nisi et repellendus ut enim quo accusamus vel magnam."
,
"import_type"
:
"gitlab_project"
,
"creator_id"
:
123
,
"visibility_level"
:
10
,
"visibility_level"
:
10
,
"archived"
:
false
,
"archived"
:
false
,
"labels"
:
[
"labels"
:
[
...
...
spec/lib/gitlab/import_export/project.light.json
View file @
761d890a
{
{
"description"
:
"Nisi et repellendus ut enim quo accusamus vel magnam."
,
"description"
:
"Nisi et repellendus ut enim quo accusamus vel magnam."
,
"import_type"
:
"gitlab_project"
,
"creator_id"
:
123
,
"visibility_level"
:
10
,
"visibility_level"
:
10
,
"archived"
:
false
,
"archived"
:
false
,
"milestones"
:
[
"milestones"
:
[
...
...
spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
View file @
761d890a
...
@@ -23,6 +23,10 @@ describe Gitlab::ImportExport::ProjectTreeRestorer do
...
@@ -23,6 +23,10 @@ describe Gitlab::ImportExport::ProjectTreeRestorer do
allow_any_instance_of
(
Gitlab
::
Git
::
Repository
).
to
receive
(
:create_branch
)
allow_any_instance_of
(
Gitlab
::
Git
::
Repository
).
to
receive
(
:create_branch
)
project_tree_restorer
=
described_class
.
new
(
user:
@user
,
shared:
@shared
,
project:
@project
)
project_tree_restorer
=
described_class
.
new
(
user:
@user
,
shared:
@shared
,
project:
@project
)
expect
(
Gitlab
::
ImportExport
::
RelationFactory
).
to
receive
(
:create
).
with
(
hash_including
(
excluded_keys:
[
'whatever'
])).
and_call_original
.
at_least
(
:once
)
allow
(
project_tree_restorer
).
to
receive
(
:excluded_keys_for_relation
).
and_return
([
'whatever'
])
@restored_project_json
=
project_tree_restorer
.
restore
@restored_project_json
=
project_tree_restorer
.
restore
end
end
end
end
...
@@ -248,6 +252,11 @@ describe Gitlab::ImportExport::ProjectTreeRestorer do
...
@@ -248,6 +252,11 @@ describe Gitlab::ImportExport::ProjectTreeRestorer do
expect
(
labels
.
where
(
type:
"ProjectLabel"
).
count
).
to
eq
(
results
.
fetch
(
:first_issue_labels
,
0
))
expect
(
labels
.
where
(
type:
"ProjectLabel"
).
count
).
to
eq
(
results
.
fetch
(
:first_issue_labels
,
0
))
expect
(
labels
.
where
(
type:
"ProjectLabel"
).
where
.
not
(
group_id:
nil
).
count
).
to
eq
(
0
)
expect
(
labels
.
where
(
type:
"ProjectLabel"
).
where
.
not
(
group_id:
nil
).
count
).
to
eq
(
0
)
end
end
it
'does not set params that are excluded from import_export settings'
do
expect
(
project
.
import_type
).
to
be_nil
expect
(
project
.
creator_id
).
not_to
eq
123
end
end
end
shared_examples
'restores group correctly'
do
|**
results
|
shared_examples
'restores group correctly'
do
|**
results
|
...
...
spec/lib/gitlab/import_export/relation_factory_spec.rb
View file @
761d890a
...
@@ -4,12 +4,14 @@ describe Gitlab::ImportExport::RelationFactory do
...
@@ -4,12 +4,14 @@ describe Gitlab::ImportExport::RelationFactory do
let
(
:project
)
{
create
(
:project
)
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:members_mapper
)
{
double
(
'members_mapper'
).
as_null_object
}
let
(
:members_mapper
)
{
double
(
'members_mapper'
).
as_null_object
}
let
(
:user
)
{
create
(
:admin
)
}
let
(
:user
)
{
create
(
:admin
)
}
let
(
:excluded_keys
)
{
[]
}
let
(
:created_object
)
do
let
(
:created_object
)
do
described_class
.
create
(
relation_sym:
relation_sym
,
described_class
.
create
(
relation_sym:
relation_sym
,
relation_hash:
relation_hash
,
relation_hash:
relation_hash
,
members_mapper:
members_mapper
,
members_mapper:
members_mapper
,
user:
user
,
user:
user
,
project:
project
)
project:
project
,
excluded_keys:
excluded_keys
)
end
end
context
'hook object'
do
context
'hook object'
do
...
@@ -67,6 +69,14 @@ describe Gitlab::ImportExport::RelationFactory do
...
@@ -67,6 +69,14 @@ describe Gitlab::ImportExport::RelationFactory do
expect
(
created_object
.
service_id
).
not_to
eq
(
service_id
)
expect
(
created_object
.
service_id
).
not_to
eq
(
service_id
)
end
end
end
end
context
'excluded attributes'
do
let
(
:excluded_keys
)
{
%w[url]
}
it
'are removed from the imported object'
do
expect
(
created_object
.
url
).
to
be_nil
end
end
end
end
# Mocks an ActiveRecordish object with the dodgy columns
# Mocks an ActiveRecordish object with the dodgy columns
...
...
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