/* 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 "3rdparty/http-parser/http_parser.h" #include "api/Httpd.h" #include "base/io/log/Log.h" #include "base/net/http/HttpRequest.h" #include "base/net/http/HttpApiResponse.h" #include "base/net/http/HttpServer.h" #include "base/net/tools/TcpServer.h" #include "core/Config.h" #include "core/Controller.h" namespace xmrig { static const char *kAuthorization = "authorization"; static const char *kContentType = "content-type"; } // namespace xmrig xmrig::Httpd::Httpd(Controller *controller) : m_controller(controller), m_http(nullptr), m_server(nullptr), m_port(0) { controller->addListener(this); } xmrig::Httpd::~Httpd() { } bool xmrig::Httpd::start() { const Http &config = m_controller->config()->http(); if (!config.isEnabled()) { return true; } m_http = new HttpServer(this); m_server = new TcpServer(config.host(), config.port(), m_http); const int rc = m_server->bind(); Log::print(GREEN_BOLD(" * ") WHITE_BOLD("%-13s") BLUE_BOLD("%s:%d") " " RED_BOLD("%s"), "HTTP API", config.host().data(), rc < 0 ? config.port() : rc, rc < 0 ? uv_strerror(rc) : "" ); if (rc < 0) { stop(); return false; } m_port = static_cast(rc); return true; } void xmrig::Httpd::stop() { delete m_server; delete m_http; m_server = nullptr; m_http = nullptr; m_port = 0; } void xmrig::Httpd::onConfigChanged(Config *config, Config *previousConfig) { if (config->http() == previousConfig->http()) { return; } stop(); start(); } void xmrig::Httpd::onHttpRequest(const HttpRequest &req) { if (req.method == HTTP_OPTIONS) { return HttpApiResponse(req.id()).end(); } if (req.method > 4) { return HttpApiResponse(req.id(), HTTP_STATUS_METHOD_NOT_ALLOWED).end(); } const int status = auth(req); if (status != HTTP_STATUS_OK) { return HttpApiResponse(req.id(), status).end(); } if (req.method != HTTP_GET) { if (m_controller->config()->http().isRestricted()) { return HttpApiResponse(req.id(), HTTP_STATUS_FORBIDDEN).end(); } if (!req.headers.count(kContentType) || req.headers.at(kContentType) != "application/json") { return HttpApiResponse(req.id(), HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE).end(); } } HttpApiResponse res(req.id()); res.end(); } int xmrig::Httpd::auth(const HttpRequest &req) const { const Http &config = m_controller->config()->http(); if (!req.headers.count(kAuthorization)) { return config.isAuthRequired() ? HTTP_STATUS_UNAUTHORIZED : HTTP_STATUS_OK; } if (config.token().isNull()) { return HTTP_STATUS_UNAUTHORIZED; } const std::string &token = req.headers.at(kAuthorization); const size_t size = token.size(); if (token.size() < 8 || config.token().size() != size - 7 || memcmp("Bearer ", token.c_str(), 7) != 0) { return HTTP_STATUS_FORBIDDEN; } return strncmp(config.token().data(), token.c_str() + 7, config.token().size()) == 0 ? HTTP_STATUS_OK : HTTP_STATUS_FORBIDDEN; }