blob: 700a39a24c1c67f1b2f42c13b625eb289b4b6b8b [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"
9
10#include <list>
11#include <phosphor-logging/log.hpp>
12#include <sdbusplus/bus.hpp>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060013
14namespace phosphor
15{
16namespace logging
17{
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060018
Patrick Venturef18bf832018-10-26 18:14:00 -070019extern const std::map<std::string, std::vector<std::string>> g_errMetaMap;
20extern const std::map<std::string, level> g_errLevelMap;
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060021
Matt Spinler3fb83b32019-07-26 11:22:44 -050022using CreateIface = sdbusplus::xyz::openbmc_project::Logging::server::Create;
23using DeleteAllIface =
24 sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050025
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060026namespace details
27{
Matt Spinler3fb83b32019-07-26 11:22:44 -050028template <typename... T>
29using ServerObject = typename sdbusplus::server::object::object<T...>;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060030
31using ManagerIface =
32 sdbusplus::xyz::openbmc_project::Logging::Internal::server::Manager;
33
34} // namespace details
35
Matt Spinlerc64b7122020-03-26 10:55:01 -050036constexpr size_t ffdcFormatPos = 0;
37constexpr size_t ffdcSubtypePos = 1;
38constexpr size_t ffdcVersionPos = 2;
39constexpr size_t ffdcFDPos = 3;
40
41using FFDCEntry = std::tuple<CreateIface::FFDCFormat, uint8_t, uint8_t,
42 sdbusplus::message::unix_fd>;
43
44using FFDCEntries = std::vector<FFDCEntry>;
45
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050046namespace internal
47{
48
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060049/** @class Manager
50 * @brief OpenBMC logging manager implementation.
51 * @details A concrete implementation for the
52 * xyz.openbmc_project.Logging.Internal.Manager DBus API.
53 */
Adriana Kobylakf477fe22017-01-06 11:56:41 -060054class Manager : public details::ServerObject<details::ManagerIface>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060055{
Patrick Venturef18bf832018-10-26 18:14:00 -070056 public:
57 Manager() = delete;
58 Manager(const Manager&) = delete;
59 Manager& operator=(const Manager&) = delete;
60 Manager(Manager&&) = delete;
61 Manager& operator=(Manager&&) = delete;
62 virtual ~Manager() = default;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060063
Patrick Venturef18bf832018-10-26 18:14:00 -070064 /** @brief Constructor to put object onto bus at a dbus path.
65 * @param[in] bus - Bus to attach to.
66 * @param[in] path - Path to attach at.
67 */
68 Manager(sdbusplus::bus::bus& bus, const char* objPath) :
69 details::ServerObject<details::ManagerIface>(bus, objPath), busLog(bus),
70 entryId(0), fwVersion(readFWVersion()){};
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060071
Patrick Venturef18bf832018-10-26 18:14:00 -070072 /*
73 * @fn commit()
74 * @brief sd_bus Commit method implementation callback.
75 * @details Create an error/event log based on transaction id and
76 * error message.
77 * @param[in] transactionId - Unique identifier of the journal entries
78 * to be committed.
79 * @param[in] errMsg - The error exception message associated with the
80 * error log to be committed.
81 */
82 void commit(uint64_t transactionId, std::string errMsg) override;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060083
Patrick Venturef18bf832018-10-26 18:14:00 -070084 /*
85 * @fn commit()
86 * @brief sd_bus CommitWithLvl method implementation callback.
87 * @details Create an error/event log based on transaction id and
88 * error message.
89 * @param[in] transactionId - Unique identifier of the journal entries
90 * to be committed.
91 * @param[in] errMsg - The error exception message associated with the
92 * error log to be committed.
93 * @param[in] errLvl - level of the error
94 */
95 void commitWithLvl(uint64_t transactionId, std::string errMsg,
96 uint32_t errLvl) override;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060097
Patrick Venturef18bf832018-10-26 18:14:00 -070098 /** @brief Erase specified entry d-bus object
99 *
100 * @param[in] entryId - unique identifier of the entry
101 */
102 void erase(uint32_t entryId);
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500103
Patrick Venturef18bf832018-10-26 18:14:00 -0700104 /** @brief Construct error d-bus objects from their persisted
105 * representations.
106 */
107 void restore();
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500108
Patrick Venturef18bf832018-10-26 18:14:00 -0700109 /** @brief Erase all error log entries
110 *
111 */
112 void eraseAll()
113 {
114 auto iter = entries.begin();
115 while (iter != entries.end())
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500116 {
Patrick Venture34438962018-10-30 13:17:37 -0700117 auto e = iter->first;
Patrick Venturef18bf832018-10-26 18:14:00 -0700118 ++iter;
Patrick Venture34438962018-10-30 13:17:37 -0700119 erase(e);
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500120 }
Patrick Venturef18bf832018-10-26 18:14:00 -0700121 }
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500122
Patrick Venturef18bf832018-10-26 18:14:00 -0700123 /** @brief Returns the count of high severity errors
124 *
125 * @return int - count of real errors
126 */
127 int getRealErrSize();
Nagaraju Goruganti477b7312018-06-25 23:28:58 -0500128
Patrick Venturef18bf832018-10-26 18:14:00 -0700129 /** @brief Returns the count of Info errors
130 *
131 * @return int - count of info errors
132 */
133 int getInfoErrSize();
Nagaraju Goruganti477b7312018-06-25 23:28:58 -0500134
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500135 /** @brief Returns the number of blocking errors
136 *
137 * @return int - count of blocking errors
138 */
139 int getBlockingErrSize()
140 {
141 return blockingErrors.size();
142 }
143
Matt Spinler8ebfd312019-06-03 12:43:59 -0500144 sdbusplus::bus::bus& getBus()
145 {
146 return busLog;
147 }
148
Matt Spinler3fb83b32019-07-26 11:22:44 -0500149 /** @brief Creates an event log
150 *
151 * This is an alternative to the _commit() API. It doesn't use
152 * the journal to look up event log metadata like _commit does.
153 *
154 * @param[in] errMsg - The error exception message associated with the
155 * error log to be committed.
156 * @param[in] severity - level of the error
157 * @param[in] additionalData - The AdditionalData property for the error
158 */
159 void create(
160 const std::string& message,
161 sdbusplus::xyz::openbmc_project::Logging::server::Entry::Level severity,
162 const std::map<std::string, std::string>& additionalData);
163
Matt Spinlerc64b7122020-03-26 10:55:01 -0500164 /** @brief Creates an event log, and accepts FFDC files
165 *
166 * This is the same as create(), but also takes an FFDC argument.
167 *
168 * The FFDC argument is a vector of tuples that allows one to pass in file
169 * descriptors for files that contain FFDC (First Failure Data Capture).
170 * These will be passed to any event logging extensions.
171 *
172 * @param[in] errMsg - The error exception message associated with the
173 * error log to be committed.
174 * @param[in] severity - level of the error
175 * @param[in] additionalData - The AdditionalData property for the error
176 * @param[in] ffdc - A vector of FFDC file info
177 */
178 void createWithFFDC(
179 const std::string& message,
180 sdbusplus::xyz::openbmc_project::Logging::server::Entry::Level severity,
181 const std::map<std::string, std::string>& additionalData,
182 const FFDCEntries& ffdc);
183
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500184 /** @brief Common wrapper for creating an Entry object
185 *
186 * @return true if quiesce on error setting is enabled, false otherwise
187 */
188 bool isQuiesceOnErrorEnabled();
189
190 /** @brief Check if error has callout and if so, block boot
191 *
192 * @param[in] entry - The error to check for callouts
193 */
194 void checkQuiesceOnError(const Entry& entry);
195
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500196 /** @brief Check if inventory callout present in input entry
197 *
198 * @param[in] entry - The error to check for callouts
199 *
200 * @return true if inventory item in associations, false otherwise
201 */
202 bool isCalloutPresent(const Entry& entry);
203
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500204 /** @brief Check (and remove) entry being erased from blocking errors
205 *
206 * @param[in] entryId - The entry that is being erased
207 */
208 void checkAndRemoveBlockingError(uint32_t entryId);
209
Patrick Venturef18bf832018-10-26 18:14:00 -0700210 private:
211 /*
212 * @fn _commit()
213 * @brief commit() helper
214 * @param[in] transactionId - Unique identifier of the journal entries
215 * to be committed.
216 * @param[in] errMsg - The error exception message associated with the
217 * error log to be committed.
218 * @param[in] errLvl - level of the error
219 */
220 void _commit(uint64_t transactionId, std::string&& errMsg,
221 Entry::Level errLvl);
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -0500222
Patrick Venturef18bf832018-10-26 18:14:00 -0700223 /** @brief Call metadata handler(s), if any. Handlers may create
224 * associations.
225 * @param[in] errorName - name of the error
226 * @param[in] additionalData - list of metadata (in key=value format)
227 * @param[out] objects - list of error's association objects
228 */
229 void processMetadata(const std::string& errorName,
230 const std::vector<std::string>& additionalData,
231 AssociationList& objects) const;
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600232
Patrick Venturef18bf832018-10-26 18:14:00 -0700233 /** @brief Synchronize unwritten journal messages to disk.
234 * @details This is the same implementation as the systemd command
235 * "journalctl --sync".
236 */
237 void journalSync();
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500238
Patrick Venturef18bf832018-10-26 18:14:00 -0700239 /** @brief Reads the BMC code level
240 *
241 * @return std::string - the version string
242 */
243 static std::string readFWVersion();
Matt Spinler1275bd12018-05-01 15:13:53 -0500244
Matt Spinler99c2b402019-05-23 14:29:16 -0500245 /** @brief Call any create() functions provided by any extensions.
246 * This is called right after an event log is created to allow
247 * extensions to create their own log based on this one.
248 *
249 * @param[in] entry - the new event log entry
Matt Spinlerc64b7122020-03-26 10:55:01 -0500250 * @param[in] ffdc - A vector of FFDC file info
Matt Spinler99c2b402019-05-23 14:29:16 -0500251 */
Matt Spinlerc64b7122020-03-26 10:55:01 -0500252 void doExtensionLogCreate(const Entry& entry, const FFDCEntries& ffdc);
Matt Spinler99c2b402019-05-23 14:29:16 -0500253
Matt Spinlerb60e7552019-07-24 15:28:08 -0500254 /** @brief Common wrapper for creating an Entry object
255 *
256 * @param[in] errMsg - The error exception message associated with the
257 * error log to be committed.
258 * @param[in] errLvl - level of the error
259 * @param[in] additionalData - The AdditionalData property for the error
Matt Spinlerc64b7122020-03-26 10:55:01 -0500260 * @param[in] ffdc - A vector of FFDC file info. Defaults to an empty
261 * vector.
Matt Spinlerb60e7552019-07-24 15:28:08 -0500262 */
263 void createEntry(std::string errMsg, Entry::Level errLvl,
Matt Spinlerc64b7122020-03-26 10:55:01 -0500264 std::vector<std::string> additionalData,
265 const FFDCEntries& ffdc = FFDCEntries{});
Matt Spinlerb60e7552019-07-24 15:28:08 -0500266
Patrick Venturef18bf832018-10-26 18:14:00 -0700267 /** @brief Persistent sdbusplus DBus bus connection. */
268 sdbusplus::bus::bus& busLog;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -0600269
Patrick Venturef18bf832018-10-26 18:14:00 -0700270 /** @brief Persistent map of Entry dbus objects and their ID */
271 std::map<uint32_t, std::unique_ptr<Entry>> entries;
Adriana Kobylak4ea7f312017-01-10 12:52:34 -0600272
Patrick Venturef18bf832018-10-26 18:14:00 -0700273 /** @brief List of error ids for high severity errors */
274 std::list<uint32_t> realErrors;
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600275
Patrick Venturef18bf832018-10-26 18:14:00 -0700276 /** @brief List of error ids for Info(and below) severity */
277 std::list<uint32_t> infoErrors;
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500278
Patrick Venturef18bf832018-10-26 18:14:00 -0700279 /** @brief Id of last error log entry */
280 uint32_t entryId;
Matt Spinler1275bd12018-05-01 15:13:53 -0500281
Patrick Venturef18bf832018-10-26 18:14:00 -0700282 /** @brief The BMC firmware version */
283 const std::string fwVersion;
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500284
285 /** @brief Array of blocking errors */
286 std::vector<std::unique_ptr<Block>> blockingErrors;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600287};
288
Patrick Venturef18bf832018-10-26 18:14:00 -0700289} // namespace internal
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500290
291/** @class Manager
Matt Spinler3fb83b32019-07-26 11:22:44 -0500292 * @brief Implementation for deleting all error log entries and
293 * creating new logs.
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500294 * @details A concrete implementation for the
Matt Spinler3fb83b32019-07-26 11:22:44 -0500295 * xyz.openbmc_project.Collection.DeleteAll and
296 * xyz.openbmc_project.Logging.Create interfaces.
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500297 */
Matt Spinler3fb83b32019-07-26 11:22:44 -0500298class Manager : public details::ServerObject<DeleteAllIface, CreateIface>
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500299{
Patrick Venturef18bf832018-10-26 18:14:00 -0700300 public:
301 Manager() = delete;
302 Manager(const Manager&) = delete;
303 Manager& operator=(const Manager&) = delete;
304 Manager(Manager&&) = delete;
305 Manager& operator=(Manager&&) = delete;
306 virtual ~Manager() = default;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500307
Patrick Venturef18bf832018-10-26 18:14:00 -0700308 /** @brief Constructor to put object onto bus at a dbus path.
309 * Defer signal registration (pass true for deferSignal to the
310 * base class) until after the properties are set.
311 * @param[in] bus - Bus to attach to.
312 * @param[in] path - Path to attach at.
313 * @param[in] manager - Reference to internal manager object.
314 */
315 Manager(sdbusplus::bus::bus& bus, const std::string& path,
316 internal::Manager& manager) :
Matt Spinler3fb83b32019-07-26 11:22:44 -0500317 details::ServerObject<DeleteAllIface, CreateIface>(bus, path.c_str(),
318 true),
Patrick Venturef18bf832018-10-26 18:14:00 -0700319 manager(manager){};
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500320
Patrick Venturef18bf832018-10-26 18:14:00 -0700321 /** @brief Delete all d-bus objects.
322 */
323 void deleteAll()
324 {
325 manager.eraseAll();
326 }
327
Matt Spinler3fb83b32019-07-26 11:22:44 -0500328 /** @brief D-Bus method call implementation to create an event log.
329 *
330 * @param[in] errMsg - The error exception message associated with the
331 * error log to be committed.
332 * @param[in] severity - Level of the error
333 * @param[in] additionalData - The AdditionalData property for the error
334 */
335 void create(
336 std::string message,
337 sdbusplus::xyz::openbmc_project::Logging::server::Entry::Level severity,
338 std::map<std::string, std::string> additionalData) override
339 {
340 manager.create(message, severity, additionalData);
341 }
342
Matt Spinlerc64b7122020-03-26 10:55:01 -0500343 /** @brief D-Bus method call implementation to create an event log with FFDC
344 *
345 * The same as create(), but takes an extra FFDC argument.
346 *
347 * @param[in] errMsg - The error exception message associated with the
348 * error log to be committed.
349 * @param[in] severity - Level of the error
350 * @param[in] additionalData - The AdditionalData property for the error
351 * @param[in] ffdc - A vector of FFDC file info
352 */
Matt Spinlerfcbaf3e2020-03-23 09:22:45 -0500353 void createWithFFDCFiles(
354 std::string message,
355 sdbusplus::xyz::openbmc_project::Logging::server::Entry::Level severity,
356 std::map<std::string, std::string> additionalData,
357 std::vector<std::tuple<CreateIface::FFDCFormat, uint8_t, uint8_t,
358 sdbusplus::message::unix_fd>>
359 ffdc) override
360 {
Matt Spinlerc64b7122020-03-26 10:55:01 -0500361 manager.createWithFFDC(message, severity, additionalData, ffdc);
Matt Spinlerfcbaf3e2020-03-23 09:22:45 -0500362 }
363
Patrick Venturef18bf832018-10-26 18:14:00 -0700364 private:
365 /** @brief This is a reference to manager object */
366 internal::Manager& manager;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500367};
368
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600369} // namespace logging
370} // namespace phosphor