summaryrefslogtreecommitdiffstats
path: root/snmp-agent.hh
blob: e4ba13420dd2d474e699230be4ed5d9763cc95a5 (plain)
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
#pragma once
#include "config.h"

#include <string>
#include <thread>
#include <unistd.h>

#ifdef HAVE_NET_SNMP
#include <net-snmp/net-snmp-config.h>
#include <net-snmp/definitions.h>
#include <net-snmp/types.h>
#include <net-snmp/utilities.h>
#include <net-snmp/config_api.h>
#include <net-snmp/agent/net-snmp-agent-includes.h>
#undef INET6 /* SRSLY? */
#endif /* HAVE_NET_SNMP */

#include "mplexer.hh"

class SNMPAgent
{
public:
  SNMPAgent(const std::string& name, const std::string& daemonSocket);
  virtual ~SNMPAgent()
  {
#ifdef HAVE_NET_SNMP
    
    close(d_trapPipe[0]);
    close(d_trapPipe[1]);
#endif /* HAVE_NET_SNMP */
  }

  void run()
  {
#ifdef HAVE_NET_SNMP
  d_thread = std::thread(&SNMPAgent::worker, this);
  d_thread.detach();
#endif /* HAVE_NET_SNMP */
  }

#ifdef HAVE_NET_SNMP
  static int setCounter64Value(netsnmp_request_info* request,
                               uint64_t value);
#endif /* HAVE_NET_SNMP */
protected:
#ifdef HAVE_NET_SNMP
  /* OID for snmpTrapOID.0 */
  static const oid snmpTrapOID[];
  static const size_t snmpTrapOIDLen;

  static bool sendTrap(int fd,
                       netsnmp_variable_list* varList);

  int d_trapPipe[2] = { -1, -1};
#endif /* HAVE_NET_SNMP */
private:
  void worker();
  static void handleTrapsCB(int fd, FDMultiplexer::funcparam_t& var);
  static void handleSNMPQueryCB(int fd, FDMultiplexer::funcparam_t& var);
  void handleTrapsEvent();
  void handleSNMPQueryEvent(int fd);

  std::thread d_thread;
};