HttpConnection.cc 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #include "HttpConnection.h"
  36. #include "DlRetryEx.h"
  37. #include "Util.h"
  38. #include "Base64.h"
  39. #include "message.h"
  40. #include "prefs.h"
  41. #include "LogFactory.h"
  42. #include <sstream>
  43. HttpConnection::HttpConnection(int cuid,
  44. const SocketHandle& socket,
  45. const Option* op):
  46. cuid(cuid), socket(socket), option(op), headerBufLength(0) {
  47. logger = LogFactory::getInstance();
  48. }
  49. string HttpConnection::eraseConfidentialInfo(const string& request)
  50. {
  51. istringstream istr(request);
  52. ostringstream ostr;
  53. string line;
  54. while(getline(istr, line)) {
  55. if(Util::startsWith(line, "Authorization: Basic")) {
  56. ostr << "Authorization: Basic ********\n";
  57. } else if(Util::startsWith(line, "Proxy-Authorization: Basic")) {
  58. ostr << "Proxy-Authorization: Basic ********\n";
  59. } else {
  60. ostr << line << "\n";
  61. }
  62. }
  63. return ostr.str();
  64. }
  65. void HttpConnection::sendRequest(const HttpRequestHandle& httpRequest)
  66. {
  67. string request = httpRequest->createRequest();
  68. logger->info(MSG_SENDING_REQUEST, cuid, eraseConfidentialInfo(request).c_str());
  69. socket->writeData(request.c_str(), request.size());
  70. outstandingHttpRequests.push_back(httpRequest);
  71. }
  72. void HttpConnection::sendProxyRequest(const HttpRequestHandle& httpRequest)
  73. {
  74. string request = httpRequest->createProxyRequest();
  75. logger->info(MSG_SENDING_REQUEST, cuid, eraseConfidentialInfo(request).c_str());
  76. socket->writeData(request.c_str(), request.size());
  77. outstandingHttpRequests.push_back(httpRequest);
  78. }
  79. int HttpConnection::findEndOfHeader(const char* buf, const char* substr, int bufLength) const {
  80. const char* p = buf;
  81. while(bufLength > p-buf && bufLength-(p-buf) >= (int)strlen(substr)) {
  82. if(memcmp(p, substr, strlen(substr)) == 0) {
  83. return p-buf;
  84. }
  85. p++;
  86. }
  87. return -1;
  88. }
  89. HttpResponseHandle HttpConnection::receiveResponse() {
  90. //char buf[512];
  91. string header;
  92. int delimiterSwitch = 0;
  93. char* delimiters[] = { "\r\n", "\n" };
  94. int size = HEADERBUF_SIZE-headerBufLength;
  95. if(size < 0) {
  96. // TODO too large header
  97. throw new DlRetryEx("too large header > 4096");
  98. }
  99. socket->peekData(headerBuf+headerBufLength, size);
  100. if(size == 0) {
  101. throw new DlRetryEx(EX_INVALID_RESPONSE);
  102. }
  103. //buf[size] = '\0';
  104. int hlenTemp = headerBufLength+size;
  105. //header += buf;
  106. //string::size_type p;
  107. int eohIndex;
  108. if((eohIndex = findEndOfHeader(headerBuf, "\r\n\r\n", hlenTemp)) == -1 &&
  109. (eohIndex = findEndOfHeader(headerBuf, "\n\n", hlenTemp)) == -1) {
  110. socket->readData(headerBuf+headerBufLength, size);
  111. headerBufLength += size;
  112. } else {
  113. if(headerBuf[eohIndex] == '\n') {
  114. // for crapping non-standard HTTP server
  115. delimiterSwitch = 1;
  116. } else {
  117. delimiterSwitch = 0;
  118. }
  119. headerBuf[eohIndex+strlen(delimiters[delimiterSwitch])*2] = '\0';
  120. header = headerBuf;
  121. size = eohIndex+strlen(delimiters[delimiterSwitch])*2-headerBufLength;
  122. socket->readData(headerBuf+headerBufLength, size);
  123. }
  124. if(!Util::endsWith(header, "\r\n\r\n") && !Util::endsWith(header, "\n\n")) {
  125. return 0;
  126. }
  127. // OK, we got all headers.
  128. logger->info(MSG_RECEIVE_RESPONSE, cuid, header.c_str());
  129. string::size_type p, np;
  130. p = np = 0;
  131. np = header.find(delimiters[delimiterSwitch], p);
  132. if(np == string::npos) {
  133. throw new DlRetryEx(EX_NO_STATUS_HEADER);
  134. }
  135. // check HTTP status value
  136. if(header.size() <= 12) {
  137. throw new DlRetryEx(EX_NO_STATUS_HEADER);
  138. }
  139. string status = header.substr(9, 3);
  140. p = np+2;
  141. HttpHeaderHandle httpHeader = new HttpHeader();
  142. // retreive status name-value pairs, then push these into map
  143. while((np = header.find(delimiters[delimiterSwitch], p)) != string::npos && np != p) {
  144. string line = header.substr(p, np-p);
  145. p = np+2;
  146. pair<string, string> hp;
  147. Util::split(hp, line, ':');
  148. httpHeader->put(hp.first, hp.second);
  149. }
  150. HttpResponseHandle httpResponse = new HttpResponse();
  151. httpResponse->setCuid(cuid);
  152. httpResponse->setStatus(strtol(status.c_str(), 0, 10));
  153. httpResponse->setHttpHeader(httpHeader);
  154. httpResponse->setHttpRequest(outstandingHttpRequests.front());
  155. outstandingHttpRequests.pop_front();
  156. return httpResponse;
  157. }