/* * Bittorrent Client using Qt and libtorrent. * Copyright (C) 2016 Alexandr Milovantsev * * 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 2 * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * In addition, as a special exception, the copyright holders give permission to * link this program with the OpenSSL project's "OpenSSL" library (or with * modified versions of it that use the same license as the "OpenSSL" library), * and distribute the linked executables. You must obey the GNU General Public * License in all respects for all of the code used other than "OpenSSL". If you * modify file(s), you may extend this exception to your version of the file(s), * but you are not obligated to do so. If you do not wish to do so, delete this * exception statement from your version. */ #include "net.h" #include #include #include namespace Utils { namespace Net { bool isValidIP(const QString &ip) { return !QHostAddress(ip).isNull(); } Subnet parseSubnet(const QString &subnetStr, bool *ok) { const Subnet invalid = qMakePair(QHostAddress(), -1); const Subnet subnet = QHostAddress::parseSubnet(subnetStr); if (ok) *ok = (subnet != invalid); return subnet; } bool canParseSubnet(const QString &subnetStr) { bool ok = false; parseSubnet(subnetStr, &ok); return ok; } bool isLoopbackAddress(const QHostAddress &addr) { return (addr == QHostAddress::LocalHost) || (addr == QHostAddress::LocalHostIPv6) || (addr == QHostAddress(QLatin1String("::ffff:127.0.0.1"))); } bool isIPInRange(const QHostAddress &addr, const QList &subnets) { QHostAddress protocolEquivalentAddress; bool addrConversionOk = false; if (addr.protocol() == QAbstractSocket::IPv4Protocol) { // always succeeds protocolEquivalentAddress = QHostAddress(addr.toIPv6Address()); addrConversionOk = true; } else { // only succeeds when addr is an ipv4-mapped ipv6 address protocolEquivalentAddress = QHostAddress(addr.toIPv4Address(&addrConversionOk)); } for (const Subnet &subnet : subnets) if (addr.isInSubnet(subnet) || (addrConversionOk && protocolEquivalentAddress.isInSubnet(subnet))) return true; return false; } QString subnetToString(const Subnet &subnet) { return subnet.first.toString() + '/' + QString::number(subnet.second); } QList loadSSLCertificate(const QByteArray &data) { const QList certs {QSslCertificate::fromData(data)}; if (std::any_of(certs.cbegin(), certs.cend(), [](const QSslCertificate &c) { return c.isNull(); })) return {}; return certs; } bool isSSLCertificatesValid(const QByteArray &data) { return !loadSSLCertificate(data).isEmpty(); } QSslKey loadSSLKey(const QByteArray &data) { // try different formats QSslKey key {data, QSsl::Rsa}; if (!key.isNull()) return key; return QSslKey(data, QSsl::Ec); } bool isSSLKeyValid(const QByteArray &data) { return !loadSSLKey(data).isNull(); } } }