392 lines
11 KiB
C++
392 lines
11 KiB
C++
/* XMRig
|
|
* Copyright (c) 2018-2021 SChernykh <https://github.com/SChernykh>
|
|
* Copyright (c) 2016-2021 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <cinttypes>
|
|
#include <iomanip>
|
|
#include <sstream>
|
|
#include <stdexcept>
|
|
|
|
|
|
#include "base/net/stratum/EthStratumClient.h"
|
|
#include "3rdparty/libethash/endian.h"
|
|
#include "3rdparty/rapidjson/document.h"
|
|
#include "3rdparty/rapidjson/error/en.h"
|
|
#include "3rdparty/rapidjson/stringbuffer.h"
|
|
#include "3rdparty/rapidjson/writer.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 "net/JobResult.h"
|
|
|
|
|
|
xmrig::EthStratumClient::EthStratumClient(int id, const char *agent, IClientListener *listener) :
|
|
Client(id, agent, listener)
|
|
{
|
|
}
|
|
|
|
|
|
int64_t xmrig::EthStratumClient::submit(const JobResult& result)
|
|
{
|
|
# ifndef XMRIG_PROXY_PROJECT
|
|
if ((m_state != ConnectedState) || !m_authorized) {
|
|
return -1;
|
|
}
|
|
# endif
|
|
|
|
if (result.diff == 0) {
|
|
LOG_ERR("%s " RED("result.diff is 0"), tag());
|
|
close();
|
|
|
|
return -1;
|
|
}
|
|
|
|
using namespace rapidjson;
|
|
|
|
Document doc(kObjectType);
|
|
auto& allocator = doc.GetAllocator();
|
|
|
|
Value params(kArrayType);
|
|
params.PushBack(m_pool.user().toJSON(), allocator);
|
|
params.PushBack(result.jobId.toJSON(), allocator);
|
|
|
|
std::stringstream s;
|
|
s << "0x" << std::hex << std::setw(16) << std::setfill('0') << result.nonce;
|
|
params.PushBack(Value(s.str().c_str(), allocator), allocator);
|
|
|
|
s.str(std::string());
|
|
s << "0x";
|
|
for (size_t i = 0; i < 32; ++i) {
|
|
const uint32_t k = result.headerHash()[i];
|
|
s << std::hex << std::setw(2) << std::setfill('0') << k;
|
|
}
|
|
params.PushBack(Value(s.str().c_str(), allocator), allocator);
|
|
|
|
s.str(std::string());
|
|
s << "0x";
|
|
for (size_t i = 0; i < 32; ++i) {
|
|
const uint32_t k = result.mixHash()[i];
|
|
s << std::hex << std::setw(2) << std::setfill('0') << k;
|
|
}
|
|
params.PushBack(Value(s.str().c_str(), allocator), allocator);
|
|
|
|
JsonRequest::create(doc, m_sequence, "mining.submit", params);
|
|
|
|
uint64_t actual_diff = ethash_swap_u64(*((uint64_t*)result.result()));
|
|
actual_diff = actual_diff ? (uint64_t(-1) / actual_diff) : 0;
|
|
|
|
# ifdef XMRIG_PROXY_PROJECT
|
|
m_results[m_sequence] = SubmitResult(m_sequence, result.diff, actual_diff, result.id, 0);
|
|
# else
|
|
m_results[m_sequence] = SubmitResult(m_sequence, result.diff, actual_diff, 0, result.backend);
|
|
# endif
|
|
|
|
return send(doc);
|
|
}
|
|
|
|
|
|
void xmrig::EthStratumClient::login()
|
|
{
|
|
m_results.clear();
|
|
|
|
subscribe();
|
|
authorize();
|
|
}
|
|
|
|
|
|
void xmrig::EthStratumClient::onClose()
|
|
{
|
|
m_authorized = false;
|
|
Client::onClose();
|
|
}
|
|
|
|
|
|
bool xmrig::EthStratumClient::handleResponse(int64_t id, const rapidjson::Value &result, const rapidjson::Value &error)
|
|
{
|
|
auto it = m_callbacks.find(id);
|
|
if (it != m_callbacks.end()) {
|
|
const uint64_t elapsed = Chrono::steadyMSecs() - it->second.ts;
|
|
|
|
if (error.IsArray() || error.IsObject() || error.IsString()) {
|
|
it->second.callback(error, false, elapsed);
|
|
}
|
|
else {
|
|
it->second.callback(result, true, elapsed);
|
|
}
|
|
|
|
m_callbacks.erase(it);
|
|
|
|
return true;
|
|
}
|
|
|
|
return handleSubmitResponse(id, errorMessage(error));
|
|
}
|
|
|
|
|
|
void xmrig::EthStratumClient::parseNotification(const char *method, const rapidjson::Value ¶ms, const rapidjson::Value &)
|
|
{
|
|
if (strcmp(method, "mining.set_target") == 0) {
|
|
return;
|
|
}
|
|
|
|
if (strcmp(method, "mining.set_extranonce") == 0) {
|
|
if (!params.IsArray()) {
|
|
LOG_ERR("%s " RED("invalid mining.set_extranonce notification: params is not an array"), tag());
|
|
return;
|
|
}
|
|
|
|
auto arr = params.GetArray();
|
|
|
|
if (arr.Empty()) {
|
|
LOG_ERR("%s " RED("invalid mining.set_extranonce notification: params array is empty"), tag());
|
|
return;
|
|
}
|
|
|
|
setExtraNonce(arr[0]);
|
|
}
|
|
|
|
if (strcmp(method, "mining.notify") == 0) {
|
|
if (!params.IsArray()) {
|
|
LOG_ERR("%s " RED("invalid mining.notify notification: params is not an array"), tag());
|
|
return;
|
|
}
|
|
|
|
auto arr = params.GetArray();
|
|
|
|
if (arr.Size() < 6) {
|
|
LOG_ERR("%s " RED("invalid mining.notify notification: params array has wrong size"), tag());
|
|
return;
|
|
}
|
|
|
|
Job job;
|
|
job.setId(arr[0].GetString());
|
|
|
|
auto algo = m_pool.algorithm();
|
|
if (!algo.isValid()) {
|
|
algo = m_pool.coin().algorithm();
|
|
}
|
|
|
|
job.setAlgorithm(algo);
|
|
job.setExtraNonce(m_extraNonce.second);
|
|
|
|
std::stringstream s;
|
|
|
|
// header hash (32 bytes)
|
|
s << arr[1].GetString();
|
|
|
|
// nonce template (8 bytes)
|
|
for (uint64_t i = 0, k = m_extraNonce.first; i < sizeof(m_extraNonce.first); ++i, k >>= 8) {
|
|
s << std::hex << std::setw(2) << std::setfill('0') << (k & 0xFF);
|
|
}
|
|
|
|
std::string blob = s.str();
|
|
|
|
// zeros up to 76 bytes
|
|
blob.resize(76 * 2, '0');
|
|
job.setBlob(blob.c_str());
|
|
|
|
std::string target_str = arr[3].GetString();
|
|
target_str.resize(16, '0');
|
|
const uint64_t target = strtoull(target_str.c_str(), nullptr, 16);
|
|
job.setDiff(Job::toDiff(target));
|
|
|
|
job.setHeight(arr[5].GetUint64());
|
|
|
|
bool ok = true;
|
|
m_listener->onVerifyAlgorithm(this, algo, &ok);
|
|
|
|
if (!ok) {
|
|
if (!isQuiet()) {
|
|
LOG_ERR("[%s] incompatible/disabled algorithm \"%s\" detected, reconnect", url(), algo.name());
|
|
}
|
|
close();
|
|
return;
|
|
}
|
|
|
|
if (m_job != job) {
|
|
m_job = std::move(job);
|
|
|
|
// Workaround for nanopool.org, mining.notify received before mining.authorize response.
|
|
if (!m_authorized) {
|
|
m_authorized = true;
|
|
m_listener->onLoginSuccess(this);
|
|
}
|
|
|
|
m_listener->onJobReceived(this, m_job, params);
|
|
}
|
|
else {
|
|
if (!isQuiet()) {
|
|
LOG_WARN("%s " YELLOW("duplicate job received, reconnect"), tag());
|
|
}
|
|
close();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void xmrig::EthStratumClient::setExtraNonce(const rapidjson::Value &nonce)
|
|
{
|
|
if (!nonce.IsString()) {
|
|
throw std::runtime_error("invalid mining.subscribe response: extra nonce is not a string");
|
|
}
|
|
|
|
const char *s = nonce.GetString();
|
|
size_t len = nonce.GetStringLength();
|
|
|
|
// Skip "0x"
|
|
if ((len >= 2) && (s[0] == '0') && (s[1] == 'x')) {
|
|
s += 2;
|
|
len -= 2;
|
|
}
|
|
|
|
if (len & 1) {
|
|
throw std::runtime_error("invalid mining.subscribe response: extra nonce has an odd number of hex chars");
|
|
}
|
|
|
|
if (len > 8) {
|
|
throw std::runtime_error("Invalid mining.subscribe response: extra nonce is too long");
|
|
}
|
|
|
|
std::string extra_nonce_str(s);
|
|
extra_nonce_str.resize(16, '0');
|
|
|
|
LOG_DEBUG("[%s] extra nonce set to %s", url(), s);
|
|
|
|
m_extraNonce = { std::stoull(extra_nonce_str, nullptr, 16), s };
|
|
}
|
|
|
|
|
|
const char *xmrig::EthStratumClient::errorMessage(const rapidjson::Value &error)
|
|
{
|
|
if (error.IsArray() && error.GetArray().Size() > 1) {
|
|
auto &value = error.GetArray()[1];
|
|
if (value.IsString()) {
|
|
return value.GetString();
|
|
}
|
|
}
|
|
|
|
if (error.IsString()) {
|
|
return error.GetString();
|
|
}
|
|
|
|
if (error.IsObject()) {
|
|
return Json::getString(error, "message");
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
|
|
void xmrig::EthStratumClient::authorize()
|
|
{
|
|
using namespace rapidjson;
|
|
|
|
Document doc(kObjectType);
|
|
auto &allocator = doc.GetAllocator();
|
|
|
|
Value params(kArrayType);
|
|
params.PushBack(m_pool.user().toJSON(), allocator);
|
|
params.PushBack(m_pool.password().toJSON(), allocator);
|
|
|
|
JsonRequest::create(doc, m_sequence, "mining.authorize", params);
|
|
|
|
send(doc, [this](const rapidjson::Value& result, bool success, uint64_t elapsed) { onAuthorizeResponse(result, success, elapsed); });
|
|
}
|
|
|
|
|
|
void xmrig::EthStratumClient::onAuthorizeResponse(const rapidjson::Value &result, bool success, uint64_t)
|
|
{
|
|
try {
|
|
if (!success) {
|
|
const auto message = errorMessage(result);
|
|
if (message) {
|
|
throw std::runtime_error(message);
|
|
}
|
|
|
|
throw std::runtime_error("mining.authorize call failed");
|
|
}
|
|
|
|
if (!result.IsBool()) {
|
|
throw std::runtime_error("invalid mining.authorize response: result is not a boolean");
|
|
}
|
|
|
|
if (!result.GetBool()) {
|
|
throw std::runtime_error("login failed");
|
|
}
|
|
} catch (const std::exception &ex) {
|
|
LOG_ERR("%s " RED_BOLD("%s"), tag(), ex.what());
|
|
|
|
close();
|
|
return;
|
|
}
|
|
|
|
LOG_DEBUG("[%s] login succeeded", url());
|
|
|
|
if (!m_authorized) {
|
|
m_authorized = true;
|
|
m_listener->onLoginSuccess(this);
|
|
}
|
|
}
|
|
|
|
|
|
void xmrig::EthStratumClient::onSubscribeResponse(const rapidjson::Value &result, bool success, uint64_t)
|
|
{
|
|
if (!success) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
if (!result.IsArray()) {
|
|
throw std::runtime_error("invalid mining.subscribe response: result is not an array");
|
|
}
|
|
|
|
if (result.GetArray().Size() <= 1) {
|
|
throw std::runtime_error("invalid mining.subscribe response: result array is too short");
|
|
}
|
|
|
|
setExtraNonce(result.GetArray()[1]);
|
|
|
|
if (m_pool.isNicehash()) {
|
|
using namespace rapidjson;
|
|
Document doc(kObjectType);
|
|
Value params(kArrayType);
|
|
JsonRequest::create(doc, m_sequence, "mining.extranonce.subscribe", params);
|
|
send(doc);
|
|
}
|
|
} catch (const std::exception &ex) {
|
|
LOG_ERR("%s " RED("%s"), tag(), ex.what());
|
|
|
|
m_extraNonce = { 0, {} };
|
|
}
|
|
}
|
|
|
|
|
|
void xmrig::EthStratumClient::subscribe()
|
|
{
|
|
using namespace rapidjson;
|
|
|
|
Document doc(kObjectType);
|
|
auto &allocator = doc.GetAllocator();
|
|
|
|
Value params(kArrayType);
|
|
params.PushBack(StringRef(agent()), allocator);
|
|
|
|
JsonRequest::create(doc, m_sequence, "mining.subscribe", params);
|
|
|
|
send(doc, [this](const rapidjson::Value& result, bool success, uint64_t elapsed) { onSubscribeResponse(result, success, elapsed); });
|
|
}
|