blob: 6b4e808dfde4b37876455ecbd5596e51e0fad2d0 [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"));
Paul Fertser74dc24a2022-01-10 11:28:20 +000038 auto sev = std::get<Entry::Level>(propMap.at("Severity"));
39 auto isev = static_cast<uint8_t>(sev);
Patrick Williams34ef1e52020-05-13 11:07:43 -050040 auto message = std::get<std::string>(propMap.at("Message"));
Paul Fertser74dc24a2022-01-10 11:28:20 +000041 auto additionalData =
42 std::get<std::vector<std::string>>(propMap.at("AdditionalData"));
43 for (auto& s : additionalData)
44 {
45 message += " " + s;
46 }
Marri Devender Raoe88df9c2018-05-02 00:16:06 -050047 try
48 {
49 sendTrap<OBMCErrorNotification>(errorID, timestamp, isev, message);
50 }
51 catch (const InternalFailure& e)
52 {
53 log<level::INFO>(
54 "Failed to send SNMP trap",
55 phosphor::logging::entry("ERROR_ID=%d", errorID),
56 phosphor::logging::entry("TIMESTAMP=%llu", timestamp),
Paul Fertser74dc24a2022-01-10 11:28:20 +000057 phosphor::logging::entry("SEVERITY=%s",
58 convertForMessage(sev).c_str()),
Marri Devender Raoe88df9c2018-05-02 00:16:06 -050059 phosphor::logging::entry("MESSAGE=%s", message.c_str()));
60 }
Marri Devender Rao70aafbb2018-04-12 01:11:48 -050061}
62} // namespace monitoring
63} // namespace dbus
64} // namespace phosphor