2017-06-10 04:05:00 +00:00
|
|
|
/* XMRig
|
|
|
|
* Copyright 2010 Jeff Garzik <jgarzik@pobox.com>
|
|
|
|
* Copyright 2012-2014 pooler <pooler@litecoinpool.org>
|
|
|
|
* Copyright 2014 Lucas Jones <https://github.com/lucasjones>
|
|
|
|
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet>
|
|
|
|
* Copyright 2016 Jay D Dee <jayddee246@gmail.com>
|
2018-03-06 10:06:07 +00:00
|
|
|
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
|
|
|
|
* Copyright 2018 Lee Clagett <https://github.com/vtnerd>
|
|
|
|
* Copyright 2016-2018 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
2017-06-10 04:05:00 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-06-10 06:41:08 +00:00
|
|
|
#include <thread>
|
2017-06-10 04:05:00 +00:00
|
|
|
|
2017-06-10 06:41:08 +00:00
|
|
|
|
2018-04-03 07:51:05 +00:00
|
|
|
#include "crypto/CryptoNight_test.h"
|
2018-04-02 19:55:28 +00:00
|
|
|
#include "workers/CpuThread.h"
|
2017-06-10 04:05:00 +00:00
|
|
|
#include "workers/SingleWorker.h"
|
2017-06-10 06:41:08 +00:00
|
|
|
#include "workers/Workers.h"
|
2017-06-10 04:05:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
SingleWorker::SingleWorker(Handle *handle)
|
|
|
|
: Worker(handle)
|
|
|
|
{
|
|
|
|
}
|
2017-06-10 06:41:08 +00:00
|
|
|
|
|
|
|
|
2018-04-03 07:51:05 +00:00
|
|
|
bool SingleWorker::start()
|
2017-06-10 06:41:08 +00:00
|
|
|
{
|
2018-04-03 07:51:05 +00:00
|
|
|
if (!selfTest()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-19 01:28:59 +00:00
|
|
|
while (Workers::sequence() > 0) {
|
2017-06-11 03:52:23 +00:00
|
|
|
if (Workers::isPaused()) {
|
|
|
|
do {
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(200));
|
|
|
|
}
|
|
|
|
while (Workers::isPaused());
|
|
|
|
|
2017-07-23 06:36:30 +00:00
|
|
|
if (Workers::sequence() == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-06-11 03:52:23 +00:00
|
|
|
consumeJob();
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!Workers::isOutdated(m_sequence)) {
|
2017-06-12 04:18:14 +00:00
|
|
|
if ((m_count & 0xF) == 0) {
|
|
|
|
storeStats();
|
|
|
|
}
|
|
|
|
|
2017-06-11 07:58:46 +00:00
|
|
|
m_count++;
|
|
|
|
*m_job.nonce() = ++m_result.nonce;
|
2017-06-11 03:52:23 +00:00
|
|
|
|
2018-04-02 19:55:28 +00:00
|
|
|
m_thread->fn(m_job.variant())(m_job.blob(), m_job.size(), m_result.result, m_ctx);
|
|
|
|
if (*reinterpret_cast<uint64_t*>(m_result.result + 24) < m_job.target()) {
|
2017-06-11 07:58:46 +00:00
|
|
|
Workers::submit(m_result);
|
|
|
|
}
|
2017-06-11 03:52:23 +00:00
|
|
|
|
2017-06-13 16:58:31 +00:00
|
|
|
std::this_thread::yield();
|
2017-06-11 03:52:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
consumeJob();
|
|
|
|
}
|
2018-04-03 07:51:05 +00:00
|
|
|
|
|
|
|
return true;
|
2017-06-11 03:52:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-03 00:34:23 +00:00
|
|
|
bool SingleWorker::resume(const Job &job)
|
|
|
|
{
|
2017-10-04 20:33:30 +00:00
|
|
|
if (m_job.poolId() == -1 && job.poolId() >= 0 && job.id() == m_paused.id()) {
|
2017-07-03 00:34:23 +00:00
|
|
|
m_job = m_paused;
|
|
|
|
m_result = m_job;
|
|
|
|
m_result.nonce = *m_job.nonce();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-11 03:52:23 +00:00
|
|
|
|
2018-04-03 07:51:05 +00:00
|
|
|
bool SingleWorker::selfTest()
|
|
|
|
{
|
|
|
|
if (m_thread->fn(xmrig::VARIANT_NONE) == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_thread->fn(xmrig::VARIANT_NONE)(test_input, 76, m_result.result, m_ctx);
|
|
|
|
|
|
|
|
if (m_thread->algorithm() == xmrig::CRYPTONIGHT && memcmp(m_result.result, test_output_v0, 32) == 0) {
|
|
|
|
m_thread->fn(xmrig::VARIANT_V1)(test_input, 76, m_result.result, m_ctx);
|
|
|
|
|
|
|
|
return memcmp(m_result.result, test_output_v1, 32) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# ifndef XMRIG_NO_AEON
|
|
|
|
if (m_thread->algorithm() == xmrig::CRYPTONIGHT_LITE && memcmp(m_result.result, test_output_v0_lite, 32) == 0) {
|
|
|
|
m_thread->fn(xmrig::VARIANT_V1)(test_input, 76, m_result.result, m_ctx);
|
|
|
|
|
|
|
|
return memcmp(m_result.result, test_output_v1_lite, 32) == 0;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-11 03:52:23 +00:00
|
|
|
void SingleWorker::consumeJob()
|
|
|
|
{
|
2017-07-03 00:34:23 +00:00
|
|
|
Job job = Workers::job();
|
2017-06-11 03:52:23 +00:00
|
|
|
m_sequence = Workers::sequence();
|
2017-07-10 18:42:28 +00:00
|
|
|
if (m_job == job) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-11 03:52:23 +00:00
|
|
|
|
2017-07-03 00:34:23 +00:00
|
|
|
save(job);
|
|
|
|
|
|
|
|
if (resume(job)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_job = std::move(job);
|
|
|
|
m_result = m_job;
|
2017-06-11 07:58:46 +00:00
|
|
|
|
2017-07-01 19:37:27 +00:00
|
|
|
if (m_job.isNicehash()) {
|
2018-04-02 08:03:56 +00:00
|
|
|
m_result.nonce = (*m_job.nonce() & 0xff000000U) + (0xffffffU / m_totalWays * m_id);
|
2017-06-11 07:58:46 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-04-02 08:03:56 +00:00
|
|
|
m_result.nonce = 0xffffffffU / m_totalWays * m_id;
|
2017-06-11 07:58:46 +00:00
|
|
|
}
|
2017-06-10 06:41:08 +00:00
|
|
|
}
|
2017-07-03 00:34:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
void SingleWorker::save(const Job &job)
|
|
|
|
{
|
|
|
|
if (job.poolId() == -1 && m_job.poolId() >= 0) {
|
|
|
|
m_paused = m_job;
|
|
|
|
}
|
|
|
|
}
|