|
|
cURL Mailing List Monthly Index Single Mail
curl-tracker Archives
[curl:bugs] #1210 HTTP PUT not receiving peer cgi's error response
From: Daniel Stenberg <bagder_at_users.sf.net>
Date: Mon, 29 Apr 2013 21:02:11 +0000
The problem with that approach is that the test server isn't very good at handling an incoming chunked-encoded PUT and responding before the PUT is done.
I created a variation of your test that makes a length-limited PUT that gets aborted by a 400 response, and it verifies that the write callback can indeed read the HTTP response code as soon as it has been received - which is before the full PUT has been sent. The fact that it is length-limited instead of chunked really is of minor difference to libcurl internals.
My patch adds test1513 and should be applied on top of your patch - I hope. If not, let me know and I'll clean it up.
Attachment: 0001-test1513-verify-that-response-codes-are-handled-earl.patch.gz (2.7 kB; application/x-gzip)
--- ** [bugs:#1210] HTTP PUT not receiving peer cgi's error response** **Status:** open **Created:** Mon Apr 01, 2013 09:13 PM UTC by Fraxinas **Last Updated:** Mon Apr 29, 2013 11:57 AM UTC **Owner:** Daniel Stenberg as reported on the mailing list see http://curl.haxx.se/mail/lib-2013-03/0225.html Here's a step-to-step tutorial to simulate the problem: - save attachments to /tmp & cd /tmp $ gcc -g -o /srv/http/cgi-bin/ret_400.cgi ret_400.c (or output wherever your httpd's cgi-bin directory is) $ gcc -g `pkg-config libcurl --cflags --libs` curlputtest.c -o curlputtest $ ./curlputtest - now you get a prompt where you have to enter an http get request. if you enter the absolute path of an existing file, it will upload that, e.g.: GET /tmp/curlputtest.c HTTP/1.0 - the second line is the upload-destination, so the path where on your webserver the ret_400 cgi-bin resides, for example: X-DESTINATION: http://localhost/cgi-bin/ret_400.cgi - the testprog will then output a debug line with the aquired paths: curl put mode on!! source path '/dream/devel/dnstreamproxy/curlputtest.c' destination url 'http://localhost/cgi-bin/ret_400.cgi' - after another newline, curl will try to connect to the given url and try to upload the file which fails with error 400 because the cgi-bin expects a parameter with a length of exactly 10 characters. this is expected! - if you enter a X-DESTINATION url with a 10-digit parameter, it succeeds with status code 201: X-DESTINATION: http://localhost/cgi-bin/ret_400.cgi?1234567890 - now if instead of an accessible file, you put some bogus stuff after in the get request, it'll generate dummy packets and simulate a continuous stream without determined file size: GET /thisisnotafilename HTTP/1.0 - as X-DESTINATION your specify the cgi-bins uri but with wrong parameter, then the expected behaviour is that it should not even once call the READFUNC and error out with the 404 status right away like it does with the determined file size. instead the READFUNC is called over and over again and the upload never ends (even though the cgi-bin on the server has set the 404 status and terminated already) i've wiresharked this and it shows, that the apache doesn't actually send out the http error code, until the curlputtest is aborted. i'm guessing that the testcase for some reason doesn't even give the webserver a chance to send its answer in this upload mode without determined content-size. when uploading an actual file, it does work just fine, so this is already kind of a minimal example and can't really be more simplified i guess :( cheers, fraxinas version info libcurl/7.29.0 OpenSSL/1.0.1e zlib/1.2.7 libssh2/1.4.3 --- Sent from sourceforge.net because you indicated interest in <https://sourceforge.net/p/curl/bugs/1210/> To unsubscribe from further messages, please visit <https://sourceforge.net/auth/subscriptions/>Received on 2013-04-29 These mail archives are generated by hypermail. |
Page updated January 05, 2012.
web site info