Skip to content
Snippets Groups Projects
Commit 56dab605 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

- I fixed the problem with doing NTLM, POST and then following a 302 redirect,

  as reported by Ebenezer Ikonne (on curl-users) and Laurent Rabret (on
  curl-library). The transfer was mistakenly marked to get more data to send
  but since it didn't actually have that, it just hung there...
parent 3aa3d7e6
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,12 @@ ...@@ -6,6 +6,12 @@
Changelog Changelog
Daniel Stenberg (11 May 2009)
- I fixed the problem with doing NTLM, POST and then following a 302 redirect,
as reported by Ebenezer Ikonne (on curl-users) and Laurent Rabret (on
curl-library). The transfer was mistakenly marked to get more data to send
but since it didn't actually have that, it just hung there...
Daniel Stenberg (10 May 2009) Daniel Stenberg (10 May 2009)
- Andre Guibert de Bruet correctly pointed out an over-alloc with one wasted - Andre Guibert de Bruet correctly pointed out an over-alloc with one wasted
byte in the digest code. byte in the digest code.
......
...@@ -44,6 +44,7 @@ This release includes the following bugfixes: ...@@ -44,6 +44,7 @@ This release includes the following bugfixes:
o fixed roff mistakes in man pages o fixed roff mistakes in man pages
o use SOCKS proxy with the multi interface o use SOCKS proxy with the multi interface
o fixed the Curl_getoff_all_pipelines SIGSEGV o fixed the Curl_getoff_all_pipelines SIGSEGV
o POST, NTLM and following a redirect hang
This release includes the following known bugs: This release includes the following known bugs:
...@@ -57,6 +58,6 @@ advice from friends like these: ...@@ -57,6 +58,6 @@ advice from friends like these:
Kamil Dudka, Jim Freeman, Daniel Johnson, Toshio Kuratomi, Martin Storsjo, Kamil Dudka, Jim Freeman, Daniel Johnson, Toshio Kuratomi, Martin Storsjo,
Pramod Sharma, Gisle Vanem, Lenaic Lefever, Rainer Koenig, Sven Wegener, Pramod Sharma, Gisle Vanem, Lenaic Lefever, Rainer Koenig, Sven Wegener,
Tim Chen, Constantine Sapuntzakis, David McCreedy, Michael Smith, Tim Chen, Constantine Sapuntzakis, David McCreedy, Michael Smith,
Colin Watson Colin Watson, Ebenezer Ikonne, Laurent Rabret
Thanks! (and sorry if I forgot to mention someone) Thanks! (and sorry if I forgot to mention someone)
...@@ -12,8 +12,6 @@ To be addressed in 7.19.5 (planned release: May 2009) ...@@ -12,8 +12,6 @@ To be addressed in 7.19.5 (planned release: May 2009)
236 - timeout in milliseconds doesn't seem to work 236 - timeout in milliseconds doesn't seem to work
237 - Redirection failing with NTLM authentication
239 - 239 -
To be addressed in 7.19.6 (planned release: July 2009) To be addressed in 7.19.6 (planned release: July 2009)
......
...@@ -369,6 +369,8 @@ CURLcode Curl_http_perhapsrewind(struct connectdata *conn) ...@@ -369,6 +369,8 @@ CURLcode Curl_http_perhapsrewind(struct connectdata *conn)
case HTTPREQ_POST: case HTTPREQ_POST:
if(data->set.postfieldsize != -1) if(data->set.postfieldsize != -1)
expectsend = data->set.postfieldsize; expectsend = data->set.postfieldsize;
else if(data->set.postfields)
expectsend = (curl_off_t)strlen(data->set.postfields);
break; break;
case HTTPREQ_PUT: case HTTPREQ_PUT:
if(data->set.infilesize != -1) if(data->set.infilesize != -1)
......
...@@ -4,4 +4,4 @@ ...@@ -4,4 +4,4 @@
# per line. # per line.
# Lines starting with '#' letters are treated as comments. # Lines starting with '#' letters are treated as comments.
563 563
1100
...@@ -10,7 +10,7 @@ HTTP NTLM auth ...@@ -10,7 +10,7 @@ HTTP NTLM auth
<reply> <reply>
<data> <data>
HTTP/1.1 200 Thanks for this, but we want to redir you! swsclose HTTP/1.1 200 Thanks for this! swsclose
Content-Length: 25 Content-Length: 25
This is the final page ! This is the final page !
...@@ -48,9 +48,13 @@ WWW-Authenticate: NTLM TlRMTVNTUAACAAAAAgACADAAAAAGgoEAc51AYVDgyNcAAAAAAAAAAG4Ab ...@@ -48,9 +48,13 @@ WWW-Authenticate: NTLM TlRMTVNTUAACAAAAAgACADAAAAAGgoEAc51AYVDgyNcAAAAAAAAAAG4Ab
HTTP/1.1 302 Thanks for this, but we want to redir you! HTTP/1.1 302 Thanks for this, but we want to redir you!
Server: Microsoft-IIS/5.0 Server: Microsoft-IIS/5.0
Content-Type: text/html; charset=iso-8859-1 Content-Type: text/html; charset=iso-8859-1
Location: /1100
Content-Length: 34 Content-Length: 34
This is not the real page either! HTTP/1.1 200 Thanks for this! swsclose
Content-Length: 25
This is the final page !
</datacheck> </datacheck>
</reply> </reply>
...@@ -81,7 +85,7 @@ http://%HOSTIP:%HTTPPORT/1100 -u testuser:testpass --ntlm -L -d "stuff to send a ...@@ -81,7 +85,7 @@ http://%HOSTIP:%HTTPPORT/1100 -u testuser:testpass --ntlm -L -d "stuff to send a
<strippart> <strippart>
s/^(Authorization: NTLM TlRMTVNTUAADAAAAGAAYAEAAAAAYABgAWAAAAAAAAABwAAAACAAIAHAAAAA).*/$1/ s/^(Authorization: NTLM TlRMTVNTUAADAAAAGAAYAEAAAAAYABgAWAAAAAAAAABwAAAACAAIAHAAAAA).*/$1/
</strippart> </strippart>
<protocol nonewline="yes"> <protocol>
POST /1100 HTTP/1.1 POST /1100 HTTP/1.1
Authorization: NTLM TlRMTVNTUAABAAAABoIIAAAAAAAAAAAAAAAAAAAAAAA= Authorization: NTLM TlRMTVNTUAABAAAABoIIAAAAAAAAAAAAAAAAAAAAAAA=
User-Agent: curl/7.10.6-pre1 (i686-pc-linux-gnu) libcurl/7.10.6-pre1 OpenSSL/0.9.7a ipv6 zlib/1.1.3 User-Agent: curl/7.10.6-pre1 (i686-pc-linux-gnu) libcurl/7.10.6-pre1 OpenSSL/0.9.7a ipv6 zlib/1.1.3
...@@ -98,7 +102,11 @@ Accept: */* ...@@ -98,7 +102,11 @@ Accept: */*
Content-Length: 18 Content-Length: 18
Content-Type: application/x-www-form-urlencoded Content-Type: application/x-www-form-urlencoded
stuff to send away stuff to send awayGET /1100 HTTP/1.1
User-Agent: curl/7.19.5-CVS (i686-pc-linux-gnu) libcurl/7.19.5-CVS GnuTLS/2.6.6 zlib/1.2.3.3 c-ares/1.6.1-CVS libidn/1.14 libssh2/1.1
Host: %HOSTIP:%HTTPPORT
Accept: */*
</protocol> </protocol>
</verify> </verify>
</testcase> </testcase>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment