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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
* 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.
*/
#pragma once
#include <string>
#include <map>
#include <optional>
#include <vector>
#include <inttypes.h>
#include <sys/un.h>
#include <signal.h>
#include <pthread.h>
#include "iputils.hh"
#include "dnsname.hh"
#include "sholder.hh"
#include <atomic>
extern GlobalStateHolder<SuffixMatchNode> g_dontThrottleNames;
extern GlobalStateHolder<NetmaskGroup> g_dontThrottleNetmasks;
/** this class is used both to send and answer channel commands to the PowerDNS Recursor */
class RecursorControlChannel
{
public:
RecursorControlChannel();
~RecursorControlChannel();
int listen(const std::string& filename);
void connect(const std::string& path, const std::string& filename);
uint64_t getStat(const std::string& name);
struct Answer
{
Answer& operator+=(const Answer& rhs)
{
if (d_ret == 0 && rhs.d_ret != 0) {
d_ret = rhs.d_ret;
}
d_str += rhs.d_str;
return *this;
}
int d_ret{0};
std::string d_str;
};
void send(int remote, const Answer&, unsigned int timeout = 5, int fd_to_pass = -1);
RecursorControlChannel::Answer recv(int fd, unsigned int timeout = 5);
int d_fd;
static std::atomic<bool> stop;
private:
struct sockaddr_un d_local;
};
class RecursorControlParser
{
public:
RecursorControlParser()
{
}
static void nop(void) {}
typedef void func_t(void);
RecursorControlChannel::Answer getAnswer(int s, const std::string& question, func_t** func);
};
enum class StatComponent
{
API,
Carbon,
RecControl,
SNMP
};
struct StatsMapEntry
{
std::string d_prometheusName;
std::string d_value;
};
class PrefixDashNumberCompare
{
private:
static std::pair<std::string, std::string> prefixAndTrailingNum(const std::string& a);
public:
bool operator()(const std::string& a, const std::string& b) const;
};
typedef std::map<std::string, StatsMapEntry, PrefixDashNumberCompare> StatsMap;
StatsMap getAllStatsMap(StatComponent component);
struct CarbonConfig
{
std::string hostname;
std::string instance_name;
std::string namespace_name;
std::vector<std::string> servers;
};
extern GlobalStateHolder<CarbonConfig> g_carbonConfig;
std::vector<std::pair<DNSName, uint16_t>>* pleaseGetQueryRing();
std::vector<std::pair<DNSName, uint16_t>>* pleaseGetServfailQueryRing();
std::vector<std::pair<DNSName, uint16_t>>* pleaseGetBogusQueryRing();
std::vector<ComboAddress>* pleaseGetRemotes();
std::vector<ComboAddress>* pleaseGetServfailRemotes();
std::vector<ComboAddress>* pleaseGetBogusRemotes();
std::vector<ComboAddress>* pleaseGetLargeAnswerRemotes();
std::vector<ComboAddress>* pleaseGetTimeouts();
DNSName getRegisteredName(const DNSName& dom);
std::atomic<unsigned long>* getDynMetric(const std::string& str, const std::string& prometheusName);
std::optional<uint64_t> getStatByName(const std::string& name);
bool isStatDisabled(StatComponent component, const std::string& name);
void disableStat(StatComponent component, const string& name);
void disableStats(StatComponent component, const string& stats);
void registerAllStats();
void doExitGeneric(bool nicely);
void doExit();
void doExitNicely();
RecursorControlChannel::Answer doQueueReloadLuaScript(vector<string>::const_iterator begin, vector<string>::const_iterator end);
|