Skip to content
Snippets Groups Projects

urlmon: fix HTTP redirects when auto redirection is disabled

Open Yuxuan Shui requested to merge yshui/wine:http-302 into master
2 unresolved threads

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

Members who can merge are allowed to add commits.

Merge request pipeline #15680 passed

Merge request pipeline passed for 628c9f90

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Yuxuan Shui requested review from @jacek

    requested review from @jacek

  • assigned to @yshui

  • Author Developer

    I am not sure if the approach I've taken here is acceptable, but this is probably the way that requires the least amount of changes.

    I also need to come up with a test case for this...

  • See tests/protocol.c for a test case that uses an emulated HTTP plugable protocol handler. We already have some redirection tests there.

    • Author Developer

      I think Windows doesn't even bother to check if the status code is 307 or not.

    • Author Developer

      I was wrong. I don't know how windows find out about the status code though. It does query for an unknown interface "f3d8f080-a5eb-476f-9d19-a5ef24e5c2e6" maybe this is it?

    • Perhaps it lets wininet handle it by passing INTERNET_FLAG_NO_AUTO_REDIRECT?

    • Author Developer

      I don't think it can. wininet has no concept of IBindCallbackRedirect, which urlmon needs to call to decide whether to proceed with redirect.

    • Author Developer

      Hmm, Windows is definitely doing something odd. When using CreateBinding and native Windows HTTP protocol implementation, it does not call IBindCallbackRedirect::Redirect. However when using CreateBinding with our emulated protocol, it does.

      (Both cases have DISABLEAUTOREDIRECTS).

    • Author Developer

      When Windows does not call IBindCallbackRedirect::Redirect, it just ReportResult with INET_E_REDIRECT_FAILED and the request stops there.

      Edit: could be that our call_continue is stopping early.

      Edit2: No.

      Edited by Yuxuan Shui
    • Author Developer

      Figuring 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 Shui
    • This 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 using CreateURLMoniker. If that's the case, then adding a test to tests/url.c may be more interesting.

    • Author Developer

      caller to handle that correctly in its GetBindInfo implementation

      hmm, plausible but I think I have evidence against this. In our emulated protocol tests we have control of the IBindInfo but Windows still changes the verb as expected.

    • 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.

    • Author Developer

      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.

    • Author Developer

      I added a test case with emulated protocol.

      Given wine would crash when testing with real http protocol I will leave that for now.

    • For the investigation we're interested in Windows result anyway, so I don't see how the crash is blocking it. And ultimately we want the crash fixed anyway...

    • Author Developer

      I just meant that if I add the test, gitlab CI will fail

    • Please register or sign in to reply
  • Yuxuan Shui added 93 commits

    added 93 commits

    Compare with previous version

  • Yuxuan Shui added 1 commit

    added 1 commit

    • 9e0d546b - urlmon: test redirection of POST requests

    Compare with previous version

  • Gabriel Ivăncescu
  • Yuxuan Shui added 2 commits

    added 2 commits

    • 5ae5cfc3 - urlmon: fix HTTP redirects when auto redirection is disabled
    • 9826274f - urlmon: test redirection of POST requests

    Compare with previous version

  • Yuxuan Shui added 53 commits

    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

    Compare with previous version

  • Jacek Caban mentioned in merge request !3818

    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. If CreateBinding 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.

    • Author Developer

      I agree with need to investigate more and bring our urlmon closer to native. But I also think this MR is a reasonable fix for the bug within the framework of how wine urlmon currently works.

      So, can we merge this, and do the investigation as a separate task?

    • Please register or sign in to reply
  • Yuxuan Shui added 480 commits

    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

    Compare with previous version

  • Please register or sign in to reply
    Loading