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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
#include "snmp-agent.hh"
#include "misc.hh"
#include "threadname.hh"
#ifdef RECURSOR
#include "logger.hh"
#else
#include "dolog.hh"
#endif
#ifdef HAVE_NET_SNMP
#ifndef HAVE_SNMP_SELECT_INFO2
/* that's terrible, because it means we are going to have trouble with large
FD numbers at some point.. */
# define netsnmp_large_fd_set fd_set
# define snmp_read2 snmp_read
# define snmp_select_info2 snmp_select_info
# define netsnmp_large_fd_set_init(...)
# define netsnmp_large_fd_set_cleanup(...)
# define NETSNMP_LARGE_FD_SET FD_SET
# define NETSNMP_LARGE_FD_CLR FD_CLR
# define NETSNMP_LARGE_FD_ZERO FD_ZERO
# define NETSNMP_LARGE_FD_ISSET FD_ISSET
#else
# include <net-snmp/library/large_fd_set.h>
#endif
const oid SNMPAgent::snmpTrapOID[] = { 1, 3, 6, 1, 6, 3, 1, 1, 4, 1, 0 };
const size_t SNMPAgent::snmpTrapOIDLen = OID_LENGTH(SNMPAgent::snmpTrapOID);
int SNMPAgent::setCounter64Value(netsnmp_request_info* request,
uint64_t value)
{
struct counter64 val64;
val64.high = value >> 32;
val64.low = value & 0xffffffff;
snmp_set_var_typed_value(request->requestvb,
ASN_COUNTER64,
&val64,
sizeof(val64));
return SNMP_ERR_NOERROR;
}
bool SNMPAgent::sendTrap(int fd,
netsnmp_variable_list* varList)
{
ssize_t written = write(fd, &varList, sizeof(varList));
if (written != sizeof(varList)) {
snmp_free_varbind(varList);
return false;
}
return true;
}
void SNMPAgent::handleTrapsEvent()
{
netsnmp_variable_list* varList = nullptr;
ssize_t got = 0;
do {
got = read(d_trapPipe[0], &varList, sizeof(varList));
if (got == sizeof(varList)) {
send_v2trap(varList);
snmp_free_varbind(varList);
}
}
while (got > 0);
}
void SNMPAgent::handleSNMPQueryEvent(int fd)
{
netsnmp_large_fd_set fdset;
netsnmp_large_fd_set_init(&fdset, FD_SETSIZE);
NETSNMP_LARGE_FD_ZERO(&fdset);
NETSNMP_LARGE_FD_SET(fd, &fdset);
snmp_read2(&fdset);
}
void SNMPAgent::handleTrapsCB(int fd, FDMultiplexer::funcparam_t& var)
{
SNMPAgent** agent = boost::any_cast<SNMPAgent*>(&var);
if (!agent || !*agent)
throw std::runtime_error("Invalid value received in SNMP trap callback");
(*agent)->handleTrapsEvent();
}
void SNMPAgent::handleSNMPQueryCB(int fd, FDMultiplexer::funcparam_t& var)
{
SNMPAgent** agent = boost::any_cast<SNMPAgent*>(&var);
if (!agent || !*agent)
throw std::runtime_error("Invalid value received in SNMP trap callback");
(*agent)->handleSNMPQueryEvent(fd);
}
#endif /* HAVE_NET_SNMP */
void SNMPAgent::worker()
{
#ifdef HAVE_NET_SNMP
FDMultiplexer* mplexer = FDMultiplexer::getMultiplexerSilent();
if (mplexer == nullptr) {
throw std::runtime_error("No FD multiplexer found for the SNMP agent!");
}
#ifdef RECURSOR
string threadName = "pdns-r/SNMP";
#else
string threadName = "dnsdist/SNMP";
#endif
setThreadName(threadName);
int maxfd = 0;
int block = 1;
netsnmp_large_fd_set fdset;
struct timeval timeout = { 0, 0 };
struct timeval now;
/* we want to be notified if a trap is waiting
to be sent */
mplexer->addReadFD(d_trapPipe[0], &handleTrapsCB, this);
while(true) {
netsnmp_large_fd_set_init(&fdset, FD_SETSIZE);
NETSNMP_LARGE_FD_ZERO(&fdset);
block = 1;
timeout = { 0, 0 };
snmp_select_info2(&maxfd, &fdset, &timeout, &block);
for (int fd = 0; fd < maxfd; fd++) {
if (NETSNMP_LARGE_FD_ISSET(fd, &fdset)) {
mplexer->addReadFD(fd, &handleSNMPQueryCB, this);
}
}
/* run updates now */
int res = mplexer->run(&now, (timeout.tv_sec * 1000) + (timeout.tv_usec / 1000));
/* we handle timeouts here, the rest has already been handled by callbacks */
if (res == 0) {
snmp_timeout();
run_alarms();
}
for (int fd = 0; fd < maxfd; fd++) {
if (NETSNMP_LARGE_FD_ISSET(fd, &fdset)) {
try {
mplexer->removeReadFD(fd);
}
catch(const FDMultiplexerException& e) {
/* we might get an exception when removing a closed file descriptor,
just ignore it */
}
}
}
}
#endif /* HAVE_NET_SNMP */
}
SNMPAgent::SNMPAgent(const std::string& name, const std::string& daemonSocket)
{
#ifdef HAVE_NET_SNMP
netsnmp_enable_subagent();
snmp_disable_log();
if (!daemonSocket.empty()) {
netsnmp_ds_set_string(NETSNMP_DS_APPLICATION_ID,
NETSNMP_DS_AGENT_X_SOCKET,
daemonSocket.c_str());
}
/* no need to load any MIBS,
and it causes import errors if some modules are not present */
setenv("MIBS", "", 1);
init_agent(name.c_str());
/* we use select() so don't use SIGALARM to handle alarms.
Note that we need to handle alarms for automatic reconnection
to the daemon to work.
*/
netsnmp_ds_set_boolean(NETSNMP_DS_LIBRARY_ID,
NETSNMP_DS_LIB_ALARM_DONT_USE_SIG,
1);
init_snmp(name.c_str());
if (pipe(d_trapPipe) < 0)
unixDie("Creating pipe");
if (!setNonBlocking(d_trapPipe[0])) {
close(d_trapPipe[0]);
close(d_trapPipe[1]);
unixDie("Setting pipe non-blocking");
}
if (!setNonBlocking(d_trapPipe[1])) {
close(d_trapPipe[0]);
close(d_trapPipe[1]);
unixDie("Setting pipe non-blocking");
}
#endif /* HAVE_NET_SNMP */
}
|