-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
According to the OpenID connect spec: > nonce > String value used to associate a Client session with an ID Token, and to mitigate replay attacks. The value is passed through unmodified from the Authentication Request to the ID Token. If present in the ID Token, Clients MUST verify that the nonce Claim Value is equal to the value of the nonce parameter sent in the Authentication Request. If present in the Authentication Request, Authorization Servers MUST include a nonce Claim in the ID Token with the Claim Value being the nonce value sent in the Authentication Request. Authorization Servers SHOULD perform no other processing on nonce values used. The nonce value is a case-sensitive string. Right now, if a client passes a "nounce", we don't give it back and the client fails. This is happening to me right now with the client from Matrix Synapse. Here, I'm creating a new service (`CurrentRequestService`). With this new service, I can get the current PSR-7 request. I extend the AuthCodeGrant and inject this service into the extended class. With this, I can: - read the "nonce" from the request - encode the "nonce" in the "code" Then, in the `IdTokenResponse`, I read the "code" (if it is present), extract the "nounce" and inject it in the ID token as a new claim. The whole process is inspired by this comment: steverhoades/oauth2-openid-connect-server#47 (comment) With those changes, nounce is correctly handled and I've successfully tested a connection with the OpenID client from Matrix Synapse.
- Loading branch information
Showing
7 changed files
with
227 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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 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,91 @@ | ||
<?php | ||
|
||
namespace OpenIDConnect\Grant; | ||
|
||
use DateInterval; | ||
use League\OAuth2\Server\Repositories\AuthCodeRepositoryInterface; | ||
use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface; | ||
use League\OAuth2\Server\RequestTypes\AuthorizationRequest; | ||
use League\OAuth2\Server\ResponseTypes\RedirectResponse; | ||
use OpenIDConnect\Interfaces\CurrentRequestServiceInterface; | ||
use Psr\Http\Message\ResponseInterface; | ||
|
||
/** | ||
* This class extends the default AuthCodeGrant class to add support for the nonce parameter. | ||
* | ||
* The nonce parameter is | ||
*/ | ||
class AuthCodeGrant extends \League\OAuth2\Server\Grant\AuthCodeGrant | ||
{ | ||
private ResponseInterface $psr7Response; | ||
private CurrentRequestServiceInterface $currentRequestService; | ||
|
||
/** | ||
* @param AuthCodeRepositoryInterface $authCodeRepository | ||
* @param RefreshTokenRepositoryInterface $refreshTokenRepository | ||
* @param DateInterval $authCodeTTL | ||
* @param ResponseInterface $psr7Response An empty PSR-7 Response object | ||
* @param CurrentRequestServiceInterface $currentRequestService A service that returns the current request. Used to get the nonce parameter. | ||
* @throws \Exception | ||
*/ | ||
public function __construct(AuthCodeRepositoryInterface $authCodeRepository, RefreshTokenRepositoryInterface $refreshTokenRepository, DateInterval $authCodeTTL, ResponseInterface $psr7Response, CurrentRequestServiceInterface $currentRequestService) | ||
{ | ||
parent::__construct($authCodeRepository, $refreshTokenRepository, $authCodeTTL); | ||
$this->psr7Response = $psr7Response; | ||
$this->currentRequestService = $currentRequestService; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function completeAuthorizationRequest(AuthorizationRequest $authorizationRequest) | ||
{ | ||
// See https://github.com/steverhoades/oauth2-openid-connect-server/issues/47#issuecomment-1228370632 | ||
|
||
/** @var RedirectResponse $response */ | ||
$response = parent::completeAuthorizationRequest($authorizationRequest); | ||
|
||
$queryParams = $this->currentRequestService->getRequest()->getQueryParams(); | ||
|
||
if (isset($queryParams['nonce'])) { | ||
// The only way to get the redirect URI is to generate the PSR7 response (The RedirectResponse class does not have a getter for the redirect URI) | ||
$httpResponse = $response->generateHttpResponse($this->psr7Response); | ||
$redirectUri = $httpResponse->getHeader('Location')[0]; | ||
$parsed = parse_url($redirectUri); | ||
|
||
parse_str($parsed['query'], $query); | ||
|
||
$authCodePayload = json_decode($this->decrypt($query['code']), true, 512, JSON_THROW_ON_ERROR); | ||
|
||
$authCodePayload['nonce'] = $queryParams['nonce']; | ||
|
||
$query['code'] = $this->encrypt(json_encode($authCodePayload, JSON_THROW_ON_ERROR)); | ||
|
||
$parsed['query'] = http_build_query($query); | ||
|
||
$response->setRedirectUri($this->unparse_url($parsed)); | ||
} | ||
|
||
return $response; | ||
} | ||
|
||
/** | ||
* Inverse of parse_url | ||
* | ||
* @param mixed $parsed_url | ||
* @return string | ||
*/ | ||
private function unparse_url($parsed_url) | ||
{ | ||
$scheme = isset($parsed_url['scheme']) ? $parsed_url['scheme'] . '://' : ''; | ||
$host = isset($parsed_url['host']) ? $parsed_url['host'] : ''; | ||
$port = isset($parsed_url['port']) ? ':' . $parsed_url['port'] : ''; | ||
$user = isset($parsed_url['user']) ? $parsed_url['user'] : ''; | ||
$pass = isset($parsed_url['pass']) ? ':' . $parsed_url['pass'] : ''; | ||
$pass = ($user || $pass) ? "$pass@" : ''; | ||
$path = isset($parsed_url['path']) ? $parsed_url['path'] : ''; | ||
$query = isset($parsed_url['query']) ? '?' . $parsed_url['query'] : ''; | ||
$fragment = isset($parsed_url['fragment']) ? '#' . $parsed_url['fragment'] : ''; | ||
return "$scheme$user$pass$host$port$path$query$fragment"; | ||
} | ||
} |
This file contains 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 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,19 @@ | ||
<?php | ||
|
||
namespace OpenIDConnect\Interfaces; | ||
|
||
use Psr\Http\Message\ServerRequestInterface; | ||
|
||
/** | ||
* A service in charge of returning the current request. | ||
* | ||
* This should be implemented by the application using this package (a default Laravel implementation is provided) | ||
* | ||
* We need this because due to the architecture of the League package, the request is not available in the | ||
* grant classes. But we need access to the "nonce" parameter in the request to be able to include it in the | ||
* ID token. | ||
*/ | ||
interface CurrentRequestServiceInterface | ||
{ | ||
public function getRequest(): ServerRequestInterface; | ||
} |
This file contains 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,22 @@ | ||
<?php | ||
|
||
namespace OpenIDConnect\Laravel; | ||
|
||
use Nyholm\Psr7\Factory\Psr17Factory; | ||
use OpenIDConnect\Interfaces\CurrentRequestServiceInterface; | ||
use Psr\Http\Message\ServerRequestInterface; | ||
use Symfony\Bridge\PsrHttpMessage\Factory\PsrHttpFactory; | ||
|
||
class LaravelCurrentRequestService implements CurrentRequestServiceInterface | ||
{ | ||
|
||
public function getRequest(): ServerRequestInterface | ||
{ | ||
return (new PsrHttpFactory( | ||
new Psr17Factory, | ||
new Psr17Factory, | ||
new Psr17Factory, | ||
new Psr17Factory | ||
))->createRequest(request()); | ||
} | ||
} |
This file contains 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 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,24 @@ | ||
<?php | ||
|
||
namespace OpenIDConnect\Services; | ||
|
||
use OpenIDConnect\Interfaces\CurrentRequestServiceInterface; | ||
use Psr\Http\Message\ServerRequestInterface; | ||
|
||
class CurrentRequestService implements CurrentRequestServiceInterface | ||
{ | ||
private ?ServerRequestInterface $request; | ||
|
||
public function getRequest(): ServerRequestInterface | ||
{ | ||
if ($this->request === null) { | ||
throw new \RuntimeException('Request not set in CurrentRequestService'); | ||
} | ||
return $this->request; | ||
} | ||
|
||
public function setRequest(ServerRequestInterface $request): void | ||
{ | ||
$this->request = $request; | ||
} | ||
} |