/* 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-2019 SChernykh * Copyright 2016-2019 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/io/json/Json.h" #include "base/io/json/JsonChain.h" #include "base/io/log/backends/ConsoleLog.h" #include "base/io/log/backends/FileLog.h" #include "base/io/log/Log.h" #include "base/io/Watcher.h" #include "base/kernel/Base.h" #include "base/kernel/interfaces/IBaseListener.h" #include "base/kernel/Platform.h" #include "base/kernel/Process.h" #include "core/config/Config.h" #include "core/config/ConfigTransform.h" #ifdef HAVE_SYSLOG_H # include "base/io/log/backends/SysLog.h" #endif #ifdef XMRIG_FEATURE_API # include "base/api/Api.h" # include "base/api/interfaces/IApiRequest.h" namespace xmrig { static const char *kConfigPathV1 = "/1/config"; static const char *kConfigPathV2 = "/2/config"; } // namespace xmrig #endif #ifdef XMRIG_FEATURE_EMBEDDED_CONFIG # include "core/config/Config_default.h" #endif namespace xmrig { class BasePrivate { public: XMRIG_DISABLE_COPY_MOVE_DEFAULT(BasePrivate) inline BasePrivate(Process *process) : config(load(process)) {} inline ~BasePrivate() { # ifdef XMRIG_FEATURE_API delete api; # endif delete config; delete watcher; } inline bool read(const JsonChain &chain, std::unique_ptr &config) { config = std::unique_ptr(new Config()); return config->read(chain, chain.fileName()); } inline void replace(Config *newConfig) { Config *previousConfig = config; config = newConfig; for (IBaseListener *listener : listeners) { listener->onConfigChanged(config, previousConfig); } delete previousConfig; } Api *api = nullptr; Config *config = nullptr; std::vector listeners; Watcher *watcher = nullptr; private: inline Config *load(Process *process) { JsonChain chain; ConfigTransform transform; std::unique_ptr config; ConfigTransform::load(chain, process, transform); if (read(chain, config)) { return config.release(); } chain.addFile(process->location(Process::ExeLocation, "config.json")); if (read(chain, config)) { return config.release(); } # ifdef XMRIG_FEATURE_EMBEDDED_CONFIG chain.addRaw(default_config); if (read(chain, config)) { return config.release(); } # endif return nullptr; } }; } // namespace xmrig xmrig::Base::Base(Process *process) : d_ptr(new BasePrivate(process)) { } xmrig::Base::~Base() { delete d_ptr; } bool xmrig::Base::isReady() const { return d_ptr->config != nullptr; } int xmrig::Base::init() { # ifdef XMRIG_FEATURE_API d_ptr->api = new Api(this); d_ptr->api->addListener(this); # endif Platform::init(config()->userAgent()); if (isBackground()) { Log::setBackground(true); } else { Log::add(new ConsoleLog()); } if (config()->logFile()) { Log::add(new FileLog(config()->logFile())); } # ifdef HAVE_SYSLOG_H if (config()->isSyslog()) { Log::add(new SysLog()); } # endif return 0; } void xmrig::Base::start() { # ifdef XMRIG_FEATURE_API api()->start(); # endif if (config()->isShouldSave()) { config()->save(); } if (config()->isWatch()) { d_ptr->watcher = new Watcher(config()->fileName(), this); } } void xmrig::Base::stop() { # ifdef XMRIG_FEATURE_API api()->stop(); # endif delete d_ptr->watcher; d_ptr->watcher = nullptr; } xmrig::Api *xmrig::Base::api() const { assert(d_ptr->api != nullptr); return d_ptr->api; } bool xmrig::Base::isBackground() const { return d_ptr->config && d_ptr->config->isBackground(); } bool xmrig::Base::reload(const rapidjson::Value &json) { JsonReader reader(json); if (reader.isEmpty()) { return false; } auto config = new Config(); if (!config->read(reader, d_ptr->config->fileName())) { delete config; return false; } const bool saved = config->save(); if (config->isWatch() && d_ptr->watcher && saved) { delete config; return true; } d_ptr->replace(config); return true; } xmrig::Config *xmrig::Base::config() const { assert(d_ptr->config != nullptr); return d_ptr->config; } void xmrig::Base::addListener(IBaseListener *listener) { d_ptr->listeners.push_back(listener); } void xmrig::Base::onFileChanged(const String &fileName) { LOG_WARN("\"%s\" was changed, reloading configuration", fileName.data()); JsonChain chain; chain.addFile(fileName); auto config = new Config(); if (!config->read(chain, chain.fileName())) { LOG_ERR("reloading failed"); delete config; return; } d_ptr->replace(config); } #ifdef XMRIG_FEATURE_API void xmrig::Base::onRequest(IApiRequest &request) { if (request.method() == IApiRequest::METHOD_GET) { if (request.url() == kConfigPathV1 || request.url() == kConfigPathV2) { if (request.isRestricted()) { return request.done(403); } request.accept(); config()->getJSON(request.doc()); } } else if (request.method() == IApiRequest::METHOD_PUT || request.method() == IApiRequest::METHOD_POST) { if (request.url() == kConfigPathV1 || request.url() == kConfigPathV2) { request.accept(); if (!reload(request.json())) { return request.done(400); } request.done(204); } } } #endif