/* XMRig * Copyright 2010 Jeff Garzik * Copyright 2012-2014 pooler * Copyright 2014 Lucas Jones * Copyright 2014-2016 Wolf9466 * Copyright 2016 Jay D Dee * Copyright 2017-2018 XMR-Stak , * Copyright 2014-2019 heapwolf * Copyright 2018-2020 SChernykh * Copyright 2016-2020 XMRig , * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "base/net/http/HttpClient.h" #include "3rdparty/http-parser/http_parser.h" #include "base/io/log/Log.h" #include "base/kernel/Platform.h" #include "base/net/dns/Dns.h" #include "base/net/tools/NetBuffer.h" #include namespace xmrig { static const char *kCRLF = "\r\n"; } // namespace xmrig xmrig::HttpClient::HttpClient(FetchRequest &&req, const std::weak_ptr &listener) : HttpContext(HTTP_RESPONSE, listener), m_req(std::move(req)) { method = m_req.method; url = std::move(m_req.path); body = std::move(m_req.body); headers = std::move(m_req.headers); m_dns = new Dns(this); } xmrig::HttpClient::~HttpClient() { delete m_dns; } bool xmrig::HttpClient::connect() { return m_dns->resolve(m_req.host); } void xmrig::HttpClient::onResolved(const Dns &dns, int status) { this->status = status; if (status < 0 && dns.isEmpty()) { if (!isQuiet()) { LOG_ERR("[%s:%d] DNS error: \"%s\"", dns.host().data(), port(), uv_strerror(status)); } return; } sockaddr *addr = dns.get().addr(port()); auto req = new uv_connect_t; req->data = this; uv_tcp_connect(req, m_tcp, addr, onConnect); delete addr; } void xmrig::HttpClient::handshake() { headers.insert({ "Host", host() }); headers.insert({ "Connection", "close" }); headers.insert({ "User-Agent", Platform::userAgent() }); if (!body.empty()) { headers.insert({ "Content-Length", std::to_string(body.size()) }); } std::stringstream ss; ss << http_method_str(static_cast(method)) << " " << url << " HTTP/1.1" << kCRLF; for (auto &header : headers) { ss << header.first << ": " << header.second << kCRLF; } ss << kCRLF; headers.clear(); body.insert(0, ss.str()); write(std::move(body), false); } void xmrig::HttpClient::read(const char *data, size_t size) { if (parse(data, size) < size) { close(UV_EPROTO); } } void xmrig::HttpClient::onConnect(uv_connect_t *req, int status) { auto client = static_cast(req->data); delete req; if (!client) { return; } if (status < 0) { if (!client->isQuiet()) { LOG_ERR("[%s:%d] connect error: \"%s\"", client->m_dns->host().data(), client->port(), uv_strerror(status)); } return client->close(status); } uv_read_start(client->stream(), NetBuffer::onAlloc, [](uv_stream_t *tcp, ssize_t nread, const uv_buf_t *buf) { auto client = static_cast(tcp->data); if (nread >= 0) { client->read(buf->base, static_cast(nread)); } else { if (!client->isQuiet() && nread != UV_EOF) { LOG_ERR("[%s:%d] read error: \"%s\"", client->m_dns->host().data(), client->port(), uv_strerror(static_cast(nread))); } client->close(static_cast(nread)); } NetBuffer::release(buf); }); client->handshake(); }