blob: afce3ce2f2b1d4b63fbd27d93f8abb5c5bc7f962 [file] [log] [blame]
Ratan Guptaec26fa62018-04-16 15:28:36 +05301#include "snmp_notification.hpp"
Ratan Gupta63476192018-04-19 16:55:32 +05302#include "snmp_util.hpp"
Ratan Guptaec26fa62018-04-16 15:28:36 +05303
4#include <phosphor-logging/elog-errors.hpp>
5#include <phosphor-logging/log.hpp>
6
7#include "xyz/openbmc_project/Common/error.hpp"
8
9namespace phosphor
10{
11namespace network
12{
13namespace snmp
14{
15
16using namespace phosphor::logging;
17using namespace sdbusplus::xyz::openbmc_project::Common::Error;
18
19using snmpSessionPtr =
20 std::unique_ptr<netsnmp_session, decltype(&::snmp_close)>;
21
22bool Notification::addPDUVar(netsnmp_pdu& pdu, const OID& objID,
23 size_t objIDLen, u_char type, Value val)
24{
25 netsnmp_variable_list* varList = nullptr;
26 switch (type)
27 {
28 case ASN_INTEGER:
29 {
Patrick Williams7d4bd222020-05-13 11:05:10 -050030 auto ltmp = std::get<int32_t>(val);
Ratan Guptaec26fa62018-04-16 15:28:36 +053031 varList = snmp_pdu_add_variable(&pdu, objID.data(), objIDLen, type,
32 &ltmp, sizeof(ltmp));
33 }
34 break;
35 case ASN_UNSIGNED:
36 {
Patrick Williams7d4bd222020-05-13 11:05:10 -050037 auto ltmp = std::get<uint32_t>(val);
Ratan Guptaec26fa62018-04-16 15:28:36 +053038 varList = snmp_pdu_add_variable(&pdu, objID.data(), objIDLen, type,
39 &ltmp, sizeof(ltmp));
40 }
41 break;
42 case ASN_OPAQUE_U64:
43 {
Patrick Williams7d4bd222020-05-13 11:05:10 -050044 auto ltmp = std::get<uint64_t>(val);
Ratan Guptaec26fa62018-04-16 15:28:36 +053045 varList = snmp_pdu_add_variable(&pdu, objID.data(), objIDLen, type,
46 &ltmp, sizeof(ltmp));
47 }
48 break;
49 case ASN_OCTET_STR:
50 {
Patrick Williams7d4bd222020-05-13 11:05:10 -050051 const auto& value = std::get<std::string>(val);
Ratan Guptaec26fa62018-04-16 15:28:36 +053052 varList = snmp_pdu_add_variable(&pdu, objID.data(), objIDLen, type,
53 value.c_str(), value.length());
54 }
55 break;
56 }
57 return (varList == nullptr ? false : true);
58}
59
60void Notification::sendTrap()
61{
Ratan Guptaec26fa62018-04-16 15:28:36 +053062 constexpr auto comm = "public";
Ratan Guptaec26fa62018-04-16 15:28:36 +053063 netsnmp_session session{0};
64
65 snmp_sess_init(&session);
66
67 init_snmp("snmpapp");
68
69 // TODO: https://github.com/openbmc/openbmc/issues/3145
70 session.version = SNMP_VERSION_2c;
71 session.community = (u_char*)comm;
72 session.community_len = strlen(comm);
73 session.callback = nullptr;
74 session.callback_magic = nullptr;
75
Ratan Gupta63476192018-04-19 16:55:32 +053076 auto mgrs = getManagers();
Ratan Guptaec26fa62018-04-16 15:28:36 +053077
Ratan Gupta63476192018-04-19 16:55:32 +053078 for (auto& mgr : mgrs)
Ratan Guptaec26fa62018-04-16 15:28:36 +053079 {
Ratan Gupta63476192018-04-19 16:55:32 +053080 session.peername = const_cast<char*>(mgr.c_str());
81 // create the session
82 auto ss = snmp_add(
83 &session,
84 netsnmp_transport_open_client("snmptrap", session.peername),
85 nullptr, nullptr);
86 if (!ss)
Ratan Guptaec26fa62018-04-16 15:28:36 +053087 {
Ratan Gupta63476192018-04-19 16:55:32 +053088 log<level::ERR>("Unable to get the snmp session.",
89 entry("SNMPMANAGER=%s", mgr.c_str()));
90 elog<InternalFailure>();
91 }
92
93 // Wrap the raw pointer in RAII
94 snmpSessionPtr sessionPtr(ss, &::snmp_close);
95
96 ss = nullptr;
97
98 auto pdu = snmp_pdu_create(SNMP_MSG_TRAP2);
99 if (!pdu)
100 {
101 log<level::ERR>("Failed to create notification PDU");
102 elog<InternalFailure>();
103 }
104
105 pdu->trap_type = SNMP_TRAP_ENTERPRISESPECIFIC;
106
107 auto trapInfo = getTrapOID();
108
109 if (!snmp_pdu_add_variable(pdu, SNMPTrapOID,
110 sizeof(SNMPTrapOID) / sizeof(oid),
111 ASN_OBJECT_ID, trapInfo.first.data(),
112 trapInfo.second * sizeof(oid)))
113 {
114 log<level::ERR>("Failed to add the SNMP var(trapID)");
Ratan Guptaec26fa62018-04-16 15:28:36 +0530115 snmp_free_pdu(pdu);
116 elog<InternalFailure>();
117 }
Ratan Guptaec26fa62018-04-16 15:28:36 +0530118
Ratan Gupta63476192018-04-19 16:55:32 +0530119 auto objectList = getFieldOIDList();
120
121 for (const auto& object : objectList)
122 {
123 if (!addPDUVar(*pdu, std::get<0>(object), std::get<1>(object),
124 std::get<2>(object), std::get<3>(object)))
125 {
126 log<level::ERR>("Failed to add the SNMP var");
127 snmp_free_pdu(pdu);
128 elog<InternalFailure>();
129 }
130 }
131 // pdu is freed by snmp_send
132 if (!snmp_send(sessionPtr.get(), pdu))
133 {
134 log<level::ERR>("Failed to send the snmp trap.");
135 elog<InternalFailure>();
136 }
Ratan Guptaec26fa62018-04-16 15:28:36 +0530137
Ratan Gupta212f53e2018-04-30 17:28:05 +0530138 log<level::DEBUG>("Sent SNMP Trap", entry("MGR=%s", mgr.c_str()));
139 }
Ratan Guptaec26fa62018-04-16 15:28:36 +0530140}
141
142} // namespace snmp
143} // namespace network
144} // namespace phosphor