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
c982edfa
Commit
c982edfa
authored
Feb 05, 2019
by
Bob Van Landuyt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid race conditions when creating GpgSignature
This avoids race conditions when creating GpgSignature.
parent
02cc32c6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
70 additions
and
5 deletions
+70
-5
app/models/application_record.rb
app/models/application_record.rb
+6
-0
app/models/gpg_signature.rb
app/models/gpg_signature.rb
+6
-1
changelogs/unreleased/bvl-fix-race-condition-creating-signature.yml
.../unreleased/bvl-fix-race-condition-creating-signature.yml
+5
-0
lib/gitlab/gpg/commit.rb
lib/gitlab/gpg/commit.rb
+4
-3
spec/models/application_record_spec.rb
spec/models/application_record_spec.rb
+14
-1
spec/models/gpg_signature_spec.rb
spec/models/gpg_signature_spec.rb
+35
-0
No files found.
app/models/application_record.rb
View file @
c982edfa
...
@@ -7,6 +7,12 @@ class ApplicationRecord < ActiveRecord::Base
...
@@ -7,6 +7,12 @@ class ApplicationRecord < ActiveRecord::Base
where
(
id:
ids
)
where
(
id:
ids
)
end
end
def
self
.
safe_find_or_create_by!
(
*
args
)
safe_find_or_create_by
(
*
args
).
tap
do
|
record
|
record
.
validate!
unless
record
.
persisted?
end
end
def
self
.
safe_find_or_create_by
(
*
args
)
def
self
.
safe_find_or_create_by
(
*
args
)
transaction
(
requires_new:
true
)
do
transaction
(
requires_new:
true
)
do
find_or_create_by
(
*
args
)
find_or_create_by
(
*
args
)
...
...
app/models/gpg_signature.rb
View file @
c982edfa
# frozen_string_literal: true
# frozen_string_literal: true
class
GpgSignature
<
A
ctiveRecord
::
Base
class
GpgSignature
<
A
pplicationRecord
include
ShaAttribute
include
ShaAttribute
sha_attribute
:commit_sha
sha_attribute
:commit_sha
...
@@ -33,6 +33,11 @@ class GpgSignature < ActiveRecord::Base
...
@@ -33,6 +33,11 @@ class GpgSignature < ActiveRecord::Base
)
)
end
end
def
self
.
safe_create!
(
attributes
)
create_with
(
attributes
)
.
safe_find_or_create_by!
(
commit_sha:
attributes
[
:commit_sha
])
end
def
gpg_key
=
(
model
)
def
gpg_key
=
(
model
)
case
model
case
model
when
GpgKey
when
GpgKey
...
...
changelogs/unreleased/bvl-fix-race-condition-creating-signature.yml
0 → 100644
View file @
c982edfa
---
title
:
Avoid race conditions when creating GpgSignature
merge_request
:
24939
author
:
type
:
fixed
lib/gitlab/gpg/commit.rb
View file @
c982edfa
...
@@ -88,9 +88,10 @@ module Gitlab
...
@@ -88,9 +88,10 @@ module Gitlab
def
create_cached_signature!
def
create_cached_signature!
using_keychain
do
|
gpg_key
|
using_keychain
do
|
gpg_key
|
signature
=
GpgSignature
.
new
(
attributes
(
gpg_key
))
attributes
=
attributes
(
gpg_key
)
signature
.
save!
unless
Gitlab
::
Database
.
read_only?
break
GpgSignature
.
new
(
attributes
)
if
Gitlab
::
Database
.
read_only?
signature
GpgSignature
.
safe_create!
(
attributes
)
end
end
end
end
...
...
spec/models/application_record_spec.rb
View file @
c982edfa
...
@@ -11,7 +11,7 @@ describe ApplicationRecord do
...
@@ -11,7 +11,7 @@ describe ApplicationRecord do
end
end
end
end
describe
'
#
safe_find_or_create_by'
do
describe
'
.
safe_find_or_create_by'
do
it
'creates the user avoiding race conditions'
do
it
'creates the user avoiding race conditions'
do
expect
(
Suggestion
).
to
receive
(
:find_or_create_by
).
and_raise
(
ActiveRecord
::
RecordNotUnique
)
expect
(
Suggestion
).
to
receive
(
:find_or_create_by
).
and_raise
(
ActiveRecord
::
RecordNotUnique
)
allow
(
Suggestion
).
to
receive
(
:find_or_create_by
).
and_call_original
allow
(
Suggestion
).
to
receive
(
:find_or_create_by
).
and_call_original
...
@@ -20,4 +20,17 @@ describe ApplicationRecord do
...
@@ -20,4 +20,17 @@ describe ApplicationRecord do
.
to
change
{
Suggestion
.
count
}.
by
(
1
)
.
to
change
{
Suggestion
.
count
}.
by
(
1
)
end
end
end
end
describe
'.safe_find_or_create_by!'
do
it
'creates a record using safe_find_or_create_by'
do
expect
(
Suggestion
).
to
receive
(
:find_or_create_by
).
and_call_original
expect
(
Suggestion
.
safe_find_or_create_by!
(
build
(
:suggestion
).
attributes
))
.
to
be_a
(
Suggestion
)
end
it
'raises a validation error if the record was not persisted'
do
expect
{
Suggestion
.
find_or_create_by!
(
note:
nil
)
}.
to
raise_error
(
ActiveRecord
::
RecordInvalid
)
end
end
end
end
spec/models/gpg_signature_spec.rb
View file @
c982edfa
...
@@ -23,6 +23,41 @@ RSpec.describe GpgSignature do
...
@@ -23,6 +23,41 @@ RSpec.describe GpgSignature do
it
{
is_expected
.
to
validate_presence_of
(
:gpg_key_primary_keyid
)
}
it
{
is_expected
.
to
validate_presence_of
(
:gpg_key_primary_keyid
)
}
end
end
describe
'.safe_create!'
do
let
(
:attributes
)
do
{
commit_sha:
commit_sha
,
project:
project
,
gpg_key_primary_keyid:
gpg_key
.
keyid
}
end
it
'finds a signature by commit sha if it existed'
do
gpg_signature
expect
(
described_class
.
safe_create!
(
commit_sha:
commit_sha
)).
to
eq
(
gpg_signature
)
end
it
'creates a new signature if it was not found'
do
expect
{
described_class
.
safe_create!
(
attributes
)
}.
to
change
{
described_class
.
count
}.
by
(
1
)
end
it
'assigns the correct attributes when creating'
do
signature
=
described_class
.
safe_create!
(
attributes
)
expect
(
signature
.
project
).
to
eq
(
project
)
expect
(
signature
.
commit_sha
).
to
eq
(
commit_sha
)
expect
(
signature
.
gpg_key_primary_keyid
).
to
eq
(
gpg_key
.
keyid
)
end
it
'does not raise an error in case of a race condition'
do
expect
(
described_class
).
to
receive
(
:find_or_create_by
).
and_raise
(
ActiveRecord
::
RecordNotUnique
)
allow
(
described_class
).
to
receive
(
:find_or_create_by
).
and_call_original
described_class
.
safe_create!
(
attributes
)
end
end
describe
'#commit'
do
describe
'#commit'
do
it
'fetches the commit through the project'
do
it
'fetches the commit through the project'
do
expect_any_instance_of
(
Project
).
to
receive
(
:commit
).
with
(
commit_sha
).
and_return
(
commit
)
expect_any_instance_of
(
Project
).
to
receive
(
:commit
).
with
(
commit_sha
).
and_return
(
commit
)
...
...
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