urlmon: fix HTTP redirects when auto redirection is disabled
If DISABLEAUTOREDIRECTS is set in BINDINFO options, urlmon does not set HTTP verb to GET when handling redirections.
Although HTTP specification is vague on the correct behaviour here, many web servers expect this. This is what's causing the "400 Bad Request" error when user tries to log into GMail accounts using Outlook.
Merge request reports
Activity
requested review from @jacek
assigned to @yshui
When Windows does not call
IBindCallbackRedirect::Redirect
, it justReportResult
withINET_E_REDIRECT_FAILED
and the request stops there.Edit:
could be that ourcall_continue
is stopping early.Edit2: No.
Edited by Yuxuan ShuiFiguring out the exact behavior of native urlmon seems to be very involved.
@jacek Do you think the solution proposed in this MR is acceptable? In which case I can create a test case with a couple of todos and call it a day...
Edited by Yuxuan ShuiThis stuff is barely documented, so I don't know how it's supposed to work until I can see a test. It's fine to have some todo_wine for some implementation details, but it should at least show that we're doing things in the right place.
For example, I could imagine that we shouldn't change bindprot.c at all and that it's a responsibility of its caller to handle that correctly in its
GetBindInfo
implementation. That would be somewhere in binding.c for the most common case of binding usingCreateURLMoniker
. If that's the case, then adding a test to tests/url.c may be more interesting.OK, that's already an interesting finding. From your description, it sounds like the actual http protocol handler behaves differently than our emulated one. We don't have a test of redirecting POST request with the real handler, did you try to add a test for that? Maybe it reports redirection somehow differently in that case.
We don't have a test of redirecting POST request with the real handler, did you try to add a test for that?
I did, and I discovered this bug. And that was why I was asking if we have an HTTP endpoint that redirects POST requests.
See https://gitlab.winehq.org/winehq/tools/-/tree/master/winetest/tests for our server-side scripts.
added 93 commits
-
f07b9f94...a6ff01f3 - 92 commits from branch
wine:master
- 484738e9 - urlmon: fix HTTP redirects when auto redirection is disabled
-
f07b9f94...a6ff01f3 - 92 commits from branch
- Resolved by Yuxuan Shui
added 53 commits
-
9826274f...6afe77a2 - 51 commits from branch
wine:master
- 1f37afef - urlmon: fix HTTP redirects when auto redirection is disabled
- 03cb8bdf - urlmon: test redirection of POST requests
-
9826274f...6afe77a2 - 51 commits from branch
mentioned in merge request !3818
We need to find at least at which layer there is a difference. As you surely noticed, urlmon is built from many layers, applications have access to those layers and interaction between them is visible to them. I'd hope that ultimately this MR would contain a test using both HTTP_STATUS_REDIRECT_KEEP_VERB and some other redirect status and would target exactly the layer that needs fixing (although it's possible that more than one layer needs fixing).
To get there, we need more experimentation. Those tests in current form show that there is some problem and that native uses a different solution. If there is a difference between binding using emulated protocol handler and a real protocol handler, it means that our emulated implementation does not serve its purpose (or the test is broken in another way). In that case, we need to find why. You may do more testing of http protocol handler (not using
CreateBinding
), look at result and analyze emulated http protocol handler and see where does that differ from the real one. IfCreateBinding
behaves differently with emulated protocol than real one, I'd expect there to be some difference. Finding it should give you more insight about what's going on.
added 480 commits
-
03cb8bdf...81c8c73d - 478 commits from branch
wine:master
- cc0ff268 - urlmon: fix HTTP redirects when auto redirection is disabled
- 628c9f90 - urlmon: test redirection of POST requests
-
03cb8bdf...81c8c73d - 478 commits from branch