1fa5e4d32SSunny Srivastava #include "event_logger.hpp"
2fa5e4d32SSunny Srivastava
3b53d97c9SAnupama B R #include "exceptions.hpp"
4fa5e4d32SSunny Srivastava #include "logger.hpp"
5fa5e4d32SSunny Srivastava
6fa5e4d32SSunny Srivastava #include <systemd/sd-bus.h>
7fa5e4d32SSunny Srivastava
8fa5e4d32SSunny Srivastava namespace vpd
9fa5e4d32SSunny Srivastava {
10fa5e4d32SSunny Srivastava const std::unordered_map<types::SeverityType, std::string>
11fa5e4d32SSunny Srivastava EventLogger::m_severityMap = {
12fa5e4d32SSunny Srivastava {types::SeverityType::Notice,
13fa5e4d32SSunny Srivastava "xyz.openbmc_project.Logging.Entry.Level.Notice"},
14fa5e4d32SSunny Srivastava {types::SeverityType::Informational,
15fa5e4d32SSunny Srivastava "xyz.openbmc_project.Logging.Entry.Level.Informational"},
16fa5e4d32SSunny Srivastava {types::SeverityType::Debug,
17fa5e4d32SSunny Srivastava "xyz.openbmc_project.Logging.Entry.Level.Debug"},
18fa5e4d32SSunny Srivastava {types::SeverityType::Warning,
19fa5e4d32SSunny Srivastava "xyz.openbmc_project.Logging.Entry.Level.Warning"},
20fa5e4d32SSunny Srivastava {types::SeverityType::Critical,
21fa5e4d32SSunny Srivastava "xyz.openbmc_project.Logging.Entry.Level.Critical"},
22fa5e4d32SSunny Srivastava {types::SeverityType::Emergency,
23fa5e4d32SSunny Srivastava "xyz.openbmc_project.Logging.Entry.Level.Emergency"},
24fa5e4d32SSunny Srivastava {types::SeverityType::Alert,
25fa5e4d32SSunny Srivastava "xyz.openbmc_project.Logging.Entry.Level.Alert"},
26fa5e4d32SSunny Srivastava {types::SeverityType::Error,
27fa5e4d32SSunny Srivastava "xyz.openbmc_project.Logging.Entry.Level.Error"}};
28fa5e4d32SSunny Srivastava
29fa5e4d32SSunny Srivastava const std::unordered_map<types::ErrorType, std::string>
30fa5e4d32SSunny Srivastava EventLogger::m_errorMsgMap = {
31fa5e4d32SSunny Srivastava {types::ErrorType::DefaultValue, "com.ibm.VPD.Error.DefaultValue"},
32fa5e4d32SSunny Srivastava {types::ErrorType::InvalidVpdMessage, "com.ibm.VPD.Error.InvalidVPD"},
33fa5e4d32SSunny Srivastava {types::ErrorType::VpdMismatch, "com.ibm.VPD.Error.Mismatch"},
34fa5e4d32SSunny Srivastava {types::ErrorType::InvalidEeprom,
35fa5e4d32SSunny Srivastava "com.ibm.VPD.Error.InvalidEepromPath"},
36fa5e4d32SSunny Srivastava {types::ErrorType::EccCheckFailed, "com.ibm.VPD.Error.EccCheckFailed"},
37fa5e4d32SSunny Srivastava {types::ErrorType::JsonFailure, "com.ibm.VPD.Error.InvalidJson"},
38fa5e4d32SSunny Srivastava {types::ErrorType::DbusFailure, "com.ibm.VPD.Error.DbusFailure"},
39fa5e4d32SSunny Srivastava {types::ErrorType::InvalidSystem,
40fa5e4d32SSunny Srivastava "com.ibm.VPD.Error.UnknownSystemType"},
41fa5e4d32SSunny Srivastava {types::ErrorType::EssentialFru,
42fa5e4d32SSunny Srivastava "com.ibm.VPD.Error.RequiredFRUMissing"},
43a88a298fSSunny Srivastava {types::ErrorType::GpioError, "com.ibm.VPD.Error.GPIOError"},
44a88a298fSSunny Srivastava {types::ErrorType::InternalFailure,
45a88a298fSSunny Srivastava "xyz.openbmc_project.Common.Error.InternalFailure"},
46ffdff313SRekha Aparna {types::ErrorType::FruMissing, "com.ibm.VPD.Error.RequiredFRUMissing"},
47ffdff313SRekha Aparna {types::ErrorType::SystemTypeMismatch,
48ffdff313SRekha Aparna "com.ibm.VPD.Error.SystemTypeMismatch"},
49ffdff313SRekha Aparna {types::ErrorType::UnknownSystemSettings,
50*4fa796cbSSunny Srivastava "com.ibm.VPD.Error.UnknownSystemSettings"},
51*4fa796cbSSunny Srivastava {types::ErrorType::FirmwareError, "com.ibm.VPD.Error.FirmwareError"}};
52fa5e4d32SSunny Srivastava
53fa5e4d32SSunny Srivastava const std::unordered_map<types::CalloutPriority, std::string>
54fa5e4d32SSunny Srivastava EventLogger::m_priorityMap = {
55fa5e4d32SSunny Srivastava {types::CalloutPriority::High, "H"},
56fa5e4d32SSunny Srivastava {types::CalloutPriority::Medium, "M"},
57fa5e4d32SSunny Srivastava {types::CalloutPriority::MediumGroupA, "A"},
58fa5e4d32SSunny Srivastava {types::CalloutPriority::MediumGroupB, "B"},
59fa5e4d32SSunny Srivastava {types::CalloutPriority::MediumGroupC, "C"},
60fa5e4d32SSunny Srivastava {types::CalloutPriority::Low, "L"}};
61fa5e4d32SSunny Srivastava
createAsyncPelWithInventoryCallout(const types::ErrorType & i_errorType,const types::SeverityType & i_severity,const std::vector<types::InventoryCalloutData> & i_callouts,const std::string & i_fileName,const std::string & i_funcName,const uint8_t i_internalRc,const std::string & i_description,const std::optional<std::string> i_userData1,const std::optional<std::string> i_userData2,const std::optional<std::string> i_symFru,const std::optional<std::string> i_procedure)62fa5e4d32SSunny Srivastava void EventLogger::createAsyncPelWithInventoryCallout(
63fa5e4d32SSunny Srivastava const types::ErrorType& i_errorType, const types::SeverityType& i_severity,
64fa5e4d32SSunny Srivastava const std::vector<types::InventoryCalloutData>& i_callouts,
65fa5e4d32SSunny Srivastava const std::string& i_fileName, const std::string& i_funcName,
66fa5e4d32SSunny Srivastava const uint8_t i_internalRc, const std::string& i_description,
67fa5e4d32SSunny Srivastava const std::optional<std::string> i_userData1,
68fa5e4d32SSunny Srivastava const std::optional<std::string> i_userData2,
69fa5e4d32SSunny Srivastava const std::optional<std::string> i_symFru,
70fa5e4d32SSunny Srivastava const std::optional<std::string> i_procedure)
71fa5e4d32SSunny Srivastava {
72fa5e4d32SSunny Srivastava (void)i_symFru;
73fa5e4d32SSunny Srivastava (void)i_procedure;
74fa5e4d32SSunny Srivastava
75fa5e4d32SSunny Srivastava try
76fa5e4d32SSunny Srivastava {
77fa5e4d32SSunny Srivastava if (i_callouts.empty())
78fa5e4d32SSunny Srivastava {
79fa5e4d32SSunny Srivastava logging::logMessage("Callout information is missing to create PEL");
80fa5e4d32SSunny Srivastava // TODO: Revisit this instead of simpley returning.
81fa5e4d32SSunny Srivastava return;
82fa5e4d32SSunny Srivastava }
83fa5e4d32SSunny Srivastava
84fa5e4d32SSunny Srivastava if (m_errorMsgMap.find(i_errorType) == m_errorMsgMap.end())
85fa5e4d32SSunny Srivastava {
86fa5e4d32SSunny Srivastava throw std::runtime_error(
87fa5e4d32SSunny Srivastava "Error type not found in the error message map to create PEL");
88fa5e4d32SSunny Srivastava // TODO: Need to handle, instead of throwing exception. Create
89fa5e4d32SSunny Srivastava // default message in message_registry.json.
90fa5e4d32SSunny Srivastava }
91fa5e4d32SSunny Srivastava
92fa5e4d32SSunny Srivastava const std::string& l_message = m_errorMsgMap.at(i_errorType);
93fa5e4d32SSunny Srivastava
94fa5e4d32SSunny Srivastava const std::string& l_severity =
95fa5e4d32SSunny Srivastava (m_severityMap.find(i_severity) != m_severityMap.end()
96fa5e4d32SSunny Srivastava ? m_severityMap.at(i_severity)
97fa5e4d32SSunny Srivastava : m_severityMap.at(types::SeverityType::Informational));
98fa5e4d32SSunny Srivastava
99fa5e4d32SSunny Srivastava std::string l_description =
100fa5e4d32SSunny Srivastava (!i_description.empty() ? i_description : "VPD generic error");
101fa5e4d32SSunny Srivastava
102fa5e4d32SSunny Srivastava std::string l_userData1 = (i_userData1) ? (*i_userData1) : "";
103fa5e4d32SSunny Srivastava
104fa5e4d32SSunny Srivastava std::string l_userData2 = (i_userData2) ? (*i_userData2) : "";
105fa5e4d32SSunny Srivastava
106fa5e4d32SSunny Srivastava const types::InventoryCalloutData& l_invCallout = i_callouts[0];
107fa5e4d32SSunny Srivastava // TODO: Need to handle multiple inventory path callout's, when multiple
108fa5e4d32SSunny Srivastava // callout's is supported by "Logging" service.
109fa5e4d32SSunny Srivastava
110fa5e4d32SSunny Srivastava const types::CalloutPriority& l_priorityEnum = get<1>(l_invCallout);
111fa5e4d32SSunny Srivastava
112fa5e4d32SSunny Srivastava const std::string& l_priority =
113fa5e4d32SSunny Srivastava (m_priorityMap.find(l_priorityEnum) != m_priorityMap.end()
114fa5e4d32SSunny Srivastava ? m_priorityMap.at(l_priorityEnum)
115fa5e4d32SSunny Srivastava : m_priorityMap.at(types::CalloutPriority::Low));
116fa5e4d32SSunny Srivastava
117fa5e4d32SSunny Srivastava sd_bus* l_sdBus = nullptr;
118fa5e4d32SSunny Srivastava sd_bus_default(&l_sdBus);
119fa5e4d32SSunny Srivastava
120fa5e4d32SSunny Srivastava const uint8_t l_additionalDataCount = 8;
121fa5e4d32SSunny Srivastava auto l_rc = sd_bus_call_method_async(
122fa5e4d32SSunny Srivastava l_sdBus, NULL, constants::eventLoggingServiceName,
123fa5e4d32SSunny Srivastava constants::eventLoggingObjectPath, constants::eventLoggingInterface,
124fa5e4d32SSunny Srivastava "Create", NULL, NULL, "ssa{ss}", l_message.c_str(),
125fa5e4d32SSunny Srivastava l_severity.c_str(), l_additionalDataCount, "FileName",
126fa5e4d32SSunny Srivastava i_fileName.c_str(), "FunctionName", i_funcName.c_str(),
127fa5e4d32SSunny Srivastava "InternalRc", std::to_string(i_internalRc).c_str(), "DESCRIPTION",
128fa5e4d32SSunny Srivastava l_description.c_str(), "UserData1", l_userData1.c_str(),
129fa5e4d32SSunny Srivastava "UserData2", l_userData2.c_str(), "CALLOUT_INVENTORY_PATH",
130fa5e4d32SSunny Srivastava get<0>(l_invCallout).c_str(), "CALLOUT_PRIORITY",
131fa5e4d32SSunny Srivastava l_priority.c_str());
132fa5e4d32SSunny Srivastava
133fa5e4d32SSunny Srivastava if (l_rc < 0)
134fa5e4d32SSunny Srivastava {
135fa5e4d32SSunny Srivastava logging::logMessage(
136fa5e4d32SSunny Srivastava "Error calling sd_bus_call_method_async, Message = " +
137fa5e4d32SSunny Srivastava std::string(strerror(-l_rc)));
138fa5e4d32SSunny Srivastava }
139fa5e4d32SSunny Srivastava }
140fa5e4d32SSunny Srivastava catch (const std::exception& l_ex)
141fa5e4d32SSunny Srivastava {
142fa5e4d32SSunny Srivastava logging::logMessage(
143fa5e4d32SSunny Srivastava "Create PEL failed with error: " + std::string(l_ex.what()));
144fa5e4d32SSunny Srivastava }
145fa5e4d32SSunny Srivastava }
146fa5e4d32SSunny Srivastava
createAsyncPelWithI2cDeviceCallout(const types::ErrorType i_errorType,const types::SeverityType i_severity,const std::vector<types::DeviceCalloutData> & i_callouts,const std::string & i_fileName,const std::string & i_funcName,const uint8_t i_internalRc,const std::optional<std::pair<std::string,std::string>> i_userData1,const std::optional<std::pair<std::string,std::string>> i_userData2)147fa5e4d32SSunny Srivastava void EventLogger::createAsyncPelWithI2cDeviceCallout(
148fa5e4d32SSunny Srivastava const types::ErrorType i_errorType, const types::SeverityType i_severity,
149fa5e4d32SSunny Srivastava const std::vector<types::DeviceCalloutData>& i_callouts,
150fa5e4d32SSunny Srivastava const std::string& i_fileName, const std::string& i_funcName,
151fa5e4d32SSunny Srivastava const uint8_t i_internalRc,
152fa5e4d32SSunny Srivastava const std::optional<std::pair<std::string, std::string>> i_userData1,
153fa5e4d32SSunny Srivastava const std::optional<std::pair<std::string, std::string>> i_userData2)
154fa5e4d32SSunny Srivastava {
155fa5e4d32SSunny Srivastava // TODO, implementation needs to be added.
156fa5e4d32SSunny Srivastava (void)i_errorType;
157fa5e4d32SSunny Srivastava (void)i_severity;
158fa5e4d32SSunny Srivastava (void)i_callouts;
159fa5e4d32SSunny Srivastava (void)i_fileName;
160fa5e4d32SSunny Srivastava (void)i_funcName;
161fa5e4d32SSunny Srivastava (void)i_internalRc;
162fa5e4d32SSunny Srivastava (void)i_userData1;
163fa5e4d32SSunny Srivastava (void)i_userData2;
164fa5e4d32SSunny Srivastava }
165fa5e4d32SSunny Srivastava
createAsyncPelWithI2cBusCallout(const types::ErrorType i_errorType,const types::SeverityType i_severity,const std::vector<types::I2cBusCalloutData> & i_callouts,const std::string & i_fileName,const std::string & i_funcName,const uint8_t i_internalRc,const std::optional<std::pair<std::string,std::string>> i_userData1,const std::optional<std::pair<std::string,std::string>> i_userData2)166fa5e4d32SSunny Srivastava void EventLogger::createAsyncPelWithI2cBusCallout(
167fa5e4d32SSunny Srivastava const types::ErrorType i_errorType, const types::SeverityType i_severity,
168fa5e4d32SSunny Srivastava const std::vector<types::I2cBusCalloutData>& i_callouts,
169fa5e4d32SSunny Srivastava const std::string& i_fileName, const std::string& i_funcName,
170fa5e4d32SSunny Srivastava const uint8_t i_internalRc,
171fa5e4d32SSunny Srivastava const std::optional<std::pair<std::string, std::string>> i_userData1,
172fa5e4d32SSunny Srivastava const std::optional<std::pair<std::string, std::string>> i_userData2)
173fa5e4d32SSunny Srivastava {
174fa5e4d32SSunny Srivastava // TODO, implementation needs to be added.
175fa5e4d32SSunny Srivastava (void)i_errorType;
176fa5e4d32SSunny Srivastava (void)i_severity;
177fa5e4d32SSunny Srivastava (void)i_callouts;
178fa5e4d32SSunny Srivastava (void)i_fileName;
179fa5e4d32SSunny Srivastava (void)i_funcName;
180fa5e4d32SSunny Srivastava (void)i_internalRc;
181fa5e4d32SSunny Srivastava (void)i_userData1;
182fa5e4d32SSunny Srivastava (void)i_userData2;
183fa5e4d32SSunny Srivastava }
184fa5e4d32SSunny Srivastava
createAsyncPel(const types::ErrorType & i_errorType,const types::SeverityType & i_severity,const std::string & i_fileName,const std::string & i_funcName,const uint8_t i_internalRc,const std::string & i_description,const std::optional<std::string> i_userData1,const std::optional<std::string> i_userData2,const std::optional<std::string> i_symFru,const std::optional<std::string> i_procedure)185fa5e4d32SSunny Srivastava void EventLogger::createAsyncPel(
186fa5e4d32SSunny Srivastava const types::ErrorType& i_errorType, const types::SeverityType& i_severity,
187fa5e4d32SSunny Srivastava const std::string& i_fileName, const std::string& i_funcName,
188fa5e4d32SSunny Srivastava const uint8_t i_internalRc, const std::string& i_description,
189fa5e4d32SSunny Srivastava const std::optional<std::string> i_userData1,
190fa5e4d32SSunny Srivastava const std::optional<std::string> i_userData2,
191fa5e4d32SSunny Srivastava const std::optional<std::string> i_symFru,
192fa5e4d32SSunny Srivastava const std::optional<std::string> i_procedure)
193fa5e4d32SSunny Srivastava {
194fa5e4d32SSunny Srivastava (void)i_symFru;
195fa5e4d32SSunny Srivastava (void)i_procedure;
196fa5e4d32SSunny Srivastava try
197fa5e4d32SSunny Srivastava {
198fa5e4d32SSunny Srivastava if (m_errorMsgMap.find(i_errorType) == m_errorMsgMap.end())
199fa5e4d32SSunny Srivastava {
200fa5e4d32SSunny Srivastava throw std::runtime_error("Unsupported error type received");
201fa5e4d32SSunny Srivastava // TODO: Need to handle, instead of throwing an exception.
202fa5e4d32SSunny Srivastava }
203fa5e4d32SSunny Srivastava
204fa5e4d32SSunny Srivastava const std::string& l_message = m_errorMsgMap.at(i_errorType);
205fa5e4d32SSunny Srivastava
206fa5e4d32SSunny Srivastava const std::string& l_severity =
207fa5e4d32SSunny Srivastava (m_severityMap.find(i_severity) != m_severityMap.end()
208fa5e4d32SSunny Srivastava ? m_severityMap.at(i_severity)
209fa5e4d32SSunny Srivastava : m_severityMap.at(types::SeverityType::Informational));
210fa5e4d32SSunny Srivastava
211fa5e4d32SSunny Srivastava const std::string l_description =
212fa5e4d32SSunny Srivastava ((!i_description.empty() ? i_description : "VPD generic error"));
213fa5e4d32SSunny Srivastava
214fa5e4d32SSunny Srivastava const std::string l_userData1 = ((i_userData1) ? (*i_userData1) : "");
215fa5e4d32SSunny Srivastava
216fa5e4d32SSunny Srivastava const std::string l_userData2 = ((i_userData2) ? (*i_userData2) : "");
217fa5e4d32SSunny Srivastava
218fa5e4d32SSunny Srivastava sd_bus* l_sdBus = nullptr;
219fa5e4d32SSunny Srivastava sd_bus_default(&l_sdBus);
220fa5e4d32SSunny Srivastava
221fa5e4d32SSunny Srivastava // VALUE_6 represents the additional data pair count passing to create
222fa5e4d32SSunny Srivastava // PEL. If there any change in additional data, we need to pass the
223fa5e4d32SSunny Srivastava // correct number.
224fa5e4d32SSunny Srivastava auto l_rc = sd_bus_call_method_async(
225fa5e4d32SSunny Srivastava l_sdBus, NULL, constants::eventLoggingServiceName,
226fa5e4d32SSunny Srivastava constants::eventLoggingObjectPath, constants::eventLoggingInterface,
227fa5e4d32SSunny Srivastava "Create", NULL, NULL, "ssa{ss}", l_message.c_str(),
228fa5e4d32SSunny Srivastava l_severity.c_str(), constants::VALUE_6, "FileName",
229fa5e4d32SSunny Srivastava i_fileName.c_str(), "FunctionName", i_funcName.c_str(),
230fa5e4d32SSunny Srivastava "InternalRc", std::to_string(i_internalRc).c_str(), "DESCRIPTION",
231fa5e4d32SSunny Srivastava l_description.c_str(), "UserData1", l_userData1.c_str(),
232fa5e4d32SSunny Srivastava "UserData2", l_userData2.c_str());
233fa5e4d32SSunny Srivastava
234fa5e4d32SSunny Srivastava if (l_rc < 0)
235fa5e4d32SSunny Srivastava {
236fa5e4d32SSunny Srivastava logging::logMessage(
237fa5e4d32SSunny Srivastava "Error calling sd_bus_call_method_async, Message = " +
238fa5e4d32SSunny Srivastava std::string(strerror(-l_rc)));
239fa5e4d32SSunny Srivastava }
240fa5e4d32SSunny Srivastava }
241fa5e4d32SSunny Srivastava catch (const sdbusplus::exception::SdBusError& l_ex)
242fa5e4d32SSunny Srivastava {
243fa5e4d32SSunny Srivastava logging::logMessage("Async PEL creation failed with an error: " +
244fa5e4d32SSunny Srivastava std::string(l_ex.what()));
245fa5e4d32SSunny Srivastava }
246fa5e4d32SSunny Srivastava }
247fa5e4d32SSunny Srivastava
createSyncPel(const types::ErrorType & i_errorType,const types::SeverityType & i_severity,const std::string & i_fileName,const std::string & i_funcName,const uint8_t i_internalRc,const std::string & i_description,const std::optional<std::string> i_userData1,const std::optional<std::string> i_userData2,const std::optional<std::string> i_symFru,const std::optional<std::string> i_procedure)248fa5e4d32SSunny Srivastava void EventLogger::createSyncPel(
249fa5e4d32SSunny Srivastava const types::ErrorType& i_errorType, const types::SeverityType& i_severity,
250fa5e4d32SSunny Srivastava const std::string& i_fileName, const std::string& i_funcName,
251fa5e4d32SSunny Srivastava const uint8_t i_internalRc, const std::string& i_description,
252fa5e4d32SSunny Srivastava const std::optional<std::string> i_userData1,
253fa5e4d32SSunny Srivastava const std::optional<std::string> i_userData2,
254fa5e4d32SSunny Srivastava const std::optional<std::string> i_symFru,
255fa5e4d32SSunny Srivastava const std::optional<std::string> i_procedure)
256fa5e4d32SSunny Srivastava {
257fa5e4d32SSunny Srivastava (void)i_symFru;
258fa5e4d32SSunny Srivastava (void)i_procedure;
259fa5e4d32SSunny Srivastava try
260fa5e4d32SSunny Srivastava {
261fa5e4d32SSunny Srivastava if (m_errorMsgMap.find(i_errorType) == m_errorMsgMap.end())
262fa5e4d32SSunny Srivastava {
263fa5e4d32SSunny Srivastava throw std::runtime_error("Unsupported error type received");
264fa5e4d32SSunny Srivastava // TODO: Need to handle, instead of throwing an exception.
265fa5e4d32SSunny Srivastava }
266fa5e4d32SSunny Srivastava
267fa5e4d32SSunny Srivastava const std::string& l_message = m_errorMsgMap.at(i_errorType);
268fa5e4d32SSunny Srivastava
269fa5e4d32SSunny Srivastava const std::string& l_severity =
270fa5e4d32SSunny Srivastava (m_severityMap.find(i_severity) != m_severityMap.end()
271fa5e4d32SSunny Srivastava ? m_severityMap.at(i_severity)
272fa5e4d32SSunny Srivastava : m_severityMap.at(types::SeverityType::Informational));
273fa5e4d32SSunny Srivastava
274fa5e4d32SSunny Srivastava const std::string l_description =
275fa5e4d32SSunny Srivastava ((!i_description.empty() ? i_description : "VPD generic error"));
276fa5e4d32SSunny Srivastava
277fa5e4d32SSunny Srivastava const std::string l_userData1 = ((i_userData1) ? (*i_userData1) : "");
278fa5e4d32SSunny Srivastava
279fa5e4d32SSunny Srivastava const std::string l_userData2 = ((i_userData2) ? (*i_userData2) : "");
280fa5e4d32SSunny Srivastava
281fa5e4d32SSunny Srivastava std::map<std::string, std::string> l_additionalData{
282fa5e4d32SSunny Srivastava {"FileName", i_fileName},
283fa5e4d32SSunny Srivastava {"FunctionName", i_funcName},
284fa5e4d32SSunny Srivastava {"DESCRIPTION", l_description},
285fa5e4d32SSunny Srivastava {"InteranlRc", std::to_string(i_internalRc)},
286fa5e4d32SSunny Srivastava {"UserData1", l_userData1.c_str()},
287fa5e4d32SSunny Srivastava {"UserData2", l_userData2.c_str()}};
288fa5e4d32SSunny Srivastava
289fa5e4d32SSunny Srivastava auto l_bus = sdbusplus::bus::new_default();
290fa5e4d32SSunny Srivastava auto l_method =
291fa5e4d32SSunny Srivastava l_bus.new_method_call(constants::eventLoggingServiceName,
292fa5e4d32SSunny Srivastava constants::eventLoggingObjectPath,
293fa5e4d32SSunny Srivastava constants::eventLoggingInterface, "Create");
294fa5e4d32SSunny Srivastava l_method.append(l_message, l_severity, l_additionalData);
295fa5e4d32SSunny Srivastava l_bus.call(l_method);
296fa5e4d32SSunny Srivastava }
297fa5e4d32SSunny Srivastava catch (const sdbusplus::exception::SdBusError& l_ex)
298fa5e4d32SSunny Srivastava {
299fa5e4d32SSunny Srivastava logging::logMessage("Sync PEL creation failed with an error: " +
300fa5e4d32SSunny Srivastava std::string(l_ex.what()));
301fa5e4d32SSunny Srivastava }
302fa5e4d32SSunny Srivastava }
303b53d97c9SAnupama B R
getExceptionData(const std::exception & i_exception)304b53d97c9SAnupama B R types::ExceptionDataMap EventLogger::getExceptionData(
305b53d97c9SAnupama B R const std::exception& i_exception)
306b53d97c9SAnupama B R {
307b53d97c9SAnupama B R types::ExceptionDataMap l_errorInfo{
308*4fa796cbSSunny Srivastava {"ErrorType", types::ErrorType::FirmwareError},
309b53d97c9SAnupama B R {"ErrorMsg", i_exception.what()}};
310b53d97c9SAnupama B R
311b53d97c9SAnupama B R try
312b53d97c9SAnupama B R {
313b53d97c9SAnupama B R if (typeid(i_exception) == typeid(DataException))
314b53d97c9SAnupama B R {
315b53d97c9SAnupama B R const DataException& l_ex =
316b53d97c9SAnupama B R dynamic_cast<const DataException&>(i_exception);
317b53d97c9SAnupama B R l_errorInfo["ErrorType"] = l_ex.getErrorType();
318b53d97c9SAnupama B R l_errorInfo["ErrorMsg"] =
319b53d97c9SAnupama B R std::string("Data Exception. Reason: ") + i_exception.what();
320b53d97c9SAnupama B R }
321b53d97c9SAnupama B R else if (typeid(i_exception) == typeid(EccException))
322b53d97c9SAnupama B R {
323b53d97c9SAnupama B R const EccException& l_ex =
324b53d97c9SAnupama B R dynamic_cast<const EccException&>(i_exception);
325b53d97c9SAnupama B R l_errorInfo["ErrorType"] = l_ex.getErrorType();
326b53d97c9SAnupama B R l_errorInfo["ErrorMsg"] =
327b53d97c9SAnupama B R std::string("Ecc Exception. Reason: ") + i_exception.what();
328b53d97c9SAnupama B R }
329b53d97c9SAnupama B R else if (typeid(i_exception) == typeid(JsonException))
330b53d97c9SAnupama B R {
331b53d97c9SAnupama B R const JsonException& l_ex =
332b53d97c9SAnupama B R dynamic_cast<const JsonException&>(i_exception);
333b53d97c9SAnupama B R l_errorInfo["ErrorType"] = l_ex.getErrorType();
334b53d97c9SAnupama B R l_errorInfo["ErrorMsg"] =
335b53d97c9SAnupama B R std::string("Json Exception. Reason: ") + i_exception.what();
336b53d97c9SAnupama B R }
337b53d97c9SAnupama B R else if (typeid(i_exception) == typeid(GpioException))
338b53d97c9SAnupama B R {
339b53d97c9SAnupama B R const GpioException& l_ex =
340b53d97c9SAnupama B R dynamic_cast<const GpioException&>(i_exception);
341b53d97c9SAnupama B R l_errorInfo["ErrorType"] = l_ex.getErrorType();
342b53d97c9SAnupama B R l_errorInfo["ErrorMsg"] =
343b53d97c9SAnupama B R std::string("Gpio Exception. Reason: ") + i_exception.what();
344b53d97c9SAnupama B R }
345b53d97c9SAnupama B R else if (typeid(i_exception) == typeid(DbusException))
346b53d97c9SAnupama B R {
347b53d97c9SAnupama B R const DbusException& l_ex =
348b53d97c9SAnupama B R dynamic_cast<const DbusException&>(i_exception);
349b53d97c9SAnupama B R l_errorInfo["ErrorType"] = l_ex.getErrorType();
350b53d97c9SAnupama B R l_errorInfo["ErrorMsg"] =
351b53d97c9SAnupama B R std::string("Dbus Exception. Reason: ") + i_exception.what();
352b53d97c9SAnupama B R }
353b53d97c9SAnupama B R else if (typeid(i_exception) == typeid(FirmwareException))
354b53d97c9SAnupama B R {
355b53d97c9SAnupama B R const FirmwareException& l_ex =
356b53d97c9SAnupama B R dynamic_cast<const FirmwareException&>(i_exception);
357b53d97c9SAnupama B R l_errorInfo["ErrorType"] = l_ex.getErrorType();
358b53d97c9SAnupama B R l_errorInfo["ErrorMsg"] =
359b53d97c9SAnupama B R std::string("Firmware Exception. Reason: ") +
360b53d97c9SAnupama B R i_exception.what();
361b53d97c9SAnupama B R }
362b53d97c9SAnupama B R else if (typeid(i_exception) == typeid(EepromException))
363b53d97c9SAnupama B R {
364b53d97c9SAnupama B R const EepromException& l_ex =
365b53d97c9SAnupama B R dynamic_cast<const EepromException&>(i_exception);
366b53d97c9SAnupama B R l_errorInfo["ErrorType"] = l_ex.getErrorType();
367b53d97c9SAnupama B R l_errorInfo["ErrorMsg"] =
368b53d97c9SAnupama B R std::string("Eeprom Exception. Reason: ") + i_exception.what();
369b53d97c9SAnupama B R }
370b53d97c9SAnupama B R }
371b53d97c9SAnupama B R catch (const std::exception& l_ex)
372b53d97c9SAnupama B R {
373b53d97c9SAnupama B R logging::logMessage(
374b53d97c9SAnupama B R "Failed to get error info, reason: " + std::string(l_ex.what()));
375b53d97c9SAnupama B R }
376b53d97c9SAnupama B R return l_errorInfo;
377b53d97c9SAnupama B R }
37815a189a9SSunny Srivastava
getErrorType(const std::exception & i_exception)37915a189a9SSunny Srivastava types::ErrorType EventLogger::getErrorType(const std::exception& i_exception)
38015a189a9SSunny Srivastava {
38115a189a9SSunny Srivastava const auto& l_exceptionDataMap = getExceptionData(i_exception);
38215a189a9SSunny Srivastava
38315a189a9SSunny Srivastava auto l_itrToErrType = l_exceptionDataMap.find("ErrorType");
38415a189a9SSunny Srivastava if (l_itrToErrType == l_exceptionDataMap.end())
38515a189a9SSunny Srivastava {
386*4fa796cbSSunny Srivastava return types::ErrorType::FirmwareError;
38715a189a9SSunny Srivastava }
38815a189a9SSunny Srivastava
38915a189a9SSunny Srivastava auto l_ptrToErrType =
39015a189a9SSunny Srivastava std::get_if<types::ErrorType>(&l_itrToErrType->second);
39115a189a9SSunny Srivastava if (!l_ptrToErrType)
39215a189a9SSunny Srivastava {
393*4fa796cbSSunny Srivastava return types::ErrorType::FirmwareError;
39415a189a9SSunny Srivastava }
39515a189a9SSunny Srivastava
39615a189a9SSunny Srivastava return *l_ptrToErrType;
39715a189a9SSunny Srivastava }
39815a189a9SSunny Srivastava
getErrorMsg(const std::exception & i_exception)39915a189a9SSunny Srivastava std::string EventLogger::getErrorMsg(const std::exception& i_exception)
40015a189a9SSunny Srivastava {
40115a189a9SSunny Srivastava const auto& l_exceptionDataMap = getExceptionData(i_exception);
40215a189a9SSunny Srivastava
40315a189a9SSunny Srivastava auto l_itrToErrMsg = l_exceptionDataMap.find("ErrorMsg");
40415a189a9SSunny Srivastava if (l_itrToErrMsg == l_exceptionDataMap.end())
40515a189a9SSunny Srivastava {
40615a189a9SSunny Srivastava return i_exception.what();
40715a189a9SSunny Srivastava }
40815a189a9SSunny Srivastava
40915a189a9SSunny Srivastava auto l_ptrToErrMsg = std::get_if<std::string>(&l_itrToErrMsg->second);
41015a189a9SSunny Srivastava if (!l_ptrToErrMsg)
41115a189a9SSunny Srivastava {
41215a189a9SSunny Srivastava return i_exception.what();
41315a189a9SSunny Srivastava }
41415a189a9SSunny Srivastava
41515a189a9SSunny Srivastava return *l_ptrToErrMsg;
41615a189a9SSunny Srivastava }
417fa5e4d32SSunny Srivastava } // namespace vpd
418