blob: 4eb39f20fc140722be6cd40cec3daa95a609d49b [file] [log] [blame]
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -05001#include "config.h"
2
3#include "elog_watch.hpp"
4
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -05005#include "dump_serialize.hpp"
Dhruvaraj Subhashchandranaa0937f2023-07-22 23:50:40 -05006#include "dump_types.hpp"
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -05007#include "xyz/openbmc_project/Dump/Create/error.hpp"
8
Vishwanatha Subbanna31085972017-10-05 17:06:37 +05309#include <cereal/cereal.hpp>
Jayanth Othayothd0f00642017-09-04 06:26:30 -050010#include <phosphor-logging/elog.hpp>
Dhruvaraj Subhashchandrand1f670f2023-06-05 22:19:25 -050011#include <phosphor-logging/lg2.hpp>
William A. Kennington III15cd3ce2018-05-15 11:34:44 -070012#include <sdbusplus/exception.hpp>
Dhruvaraj Subhashchandran1615b822023-05-31 15:29:15 -050013#include <xyz/openbmc_project/Dump/Create/common.hpp>
Jayanth Othayothd0f00642017-09-04 06:26:30 -050014
Jayanth Othayoth0af74a52021-04-08 03:55:21 -050015#include <fstream>
16
Vishwanatha Subbanna31085972017-10-05 17:06:37 +053017// Register class version with Cereal
Ramesh Iyyarbb410df2020-08-03 03:13:04 -050018CEREAL_CLASS_VERSION(phosphor::dump::elog::Watch, CLASS_VERSION)
Jayanth Othayothd0f00642017-09-04 06:26:30 -050019
20namespace phosphor
21{
22namespace dump
23{
24namespace elog
25{
26
Jayanth Othayothd0f00642017-09-04 06:26:30 -050027constexpr auto LOG_PATH = "/xyz/openbmc_project/logging";
Jayanth Othayothd0f00642017-09-04 06:26:30 -050028using Message = std::string;
Patrick Williams984a98f2020-05-13 17:53:32 -050029using Attributes = std::variant<Message>;
Jayanth Othayothd0f00642017-09-04 06:26:30 -050030using AttributeName = std::string;
31using AttributeMap = std::map<AttributeName, Attributes>;
32using PropertyName = std::string;
33using PropertyMap = std::map<PropertyName, AttributeMap>;
Jayanth Othayothd0f00642017-09-04 06:26:30 -050034
Dhruvaraj Subhashchandrane4350f92023-06-29 05:57:47 -050035Watch::Watch(sdbusplus::bus_t& bus, Mgr& mgr) :
36 mgr(mgr),
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -050037 addMatch(bus,
38 sdbusplus::bus::match::rules::interfacesAdded() +
39 sdbusplus::bus::match::rules::path_namespace(OBJ_LOGGING),
40 std::bind(std::mem_fn(&Watch::addCallback), this,
41 std::placeholders::_1)),
42 delMatch(bus,
43 sdbusplus::bus::match::rules::interfacesRemoved() +
44 sdbusplus::bus::match::rules::path_namespace(OBJ_LOGGING),
45 std::bind(std::mem_fn(&Watch::delCallback), this,
46 std::placeholders::_1))
Jayanth Othayoth24964822017-09-04 22:07:06 -050047{
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -050048 std::filesystem::path file(ELOG_ID_PERSIST_PATH);
49 if (std::filesystem::exists(file))
Jayanth Othayoth24964822017-09-04 22:07:06 -050050 {
51 if (!deserialize(ELOG_ID_PERSIST_PATH, elogList))
52 {
Dhruvaraj Subhashchandrand1f670f2023-06-05 22:19:25 -050053 lg2::error("Error occurred during error id deserialize");
Jayanth Othayoth24964822017-09-04 22:07:06 -050054 }
55 }
56}
57
Patrick Williams9b18bf22022-07-22 19:26:55 -050058void Watch::addCallback(sdbusplus::message_t& msg)
Jayanth Othayothd0f00642017-09-04 06:26:30 -050059{
Jayanth Othayothd0f00642017-09-04 06:26:30 -050060 using QuotaExceeded =
61 sdbusplus::xyz::openbmc_project::Dump::Create::Error::QuotaExceeded;
62
William A. Kennington III90d147a2018-06-12 16:42:33 -070063 sdbusplus::message::object_path objectPath;
64 PropertyMap propertyMap;
William A. Kennington III15cd3ce2018-05-15 11:34:44 -070065 try
66 {
William A. Kennington III90d147a2018-06-12 16:42:33 -070067 msg.read(objectPath, propertyMap);
William A. Kennington III15cd3ce2018-05-15 11:34:44 -070068 }
Patrick Williams9b18bf22022-07-22 19:26:55 -050069 catch (const sdbusplus::exception_t& e)
William A. Kennington III15cd3ce2018-05-15 11:34:44 -070070 {
Dhruvaraj Subhashchandrand1f670f2023-06-05 22:19:25 -050071 lg2::error("Failed to parse elog add signal, errormsg: {ERROR}, "
72 "REPLY_SIG: {REPLY_SIG}",
73 "ERROR", e, "REPLY_SIG", msg.get_signature());
William A. Kennington III15cd3ce2018-05-15 11:34:44 -070074 return;
75 }
Jayanth Othayothd0f00642017-09-04 06:26:30 -050076
William A. Kennington III90d147a2018-06-12 16:42:33 -070077 std::size_t found = objectPath.str.find("entry");
Jayanth Othayothd0f00642017-09-04 06:26:30 -050078 if (found == std::string::npos)
79 {
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -050080 // Not a new error entry skip
Jayanth Othayothd0f00642017-09-04 06:26:30 -050081 return;
82 }
83
Jayanth Othayoth24964822017-09-04 22:07:06 -050084 auto eId = getEid(objectPath);
85
86 auto search = elogList.find(eId);
87 if (search != elogList.end())
88 {
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -050089 // elog exists in the list, Skip the dump
Jayanth Othayoth24964822017-09-04 22:07:06 -050090 return;
91 }
92
William A. Kennington III90d147a2018-06-12 16:42:33 -070093 auto iter = propertyMap.find("xyz.openbmc_project.Logging.Entry");
94 if (iter == propertyMap.end())
Jayanth Othayothd0f00642017-09-04 06:26:30 -050095 {
96 return;
97 }
98
99 auto attr = iter->second.find("Message");
100 if (attr == iter->second.end())
101 {
102 return;
103 }
104
Patrick Williams07f0f462020-05-13 11:58:11 -0500105 auto& data = std::get<PropertyName>(attr->second);
Jayanth Othayothd0f00642017-09-04 06:26:30 -0500106 if (data.empty())
107 {
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -0500108 // No Message skip
Jayanth Othayothd0f00642017-09-04 06:26:30 -0500109 return;
110 }
111
Dhruvaraj Subhashchandranaa0937f2023-07-22 23:50:40 -0500112 auto etype = findErrorType(data);
113 if (!etype.has_value())
Jayanth Othayothd0f00642017-09-04 06:26:30 -0500114 {
Dhruvaraj Subhashchandranaa0937f2023-07-22 23:50:40 -0500115 // error not supported in the configuration
Jayanth Othayothd0f00642017-09-04 06:26:30 -0500116 return;
117 }
118
Dhruvaraj Subhashchandranaa0937f2023-07-22 23:50:40 -0500119 auto errorType = etype.value();
120
Dhruvaraj Subhashchandrane4350f92023-06-29 05:57:47 -0500121 DumpCreateParams params;
122 using DumpIntr = sdbusplus::common::xyz::openbmc_project::dump::Create;
123 using CreateParameters =
124 sdbusplus::common::xyz::openbmc_project::dump::Create::CreateParameters;
125 using DumpType =
126 sdbusplus::common::xyz::openbmc_project::dump::Create::DumpType;
127 params[DumpIntr::convertCreateParametersToString(
128 CreateParameters::FilePath)] = objectPath;
129 params[DumpIntr::convertCreateParametersToString(
130 CreateParameters::DumpType)] =
131 DumpIntr::convertDumpTypeToString(DumpType::ErrorLog);
132 params[DumpIntr::convertCreateParametersToString(
133 CreateParameters::ErrorType)] = errorType;
Jayanth Othayothd0f00642017-09-04 06:26:30 -0500134 try
135 {
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -0500136 // Save the elog information. This is to avoid dump requests
137 // in elog restore path.
Jayanth Othayoth24964822017-09-04 22:07:06 -0500138 elogList.insert(eId);
139
140 phosphor::dump::elog::serialize(elogList);
Dhruvaraj Subhashchandrane4350f92023-06-29 05:57:47 -0500141 mgr.Mgr::createDump(params);
Jayanth Othayothd0f00642017-09-04 06:26:30 -0500142 }
Patrick Williams9d2d7222021-10-06 12:44:44 -0500143 catch (const QuotaExceeded& e)
Jayanth Othayothd0f00642017-09-04 06:26:30 -0500144 {
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -0500145 // No action now
Jayanth Othayothd0f00642017-09-04 06:26:30 -0500146 }
147 return;
148}
149
Patrick Williams9b18bf22022-07-22 19:26:55 -0500150void Watch::delCallback(sdbusplus::message_t& msg)
Jayanth Othayoth24964822017-09-04 22:07:06 -0500151{
William A. Kennington III90d147a2018-06-12 16:42:33 -0700152 sdbusplus::message::object_path objectPath;
William A. Kennington III15cd3ce2018-05-15 11:34:44 -0700153 try
154 {
William A. Kennington III90d147a2018-06-12 16:42:33 -0700155 msg.read(objectPath);
William A. Kennington III15cd3ce2018-05-15 11:34:44 -0700156 }
Patrick Williams9b18bf22022-07-22 19:26:55 -0500157 catch (const sdbusplus::exception_t& e)
William A. Kennington III15cd3ce2018-05-15 11:34:44 -0700158 {
Dhruvaraj Subhashchandrand1f670f2023-06-05 22:19:25 -0500159 lg2::error("Failed to parse elog del signal, errormsg: {ERROR}, "
160 "REPLY_SIG: {REPLY_SIG}",
161 "ERROR", e, "REPLY_SIG", msg.get_signature());
William A. Kennington III15cd3ce2018-05-15 11:34:44 -0700162 return;
163 }
Jayanth Othayoth24964822017-09-04 22:07:06 -0500164
Andrew Geissler638b43f2020-04-16 13:33:33 -0500165 std::size_t found = objectPath.str.find("entry");
166 if (found == std::string::npos)
167 {
168 // Not a error entry so skip
169 return;
170 }
171
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -0500172 // Get elog id
Jayanth Othayoth24964822017-09-04 22:07:06 -0500173 auto eId = getEid(objectPath);
174
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -0500175 // Delete the elog entry from the list and serialize
Jayanth Othayoth24964822017-09-04 22:07:06 -0500176 auto search = elogList.find(eId);
177 if (search != elogList.end())
178 {
179 elogList.erase(search);
180 phosphor::dump::elog::serialize(elogList);
181 }
182}
183
Jayanth Othayothcb65ffc2018-10-16 08:29:32 -0500184} // namespace elog
185} // namespace dump
186} // namespace phosphor