2007-04-25 20:57:13 +02:00
|
|
|
/*
|
|
|
|
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2007-2018, Arvid Norberg
|
2007-04-25 20:57:13 +02:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libtorrent/http_stream.hpp"
|
2015-03-15 00:10:20 +01:00
|
|
|
#include "libtorrent/aux_/escape_string.hpp" // for base64encode
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/socket_io.hpp"
|
2007-04-25 20:57:13 +02:00
|
|
|
|
2016-05-25 06:31:52 +02:00
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
using namespace std::placeholders;
|
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
2007-04-25 20:57:13 +02:00
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
void http_stream::name_lookup(error_code const& e, tcp::resolver::iterator i
|
2016-11-20 04:56:34 +01:00
|
|
|
, handler_type& h)
|
2007-04-25 20:57:13 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (handle_error(e, h)) return;
|
2007-04-25 20:57:13 +02:00
|
|
|
|
2016-05-25 06:31:52 +02:00
|
|
|
m_sock.async_connect(i->endpoint(), std::bind(
|
2016-11-20 04:56:34 +01:00
|
|
|
&http_stream::connected, this, _1, std::move(h)));
|
2007-04-25 20:57:13 +02:00
|
|
|
}
|
|
|
|
|
2016-11-20 04:56:34 +01:00
|
|
|
void http_stream::connected(error_code const& e, handler_type& h)
|
2007-04-25 20:57:13 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (handle_error(e, h)) return;
|
2007-04-25 20:57:13 +02:00
|
|
|
|
|
|
|
using namespace libtorrent::detail;
|
|
|
|
|
|
|
|
if (m_no_connect)
|
|
|
|
{
|
|
|
|
std::vector<char>().swap(m_buffer);
|
2016-11-20 04:56:34 +01:00
|
|
|
h(e);
|
2007-04-25 20:57:13 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// send CONNECT
|
2016-09-09 21:02:20 +02:00
|
|
|
std::back_insert_iterator<std::vector<char>> p(m_buffer);
|
2017-05-13 03:46:45 +02:00
|
|
|
std::string const endpoint = print_endpoint(m_remote_endpoint);
|
2010-08-03 11:08:37 +02:00
|
|
|
write_string("CONNECT " + endpoint + " HTTP/1.0\r\n", p);
|
2007-04-25 20:57:13 +02:00
|
|
|
if (!m_user.empty())
|
|
|
|
{
|
|
|
|
write_string("Proxy-Authorization: Basic " + base64encode(
|
|
|
|
m_user + ":" + m_password) + "\r\n", p);
|
|
|
|
}
|
|
|
|
write_string("\r\n", p);
|
2015-06-06 07:22:53 +02:00
|
|
|
async_write(m_sock, boost::asio::buffer(m_buffer)
|
2016-11-20 04:56:34 +01:00
|
|
|
, std::bind(&http_stream::handshake1, this, _1, std::move(h)));
|
2007-04-25 20:57:13 +02:00
|
|
|
}
|
|
|
|
|
2016-11-20 04:56:34 +01:00
|
|
|
void http_stream::handshake1(error_code const& e, handler_type& h)
|
2007-04-25 20:57:13 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (handle_error(e, h)) return;
|
2007-04-25 20:57:13 +02:00
|
|
|
|
|
|
|
// read one byte from the socket
|
|
|
|
m_buffer.resize(1);
|
2015-06-06 07:22:53 +02:00
|
|
|
async_read(m_sock, boost::asio::buffer(m_buffer)
|
2016-11-20 04:56:34 +01:00
|
|
|
, std::bind(&http_stream::handshake2, this, _1, std::move(h)));
|
2007-04-25 20:57:13 +02:00
|
|
|
}
|
|
|
|
|
2016-11-20 04:56:34 +01:00
|
|
|
void http_stream::handshake2(error_code const& e, handler_type& h)
|
2007-04-25 20:57:13 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (handle_error(e, h)) return;
|
2007-04-25 20:57:13 +02:00
|
|
|
|
2017-01-15 00:53:25 +01:00
|
|
|
std::size_t const read_pos = m_buffer.size();
|
2007-04-25 20:57:13 +02:00
|
|
|
// look for \n\n and \r\n\r\n
|
|
|
|
// both of which means end of http response header
|
|
|
|
bool found_end = false;
|
|
|
|
if (m_buffer[read_pos - 1] == '\n' && read_pos > 2)
|
|
|
|
{
|
|
|
|
if (m_buffer[read_pos - 2] == '\n')
|
|
|
|
{
|
|
|
|
found_end = true;
|
|
|
|
}
|
|
|
|
else if (read_pos > 4
|
|
|
|
&& m_buffer[read_pos - 2] == '\r'
|
|
|
|
&& m_buffer[read_pos - 3] == '\n'
|
|
|
|
&& m_buffer[read_pos - 4] == '\r')
|
|
|
|
{
|
|
|
|
found_end = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found_end)
|
|
|
|
{
|
|
|
|
m_buffer.push_back(0);
|
2017-09-29 18:08:26 +02:00
|
|
|
char const* status = std::strchr(m_buffer.data(), ' ');
|
2016-07-09 22:26:26 +02:00
|
|
|
if (status == nullptr)
|
2007-04-25 20:57:13 +02:00
|
|
|
{
|
2016-11-20 04:56:34 +01:00
|
|
|
h(boost::asio::error::operation_not_supported);
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2007-12-28 20:26:26 +01:00
|
|
|
close(ec);
|
2007-04-25 20:57:13 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
status++;
|
2017-09-29 18:08:26 +02:00
|
|
|
int const code = std::atoi(status);
|
2007-04-25 20:57:13 +02:00
|
|
|
if (code != 200)
|
|
|
|
{
|
2016-11-20 04:56:34 +01:00
|
|
|
h(boost::asio::error::operation_not_supported);
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2007-12-28 20:26:26 +01:00
|
|
|
close(ec);
|
2007-04-25 20:57:13 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-20 04:56:34 +01:00
|
|
|
h(e);
|
2007-04-25 20:57:13 +02:00
|
|
|
std::vector<char>().swap(m_buffer);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// read another byte from the socket
|
|
|
|
m_buffer.resize(read_pos + 1);
|
2017-01-15 00:53:25 +01:00
|
|
|
async_read(m_sock, boost::asio::buffer(m_buffer.data() + read_pos, 1)
|
2016-11-20 04:56:34 +01:00
|
|
|
, std::bind(&http_stream::handshake2, this, _1, std::move(h)));
|
2007-04-25 20:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|