/* 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 "net/Url.h" #ifdef _MSC_VER # define strncasecmp(x,y,z) _strnicmp(x,y,z) #endif Url::Url() : m_keepAlive(false), m_nicehash(false), m_host(nullptr), m_password(nullptr), m_user(nullptr), m_port(kDefaultPort) { } /** * @brief Parse url. * * Valid urls: * example.com * example.com:3333 * stratum+tcp://example.com * stratum+tcp://example.com:3333 * * @param url */ Url::Url(const char *url) : m_keepAlive(false), m_nicehash(false), m_host(nullptr), m_password(nullptr), m_user(nullptr), m_port(kDefaultPort) { parse(url); } Url::Url(const char *host, uint16_t port, const char *user, const char *password, bool keepAlive, bool nicehash) : m_keepAlive(keepAlive), m_nicehash(nicehash), m_password(password ? strdup(password) : nullptr), m_user(user ? strdup(user) : nullptr), m_port(port) { m_host = strdup(host); } Url::~Url() { free(m_host); free(m_password); free(m_user); } bool Url::isNicehash() const { return isValid() && (m_nicehash || strstr(m_host, ".nicehash.com")); } bool Url::parse(const char *url) { const char *p = strstr(url, "://"); const char *base = url; if (p) { if (strncasecmp(url, "stratum+tcp://", 14)) { return false; } base = url + 14; } if (!strlen(base) || *base == '/') { return false; } const char *port = strchr(base, ':'); if (!port) { m_host = strdup(base); return false; } const size_t size = port++ - base + 1; m_host = static_cast(malloc(size)); memcpy(m_host, base, size - 1); m_host[size - 1] = '\0'; m_port = strtol(port, nullptr, 10); return true; } bool Url::setUserpass(const char *userpass) { const char *p = strchr(userpass, ':'); if (!p) { return false; } free(m_user); free(m_password); m_user = static_cast(calloc(p - userpass + 1, 1)); strncpy(m_user, userpass, p - userpass); m_password = strdup(p + 1); return true; } void Url::setPassword(const char *password) { free(m_password); m_password = strdup(password); } void Url::setUser(const char *user) { free(m_user); m_user = strdup(user); } Url &Url::operator=(const Url *other) { m_keepAlive = other->m_keepAlive; m_nicehash = other->m_nicehash; m_port = other->m_port; free(m_host); m_host = strdup(other->m_host); setPassword(other->m_password); setUser(other->m_user); return *this; }