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
e81a7b71
Commit
e81a7b71
authored
May 26, 2020
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/security/gitlab@12-10-stable-ee
parent
f7fd30fc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
117 additions
and
3 deletions
+117
-3
app/models/user.rb
app/models/user.rb
+6
-3
changelogs/unreleased/security-fix-email-confirmation-bug.yml
...gelogs/unreleased/security-fix-email-confirmation-bug.yml
+5
-0
spec/factories/users.rb
spec/factories/users.rb
+4
-0
spec/models/user_spec.rb
spec/models/user_spec.rb
+102
-0
No files found.
app/models/user.rb
View file @
e81a7b71
...
...
@@ -228,9 +228,10 @@ class User < ApplicationRecord
if
previous_changes
.
key?
(
'email'
)
# Grab previous_email here since previous_changes changes after
# #update_emails_with_primary_email and #update_notification_email are called
previous_confirmed_at
=
previous_changes
.
key?
(
'confirmed_at'
)
?
previous_changes
[
'confirmed_at'
][
0
]
:
confirmed_at
previous_email
=
previous_changes
[
:email
][
0
]
update_emails_with_primary_email
(
previous_email
)
update_emails_with_primary_email
(
previous_
confirmed_at
,
previous_
email
)
update_invalid_gpg_signatures
if
previous_email
==
notification_email
...
...
@@ -830,13 +831,15 @@ class User < ApplicationRecord
# By using an `after_commit` instead of `after_update`, we avoid the recursive callback
# scenario, though it then requires us to use the `previous_changes` hash
# rubocop: disable CodeReuse/ServiceClass
def
update_emails_with_primary_email
(
previous_email
)
def
update_emails_with_primary_email
(
previous_
confirmed_at
,
previous_
email
)
primary_email_record
=
emails
.
find_by
(
email:
email
)
Emails
::
DestroyService
.
new
(
self
,
user:
self
).
execute
(
primary_email_record
)
if
primary_email_record
# the original primary email was confirmed, and we want that to carry over. We don't
# have access to the original confirmation values at this point, so just set confirmed_at
Emails
::
CreateService
.
new
(
self
,
user:
self
,
email:
previous_email
).
execute
(
confirmed_at:
confirmed_at
)
Emails
::
CreateService
.
new
(
self
,
user:
self
,
email:
previous_email
).
execute
(
confirmed_at:
previous_confirmed_at
)
update_columns
(
confirmed_at:
primary_email_record
.
confirmed_at
)
if
primary_email_record
&
.
confirmed_at
end
# rubocop: enable CodeReuse/ServiceClass
...
...
changelogs/unreleased/security-fix-email-confirmation-bug.yml
0 → 100644
View file @
e81a7b71
---
title
:
Fix confirming unverified emails with soft email confirmation flow enabled
merge_request
:
author
:
type
:
security
spec/factories/users.rb
View file @
e81a7b71
...
...
@@ -44,6 +44,10 @@ FactoryBot.define do
after
(
:build
)
{
|
user
,
_
|
user
.
block!
}
end
trait
:unconfirmed
do
confirmed_at
{
nil
}
end
trait
:with_avatar
do
avatar
{
fixture_file_upload
(
'spec/fixtures/dk.png'
)
}
end
...
...
spec/models/user_spec.rb
View file @
e81a7b71
...
...
@@ -914,6 +914,108 @@ describe User, :do_not_mock_admin_mode do
expect
(
@user
.
emails
.
count
).
to
eq
1
expect
(
@user
.
emails
.
first
.
confirmed_at
).
not_to
eq
nil
end
context
'when the first email was unconfirmed and the second email gets confirmed'
do
let_it_be
(
:user
)
{
create
(
:user
,
:unconfirmed
,
email:
'should-be-unconfirmed@test.com'
)
}
before
do
user
.
update!
(
email:
'should-be-confirmed@test.com'
)
user
.
confirm
end
it
'updates user.email'
do
expect
(
user
.
email
).
to
eq
(
'should-be-confirmed@test.com'
)
end
it
'confirms user.email'
do
expect
(
user
).
to
be_confirmed
end
it
'keeps the unconfirmed email unconfirmed'
do
email
=
user
.
emails
.
first
expect
(
email
.
email
).
to
eq
(
'should-be-unconfirmed@test.com'
)
expect
(
email
).
not_to
be_confirmed
end
it
'has only one email association'
do
expect
(
user
.
emails
.
size
).
to
be
(
1
)
end
end
end
context
'when an existing email record is set as primary'
do
let
(
:user
)
{
create
(
:user
,
email:
'confirmed@test.com'
)
}
context
'when it is unconfirmed'
do
let
(
:originally_unconfirmed_email
)
{
'should-stay-unconfirmed@test.com'
}
before
do
user
.
emails
<<
create
(
:email
,
email:
originally_unconfirmed_email
,
confirmed_at:
nil
)
user
.
update!
(
email:
originally_unconfirmed_email
)
end
it
'keeps the user confirmed'
do
expect
(
user
).
to
be_confirmed
end
it
'keeps the original email'
do
expect
(
user
.
email
).
to
eq
(
'confirmed@test.com'
)
end
context
'when the email gets confirmed'
do
before
do
user
.
confirm
end
it
'keeps the user confirmed'
do
expect
(
user
).
to
be_confirmed
end
it
'updates the email'
do
expect
(
user
.
email
).
to
eq
(
originally_unconfirmed_email
)
end
end
end
context
'when it is confirmed'
do
let!
(
:old_confirmed_email
)
{
user
.
email
}
let
(
:confirmed_email
)
{
'already-confirmed@test.com'
}
before
do
user
.
emails
<<
create
(
:email
,
:confirmed
,
email:
confirmed_email
)
user
.
update!
(
email:
confirmed_email
)
end
it
'keeps the user confirmed'
do
expect
(
user
).
to
be_confirmed
end
it
'updates the email'
do
expect
(
user
.
email
).
to
eq
(
confirmed_email
)
end
it
'moves the old email'
do
email
=
user
.
reload
.
emails
.
first
expect
(
email
.
email
).
to
eq
(
old_confirmed_email
)
expect
(
email
).
to
be_confirmed
end
end
end
context
'when unconfirmed user deletes a confirmed additional email'
do
let
(
:user
)
{
create
(
:user
,
:unconfirmed
)
}
before
do
user
.
emails
<<
create
(
:email
,
:confirmed
)
end
it
'does not affect the confirmed status'
do
expect
{
user
.
emails
.
confirmed
.
destroy_all
}.
not_to
change
{
user
.
confirmed?
}
# rubocop: disable Cop/DestroyAll
end
end
describe
'#update_notification_email'
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