-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Locking updates in database backend #3774
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ func (b *databaseBackend) pathCredsCreateRead() framework.OperationFunc { | |
|
||
// Grab the read lock | ||
b.RLock() | ||
var unlockFunc func() = b.RUnlock | ||
unlockFunc := b.RUnlock | ||
|
||
// Get the Database object | ||
db, ok := b.getDBObj(role.DBName) | ||
|
@@ -66,11 +66,15 @@ func (b *databaseBackend) pathCredsCreateRead() framework.OperationFunc { | |
b.Lock() | ||
unlockFunc = b.Unlock | ||
|
||
// Create a new DB object | ||
db, err = b.createDBObj(ctx, req.Storage, role.DBName) | ||
if err != nil { | ||
unlockFunc() | ||
return nil, fmt.Errorf("cound not retrieve db with name: %s, got error: %s", role.DBName, err) | ||
// Check again | ||
db, ok = b.getDBObj(role.DBName) | ||
if !ok { | ||
// Create a new DB object | ||
db, err = b.createDBObj(ctx, req.Storage, role.DBName) | ||
if err != nil { | ||
unlockFunc() | ||
return nil, fmt.Errorf("cound not retrieve db with name: %s, got error: %s", role.DBName, err) | ||
} | ||
} | ||
} | ||
|
||
|
@@ -83,9 +87,8 @@ func (b *databaseBackend) pathCredsCreateRead() framework.OperationFunc { | |
|
||
// Create the user | ||
username, password, err := db.CreateUser(ctx, role.Statements, usernameConfig, expiration) | ||
// Unlock | ||
unlockFunc() | ||
if err != nil { | ||
unlockFunc() | ||
b.closeIfShutdown(role.DBName, err) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rather than giving up the lock and requiring it in the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I originally went down that route but we don't always have the write lock when this method gets called. |
||
return nil, err | ||
} | ||
|
@@ -98,6 +101,8 @@ func (b *databaseBackend) pathCredsCreateRead() framework.OperationFunc { | |
"role": name, | ||
}) | ||
resp.Secret.TTL = role.DefaultTTL | ||
|
||
unlockFunc() | ||
return resp, nil | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW, the
createDBObj
function does this check at the beginning of the function, so doesn't necessarily need to happen here.