Bug 7877 - XMLHttpRequest ignores username/password passed to open()
Summary: XMLHttpRequest ignores username/password passed to open()
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: DOM (show other bugs)
Version: 420+
Hardware: Mac OS X 10.4
: P2 Normal
Assignee: Alexey Proskuryakov
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2006-03-20 11:56 PST by Adam Ratcliffe
Modified: 2019-02-06 09:03 PST (History)
3 users (show)

See Also:


Attachments
test case (3.01 KB, application/zip)
2006-04-09 11:21 PDT, Alexey Proskuryakov
no flags Details
proposed fix (7.11 KB, patch)
2006-04-09 11:51 PDT, Alexey Proskuryakov
darin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Adam Ratcliffe 2006-03-20 11:56:22 PST
Webkit's XHR cannot currently be used to authenticate a user using HTTP Authentication as the username and password parameters passed to open() are ignored.

If requesting a protected resource using XHR the browser responds to the server's challenge by showing the HTTP auth dialog.

Looking at the headers sent by Firefox it's XHR implementation sends the username and password in the URL initially, the server responds with the authentication challenge and XHR resends the request with the appropriate Authorization header.  Maybe Webkit's XHR should do the same?

One limitation of Firefox's XHR implementation, and probably IEs also, is that it's not possible to control whether the browser's HTTP auth dialog is shown when invalid credentials are sent with the XHR request. This limits its usefulness in providing an alternative interface to the browser's dialog for HTTP auth.  It would be cool if Webkit could provide more flexibility in this case.
Comment 1 Eric Seidel (no email) 2006-03-20 14:36:59 PST
<rdar://problem/4335156> XMLHttpRequest ignores username/password passed to open() passed to open()
Comment 2 Alexey Proskuryakov 2006-04-09 11:21:51 PDT
Created attachment 7601 [details]
test case

Debug builds hit an assertion in KURL::setUser().
Comment 3 Alexey Proskuryakov 2006-04-09 11:51:31 PDT
Created attachment 7602 [details]
proposed fix

Hmm, simply unblocking KURL::setUser() and setPass() seems to make things work, at least when the passed login/password are correct.

Since the desired behavior in the case when login/password are incorrect is not completely clear (and this is different code anyway), maybe we should investigate it in a separate step. Currently, sync requests silently fail, while async ones cause an auth dialog to be displayed, but entering correct login/password seems to have no effect.
Comment 4 Eric Seidel (no email) 2006-04-09 12:44:38 PDT
Comment on attachment 7602 [details]
proposed fix

It looks sane to me.  I wonder how this interacts with keychain passwords, etc.  I would be interested to know if the code was turned off for a reason.
Comment 5 Eric Seidel (no email) 2006-04-09 12:45:10 PDT
From the logs it looks like it was just never turned on after merging.  Not sure why it wasn't turned on to begin with though.  Darin or ken would know:

swingtop [29320:OpenSource]% svn log -r 4628                                                                                            [/Volumes/Stuff/Projects/WebKit/OpenSource]
------------------------------------------------------------------------
r4628 | darin | 2003-07-11 15:38:03 -0700 (Fri, 11 Jul 2003) | 30 lines

        Reviewed by Ken.

        - roll in change from KHTML to remove user and password from referrer

        * khtml/khtml_part.cpp: (KHTMLPart::begin): Call setUser(""), setPass(""),
        and setRef(""), then also set the referrer to "" if the protocol does not
        start with http.

        * kwq/WebCoreBridge.mm: (-[WebCoreBridge referrer]): Remove check to exclude
        file URL referrers because KHTMLPart now excludes all non-http referrers.

        * kwq/KWQKURL.h: Add setUser and setPass functions. Also sort by order within
        the URL so it's clear no methods are omitted.
        * kwq/KWQKURL.mm:
        (KURL::setUser): Added. Adds or removes the username, adding or removing
        delimiters as needed. For now only the remove part is compiled in.
        (KURL::setPass): Added. Adds or removes a password, adding or removing
        delimiters as needed. For now only the remove part is compiled in.

        * kwq/KWQString.h: Add QSTRING_NULL macro to allow us to work around the fact
        that there is no global QString::null object in KWQ without having to do a
        relatively ineffecient conversion from a non-constant char * of 0 each time.
        We can use this anywhere QString::null appears and perhaps get some small code
        savings or performance boost.

        - small cleanup

        * kwq/KWQTextCodec.mm: (QTextCodec::fromUnicode): Remove unneeded checks that
        repeat optimizations I already put in QString.

------------------------------------------------------------------------
Comment 6 Darin Adler 2006-04-09 16:04:50 PDT
Comment on attachment 7602 [details]
proposed fix

Nice! r=me
Comment 7 Alexey Proskuryakov 2006-04-09 21:45:07 PDT
Landed, r13751. For older versions, embedding the credentials in URL, rather then passing them as separate parameters should work: http://user:password@host/path.

Reporter, could you please open a new bug for the case when the supplied credentials are incorrect? You are proposing that the behavior should be configurable - do you already have some specific API in mind? Has this issue been discussed in Mozilla community, by any chance?
Comment 8 Adam Ratcliffe 2006-04-10 01:50:29 PDT
I've opened a new bug proposing that XHR should provide some means for handling an authentication failure, see http://bugzilla.opendarwin.org/show_bug.cgi?id=8291
Comment 9 Lucas Forschler 2019-02-06 09:03:21 PST
Mass moving XML DOM bugs to the "DOM" Component.