-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
Possible break in symfony 4.4.1 / auth is dismissed #34875
Comments
Can you create a small example application that allows to reproduce your issue? |
Just my two cents: I'm in the same boat, but with the upgrade from symfony 4.3.8 to 4.3.9. Can't provide a small example application, as I'm using doctrine-odm for the user provider :(... |
We definitely need a reproducer. It’s fine if it requires mongodb, although replacing the provider should be pretty easy and should not make any difference regarding the reported issue. |
I am going to close here for now due to the lack of feedback. Please let us know when you have more information and we can consider to reopen. |
I am also having the same (or a similar) issue. When using multiple Guard Authenticators that all support the same request but none of them returns a response object on success, all authenticators get executed, even when the first one already authenticated the user and set the token. Before 4.4.1 one could return null in the The particular commit that introduced the changes: b20ebe6 Modifying the |
I think that'd be the solution yes. Can you please consider sending a doc PR? |
Yes, I could send a doc PR. But even if I misunderstood something about Guard Authenticators, the fact is that they worked significantly differently before 4.4.1. We built our authentication system on the old way of functioning and it has worked as intended for more than a year, until the 4.4.1 patch broke it. So if I want to be correct, I would also mention in the updated doc that the behavior has changed since 4.4.1 because of the BC breaking side effect of a fix. This sounds like a last resort for me, only for the case when there's no way to fix the issue without breaking something other, possibly more important parts. |
I don't understand your fix @meiyo-hu do you have any example ? |
I don't have a solution for the problem, sorry if I wrongly implied that. The example modification I was mentioning earlier that fixed the issue in my specific case was just a quick tampering with the guard execution logic to test that the root of the issue comes from the altered execution flow. But I see that it only solves my problem as a side effect but could cause backward compatibility issues in other cases. Here is a repo with a very dump and simple example code, that reproduces the problem: https://github.com/meiyo-hu/symfony-issue34875 Maybe this kind of usage pattern is arguable, but I don't think it relies on a buggy behavior and it was possible in 4.4.0 and now it fails since 4.4.1. |
Thank you for the reproducer @meiyo-hu. Reopening to keep track of this issue, which will likely be resolved via documentation only (in our CHANGELOG/UPGRADE files and/or on https://github.com/symfony/symfony-docs). |
Hi, i am also having the similar problem using multiple authentication guards. We are migrating from version 4.3 to 4.4 and I am using this documentation: https://github.com/symfony/symfony/blob/4.4/UPGRADE-4.4.md I cound't see any related changes about multiple authentication guards. In my case, i have one route setup with 3 authenticators and a chain provider. Example:
With symfony 4.3 i dont have any problem, but with symfony 4.4 if one supported authenticator success the process continues and did not stop. In this case Custom3Authenticator is supported too and fails with all the request. If this is not a bug and the behavior for the multiple authentication guards has been changed for this version and the nexts. Where i can find the documentation to setup properly multiple authentication guards with this new changes? Thanks. |
Please try to revert composer.json to "symfony/security-bundle": "4.4.0" to see if it is the same issue. |
Hi, reverting the "symfony/security-bundle" to 4.4.0 did not work for me, but now, I fixed my problem using xdebug to debug symfony framework. With this, I understood the new changes on "symfony/security-bundle" and I adapted my code to work with it. In my case the problem was on the support method of the authentication guards. Regards |
in my case, the problem was solved (with 4.4 & 5.0) when I put stateless to true. |
Can someone send a PR to the docs? |
I found a working stateless = false solution |
Symfony version(s) affected: 4.4.1
Description
Authentication information is dismissed on every page. User have to re auth every page.
I personnaly think that the status "fully authenticated" of the user isn't registered.
How to reproduce
Have a auth process which works in 4.3 (or 4.4.0)
update to "symfony/security-bundle": "4.4.1"
Possible Solution
In composer.json revert to "symfony/security-bundle": "4.4.0"
Additional context
[2019-12-08 11:36:37] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\Component\Security\Core\Exception\AccessDeniedException(code: 403): Access Denied. at C:\Travail\Emporium\EmporiumWeb\vendor\symfony\security-http\Firewall\AccessListener.php:99)"} []
[2019-12-08 11:36:37] security.DEBUG: Calling Authentication entry point. [] []
[2019-12-08 11:36:37] request.INFO: Matched route "security_login". {"route":"security_login","route_parameters":{"_route":"security_login","_controller":"App\Controller\SecurityController::login"},"request_uri":"http://127.0.0.1:8000/login","method":"GET"} []
[2019-12-08 11:36:37] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2019-12-08 11:36:37] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"da16a8"},"request_uri":"http://127.0.0.1:8000/_wdt/da16a8","method":"GET"} []
The text was updated successfully, but these errors were encountered: