blob: 436f572f5449071725b348035f5d51d578ba6fc2 [file] [log] [blame]
Adriana Kobylak8f7941e2016-11-14 14:46:23 -06001#pragma once
2
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -05003#include "elog_block.hpp"
Adriana Kobylakdf995fa2017-01-08 15:14:02 -06004#include "elog_entry.hpp"
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -05005#include "xyz/openbmc_project/Collection/DeleteAll/server.hpp"
Matt Spinler3fb83b32019-07-26 11:22:44 -05006#include "xyz/openbmc_project/Logging/Create/server.hpp"
7#include "xyz/openbmc_project/Logging/Entry/server.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -07008#include "xyz/openbmc_project/Logging/Internal/Manager/server.hpp"
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +08009#include "xyz/openbmc_project/Logging/error.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -070010
Patrick Venturef18bf832018-10-26 18:14:00 -070011#include <phosphor-logging/log.hpp>
12#include <sdbusplus/bus.hpp>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060013
Patrick Williams2544b412022-10-04 08:41:06 -050014#include <list>
15
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060016namespace phosphor
17{
18namespace logging
19{
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060020
Patrick Venturef18bf832018-10-26 18:14:00 -070021extern const std::map<std::string, std::vector<std::string>> g_errMetaMap;
22extern const std::map<std::string, level> g_errLevelMap;
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060023
Willy Tu6ddbf692023-09-05 10:54:16 -070024using CreateIface = sdbusplus::server::xyz::openbmc_project::logging::Create;
Matt Spinler3fb83b32019-07-26 11:22:44 -050025using DeleteAllIface =
Willy Tu6ddbf692023-09-05 10:54:16 -070026 sdbusplus::server::xyz::openbmc_project::collection::DeleteAll;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050027
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +080028using Severity = sdbusplus::xyz::openbmc_project::Logging::server::Entry::Level;
29using LogsCleared =
30 sdbusplus::xyz::openbmc_project::Logging::Error::LogsCleared;
31
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060032namespace details
33{
Matt Spinler3fb83b32019-07-26 11:22:44 -050034template <typename... T>
Patrick Williams45e83522022-07-22 19:26:52 -050035using ServerObject = typename sdbusplus::server::object_t<T...>;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060036
37using ManagerIface =
Willy Tu6ddbf692023-09-05 10:54:16 -070038 sdbusplus::server::xyz::openbmc_project::logging::internal::Manager;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060039
40} // namespace details
41
Matt Spinlerc64b7122020-03-26 10:55:01 -050042constexpr size_t ffdcFormatPos = 0;
43constexpr size_t ffdcSubtypePos = 1;
44constexpr size_t ffdcVersionPos = 2;
45constexpr size_t ffdcFDPos = 3;
46
47using FFDCEntry = std::tuple<CreateIface::FFDCFormat, uint8_t, uint8_t,
48 sdbusplus::message::unix_fd>;
49
50using FFDCEntries = std::vector<FFDCEntry>;
51
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050052namespace internal
53{
54
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060055/** @class Manager
56 * @brief OpenBMC logging manager implementation.
57 * @details A concrete implementation for the
58 * xyz.openbmc_project.Logging.Internal.Manager DBus API.
59 */
Adriana Kobylakf477fe22017-01-06 11:56:41 -060060class Manager : public details::ServerObject<details::ManagerIface>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060061{
Patrick Venturef18bf832018-10-26 18:14:00 -070062 public:
63 Manager() = delete;
64 Manager(const Manager&) = delete;
65 Manager& operator=(const Manager&) = delete;
66 Manager(Manager&&) = delete;
67 Manager& operator=(Manager&&) = delete;
68 virtual ~Manager() = default;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060069
Patrick Venturef18bf832018-10-26 18:14:00 -070070 /** @brief Constructor to put object onto bus at a dbus path.
71 * @param[in] bus - Bus to attach to.
72 * @param[in] path - Path to attach at.
73 */
Patrick Williams45e83522022-07-22 19:26:52 -050074 Manager(sdbusplus::bus_t& bus, const char* objPath) :
Patrick Venturef18bf832018-10-26 18:14:00 -070075 details::ServerObject<details::ManagerIface>(bus, objPath), busLog(bus),
Patrick Williams075c7922024-08-16 15:19:49 -040076 entryId(0), fwVersion(readFWVersion()) {};
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060077
Patrick Venturef18bf832018-10-26 18:14:00 -070078 /*
79 * @fn commit()
80 * @brief sd_bus Commit method implementation callback.
81 * @details Create an error/event log based on transaction id and
82 * error message.
83 * @param[in] transactionId - Unique identifier of the journal entries
84 * to be committed.
85 * @param[in] errMsg - The error exception message associated with the
86 * error log to be committed.
87 */
Lei YUb50c7052021-01-21 16:02:26 +080088 uint32_t commit(uint64_t transactionId, std::string errMsg) override;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060089
Patrick Venturef18bf832018-10-26 18:14:00 -070090 /*
91 * @fn commit()
92 * @brief sd_bus CommitWithLvl method implementation callback.
93 * @details Create an error/event log based on transaction id and
94 * error message.
95 * @param[in] transactionId - Unique identifier of the journal entries
96 * to be committed.
97 * @param[in] errMsg - The error exception message associated with the
98 * error log to be committed.
99 * @param[in] errLvl - level of the error
100 */
Lei YUb50c7052021-01-21 16:02:26 +0800101 uint32_t commitWithLvl(uint64_t transactionId, std::string errMsg,
102 uint32_t errLvl) override;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -0600103
Patrick Venturef18bf832018-10-26 18:14:00 -0700104 /** @brief Erase specified entry d-bus object
105 *
106 * @param[in] entryId - unique identifier of the entry
107 */
108 void erase(uint32_t entryId);
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500109
Patrick Venturef18bf832018-10-26 18:14:00 -0700110 /** @brief Construct error d-bus objects from their persisted
111 * representations.
112 */
113 void restore();
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500114
Patrick Venturef18bf832018-10-26 18:14:00 -0700115 /** @brief Erase all error log entries
116 *
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800117 * @return size_t - count of erased entries
Patrick Venturef18bf832018-10-26 18:14:00 -0700118 */
harsh-agarwal1d763db32024-09-03 09:18:50 -0500119 size_t eraseAll();
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500120
Patrick Venturef18bf832018-10-26 18:14:00 -0700121 /** @brief Returns the count of high severity errors
122 *
123 * @return int - count of real errors
124 */
125 int getRealErrSize();
Nagaraju Goruganti477b7312018-06-25 23:28:58 -0500126
Patrick Venturef18bf832018-10-26 18:14:00 -0700127 /** @brief Returns the count of Info errors
128 *
129 * @return int - count of info errors
130 */
131 int getInfoErrSize();
Nagaraju Goruganti477b7312018-06-25 23:28:58 -0500132
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500133 /** @brief Returns the number of blocking errors
134 *
135 * @return int - count of blocking errors
136 */
137 int getBlockingErrSize()
138 {
139 return blockingErrors.size();
140 }
141
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500142 /** @brief Returns the number of property change callback objects
143 *
144 * @return int - count of property callback entries
145 */
146 int getEntryCallbackSize()
147 {
148 return propChangedEntryCallback.size();
149 }
150
Matt Spinler44893cc2020-08-26 11:34:17 -0500151 /**
152 * @brief Returns the sdbusplus bus object
153 *
Patrick Williams45e83522022-07-22 19:26:52 -0500154 * @return sdbusplus::bus_t&
Matt Spinler44893cc2020-08-26 11:34:17 -0500155 */
Patrick Williams45e83522022-07-22 19:26:52 -0500156 sdbusplus::bus_t& getBus()
Matt Spinler8ebfd312019-06-03 12:43:59 -0500157 {
158 return busLog;
159 }
160
Matt Spinler44893cc2020-08-26 11:34:17 -0500161 /**
162 * @brief Returns the ID of the last created entry
163 *
164 * @return uint32_t - The ID
165 */
166 uint32_t lastEntryID() const
167 {
168 return entryId;
169 }
170
Matt Spinler3fb83b32019-07-26 11:22:44 -0500171 /** @brief Creates an event log
172 *
173 * This is an alternative to the _commit() API. It doesn't use
174 * the journal to look up event log metadata like _commit does.
175 *
176 * @param[in] errMsg - The error exception message associated with the
177 * error log to be committed.
178 * @param[in] severity - level of the error
179 * @param[in] additionalData - The AdditionalData property for the error
Paul Fertser221b79b2024-03-04 15:40:23 +0000180 * @param[in] ffdc - A vector of tuples that allows one to pass in file
181 * descriptors for files that contain FFDC (First
182 * Failure Data Capture). These will be passed to any
183 * event logging extensions.
Matt Spinler3fb83b32019-07-26 11:22:44 -0500184 */
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800185 void create(const std::string& message, Severity severity,
Paul Fertser221b79b2024-03-04 15:40:23 +0000186 const std::map<std::string, std::string>& additionalData,
187 const FFDCEntries& ffdc = FFDCEntries{});
Matt Spinlerc64b7122020-03-26 10:55:01 -0500188
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500189 /** @brief Common wrapper for creating an Entry object
190 *
191 * @return true if quiesce on error setting is enabled, false otherwise
192 */
193 bool isQuiesceOnErrorEnabled();
194
Andrew Geissler32874542020-07-09 09:17:03 -0500195 /** @brief Create boot block association and quiesce host if running
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500196 *
Andrew Geissler32874542020-07-09 09:17:03 -0500197 * @param[in] entryId - The ID of the phosphor logging error
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500198 */
Andrew Geissler32874542020-07-09 09:17:03 -0500199 void quiesceOnError(const uint32_t entryId);
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500200
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500201 /** @brief Check if inventory callout present in input entry
202 *
203 * @param[in] entry - The error to check for callouts
204 *
205 * @return true if inventory item in associations, false otherwise
206 */
207 bool isCalloutPresent(const Entry& entry);
208
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500209 /** @brief Check (and remove) entry being erased from blocking errors
210 *
211 * @param[in] entryId - The entry that is being erased
212 */
213 void checkAndRemoveBlockingError(uint32_t entryId);
214
Adriana Kobylake7d271a2020-12-07 14:32:44 -0600215 /** @brief Persistent map of Entry dbus objects and their ID */
216 std::map<uint32_t, std::unique_ptr<Entry>> entries;
217
Patrick Venturef18bf832018-10-26 18:14:00 -0700218 private:
219 /*
220 * @fn _commit()
221 * @brief commit() helper
222 * @param[in] transactionId - Unique identifier of the journal entries
223 * to be committed.
224 * @param[in] errMsg - The error exception message associated with the
225 * error log to be committed.
226 * @param[in] errLvl - level of the error
227 */
228 void _commit(uint64_t transactionId, std::string&& errMsg,
229 Entry::Level errLvl);
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -0500230
Patrick Venturef18bf832018-10-26 18:14:00 -0700231 /** @brief Call metadata handler(s), if any. Handlers may create
232 * associations.
233 * @param[in] errorName - name of the error
234 * @param[in] additionalData - list of metadata (in key=value format)
235 * @param[out] objects - list of error's association objects
236 */
237 void processMetadata(const std::string& errorName,
238 const std::vector<std::string>& additionalData,
239 AssociationList& objects) const;
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600240
Patrick Venturef18bf832018-10-26 18:14:00 -0700241 /** @brief Reads the BMC code level
242 *
243 * @return std::string - the version string
244 */
245 static std::string readFWVersion();
Matt Spinler1275bd12018-05-01 15:13:53 -0500246
Matt Spinler99c2b402019-05-23 14:29:16 -0500247 /** @brief Call any create() functions provided by any extensions.
248 * This is called right after an event log is created to allow
249 * extensions to create their own log based on this one.
250 *
251 * @param[in] entry - the new event log entry
Matt Spinlerc64b7122020-03-26 10:55:01 -0500252 * @param[in] ffdc - A vector of FFDC file info
Matt Spinler99c2b402019-05-23 14:29:16 -0500253 */
Matt Spinlerc64b7122020-03-26 10:55:01 -0500254 void doExtensionLogCreate(const Entry& entry, const FFDCEntries& ffdc);
Matt Spinler99c2b402019-05-23 14:29:16 -0500255
Matt Spinlerb60e7552019-07-24 15:28:08 -0500256 /** @brief Common wrapper for creating an Entry object
257 *
258 * @param[in] errMsg - The error exception message associated with the
259 * error log to be committed.
260 * @param[in] errLvl - level of the error
261 * @param[in] additionalData - The AdditionalData property for the error
Matt Spinlerc64b7122020-03-26 10:55:01 -0500262 * @param[in] ffdc - A vector of FFDC file info. Defaults to an empty
263 * vector.
Matt Spinlerb60e7552019-07-24 15:28:08 -0500264 */
265 void createEntry(std::string errMsg, Entry::Level errLvl,
Matt Spinlerc64b7122020-03-26 10:55:01 -0500266 std::vector<std::string> additionalData,
267 const FFDCEntries& ffdc = FFDCEntries{});
Matt Spinlerb60e7552019-07-24 15:28:08 -0500268
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500269 /** @brief Notified on entry property changes
270 *
271 * If an entry is blocking, this callback will be registered to monitor for
272 * the entry having it's Resolved field set to true. If it is then remove
273 * the blocking object.
274 *
275 * @param[in] msg - sdbusplus dbusmessage
276 */
Patrick Williams45e83522022-07-22 19:26:52 -0500277 void onEntryResolve(sdbusplus::message_t& msg);
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500278
279 /** @brief Remove block objects for any resolved entries */
280 void findAndRemoveResolvedBlocks();
281
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500282 /** @brief Quiesce host if it is running
283 *
284 * This is called when the user has requested the system be quiesced
285 * if a log with a callout is created
286 */
287 void checkAndQuiesceHost();
288
Patrick Venturef18bf832018-10-26 18:14:00 -0700289 /** @brief Persistent sdbusplus DBus bus connection. */
Patrick Williams45e83522022-07-22 19:26:52 -0500290 sdbusplus::bus_t& busLog;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -0600291
Patrick Venturef18bf832018-10-26 18:14:00 -0700292 /** @brief List of error ids for high severity errors */
293 std::list<uint32_t> realErrors;
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600294
Patrick Venturef18bf832018-10-26 18:14:00 -0700295 /** @brief List of error ids for Info(and below) severity */
296 std::list<uint32_t> infoErrors;
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500297
Patrick Venturef18bf832018-10-26 18:14:00 -0700298 /** @brief Id of last error log entry */
299 uint32_t entryId;
Matt Spinler1275bd12018-05-01 15:13:53 -0500300
Patrick Venturef18bf832018-10-26 18:14:00 -0700301 /** @brief The BMC firmware version */
302 const std::string fwVersion;
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500303
304 /** @brief Array of blocking errors */
305 std::vector<std::unique_ptr<Block>> blockingErrors;
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500306
307 /** @brief Map of entry id to call back object on properties changed */
Patrick Williams45e83522022-07-22 19:26:52 -0500308 std::map<uint32_t, std::unique_ptr<sdbusplus::bus::match_t>>
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500309 propChangedEntryCallback;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600310};
311
Patrick Venturef18bf832018-10-26 18:14:00 -0700312} // namespace internal
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500313
314/** @class Manager
Matt Spinler3fb83b32019-07-26 11:22:44 -0500315 * @brief Implementation for deleting all error log entries and
316 * creating new logs.
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500317 * @details A concrete implementation for the
Matt Spinler3fb83b32019-07-26 11:22:44 -0500318 * xyz.openbmc_project.Collection.DeleteAll and
319 * xyz.openbmc_project.Logging.Create interfaces.
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500320 */
Matt Spinler3fb83b32019-07-26 11:22:44 -0500321class Manager : public details::ServerObject<DeleteAllIface, CreateIface>
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500322{
Patrick Venturef18bf832018-10-26 18:14:00 -0700323 public:
324 Manager() = delete;
325 Manager(const Manager&) = delete;
326 Manager& operator=(const Manager&) = delete;
327 Manager(Manager&&) = delete;
328 Manager& operator=(Manager&&) = delete;
329 virtual ~Manager() = default;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500330
Patrick Venturef18bf832018-10-26 18:14:00 -0700331 /** @brief Constructor to put object onto bus at a dbus path.
332 * Defer signal registration (pass true for deferSignal to the
333 * base class) until after the properties are set.
334 * @param[in] bus - Bus to attach to.
335 * @param[in] path - Path to attach at.
336 * @param[in] manager - Reference to internal manager object.
337 */
Patrick Williams45e83522022-07-22 19:26:52 -0500338 Manager(sdbusplus::bus_t& bus, const std::string& path,
Patrick Venturef18bf832018-10-26 18:14:00 -0700339 internal::Manager& manager) :
Patrick Williams6ef6b252022-03-30 14:28:27 -0500340 details::ServerObject<DeleteAllIface, CreateIface>(
341 bus, path.c_str(),
342 details::ServerObject<DeleteAllIface,
343 CreateIface>::action::defer_emit),
Patrick Williams075c7922024-08-16 15:19:49 -0400344 manager(manager) {};
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500345
Patrick Venturef18bf832018-10-26 18:14:00 -0700346 /** @brief Delete all d-bus objects.
347 */
Patrick Williamsec4eaea2021-08-28 15:10:15 -0500348 void deleteAll() override
Patrick Venturef18bf832018-10-26 18:14:00 -0700349 {
Matt Spinlerf6f51232022-03-09 10:11:53 -0600350 log<level::INFO>("Deleting all log entries");
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800351 auto numbersOfLogs = manager.eraseAll();
352 std::map<std::string, std::string> additionalData;
353 additionalData.emplace("NUM_LOGS", std::to_string(numbersOfLogs));
354 manager.create(LogsCleared::errName, Severity::Informational,
355 additionalData);
Patrick Venturef18bf832018-10-26 18:14:00 -0700356 }
357
Matt Spinler3fb83b32019-07-26 11:22:44 -0500358 /** @brief D-Bus method call implementation to create an event log.
359 *
360 * @param[in] errMsg - The error exception message associated with the
361 * error log to be committed.
362 * @param[in] severity - Level of the error
363 * @param[in] additionalData - The AdditionalData property for the error
364 */
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800365 void create(std::string message, Severity severity,
366 std::map<std::string, std::string> additionalData) override
Matt Spinler3fb83b32019-07-26 11:22:44 -0500367 {
368 manager.create(message, severity, additionalData);
369 }
370
Matt Spinlerc64b7122020-03-26 10:55:01 -0500371 /** @brief D-Bus method call implementation to create an event log with FFDC
372 *
373 * The same as create(), but takes an extra FFDC argument.
374 *
375 * @param[in] errMsg - The error exception message associated with the
376 * error log to be committed.
377 * @param[in] severity - Level of the error
378 * @param[in] additionalData - The AdditionalData property for the error
379 * @param[in] ffdc - A vector of FFDC file info
380 */
Matt Spinlerfcbaf3e2020-03-23 09:22:45 -0500381 void createWithFFDCFiles(
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800382 std::string message, Severity severity,
Matt Spinlerfcbaf3e2020-03-23 09:22:45 -0500383 std::map<std::string, std::string> additionalData,
384 std::vector<std::tuple<CreateIface::FFDCFormat, uint8_t, uint8_t,
385 sdbusplus::message::unix_fd>>
386 ffdc) override
387 {
Paul Fertser221b79b2024-03-04 15:40:23 +0000388 manager.create(message, severity, additionalData, ffdc);
Matt Spinlerfcbaf3e2020-03-23 09:22:45 -0500389 }
390
Patrick Venturef18bf832018-10-26 18:14:00 -0700391 private:
392 /** @brief This is a reference to manager object */
393 internal::Manager& manager;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500394};
395
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600396} // namespace logging
397} // namespace phosphor