Merge pull request #42971 from nextcloud/fix/auth/login-email-password-login-name-mismatch

fix(auth): Fix logging in with email and app password
pull/43017/head
Christoph Wurst 4 months ago committed by GitHub
commit 03774ad77c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -460,7 +460,8 @@ class Session implements IUserSession, Emitter {
if ($isTokenPassword) {
$dbToken = $this->tokenProvider->getToken($password);
$userFromToken = $this->manager->get($dbToken->getUID());
$isValidEmailLogin = $userFromToken->getEMailAddress() === $user;
$isValidEmailLogin = $userFromToken->getEMailAddress() === $user
&& $this->validateTokenLoginName($userFromToken->getEMailAddress(), $dbToken);
} else {
$users = $this->manager->getByEmail($user);
$isValidEmailLogin = (\count($users) === 1 && $this->login($users[0]->getUID(), $password));
@ -800,18 +801,7 @@ class Session implements IUserSession, Emitter {
return false;
}
// Check if login names match
if (!is_null($user) && $dbToken->getLoginName() !== $user) {
// TODO: this makes it impossible to use different login names on browser and client
// e.g. login by e-mail 'user@example.com' on browser for generating the token will not
// allow to use the client token with the login name 'user'.
$this->logger->error('App token login name does not match', [
'tokenLoginName' => $dbToken->getLoginName(),
'sessionLoginName' => $user,
'app' => 'core',
'user' => $dbToken->getUID(),
]);
if (!is_null($user) && !$this->validateTokenLoginName($user, $dbToken)) {
return false;
}
@ -831,6 +821,27 @@ class Session implements IUserSession, Emitter {
return true;
}
/**
* Check if login names match
*/
private function validateTokenLoginName(?string $loginName, IToken $token): bool {
if ($token->getLoginName() !== $loginName) {
// TODO: this makes it impossible to use different login names on browser and client
// e.g. login by e-mail 'user@example.com' on browser for generating the token will not
// allow to use the client token with the login name 'user'.
$this->logger->error('App token login name does not match', [
'tokenLoginName' => $token->getLoginName(),
'sessionLoginName' => $loginName,
'app' => 'core',
'user' => $token->getUID(),
]);
return false;
}
return true;
}
/**
* Tries to login the user with auth token header
*

Loading…
Cancel
Save