-
Notifications
You must be signed in to change notification settings - Fork 38.3k
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
Add Partitioned cookie attribute support for reactive servers #31454
Comments
We also have same issue |
Even if you could pass a custom cookie class, it would still need to be adapted and passed to the underlying server, which would also need to support this. Have you worked out yet how ResponseCookie would need to change? |
In ResponseCookie need a boolean attribute called partitioned similar to secure private final boolean partitioned; /** |
Note: this is currently not supported by all major browsers and I haven't seen any proposal for this in Java Servlet containers. |
I'm going to close this issue for now since there is no official support from supported servers at this point. Adding a field to our We can reopen this issue once those conditions are met. |
@bclozel This would be show stopper issue for us and for many once 3rd party cookies are not supported, kindly re-open it or suggest alternatives |
@svankamamidi do you have a timeline for this, when is chips is going to be widely supported and when 3rd party cookies are won't be supported anymore? This issue is about supporting chips in WebFlux which means we would need to adapt it to the supported servers. Which server are you deploying your WebFlux application to? Is it supporting chips already in their cookie implementation? If not, can you create an issue there to request an enhancement? If you are using Spring MVC, I believe this is already possible through the |
@bclozel , Do we have any solution for this? We are also impacted by this change. |
Reopening to consider our options. |
Quick update. We could support this feature with some servers, adapting the
Still, the current situation is not great because this feature would be incomplete and would lack official support. If you're interested in official support, please consider creating an issue on the relevant projects explaining the use case and why this is important:
Once you've created an issue, please report back here with a link so we can subscribe to it. Such issues (and votes) have more weight if they're coming from the community with real world use cases. I'll discuss the matter further with the web team to consider this issue. |
@bclozel Created the below issue in Netty project Thank you |
Closing for now as it's blocked by missing server support. We'll reopen once servers start supporting this. Please create enhancement requests in the issue tracker of the server you're using to improve the adoption. |
@derkoe return context -> {
context.setUsePartitioned(true);
context.setCookieProcessor(cookieProcessor);
}; |
@petsomers actually setting Only session cookie: @Bean
public TomcatContextCustomizer tomcatContextCustomizer() {
return context -> context.setUsePartitioned(true);
} Session cookie + all others: @Bean
public TomcatContextCustomizer tomcatContextCustomizer() {
Rfc6265CookieProcessor cookieProcessor = new Rfc6265CookieProcessor();
cookieProcessor.setPartitioned(true);
return context -> {
context.setUsePartitioned(true);
context.setCookieProcessor(cookieProcessor);
};
} |
Hi, Tomcat has context customizer to set partitioned attribute for all cookies, need the same support for Netty. Could you please reopen this issue to support it for the same(Partitioned parameter in DefaultCookie is available for Netty now - #31454) Thanks, |
@aramired Netty does not support anything that can set cookie configuration on a global level, so imo Spring Framework should provide a way for setting |
@violetagg I'm not sure I understand - this is not about a global flag, but a per-cookie setting. Netty implemented support in netty/netty#13740 - maybe we should follow up when a version is released? |
Netty provided the Partitioned parameter in DefaultCookie class - 4.1.107.Final-SNAPSHOT and we tested with that in local but cannot make use of it as ResponseCookie not updated. I have asked like any context customizer available for Netty to apply for all cookies but it is not available any how. This should be supported from Spring web, could you please reopen this issue and provide fix ASAP. We have been waiting for the fix to push it as part of release promotion. Please do needful. Thanks, |
@aramired see #31454 (comment) that still applies. We will add support in that class once the support has settled in servers. Netty only has snapshots for now and the situation in Servlet is still being discussed in jakartaee/servlet#571 |
@bclozel seems Netty 4.1.107.Final would be available in this week or by early of next week. Can you please add this support at the earliest, otherwise we will have challenges. |
Actually Netty 4.1.107.Final is released https://github.com/netty/netty/releases/tag/netty-4.1.107.Final |
We can't raise the minimum Netty or Reactor Netty versions in maintenance releases. The earliest support would be in Spring Framework 6.2.0, which is not scheduled at the moment. Again, setting the cookie header manually for now until the situation is more stable in server support is the best approach. |
@bclozel by using Spring framework, SESSION cookie would be added default by the framework right, so how can we stop adding this cookie and instead we manually add SESSION cookie header. |
We don't create sessions automatically. Your application must do it. |
Good afternoon guys. Do we have some news in this discussion? I was studying some projects here and making some tests I verified that Single Sign On with SpringSecuritySaml using SAML2 will fail with the removal of 3rd party cookies by GoogleChrome. |
Thanks for the reminder @diego-sousa-st - I'll revisit this and check whether we can do this for 6.2. |
I'm scheduling this for Spring Framework 6.2. We'll have to implement this defensively for Servlet 6.1, as jakartaee/servlet#571 will change the behavior for managing Cookie attributes. Spring Framework 6.2 still retains a Servlet 6.0 baseline and will not require Servlet 6.1. Reactor and most Servlet containers will support this feature. There is no possible support for this with Undertow right now. |
We are still on Spring Boot v2.7.18, using Spring v5.3.31. |
@4braincells Are you using WebFlux? Which web server are you using? |
Affects: \spring-web-6.0.12.jar
Chrome is going to deprecate third party cookies in near future. There are some suggested ways to mitigate cross site issues depends on cookies
Cookies having independent partitioned state(CHIPS) is one of the proposals(https://developer.chrome.com/docs/privacy-sandbox/chips/).
To try it out in cookie parameters ResponseCookie not yet supported the partitioned parameter(spring-web/src/main/java/org/springframework/http/ResponseCookie.java)
For testing purposes tried extending httpcookie and created custom cookie class but to add that cookie in exchange response, they are expecting only of type ResponseCookie
spring-web/src/main/java/org/springframework/http/server/reactive/ServerHttpResponse.java - getCookies() and addCookie()
We have many integration applications depends on cross site cookies, we want to try it out how it impacts our applications. Expecting this support from Spring as early as possible
The text was updated successfully, but these errors were encountered: