2017-04-15 06:02:08 +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>
|
|
|
|
* Copyright 2016-2017 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/>.
|
|
|
|
*/
|
|
|
|
|
2017-06-04 17:52:21 +00:00
|
|
|
|
2017-06-14 13:11:01 +00:00
|
|
|
#include <stdlib.h>
|
2017-06-04 17:52:21 +00:00
|
|
|
#include <uv.h>
|
|
|
|
|
|
|
|
|
2017-08-31 01:30:59 +00:00
|
|
|
#include "api/Api.h"
|
2017-06-04 17:52:21 +00:00
|
|
|
#include "App.h"
|
2017-07-23 05:35:26 +00:00
|
|
|
#include "Console.h"
|
2017-06-07 21:10:26 +00:00
|
|
|
#include "Cpu.h"
|
2017-06-08 06:47:25 +00:00
|
|
|
#include "crypto/CryptoNight.h"
|
2017-06-22 11:41:34 +00:00
|
|
|
#include "log/ConsoleLog.h"
|
2017-06-23 00:12:46 +00:00
|
|
|
#include "log/FileLog.h"
|
2017-06-22 11:41:34 +00:00
|
|
|
#include "log/Log.h"
|
2017-06-09 12:09:21 +00:00
|
|
|
#include "Mem.h"
|
2017-06-04 17:52:21 +00:00
|
|
|
#include "net/Network.h"
|
|
|
|
#include "Options.h"
|
2017-08-15 00:04:46 +00:00
|
|
|
#include "Platform.h"
|
2017-06-07 22:16:45 +00:00
|
|
|
#include "Summary.h"
|
2017-06-04 17:52:21 +00:00
|
|
|
#include "version.h"
|
2017-06-10 06:41:08 +00:00
|
|
|
#include "workers/Workers.h"
|
2017-06-04 17:52:21 +00:00
|
|
|
|
|
|
|
|
2017-06-24 23:04:59 +00:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
|
|
|
# include "log/SysLog.h"
|
|
|
|
#endif
|
|
|
|
|
2017-08-30 23:28:33 +00:00
|
|
|
#ifndef XMRIG_NO_HTTPD
|
|
|
|
# include "api/Httpd.h"
|
|
|
|
#endif
|
|
|
|
|
2017-06-24 23:04:59 +00:00
|
|
|
|
2017-06-13 10:20:15 +00:00
|
|
|
App *App::m_self = nullptr;
|
2017-06-04 17:52:21 +00:00
|
|
|
|
2017-06-13 10:20:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
App::App(int argc, char **argv) :
|
2017-07-23 05:35:26 +00:00
|
|
|
m_console(nullptr),
|
2017-08-30 23:28:33 +00:00
|
|
|
m_httpd(nullptr),
|
2017-06-13 10:20:15 +00:00
|
|
|
m_network(nullptr),
|
|
|
|
m_options(nullptr)
|
2017-06-04 17:52:21 +00:00
|
|
|
{
|
2017-06-13 10:20:15 +00:00
|
|
|
m_self = this;
|
|
|
|
|
2017-06-19 21:55:55 +00:00
|
|
|
Cpu::init();
|
2017-06-19 07:58:28 +00:00
|
|
|
m_options = Options::parse(argc, argv);
|
2017-08-04 18:47:43 +00:00
|
|
|
if (!m_options) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-19 07:58:28 +00:00
|
|
|
|
2017-06-22 11:41:34 +00:00
|
|
|
Log::init();
|
|
|
|
|
|
|
|
if (!m_options->background()) {
|
|
|
|
Log::add(new ConsoleLog(m_options->colors()));
|
2017-07-23 06:36:30 +00:00
|
|
|
m_console = new Console(this);
|
2017-06-22 11:41:34 +00:00
|
|
|
}
|
2017-06-07 21:10:26 +00:00
|
|
|
|
2017-06-23 00:12:46 +00:00
|
|
|
if (m_options->logFile()) {
|
|
|
|
Log::add(new FileLog(m_options->logFile()));
|
|
|
|
}
|
|
|
|
|
2017-06-24 23:04:59 +00:00
|
|
|
# ifdef HAVE_SYSLOG_H
|
|
|
|
if (m_options->syslog()) {
|
|
|
|
Log::add(new SysLog());
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2017-08-16 10:19:14 +00:00
|
|
|
Platform::init(m_options->userAgent());
|
2017-08-15 05:19:55 +00:00
|
|
|
Platform::setProcessPriority(m_options->priority());
|
2017-08-15 00:04:46 +00:00
|
|
|
|
2017-06-04 17:52:21 +00:00
|
|
|
m_network = new Network(m_options);
|
2017-06-10 04:05:00 +00:00
|
|
|
|
2018-01-04 04:38:32 +00:00
|
|
|
uv_signal_init(uv_default_loop(), &m_sigHUP);
|
|
|
|
uv_signal_init(uv_default_loop(), &m_sigINT);
|
|
|
|
uv_signal_init(uv_default_loop(), &m_sigTERM);
|
2017-06-04 17:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
App::~App()
|
|
|
|
{
|
2017-08-30 23:28:33 +00:00
|
|
|
uv_tty_reset_mode();
|
|
|
|
|
2017-09-02 09:12:40 +00:00
|
|
|
# ifndef XMRIG_NO_HTTPD
|
2017-08-30 23:28:33 +00:00
|
|
|
delete m_httpd;
|
2017-09-02 09:12:40 +00:00
|
|
|
# endif
|
|
|
|
|
2017-07-23 05:35:26 +00:00
|
|
|
delete m_console;
|
2017-06-04 17:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-12 13:19:07 +00:00
|
|
|
int App::exec()
|
2017-06-04 17:52:21 +00:00
|
|
|
{
|
2017-08-04 18:47:43 +00:00
|
|
|
if (!m_options) {
|
2018-01-20 05:58:43 +00:00
|
|
|
return 2;
|
2017-06-04 17:52:21 +00:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:38:32 +00:00
|
|
|
uv_signal_start(&m_sigHUP, App::onSignal, SIGHUP);
|
|
|
|
uv_signal_start(&m_sigINT, App::onSignal, SIGINT);
|
|
|
|
uv_signal_start(&m_sigTERM, App::onSignal, SIGTERM);
|
2017-06-13 10:20:15 +00:00
|
|
|
|
|
|
|
background();
|
|
|
|
|
2017-06-19 07:58:28 +00:00
|
|
|
if (!CryptoNight::init(m_options->algo(), m_options->algoVariant())) {
|
|
|
|
LOG_ERR("\"%s\" hash self-test failed.", m_options->algoName());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-16 11:21:12 +00:00
|
|
|
Mem::allocate(m_options->algo(), m_options->threads(), m_options->doubleHash(), m_options->hugePages());
|
2017-06-07 22:16:45 +00:00
|
|
|
Summary::print();
|
|
|
|
|
2017-09-02 09:12:40 +00:00
|
|
|
# ifndef XMRIG_NO_API
|
2017-08-31 01:30:59 +00:00
|
|
|
Api::start();
|
2017-09-02 09:12:40 +00:00
|
|
|
# endif
|
2017-08-31 01:30:59 +00:00
|
|
|
|
2017-08-30 23:28:33 +00:00
|
|
|
# ifndef XMRIG_NO_HTTPD
|
|
|
|
m_httpd = new Httpd(m_options->apiPort(), m_options->apiToken());
|
|
|
|
m_httpd->start();
|
|
|
|
# endif
|
|
|
|
|
2017-08-15 05:19:55 +00:00
|
|
|
Workers::start(m_options->affinity(), m_options->priority());
|
2017-06-10 04:05:00 +00:00
|
|
|
|
2017-06-04 17:52:21 +00:00
|
|
|
m_network->connect();
|
|
|
|
|
|
|
|
const int r = uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
|
|
|
uv_loop_close(uv_default_loop());
|
|
|
|
|
2017-08-15 00:04:46 +00:00
|
|
|
delete m_network;
|
2017-06-13 10:20:15 +00:00
|
|
|
|
2017-08-15 00:04:46 +00:00
|
|
|
Options::release();
|
2017-06-14 13:11:01 +00:00
|
|
|
Mem::release();
|
2017-08-15 00:04:46 +00:00
|
|
|
Platform::release();
|
2017-06-14 13:11:01 +00:00
|
|
|
|
2017-06-04 17:52:21 +00:00
|
|
|
return r;
|
|
|
|
}
|
2017-06-13 10:20:15 +00:00
|
|
|
|
|
|
|
|
2017-07-23 06:36:30 +00:00
|
|
|
void App::onConsoleCommand(char command)
|
|
|
|
{
|
|
|
|
switch (command) {
|
|
|
|
case 'h':
|
|
|
|
case 'H':
|
|
|
|
Workers::printHashrate(true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
case 'P':
|
2018-01-10 15:55:45 +00:00
|
|
|
if (Workers::isEnabled()) {
|
|
|
|
LOG_INFO(m_options->colors() ? "\x1B[01;33mpaused\x1B[0m, press \x1B[01;35mr\x1B[0m to resume" : "paused, press 'r' to resume");
|
|
|
|
Workers::setEnabled(false);
|
|
|
|
}
|
2017-07-23 06:36:30 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
case 'R':
|
|
|
|
if (!Workers::isEnabled()) {
|
|
|
|
LOG_INFO(m_options->colors() ? "\x1B[01;32mresumed" : "resumed");
|
|
|
|
Workers::setEnabled(true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
LOG_WARN("Ctrl+C received, exiting");
|
|
|
|
close();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-13 10:20:15 +00:00
|
|
|
void App::close()
|
|
|
|
{
|
2017-07-18 02:20:36 +00:00
|
|
|
m_network->stop();
|
|
|
|
Workers::stop();
|
2017-07-19 01:28:59 +00:00
|
|
|
|
|
|
|
uv_stop(uv_default_loop());
|
2017-06-13 10:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void App::onSignal(uv_signal_t *handle, int signum)
|
|
|
|
{
|
|
|
|
switch (signum)
|
|
|
|
{
|
|
|
|
case SIGHUP:
|
|
|
|
LOG_WARN("SIGHUP received, exiting");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SIGTERM:
|
|
|
|
LOG_WARN("SIGTERM received, exiting");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SIGINT:
|
|
|
|
LOG_WARN("SIGINT received, exiting");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-07-19 01:28:59 +00:00
|
|
|
uv_signal_stop(handle);
|
2017-06-13 10:20:15 +00:00
|
|
|
m_self->close();
|
|
|
|
}
|