GNU bug report logs -
#8931
24.0.50; url-http.el terminating HTTP packets with extra carriage return and newline
Previous Next
Reported by: Nicolas Avrutin <nicolasavru <at> gmail.com>
Date: Fri, 24 Jun 2011 20:51:01 UTC
Severity: normal
Tags: fixed
Found in version 24.0.50
Fixed in version 24.1
Done: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 8931 in the body.
You can then email your comments to 8931 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org
:
bug#8931
; Package
emacs
.
(Fri, 24 Jun 2011 20:51:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Nicolas Avrutin <nicolasavru <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Fri, 24 Jun 2011 20:51:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
`browse-url-emacs' and `url-retrieve-synchronously' (and probably other
functions) appear to be generating malformed HTTP packets by appending an
extra \r\n to the packet, resulting in them being terminated with "\r\n\r\n"
instead of "\r\n". Some pages (such as http://www.google.com) to still
return properly and just send back a packet saying that the sent packet was
malformed. Other pages, in my case last.fm's client API (access via
emms-lastfm-client) return 400 Bad Request. In addition, this causes
Wireshark to report the packet as "HEAD / HTTP/1.1 Continuation or non-HTTP
traffic".
Removing the "\r\n" on line 341 of url-http.el (see attached patch) removes
the duplicate "'\r\n" and appears to fix the issue. Calls to last.fm's
client API return 200 OK as expected and Wireshark properly reports the
packet as "HEAD / HTTP/1.1". Google, however, still reports a malformed
packet.
This bug is preset in Emacs 23.1, but is not in 23.2. My patch restores the
line to what it was in 23.2, but I do not know if it was changed for a
reason or in error.
--
Nicolas Avrutin
[Message part 2 (text/html, inline)]
[url-http.patch (text/x-patch, attachment)]
Added tag(s) fixed.
Request was from
Lars Magne Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Sun, 03 Jul 2011 16:06:01 GMT)
Full text and
rfc822 format available.
bug marked as fixed in version 24.1, send any further explanations to
8931 <at> debbugs.gnu.org and Nicolas Avrutin <nicolasavru <at> gmail.com>
Request was from
Lars Magne Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Sun, 03 Jul 2011 16:06:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org
:
bug#8931
; Package
emacs
.
(Sun, 03 Jul 2011 16:07:02 GMT)
Full text and
rfc822 format available.
Message #12 received at 8931 <at> debbugs.gnu.org (full text, mbox):
Nicolas Avrutin <nicolasavru <at> gmail.com> writes:
> This bug is preset in Emacs 23.1, but is not in 23.2. My patch
> restores the line to what it was in 23.2, but I do not know if it was
> changed for a reason or in error.
Thanks for the patch; I've now applied it to Emacs 24.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog http://lars.ingebrigtsen.no/
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 01 Aug 2011 11:24:04 GMT)
Full text and
rfc822 format available.
bug unarchived.
Request was from
"Christopher J. White" <chris <at> grierwhite.com>
to
control <at> debbugs.gnu.org
.
(Sat, 24 Sep 2011 18:11:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#8931
; Package
emacs
.
(Sat, 24 Sep 2011 18:12:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 8931 <at> debbugs.gnu.org (full text, mbox):
There is a tug of war going on here.
Prior to 100681, the code had no CRLF after url-http-data. Mark
Hershberger submitted a patch to add the CRLF because without it, POSTs
with content to https urls just hang:
http://bzr.savannah.gnu.org/lh/emacs/trunk/revision/100681
This change was undone by Nicola Avrutin in 104908:
http://bzr.savannah.gnu.org/lh/emacs/trunk/revision/104908
The problem was that with no url-http-data, the request ends with a
double CRLF, which apparently confuses some servers.
I recently came across the exact same problem (with url-http.el
without the extra CRL), and Mark's patch above works just fine for me
(also POSTs to https).
I'm thinking the correct solution is to only add the CRLF if there is
http-data:
- url-http-data))
+ url-http-data (if url-http-data "\r\n")))
...cj
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#8931
; Package
emacs
.
(Sat, 24 Sep 2011 18:28:01 GMT)
Full text and
rfc822 format available.
Message #22 received at 8931 <at> debbugs.gnu.org (full text, mbox):
Further testing with this indicates this may not be a complete fix.
The fix works reliably for a single connection, but when making
multiple POST requests, an older process is grabbed for reuse, but then
leads to an error as the process seems to terminate.
See: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9592
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#8931
; Package
emacs
.
(Sat, 24 Sep 2011 23:00:03 GMT)
Full text and
rfc822 format available.
Message #25 received at 8931 <at> debbugs.gnu.org (full text, mbox):
"Christopher J. White" <chris <at> grierwhite.com> writes:
> I'm thinking the correct solution is to only add the CRLF if there is
> http-data:
>
> - url-http-data))
> + url-http-data (if url-http-data "\r\n")))
Yes, this looks right. Committed to trunk.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 23 Oct 2011 11:24:03 GMT)
Full text and
rfc822 format available.
This bug report was last modified 13 years and 168 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.