Skip to content
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

Avoid updating the same oc_authtoken row twice #45026

Merged
merged 2 commits into from
May 16, 2024
Merged

Conversation

juliushaertl
Copy link
Member

@juliushaertl juliushaertl commented Apr 25, 2024

  • docs: Update token_auth_activity_update default value to match implementation
  • fix: Always set last activity if we update the row of an authtoken anyways

Summary

Checking out query frequency on an instance I noticed that the following two queries roughly are happening quite frequently and checking the code I noticed that it might happen that we issue two update queries for the same row in a request.

UPDATE `oc_authtoken` SET `last_check` = ? WHERE `id` = ?
UPDATE `oc_authtoken` SET `last_activity` = ? WHERE ( `id` = ? ) AND ( `last_activity` < ? )

If we update the last_checked value of a row anyways I think we could directly also set the last activity value to avoid double updates of that row.

This is triggered from

if (!$this->checkTokenCredentials($dbToken, $token)) {
$this->logger->warning('Session token credentials are invalid', [
'app' => 'core',
'user' => $user,
]);
return false;
}
// Update token scope
$this->lockdownManager->setToken($dbToken);
$this->tokenProvider->updateTokenActivity($dbToken);
where checkTokenCredentials might update the last_check value and updateTokenActivity could then perform a second update just for the activity.

I could verify this by manually update oc_authtoken set last_check = 0, last_activity = 0; to simulate older timestampts and stepping through the next request with a debugger

@juliushaertl juliushaertl changed the title fix/token update Avoid updating the same oc_authtoken row twice Apr 25, 2024
@juliushaertl juliushaertl added this to the Nextcloud 30 milestone Apr 25, 2024
Copy link
Member

@joshtrichards joshtrichards left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you foresee any downsides here since we'd be bypassing the updateActivity() tolerance optimizations?

/**
* Update the last activity timestamp
*
* In highly concurrent setups it can happen that two parallel processes
* trigger the update at (nearly) the same time. In that special case it's
* not necessary to hit the database with two actual updates. Therefore the
* target last activity is included in the WHERE clause with a few seconds
* of tolerance.
*
* Example:
* - process 1 (P1) reads the token at timestamp 1500
* - process 1 (P2) reads the token at timestamp 1501
* - activity update interval is 100
*
* This means
*
* - P1 will see a last_activity smaller than the current time and update
* the token row
* - If P2 reads after P1 had written, it will see 1600 as last activity
* and the comparison on last_activity won't be truthy. This means no rows
* need to be updated a second time
* - If P2 reads before P1 had written, it will see 1501 as last activity,
* but the comparison on last_activity will still not be truthy and the
* token row is not updated a second time
*
* @param IToken $token
* @param int $now
*/
public function updateActivity(IToken $token, int $now): void {

@juliushaertl
Copy link
Member Author

I don't see any additional risk there. The row is updated anways when this is being called and I also didn't see any hints on unnecessary further updates on query statistics of the high traffic instance where this finding originated from.

@juliushaertl
Copy link
Member Author

Waiting with the merge since @ChristophWurst wanted to have another close look

@ChristophWurst ChristophWurst merged commit fe7217d into master May 16, 2024
157 checks passed
@ChristophWurst ChristophWurst deleted the fix/token-update branch May 16, 2024 10:00
@ChristophWurst
Copy link
Member

/backport to stable29

@ChristophWurst
Copy link
Member

/backport to stable28

@ChristophWurst
Copy link
Member

/backport to stable27

@ChristophWurst
Copy link
Member

/backport to stable26

@ChristophWurst
Copy link
Member

I've realized a logical issue where we now update the last_activity for tokens that are not active. E.g. \OC\Authentication\Token\PublicKeyTokenProvider::rotate, \OC\Authentication\Token\PublicKeyTokenProvider::setPassword and \OCA\Settings\Controller\AuthSettingsController::update update tokens of other clients/sessions.

Especially with the rotation and the password update we will see tokens/clients as active even if they have not connected.

@ChristophWurst
Copy link
Member

I've realized a logical issue where we now update the last_activity for tokens that are not active

Addressed with #45411

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants