1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
|
/*
* Worldvisions Weaver Software:
* Copyright (C) 1997-2002 Net Integration Technologies, Inc.
*
* A fast, easy-to-use, parallelizing, pipelining HTTP/1.1 file retriever.
*
* See wvhttppool.h.
*/
#include "wvhttppool.h"
#include "wvtcp.h"
#include "wvsslstream.h"
#include "wvbuf.h"
#include "wvbase64.h"
#include "strutils.h"
#ifdef HAVE_EXECINFO_H
#include <execinfo.h> // FIXME: add a WvCrash feature for explicit dumps
#endif
#ifdef _WIN32
#define ETIMEDOUT WSAETIMEDOUT
#endif
WvHttpStream::WvHttpStream(const WvIPPortAddr &_remaddr, WvStringParm _username,
bool _ssl, WvIPPortAddrTable &_pipeline_incompatible)
: WvUrlStream(_remaddr, _username, WvString("HTTP %s", _remaddr)),
pipeline_incompatible(_pipeline_incompatible),
in_doneurl(false)
{
log("Opening server connection.\n");
http_response = "";
encoding = Unknown;
bytes_remaining = 0;
in_chunk_trailer = false;
pipeline_test_count = 0;
last_was_pipeline_test = false;
enable_pipelining = global_enable_pipelining
&& !pipeline_incompatible[target.remaddr];
ssl = _ssl;
if (ssl)
cloned = new WvSSLStream(static_cast<WvFDStream*>(cloned));
sent_url_request = false;
alarm(60000); // timeout if no connection, or something goes wrong
}
WvHttpStream::~WvHttpStream()
{
log(WvLog::Debug2, "Deleting.\n");
#if 0
#ifdef HAVE_EXECINFO_H
void* trace[10];
int count = backtrace(trace, sizeof(trace)/sizeof(trace[0]));
char** tracedump = backtrace_symbols(trace, count);
log(WvLog::Debug, "TRACE");
for (int i = 0; i < count; ++i)
log(WvLog::Debug, ":%s", tracedump[i]);
log(WvLog::Debug, "\n");
free(tracedump);
#endif
#endif
if (geterr())
log("Error was: %s\n", errstr());
close();
}
void WvHttpStream::close()
{
log("close called\n");
#if 0
#ifdef HAVE_EXECINFO_H
void *trace[10];
int count = backtrace(trace, sizeof(trace)/sizeof(trace[0]));
char** tracedump = backtrace_symbols(trace, count);
log(WvLog::Debug, "TRACE");
for (int i = 0; i < count; ++i)
log(WvLog::Debug, ":%s", tracedump[i]);
log(WvLog::Debug, "\n");
free(tracedump);
#endif
#endif
// assume pipelining is broken if we're closing without doing at least
// one successful pipelining test and a following non-test request.
if (enable_pipelining && max_requests > 1
&& (pipeline_test_count < 1
|| (pipeline_test_count == 1 && last_was_pipeline_test)))
pipelining_is_broken(2);
if (isok())
log("Closing.\n");
WvStreamClone::close();
if (geterr())
{
// if there was an error, count the first URL as done. This prevents
// retrying indefinitely.
WvUrlRequest *msgurl = curl;
if (!msgurl && !urls.isempty())
msgurl = urls.first();
if (!msgurl && !waiting_urls.isempty())
msgurl = waiting_urls.first();
if (msgurl)
{
log("URL '%s' is FAILED (%s (%s))\n", msgurl->url, geterr(),
errstr());
curl = msgurl;
doneurl();
}
}
waiting_urls.zap();
if (curl)
{
log("curl is %s\n", curl->url);
doneurl();
}
log("close done\n");
}
void WvHttpStream::doneurl()
{
// There is a slight chance that we might receive an error during or just before
// this function is called, which means that the write occuring during
// start_pipeline_test() would be called, which would call close() because of the
// error, which would call doneurl() again. We don't want to execute doneurl()
// a second time when we're already in the middle.
if (in_doneurl)
return;
in_doneurl = true;
assert(curl != NULL);
WvString last_response(http_response);
log("Done URL: %s\n", curl->url);
http_response = "";
encoding = Unknown;
in_chunk_trailer = false;
bytes_remaining = 0;
last_was_pipeline_test = curl->pipeline_test;
bool broken = false;
if (last_was_pipeline_test)
{
pipeline_test_count++;
if (pipeline_test_count == 1)
start_pipeline_test(&curl->url);
else if (pipeline_test_response != last_response)
{
// getting a bit late in the game to be detecting brokenness :(
// However, if the response code isn't the same for both tests,
// something's definitely screwy.
pipelining_is_broken(4);
broken = true;
}
pipeline_test_response = last_response;
}
assert(curl == urls.first());
curl->done();
curl = NULL;
sent_url_request = false;
urls.unlink_first();
if (broken)
close();
request_next();
in_doneurl = false;
}
static WvString encode64(WvStringParm user, WvStringParm password)
{
WvBase64Encoder encoder;
WvString ret;
encoder.flushstrstr(WvString("%s:%s", user, password), ret);
return ret;
}
static WvString fixnl(WvStringParm nonl)
{
WvDynBuf b;
const char *cptr;
for (cptr = nonl; cptr && *cptr; cptr++)
{
if (*cptr == '\r')
continue;
else if (*cptr == '\n')
b.put("\r", 1); // put BOTH \r and \n
b.put(cptr, 1);
}
return b.getstr();
}
WvString WvHttpStream::request_str(WvUrlRequest *url, bool keepalive)
{
WvString request;
WvString auth("");
if(!!url->url.getuser() && !!url->url.getpassword())
auth = WvString("Authorization: Basic %s\n",
encode64(url->url.getuser(), url->url.getpassword()));
request = fixnl(
WvString(
"%s %s HTTP/1.1\n"
"Host: %s:%s\n"
"Connection: %s\n"
"%s"
"%s"
"%s%s"
"\n",
url->method,
url->url.getfile(),
url->url.gethost(), url->url.getport(),
keepalive ? "keep-alive" : "close",
auth,
(putstream_data.used() > 0 ? WvString(
"Content-Length: %s\n", putstream_data.used()) : ""),
trim_string(url->headers.edit()),
!!url->headers ? "\n" : ""));
return request;
}
void WvHttpStream::send_request(WvUrlRequest *url)
{
request_count++;
log("Request #%s: %s\n", request_count, url->url);
write(request_str(url, url->pipeline_test
|| request_count < max_requests));
write(putstream_data);
sent_url_request = true;
alarm(60000);
}
void WvHttpStream::start_pipeline_test(WvUrl *url)
{
WvUrl location(WvString(
"%s://%s:%s/wvhttp-pipeline-check-should-not-exist/",
url->getproto(), url->gethost(), url->getport()));
WvUrlRequest *testurl = new WvUrlRequest(location, "HEAD", "", NULL,
false, true);
testurl->instream = this;
send_request(testurl);
urls.append(testurl, true, "sent_running_url");
}
void WvHttpStream::request_next()
{
// Clear the putstream buffer before we start any new requests
putstream_data.zap();
// don't do a request if we've done too many already or we have none
// waiting.
if (request_count >= max_requests || waiting_urls.isempty())
return;
// don't do more than one request at a time if we're not pipelining.
if (!enable_pipelining && !urls.isempty())
return;
// okay then, we really do want to send a new request.
WvUrlRequest *url = waiting_urls.first();
waiting_urls.unlink_first();
if (!url->putstream)
{
if (enable_pipelining && !request_count && max_requests > 1)
start_pipeline_test(&url->url);
send_request(url);
}
urls.append(url, false, "sent_running_url");
}
void WvHttpStream::pipelining_is_broken(int why)
{
if (!pipeline_incompatible[target.remaddr])
{
pipeline_incompatible.add(new WvIPPortAddr(target.remaddr), true);
log("Pipelining is broken on this server (%s)! Disabling.\n", why);
}
}
void WvHttpStream::pre_select(SelectInfo &si)
{
SelectRequest oldwant = si.wants;
WvUrlRequest *url;
WvUrlStream::pre_select(si);
if (!urls.isempty())
{
url = urls.first();
if(url && url->putstream)
url->putstream->pre_select(si);
}
si.wants = oldwant;
}
bool WvHttpStream::post_select(SelectInfo &si)
{
SelectRequest oldwant = si.wants;
WvUrlRequest *url;
if (WvUrlStream::post_select(si))
return true;
if (!urls.isempty())
{
url = urls.first();
if(url && url->putstream && url->putstream->post_select(si))
return true;
}
si.wants = oldwant;
return false;
}
void WvHttpStream::execute()
{
char buf[1024], *line;
size_t len;
WvStreamClone::execute();
// make connections timeout after some idleness
if (alarm_was_ticking)
{
log(WvLog::Debug4, "urls count: %s\n", urls.count());
if (!urls.isempty())
{
seterr(ETIMEDOUT);
// Must check again here since seterr()
// will close our stream and if we only
// had one url then it'll be gone.
if (!urls.isempty())
{
WvUrlRequest *url = urls.first();
if (url->outstream)
url->outstream->seterr(ETIMEDOUT);
}
}
else
close(); // timed out, but not really an error
return;
}
// Die if somebody closed our outstream. This is so that if we were
// downloading a really big file, they can stop it in the middle and
// our next url request can start downloading immediately.
if (curl && !curl->outstream)
{
if (!(encoding == PostHeadInfinity
|| encoding == PostHeadChunked
|| encoding == PostHeadStream))
{
// don't complain about pipelining failures
pipeline_test_count++;
last_was_pipeline_test = false;
close();
}
if (curl)
doneurl();
return;
}
else if (curl)
curl->inuse = true;
if(!sent_url_request && !urls.isempty())
{
WvUrlRequest *url = urls.first();
if(url)
{
if(url->putstream)
{
int len = 0;
if(url->putstream->isok())
len = url->putstream->read(putstream_data, 1024);
if(!url->putstream->isok() || len == 0)
{
url->putstream = NULL;
send_request(url);
}
}
}
}
if (!curl)
{
// in the header section
line = getline();
if (line)
{
line = trim_string(line);
log(WvLog::Debug4, "Header: '%s'\n", line);
if (!http_response)
{
http_response = line;
// there are never two pipeline test requests in a row, so
// a second response string exactly like the pipeline test
// response implies that everything between the first and
// second test requests was lost: bad!
if (last_was_pipeline_test
&& http_response == pipeline_test_response)
{
pipelining_is_broken(1);
close();
return;
}
// http response #400 is "invalid request", which we
// shouldn't be sending. If we get one of these right after
// a test, it probably means the stuff that came after it
// was mangled in some way during transmission ...and we
// should throw it away.
if (last_was_pipeline_test && !!http_response)
{
const char *cptr = strchr(http_response, ' ');
if (cptr && atoi(cptr+1) == 400)
{
pipelining_is_broken(3);
close();
return;
}
}
}
if (urls.isempty())
{
log("got unsolicited data.\n");
seterr("unsolicited data from server!");
return;
}
if (!strncasecmp(line, "Content-length: ", 16))
{
bytes_remaining = atoi(line+16);
encoding = ContentLength;
}
else if (!strncasecmp(line, "Transfer-Encoding: ", 19)
&& strstr(line+19, "chunked"))
{
encoding = Chunked;
}
if (line[0])
{
char *p;
WvBufUrlStream *outstream = urls.first()->outstream;
if ((p = strchr(line, ':')) != NULL)
{
*p = 0;
p = trim_string(p+1);
if (outstream) {
struct WvHTTPHeader *h;
h = new struct WvHTTPHeader(line, p);
outstream->headers.add(h, true);
}
}
else if (strncasecmp(line, "HTTP/", 5) == 0)
{
char *p = strchr(line, ' ');
if (p)
{
*p = 0;
if (outstream)
{
outstream->version = line+5;
outstream->status = atoi(p+1);
}
}
}
}
else
{
// blank line is the beginning of data section
curl = urls.first();
in_chunk_trailer = false;
log(WvLog::Debug4,
"Starting data: %s (enc=%s)\n", bytes_remaining, encoding);
if (encoding == Unknown)
encoding = Infinity; // go until connection closes itself
if (curl->method == "HEAD")
{
log("Got all headers.\n");
if (!enable_pipelining)
doneurl();
if (encoding == Infinity)
encoding = PostHeadInfinity;
else if (encoding == Chunked)
encoding = PostHeadChunked;
else
encoding = PostHeadStream;
}
}
}
}
else if (encoding == PostHeadInfinity
|| encoding == PostHeadChunked
|| encoding == PostHeadStream)
{
WvDynBuf chkbuf;
len = read(chkbuf, 5);
// If there is more data available right away, and it isn't an
// HTTP header from another request, then it's a stupid web
// server that likes to send bodies with HEAD requests.
if (len && strncmp(reinterpret_cast<const char *>(chkbuf.peek(0, 5)),
"HTTP/", 5))
{
if (encoding == PostHeadInfinity)
encoding = ChuckInfinity;
else if (encoding == PostHeadChunked)
encoding = ChuckChunked;
else if (encoding == PostHeadStream)
encoding = ChuckStream;
else
log(WvLog::Warning, "WvHttpStream: inconsistent state.\n");
}
else
doneurl();
unread(chkbuf, len);
}
else if (encoding == ChuckInfinity)
{
len = read(buf, sizeof(buf));
if (len)
log(WvLog::Debug5, "Chucking %s bytes.\n", len);
if (!isok())
doneurl();
}
else if (encoding == ChuckChunked && !bytes_remaining)
{
encoding = Chunked;
}
else if (encoding == ChuckChunked || encoding == ChuckStream)
{
if (bytes_remaining > sizeof(buf))
len = read(buf, sizeof(buf));
else
len = read(buf, bytes_remaining);
bytes_remaining -= len;
if (len)
log(WvLog::Debug5,
"Chucked %s bytes (%s bytes left).\n", len, bytes_remaining);
if (!bytes_remaining && encoding == ContentLength)
doneurl();
if (bytes_remaining && !isok())
seterr("connection interrupted");
}
else if (encoding == Chunked && !bytes_remaining)
{
line = getline();
if (line)
{
line = trim_string(line);
if (in_chunk_trailer)
{
// in the trailer section of a chunked encoding
log(WvLog::Debug4, "Trailer: '%s'\n", line);
// a blank line means we're finally done!
if (!line[0])
doneurl();
}
else
{
// in the "length line" section of a chunked encoding
if (line[0])
{
bytes_remaining = (size_t)strtoul(line, NULL, 16);
if (!bytes_remaining)
in_chunk_trailer = true;
log(WvLog::Debug4, "Chunk length is %s ('%s').\n",
bytes_remaining, line);
}
}
}
}
else if (encoding == Infinity)
{
// just read data until the connection closes, and assume all was
// well. It sucks, but there's no way to tell if all the data arrived
// okay... that's why Chunked or ContentLength encoding is better.
len = read(buf, sizeof(buf));
if (!isok())
return;
if (len)
log(WvLog::Debug5, "Infinity: read %s bytes.\n", len);
if (curl && curl->outstream)
curl->outstream->write(buf, len);
if (!isok() && curl)
doneurl();
}
else // not chunked or currently in a chunk - read 'bytes_remaining' bytes.
{
// in the data section of a chunked or content-length encoding,
// with 'bytes_remaining' bytes of data left.
if (bytes_remaining > sizeof(buf))
len = read(buf, sizeof(buf));
else
len = read(buf, bytes_remaining);
if (!isok())
return;
bytes_remaining -= len;
if (len)
log(WvLog::Debug5,
"Read %s bytes (%s bytes left).\n", len, bytes_remaining);
if (curl && curl->outstream)
curl->outstream->write(buf, len);
if (!bytes_remaining && encoding == ContentLength && curl)
doneurl();
if (bytes_remaining && !isok())
seterr("connection interrupted");
if (!isok())
doneurl();
}
if (urls.isempty())
alarm(5000); // just wait a few seconds before closing connection
else
alarm(60000); // give the server a minute to respond, if we're waiting
}
|