/* XMRig * Copyright 2010 Jeff Garzik * Copyright 2012-2014 pooler * Copyright 2014 Lucas Jones * Copyright 2014-2016 Wolf9466 * Copyright 2016 Jay D Dee * Copyright 2016-2017 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 #if _WIN32 # include "winsock2.h" #else # include "unistd.h" #endif #include "api/ApiState.h" #include "Cpu.h" #include "Mem.h" #include "net/Job.h" #include "Options.h" #include "Platform.h" #include "version.h" #include "workers/Hashrate.h" extern "C" { #include "crypto/c_keccak.h" } static inline double normalizeHs(double hashrate) { if (!std::isnormal(hashrate)) { return 0.0; } return std::floor(hashrate * 10.0) / 10.0; } ApiState::ApiState() { m_threads = Options::i()->threads(); m_hashrate = new double[m_threads * 3](); memset(m_totalHashrate, 0, sizeof(m_totalHashrate)); memset(m_workerId, 0, sizeof(m_workerId)); if (Options::i()->apiWorkerId()) { strncpy(m_workerId, Options::i()->apiWorkerId(), sizeof(m_workerId) - 1); } else { gethostname(m_workerId, sizeof(m_workerId) - 1); } genId(); } ApiState::~ApiState() { delete [] m_hashrate; } const char *ApiState::get(const char *url, size_t *size) const { json_t *reply = json_object(); getIdentify(reply); getMiner(reply); getHashrate(reply); return finalize(reply, size); } void ApiState::tick(const Hashrate *hashrate) { for (int i = 0; i < m_threads; ++i) { m_hashrate[i * 3] = normalizeHs(hashrate->calc((size_t) i, Hashrate::ShortInterval)); m_hashrate[i * 3 + 1] = normalizeHs(hashrate->calc((size_t) i, Hashrate::MediumInterval)); m_hashrate[i * 3 + 2] = normalizeHs(hashrate->calc((size_t) i, Hashrate::LargeInterval)); } m_totalHashrate[0] = normalizeHs(hashrate->calc(Hashrate::ShortInterval)); m_totalHashrate[1] = normalizeHs(hashrate->calc(Hashrate::MediumInterval)); m_totalHashrate[2] = normalizeHs(hashrate->calc(Hashrate::LargeInterval)); m_highestHashrate = normalizeHs(hashrate->highest()); } const char *ApiState::finalize(json_t *reply, size_t *size) const { *size = json_dumpb(reply, m_buf, sizeof(m_buf) - 1, JSON_INDENT(4) | JSON_REAL_PRECISION(15)); json_decref(reply); return m_buf; } void ApiState::genId() { memset(m_id, 0, sizeof(m_id)); uv_interface_address_t *interfaces; int count = 0; if (uv_interface_addresses(&interfaces, &count) < 0) { return; } for (int i = 0; i < count; i++) { if (!interfaces[i].is_internal && interfaces[i].address.address4.sin_family == AF_INET) { uint8_t hash[200]; keccak(reinterpret_cast(interfaces[i].phys_addr), static_cast(sizeof(interfaces[i].phys_addr)), hash, sizeof(hash)); Job::toHex(hash, 8, m_id); break; } } uv_free_interface_addresses(interfaces, count); } void ApiState::getHashrate(json_t *reply) const { json_t *hashrate = json_object(); json_t *threads = json_array(); json_t *total = json_array(); json_object_set(reply, "hashrate", hashrate); json_object_set(hashrate, "total", total); json_object_set(hashrate, "highest", json_real(m_highestHashrate)); json_object_set(hashrate, "threads", threads); for (int i = 0; i < m_threads * 3; i += 3) { json_t *thread = json_array(); json_array_append(thread, json_real(m_hashrate[i])); json_array_append(thread, json_real(m_hashrate[i + 1])); json_array_append(thread, json_real(m_hashrate[i + 2])); json_array_append(threads, thread); } for (int i = 0; i < 3; ++i) { json_array_append(total, json_real(m_totalHashrate[i])); } } void ApiState::getIdentify(json_t *reply) const { json_object_set(reply, "id", json_string(m_id)); json_object_set(reply, "worker_id", json_string(m_workerId)); } void ApiState::getMiner(json_t *reply) const { json_t *cpu = json_object(); json_object_set(reply, "version", json_string(APP_VERSION)); json_object_set(reply, "kind", json_string(APP_KIND)); json_object_set(reply, "ua", json_string(Platform::userAgent())); json_object_set(reply, "cpu", cpu); json_object_set(reply, "algo", json_string(Options::i()->algoName())); json_object_set(reply, "hugepages", json_boolean(Mem::isHugepagesEnabled())); json_object_set(reply, "donate", json_integer(Options::i()->donateLevel())); json_object_set(cpu, "brand", json_string(Cpu::brand())); json_object_set(cpu, "aes", json_boolean(Cpu::hasAES())); json_object_set(cpu, "x64", json_boolean(Cpu::isX64())); json_object_set(cpu, "sockets", json_integer(Cpu::sockets())); }