1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
/*
* This file is part of PowerDNS or dnsdist.
* Copyright -- PowerDNS.COM B.V. and its contributors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* In addition, for the avoidance of any doubt, permission is granted to
* link this program with OpenSSL and to (re)distribute the binaries
* produced as the result of such linking.
*
* 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.
*/
#include <fstream>
#include <stdexcept>
#include "dnsname.hh"
#include "logging.hh"
#include "misc.hh"
#include "pubsuffix.hh"
std::vector<std::vector<std::string>> g_pubs;
static bool initPublicSuffixList(const std::string& file, std::istream& stream, std::vector<std::vector<std::string>>& pbList)
{
try {
Regex reg("^[.0-9a-z-]*$");
std::string line;
while (std::getline(stream, line)) {
if (line.empty() || (line.rfind("//", 0) == 0)) {
/* skip empty and commented lines */
continue;
}
try {
line = toLower(line);
if (!reg.match(line)) {
continue;
}
DNSName name(line);
if (name.countLabels() < 2) {
continue;
}
pbList.emplace_back(name.labelReverse().getRawLabels());
}
catch (...) {
/* not a DNS name, ignoring */
continue;
}
}
if (file != "internal") {
g_slog->withName("runtime")->info(Logr::Info, "Loaded the Public Suffix List", "file", Logging::Loggable(file));
}
return true;
}
catch (const std::exception& e) {
g_slog->withName("runtime")->error(Logr::Error, e.what(), "Error while loading the Public Suffix List", "file", Logging::Loggable(file));
}
return false;
}
void initPublicSuffixList(const std::string& file)
{
bool loaded = false;
std::vector<std::vector<std::string>> pbList;
if (!file.empty()) {
try {
std::ifstream suffixFile(file);
if (!suffixFile.is_open()) {
throw std::runtime_error("Error opening the public suffix list file");
}
loaded = initPublicSuffixList(file, suffixFile, pbList);
}
catch (const std::exception& e) {
g_slog->withName("runtime")->error(Logr::Error, e.what(), "Error while loading the Public Suffix List", "file", Logging::Loggable(file));
}
}
if (!loaded) {
pbList.clear();
std::istringstream stream(g_pubsuffix);
initPublicSuffixList("internal", stream, pbList);
}
std::sort(pbList.begin(), pbList.end());
g_pubs = std::move(pbList);
}
|