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
b964a0ef
Commit
b964a0ef
authored
Dec 10, 2021
by
Dylan Griffith
Committed by
Adam Hegyi
Dec 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PreventCrossDatabaseModification query parser prepended comments
parent
6bd1a6f6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
2 deletions
+55
-2
lib/gitlab/database/query_analyzers/prevent_cross_database_modification.rb
...se/query_analyzers/prevent_cross_database_modification.rb
+38
-2
spec/lib/gitlab/database/query_analyzers/prevent_cross_database_modification_spec.rb
...ery_analyzers/prevent_cross_database_modification_spec.rb
+17
-0
No files found.
lib/gitlab/database/query_analyzers/prevent_cross_database_modification.rb
View file @
b964a0ef
...
...
@@ -45,11 +45,11 @@ module Gitlab
# We ignore BEGIN in tests as this is the outer transaction for
# DatabaseCleaner
if
s
ql
.
start_with?
(
'SAVEPOINT'
)
||
(
!
Rails
.
env
.
test?
&&
sql
.
start_with?
(
'BEGIN'
)
)
if
s
elf
.
transaction_begin?
(
parsed
)
context
[
:transaction_depth_by_db
][
database
]
+=
1
return
elsif
s
ql
.
start_with?
(
'RELEASE SAVEPOINT'
,
'ROLLBACK TO SAVEPOINT'
)
||
(
!
Rails
.
env
.
test?
&&
sql
.
start_with?
(
'ROLLBACK'
,
'COMMIT'
)
)
elsif
s
elf
.
transaction_end?
(
parsed
)
context
[
:transaction_depth_by_db
][
database
]
-=
1
if
context
[
:transaction_depth_by_db
][
database
]
<=
0
context
[
:modified_tables_by_db
][
database
].
clear
...
...
@@ -97,6 +97,42 @@ module Gitlab
end
# rubocop:enable Metrics/AbcSize
def
self
.
transaction_begin?
(
parsed
)
# We ignore BEGIN or START in tests
unless
Rails
.
env
.
test?
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_BEGIN
)
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_START
)
end
# SAVEPOINT
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_SAVEPOINT
)
false
end
def
self
.
transaction_end?
(
parsed
)
# We ignore ROLLBACK or COMMIT in tests
unless
Rails
.
env
.
test?
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_COMMIT
)
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_COMMIT_PREPARED
)
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_ROLLBACK
)
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_ROLLBACK_PREPARED
)
end
# RELEASE (SAVEPOINT) or ROLLBACK TO (SAVEPOINT)
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_RELEASE
)
return
true
if
transaction_stmt?
(
parsed
,
:TRANS_STMT_ROLLBACK_TO
)
false
end
# Known kinds: https://github.com/pganalyze/pg_query/blob/f6588703deb9d7a94b87b34b7c3bab240087fbc4/ext/pg_query/include/nodes/parsenodes.h#L3050
def
self
.
transaction_stmt?
(
parsed
,
kind
)
parsed
.
pg
.
tree
.
stmts
.
map
(
&
:stmt
).
any?
do
|
stmt
|
stmt
.
node
==
:transaction_stmt
&&
stmt
.
transaction_stmt
.
kind
==
kind
end
end
# We only raise in tests for now otherwise some features will be broken
# in development. For now we've mostly only added allowlist based on
# spec names. Until we have allowed all the violations inline we don't
...
...
spec/lib/gitlab/database/query_analyzers/prevent_cross_database_modification_spec.rb
View file @
b964a0ef
...
...
@@ -92,6 +92,23 @@ RSpec.describe Gitlab::Database::QueryAnalyzers::PreventCrossDatabaseModificatio
end
end
end
context
'when comments are added to the front of query strings'
do
around
do
|
example
|
prepend_comment_was
=
Marginalia
::
Comment
.
prepend_comment
Marginalia
::
Comment
.
prepend_comment
=
true
example
.
run
Marginalia
::
Comment
.
prepend_comment
=
prepend_comment_was
end
it
'raises error'
do
Project
.
transaction
do
expect
{
run_queries
}.
to
raise_error
/Cross-database data modification/
end
end
end
end
context
'when executing a SELECT FOR UPDATE query'
do
...
...
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