/* 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 2019 Howard Chu * 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/stratum/DaemonClient.h" #include "3rdparty/http-parser/http_parser.h" #include "base/io/json/Json.h" #include "base/io/json/JsonRequest.h" #include "base/io/log/Log.h" #include "base/kernel/interfaces/IClientListener.h" #include "base/net/http/Fetch.h" #include "base/net/http/HttpData.h" #include "base/net/stratum/SubmitResult.h" #include "base/tools/Buffer.h" #include "base/tools/Timer.h" #include "net/JobResult.h" #include "rapidjson/document.h" #include "rapidjson/error/en.h" #include #include namespace xmrig { static const char *kBlocktemplateBlob = "blocktemplate_blob"; static const char *kGetHeight = "/getheight"; static const char *kGetInfo = "/getinfo"; static const char *kHash = "hash"; static const char *kHeight = "height"; static const char *kJsonRPC = "/json_rpc"; static const size_t BlobReserveSize = 8; } xmrig::DaemonClient::DaemonClient(int id, IClientListener *listener) : BaseClient(id, listener) { m_httpListener = std::make_shared(this); m_timer = new Timer(this); } xmrig::DaemonClient::~DaemonClient() { delete m_timer; } bool xmrig::DaemonClient::disconnect() { if (m_state != UnconnectedState) { setState(UnconnectedState); } return true; } bool xmrig::DaemonClient::isTLS() const { # ifdef XMRIG_FEATURE_TLS return m_pool.isTLS(); # else return false; # endif } int64_t xmrig::DaemonClient::submit(const JobResult &result) { if (result.jobId != (m_blocktemplate.data() + m_blocktemplate.size() - 32)) { return -1; } char *data = (m_apiVersion == API_DERO) ? m_blockhashingblob.data() : m_blocktemplate.data(); # ifdef XMRIG_PROXY_PROJECT memcpy(data + 78, result.nonce, 8); # else Buffer::toHex(reinterpret_cast(&result.nonce), 4, data + 78); # endif using namespace rapidjson; Document doc(kObjectType); Value params(kArrayType); if (m_apiVersion == API_DERO) { params.PushBack(m_blocktemplate.toJSON(), doc.GetAllocator()); params.PushBack(m_blockhashingblob.toJSON(), doc.GetAllocator()); } else { params.PushBack(m_blocktemplate.toJSON(), doc.GetAllocator()); } JsonRequest::create(doc, m_sequence, "submitblock", params); # ifdef XMRIG_PROXY_PROJECT m_results[m_sequence] = SubmitResult(m_sequence, result.diff, result.actualDiff(), result.id, 0); # else m_results[m_sequence] = SubmitResult(m_sequence, result.diff, result.actualDiff(), 0, result.backend); # endif return rpcSend(doc); } void xmrig::DaemonClient::connect() { if ((m_pool.algorithm() == Algorithm::ASTROBWT_DERO) || (m_pool.coin() == Coin::DERO)) { m_apiVersion = API_DERO; } setState(ConnectingState); getBlockTemplate(); } void xmrig::DaemonClient::connect(const Pool &pool) { setPool(pool); connect(); } void xmrig::DaemonClient::onHttpData(const HttpData &data) { if (data.status != HTTP_STATUS_OK) { return retry(); } m_ip = data.ip().c_str(); # ifdef XMRIG_FEATURE_TLS m_tlsVersion = data.tlsVersion(); m_tlsFingerprint = data.tlsFingerprint(); # endif rapidjson::Document doc; if (doc.Parse(data.body.c_str()).HasParseError()) { if (!isQuiet()) { LOG_ERR("[%s:%d] JSON decode failed: \"%s\"", m_pool.host().data(), m_pool.port(), rapidjson::GetParseError_En(doc.GetParseError())); } return retry(); } if (data.method == HTTP_GET) { if (data.url == kGetHeight) { if (!doc.HasMember(kHash)) { m_apiVersion = API_CRYPTONOTE_DEFAULT; return send(kGetInfo); } if (isOutdated(Json::getUint64(doc, kHeight), Json::getString(doc, kHash))) { getBlockTemplate(); } } else if (data.url == kGetInfo && isOutdated(Json::getUint64(doc, kHeight), Json::getString(doc, "top_block_hash"))) { getBlockTemplate(); } return; } if (!parseResponse(Json::getInt64(doc, "id", -1), Json::getObject(doc, "result"), Json::getObject(doc, "error"))) { retry(); } } void xmrig::DaemonClient::onTimer(const Timer *) { if (m_state == ConnectingState) { getBlockTemplate(); } else if (m_state == ConnectedState) { if (m_apiVersion == API_DERO) { rpcSend(JsonRequest::create(m_sequence, "get_info")); } else { send((m_apiVersion == API_MONERO) ? kGetHeight : kGetInfo); } } } bool xmrig::DaemonClient::isOutdated(uint64_t height, const char *hash) const { return m_job.height() != height || m_prevHash != hash; } bool xmrig::DaemonClient::parseJob(const rapidjson::Value ¶ms, int *code) { Job job(false, m_pool.algorithm(), String()); String blocktemplate = Json::getString(params, kBlocktemplateBlob); m_blockhashingblob = Json::getString(params, "blockhashing_blob"); if (m_apiVersion == API_DERO) { const uint64_t offset = Json::getUint64(params, "reserved_offset"); Buffer::toHex(Buffer::randomBytes(BlobReserveSize).data(), BlobReserveSize, m_blockhashingblob.data() + offset * 2); } if (blocktemplate.isNull() || !job.setBlob(m_blockhashingblob)) { *code = 4; return false; } job.setSeedHash(Json::getString(params, "seed_hash")); job.setHeight(Json::getUint64(params, kHeight)); job.setDiff(Json::getUint64(params, "difficulty")); job.setId(blocktemplate.data() + blocktemplate.size() - 32); if (m_pool.coin().isValid()) { job.setAlgorithm(m_pool.coin().algorithm(job.blob()[0])); } m_job = std::move(job); m_blocktemplate = std::move(blocktemplate); m_prevHash = Json::getString(params, "prev_hash"); if (m_apiVersion == API_DERO) { // Truncate to 32 bytes to have the same data as in get_info RPC if (m_prevHash.size() > 64) { m_prevHash.data()[64] = '\0'; } } if (m_state == ConnectingState) { setState(ConnectedState); } m_listener->onJobReceived(this, m_job, params); return true; } bool xmrig::DaemonClient::parseResponse(int64_t id, const rapidjson::Value &result, const rapidjson::Value &error) { if (id == -1) { return false; } if (error.IsObject()) { const char *message = error["message"].GetString(); if (!handleSubmitResponse(id, message) && !isQuiet()) { LOG_ERR("[%s:%d] error: " RED_BOLD("\"%s\"") RED_S ", code: %d", m_pool.host().data(), m_pool.port(), message, error["code"].GetInt()); } return false; } if (!result.IsObject()) { return false; } if (result.HasMember("top_block_hash")) { if (m_prevHash != Json::getString(result, "top_block_hash")) { getBlockTemplate(); } return true; } int code = -1; if (result.HasMember(kBlocktemplateBlob) && parseJob(result, &code)) { return true; } if (handleSubmitResponse(id)) { getBlockTemplate(); return true; } return false; } int64_t xmrig::DaemonClient::getBlockTemplate() { using namespace rapidjson; Document doc(kObjectType); auto &allocator = doc.GetAllocator(); Value params(kObjectType); params.AddMember("wallet_address", m_user.toJSON(), allocator); if (m_apiVersion == API_DERO) { params.AddMember("reserve_size", static_cast(BlobReserveSize), allocator); } else { params.AddMember("extra_nonce", Buffer::randomBytes(BlobReserveSize).toHex().toJSON(doc), allocator); } JsonRequest::create(doc, m_sequence, "getblocktemplate", params); return rpcSend(doc); } int64_t xmrig::DaemonClient::rpcSend(const rapidjson::Document &doc) { FetchRequest req(HTTP_POST, m_pool.host(), m_pool.port(), kJsonRPC, doc, m_pool.isTLS(), isQuiet()); fetch(std::move(req), m_httpListener); return m_sequence++; } void xmrig::DaemonClient::retry() { m_failures++; m_listener->onClose(this, static_cast(m_failures)); if (m_failures == -1) { return; } if (m_state == ConnectedState) { setState(ConnectingState); } m_timer->stop(); m_timer->start(m_retryPause, 0); } void xmrig::DaemonClient::send(const char *path) { FetchRequest req(HTTP_GET, m_pool.host(), m_pool.port(), path, m_pool.isTLS(), isQuiet()); fetch(std::move(req), m_httpListener); } void xmrig::DaemonClient::setState(SocketState state) { assert(m_state != state); if (m_state == state) { return; } m_state = state; switch (state) { case ConnectedState: { m_failures = 0; m_listener->onLoginSuccess(this); const uint64_t interval = std::max(20, m_pool.pollInterval()); m_timer->start(interval, interval); } break; case UnconnectedState: m_failures = -1; m_timer->stop(); break; default: break; } }