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

spring-web CORS requires X-Forwarded-Port [SPR-16262] #20809

Closed
spring-projects-issues opened this issue Dec 4, 2017 · 5 comments
Closed

spring-web CORS requires X-Forwarded-Port [SPR-16262] #20809

spring-projects-issues opened this issue Dec 4, 2017 · 5 comments
Assignees
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Dec 4, 2017

simon Kitching opened SPR-16262 and commented

I am running a spring-boot app within Google AppEngine behind an IAP proxy which terminates https connections. The proxy sets X-Forwarded-Proto=https on requests, but does not set X-Forwarded-Port. The result is that the spring-web CORS filter rejects requests with "not same origin" even though the origin actually is the same.

This is made worse by the fact that the Chrome browser sends the "origin" header on many different request types, including all POST requests and all resources referenced from a css-file (eg fonts) - ie on requests which are NOT cross-origin.

While it may be argued that Google should add a header, this is a problem that may hit many users. It is also really really nasty to actually figure out the real cause of the problem..


Affects: 4.3.12

Issue Links:

Referenced from: commits 9c7de23, c326e44, 1b3b058

Backported to: 4.3.14

@spring-projects-issues
Copy link
Collaborator Author

simon Kitching commented

Class UriComponentsBuilder has separate fields for port and scheme. Method UriComponentsBuilder.adaptFromForwardedHeaders checks for "X-Forwarded-*" headers and modifies those fields. However when X-Forwarded-Proto is present then ONLY field "scheme" is updated, not field "port". The result is that a request which has been forwarded by the Google IAP proxy, and thus has X-Forwarded-Proto but not X-Forwarded-Port, has the original "https" scheme but port 80.

Method WebUtils.isSameOrigin calls getPort() which returns port 80 for the incoming request, but deduces port 443 from the "origin" http header, and thus rejects the incoming request.

I think a good argument could be made for method adaptFromForwardedHeaders to set field port (in same way as WebUtils.getPort) when X-Forwarded-Proto is present.

At the very least, please add some suitable logging to indicate this problem - it has sucked up 2 days of my time tracking this down. In particular, this only occurs behind a proxy - local testing shows no problem.

@spring-projects-issues
Copy link
Collaborator Author

simon Kitching commented

As mentioned in spring-projects/spring-boot#10965, Traefik is another proxy which fails to set X-Forwarded-Port.

@spring-projects-issues
Copy link
Collaborator Author

simon Kitching commented

For anyone else looking for a solution for this problem, I have implemented a single-class workaround documented here: http://moi.vonos.net/java/spring-forward/
Basically, it provides a ServletFilter which sets header X-Forwarded-Port=443 if X-Forwarded-Proto="https", and solves the problem for me behind Google IAP.

@spring-projects-issues
Copy link
Collaborator Author

Sébastien Deleuze commented

I will shortly merge this pull-request after some remaining polish. Feel free to have a look.

@spring-projects-issues
Copy link
Collaborator Author

Sébastien Deleuze commented

Commits merged in both 4.3.x and master branches, with additional optimizations on master.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Projects
None yet
Development

No branches or pull requests

2 participants