/* 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 2018 Lee Clagett * 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 #include #include "base/net/stratum/Job.h" #include "base/tools/Buffer.h" xmrig::Job::Job(bool nicehash, const Algorithm &algorithm, const String &clientId) : m_algorithm(algorithm), m_nicehash(nicehash), m_clientId(clientId) { } bool xmrig::Job::isEqual(const Job &other) const { return m_id == other.m_id && m_clientId == other.m_clientId && memcmp(m_blob, other.m_blob, sizeof(m_blob)) == 0; } bool xmrig::Job::setBlob(const char *blob) { if (!blob) { return false; } m_size = strlen(blob); if (m_size % 2 != 0) { return false; } m_size /= 2; if (m_size < 76 || m_size >= sizeof(m_blob)) { return false; } if (!Buffer::fromHex(blob, m_size * 2, m_blob)) { return false; } if (*nonce() != 0 && !m_nicehash) { m_nicehash = true; } # ifdef XMRIG_PROXY_PROJECT memset(m_rawBlob, 0, sizeof(m_rawBlob)); memcpy(m_rawBlob, blob, m_size * 2); # endif return true; } bool xmrig::Job::setSeedHash(const char *hash) { if (!hash || (strlen(hash) != kMaxSeedSize * 2)) { return false; } # ifdef XMRIG_PROXY_PROJECT m_rawSeedHash = hash; # endif m_seed = Buffer::fromHex(hash, kMaxSeedSize * 2); return !m_seed.isEmpty(); } bool xmrig::Job::setTarget(const char *target) { if (!target) { return false; } const size_t len = strlen(target); if (len <= 8) { uint32_t tmp = 0; char str[8]; memcpy(str, target, len); if (!Buffer::fromHex(str, 8, reinterpret_cast(&tmp)) || tmp == 0) { return false; } m_target = 0xFFFFFFFFFFFFFFFFULL / (0xFFFFFFFFULL / static_cast(tmp)); } else if (len <= 16) { m_target = 0; char str[16]; memcpy(str, target, len); if (!Buffer::fromHex(str, 16, reinterpret_cast(&m_target)) || m_target == 0) { return false; } } else { return false; } # ifdef XMRIG_PROXY_PROJECT memset(m_rawTarget, 0, sizeof(m_rawTarget)); memcpy(m_rawTarget, target, len); # endif m_diff = toDiff(m_target); return true; } void xmrig::Job::setDiff(uint64_t diff) { m_diff = diff; m_target = toDiff(diff); # ifdef XMRIG_PROXY_PROJECT Buffer::toHex(reinterpret_cast(&m_target), 8, m_rawTarget); m_rawTarget[16] = '\0'; # endif } void xmrig::Job::copy(const Job &other) { m_algorithm = other.m_algorithm; m_nicehash = other.m_nicehash; m_size = other.m_size; m_clientId = other.m_clientId; m_id = other.m_id; m_backend = other.m_backend; m_diff = other.m_diff; m_height = other.m_height; m_target = other.m_target; m_index = other.m_index; m_seed = other.m_seed; m_extraNonce = other.m_extraNonce; m_poolWallet = other.m_poolWallet; memcpy(m_blob, other.m_blob, sizeof(m_blob)); # ifdef XMRIG_PROXY_PROJECT m_rawSeedHash = other.m_rawSeedHash; memcpy(m_rawBlob, other.m_rawBlob, sizeof(m_rawBlob)); memcpy(m_rawTarget, other.m_rawTarget, sizeof(m_rawTarget)); # endif # ifdef XMRIG_FEATURE_BENCHMARK m_benchSize = other.m_benchSize; # endif } void xmrig::Job::move(Job &&other) { m_algorithm = other.m_algorithm; m_nicehash = other.m_nicehash; m_size = other.m_size; m_clientId = std::move(other.m_clientId); m_id = std::move(other.m_id); m_backend = other.m_backend; m_diff = other.m_diff; m_height = other.m_height; m_target = other.m_target; m_index = other.m_index; m_seed = std::move(other.m_seed); m_extraNonce = std::move(other.m_extraNonce); m_poolWallet = std::move(other.m_poolWallet); memcpy(m_blob, other.m_blob, sizeof(m_blob)); other.m_size = 0; other.m_diff = 0; other.m_algorithm = Algorithm::INVALID; # ifdef XMRIG_PROXY_PROJECT m_rawSeedHash = std::move(other.m_rawSeedHash); memcpy(m_rawBlob, other.m_rawBlob, sizeof(m_rawBlob)); memcpy(m_rawTarget, other.m_rawTarget, sizeof(m_rawTarget)); # endif # ifdef XMRIG_FEATURE_BENCHMARK m_benchSize = other.m_benchSize; # endif }