blob: 309b22e695ccc3f44ebb2a0756560af7ee533402 [file] [log] [blame]
Marri Devender Rao70aafbb2018-04-12 01:11:48 -05001#include "snmp_trap.hpp"
Patrick Venture3d6d3182018-08-31 09:33:09 -07002
3#include <phosphor-logging/elog-errors.hpp>
4#include <phosphor-logging/elog.hpp>
5#include <phosphor-logging/log.hpp>
Marri Devender Raoe88df9c2018-05-02 00:16:06 -05006#include <snmp.hpp>
7#include <snmp_notification.hpp>
Marri Devender Raoe88df9c2018-05-02 00:16:06 -05008#include <xyz/openbmc_project/Common/error.hpp>
Patrick Venture3d6d3182018-08-31 09:33:09 -07009#include <xyz/openbmc_project/Logging/Entry/server.hpp>
Marri Devender Rao70aafbb2018-04-12 01:11:48 -050010namespace phosphor
11{
12namespace dbus
13{
14namespace monitoring
15{
Marri Devender Raoe88df9c2018-05-02 00:16:06 -050016using namespace phosphor::logging;
17using namespace sdbusplus::xyz::openbmc_project::Logging::server;
18using namespace phosphor::network::snmp;
19using InternalFailure =
20 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
21
22static constexpr auto entry = "xyz.openbmc_project.Logging.Entry";
23
Marri Devender Rao70aafbb2018-04-12 01:11:48 -050024void ErrorTrap::trap(sdbusplus::message::message& msg) const
25{
Marri Devender Raoe88df9c2018-05-02 00:16:06 -050026 sdbusplus::message::object_path path;
27 msg.read(path);
28 PathInterfacesAdded intfs;
29 msg.read(intfs);
30 auto it = intfs.find(entry);
31 if (it == intfs.end())
32 {
33 return;
34 }
35 auto& propMap = it->second;
Patrick Williams34ef1e52020-05-13 11:07:43 -050036 auto errorID = std::get<uint32_t>(propMap.at("Id"));
37 auto timestamp = std::get<uint64_t>(propMap.at("Timestamp"));
38 auto sev = std::get<std::string>(propMap.at("Severity"));
Marri Devender Raoe88df9c2018-05-02 00:16:06 -050039 auto isev = static_cast<uint8_t>(Entry::convertLevelFromString(sev));
Patrick Williams34ef1e52020-05-13 11:07:43 -050040 auto message = std::get<std::string>(propMap.at("Message"));
Marri Devender Raoe88df9c2018-05-02 00:16:06 -050041 try
42 {
43 sendTrap<OBMCErrorNotification>(errorID, timestamp, isev, message);
44 }
45 catch (const InternalFailure& e)
46 {
47 log<level::INFO>(
48 "Failed to send SNMP trap",
49 phosphor::logging::entry("ERROR_ID=%d", errorID),
50 phosphor::logging::entry("TIMESTAMP=%llu", timestamp),
51 phosphor::logging::entry("SEVERITY=%s", sev.c_str()),
52 phosphor::logging::entry("MESSAGE=%s", message.c_str()));
53 }
Marri Devender Rao70aafbb2018-04-12 01:11:48 -050054}
55} // namespace monitoring
56} // namespace dbus
57} // namespace phosphor