-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Attempt to fix the webauthn migration again - part 3 (#18770) #18771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
zeripath
merged 16 commits into
go-gitea:release/v1.16
from
zeripath:backport-varchar-410-is-not-enough
Feb 16, 2022
Merged
Changes from 8 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
fdc245f
Attempt to fix the webauthn migration again - part 3
zeripath 4c37c8d
208 is totally broken
zeripath 995aef7
Update expected_webauthn_credential.yml
zeripath b83fe32
Update models/migrations/v209.go
zeripath 076866c
Update webauthn_credential.yml
zeripath 743e35d
Restructure - back to 410 but always reinsert
zeripath 0461584
renames
zeripath e50dd62
Gah!
zeripath 3b1e85c
Update models/migrations/v210.go
zeripath 6f76ac6
Merge branch 'release/v1.16' into backport-varchar-410-is-not-enough
zeripath 84d9f60
fix test
zeripath 8cd27a3
no-op v207
zeripath 44f39a9
Merge remote-tracking branch 'origin/release/v1.16' into backport-var…
zeripath a1c5cbf
Set IDENTITY_INSERT for MSSQL
zeripath 8b802b8
try again
zeripath 3442eed
use session
zeripath File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package migrations | ||
|
||
import ( | ||
"crypto/elliptic" | ||
"encoding/base32" | ||
"fmt" | ||
"strings" | ||
|
||
"code.gitea.io/gitea/modules/timeutil" | ||
"github.com/tstranex/u2f" | ||
|
||
"xorm.io/xorm" | ||
"xorm.io/xorm/schemas" | ||
) | ||
|
||
// v208 migration was completely broken | ||
func remigrateU2FCredentials(x *xorm.Engine) error { | ||
// Create webauthnCredential table | ||
type webauthnCredential struct { | ||
ID int64 `xorm:"pk autoincr"` | ||
Name string | ||
LowerName string `xorm:"unique(s)"` | ||
UserID int64 `xorm:"INDEX unique(s)"` | ||
CredentialID string `xorm:"INDEX VARCHAR(410)"` // CredentalID in U2F is at most 255bytes / 5 * 8 = 408 - add a few extra characters for safety | ||
PublicKey []byte | ||
AttestationType string | ||
AAGUID []byte | ||
SignCount uint32 `xorm:"BIGINT"` | ||
CloneWarning bool | ||
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"` | ||
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"` | ||
} | ||
if err := x.Sync2(&webauthnCredential{}); err != nil { | ||
return err | ||
} | ||
|
||
switch x.Dialect().URI().DBType { | ||
case schemas.MYSQL: | ||
_, err := x.Exec("ALTER TABLE webauthn_credential MODIFY COLUMN credential_id VARCHAR(410)") | ||
if err != nil { | ||
return err | ||
} | ||
case schemas.ORACLE: | ||
_, err := x.Exec("ALTER TABLE webauthn_credential MODIFY credential_id VARCHAR(410)") | ||
if err != nil { | ||
return err | ||
} | ||
case schemas.MSSQL: | ||
// This column has an index on it. I could write all of the code to attempt to change the index OR | ||
// I could just use recreate table. | ||
sess := x.NewSession() | ||
if err := sess.Begin(); err != nil { | ||
_ = sess.Close() | ||
return err | ||
} | ||
|
||
if err := recreateTable(sess, new(webauthnCredential)); err != nil { | ||
_ = sess.Close() | ||
return err | ||
} | ||
if err := sess.Commit(); err != nil { | ||
_ = sess.Close() | ||
return err | ||
} | ||
if err := sess.Close(); err != nil { | ||
return err | ||
} | ||
case schemas.POSTGRES: | ||
_, err := x.Exec("ALTER TABLE webauthn_credential ALTER COLUMN credential_id TYPE VARCHAR(410)") | ||
if err != nil { | ||
return err | ||
} | ||
default: | ||
// SQLite doesn't support ALTER COLUMN, and it already makes String _TEXT_ by default so no migration needed | ||
// nor is there any need to re-migrate | ||
} | ||
|
||
exist, err := x.IsTableExist("u2f_registration") | ||
if err != nil { | ||
return err | ||
} | ||
if !exist { | ||
return nil | ||
} | ||
|
||
// Now migrate the old u2f registrations to the new format | ||
type u2fRegistration struct { | ||
ID int64 `xorm:"pk autoincr"` | ||
Name string | ||
UserID int64 `xorm:"INDEX"` | ||
Raw []byte | ||
Counter uint32 `xorm:"BIGINT"` | ||
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"` | ||
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"` | ||
} | ||
|
||
var start int | ||
regs := make([]*u2fRegistration, 0, 50) | ||
for { | ||
err := x.OrderBy("id").Limit(50, start).Find(®s) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
for _, reg := range regs { | ||
parsed := new(u2f.Registration) | ||
err = parsed.UnmarshalBinary(reg.Raw) | ||
if err != nil { | ||
continue | ||
} | ||
remigrated := &webauthnCredential{ | ||
ID: reg.ID, | ||
Name: reg.Name, | ||
LowerName: strings.ToLower(reg.Name), | ||
UserID: reg.UserID, | ||
CredentialID: base32.HexEncoding.EncodeToString(parsed.KeyHandle), | ||
PublicKey: elliptic.Marshal(elliptic.P256(), parsed.PubKey.X, parsed.PubKey.Y), | ||
AttestationType: "fido-u2f", | ||
AAGUID: []byte{}, | ||
SignCount: reg.Counter, | ||
UpdatedUnix: reg.UpdatedUnix, | ||
CreatedUnix: reg.CreatedUnix, | ||
} | ||
|
||
has, err := x.ID(reg.ID).Where("id = ?", reg.ID).Get(new(webauthnCredential)) | ||
if err != nil { | ||
return fmt.Errorf("unable to get webauthn_credential[%d]. Error: %v", reg.ID, err) | ||
} | ||
if !has { | ||
_, err = x.ID(remigrated.ID).AllCols().Insert(remigrated) | ||
zeripath marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if err != nil { | ||
return err | ||
} | ||
continue | ||
} | ||
|
||
_, err = x.ID(remigrated.ID).AllCols().Update(remigrated) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
|
||
if len(regs) < 50 { | ||
break | ||
} | ||
start += 50 | ||
regs = regs[:0] | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.