blob: baf6812c6c44c3762a3d79448257e14d64ec6caa [file] [log] [blame]
Adriana Kobylak8f7941e2016-11-14 14:46:23 -06001#pragma once
2
Adriana Kobylakdf995fa2017-01-08 15:14:02 -06003#include "elog_entry.hpp"
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -05004#include "xyz/openbmc_project/Collection/DeleteAll/server.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -07005#include "xyz/openbmc_project/Logging/Internal/Manager/server.hpp"
6
7#include <list>
8#include <phosphor-logging/log.hpp>
9#include <sdbusplus/bus.hpp>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060010
11namespace phosphor
12{
13namespace logging
14{
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060015
Patrick Venturef18bf832018-10-26 18:14:00 -070016extern const std::map<std::string, std::vector<std::string>> g_errMetaMap;
17extern const std::map<std::string, level> g_errLevelMap;
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060018
Patrick Venturef18bf832018-10-26 18:14:00 -070019using DeleteAllIface = sdbusplus::server::object::object<
20 sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050021
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060022namespace details
23{
24
25template <typename T>
26using ServerObject = typename sdbusplus::server::object::object<T>;
27
28using ManagerIface =
29 sdbusplus::xyz::openbmc_project::Logging::Internal::server::Manager;
30
31} // namespace details
32
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050033namespace internal
34{
35
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060036/** @class Manager
37 * @brief OpenBMC logging manager implementation.
38 * @details A concrete implementation for the
39 * xyz.openbmc_project.Logging.Internal.Manager DBus API.
40 */
Adriana Kobylakf477fe22017-01-06 11:56:41 -060041class Manager : public details::ServerObject<details::ManagerIface>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060042{
Patrick Venturef18bf832018-10-26 18:14:00 -070043 public:
44 Manager() = delete;
45 Manager(const Manager&) = delete;
46 Manager& operator=(const Manager&) = delete;
47 Manager(Manager&&) = delete;
48 Manager& operator=(Manager&&) = delete;
49 virtual ~Manager() = default;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060050
Patrick Venturef18bf832018-10-26 18:14:00 -070051 /** @brief Constructor to put object onto bus at a dbus path.
52 * @param[in] bus - Bus to attach to.
53 * @param[in] path - Path to attach at.
54 */
55 Manager(sdbusplus::bus::bus& bus, const char* objPath) :
56 details::ServerObject<details::ManagerIface>(bus, objPath), busLog(bus),
57 entryId(0), fwVersion(readFWVersion()){};
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060058
Patrick Venturef18bf832018-10-26 18:14:00 -070059 /*
60 * @fn commit()
61 * @brief sd_bus Commit method implementation callback.
62 * @details Create an error/event log based on transaction id and
63 * error message.
64 * @param[in] transactionId - Unique identifier of the journal entries
65 * to be committed.
66 * @param[in] errMsg - The error exception message associated with the
67 * error log to be committed.
68 */
69 void commit(uint64_t transactionId, std::string errMsg) override;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060070
Patrick Venturef18bf832018-10-26 18:14:00 -070071 /*
72 * @fn commit()
73 * @brief sd_bus CommitWithLvl method implementation callback.
74 * @details Create an error/event log based on transaction id and
75 * error message.
76 * @param[in] transactionId - Unique identifier of the journal entries
77 * to be committed.
78 * @param[in] errMsg - The error exception message associated with the
79 * error log to be committed.
80 * @param[in] errLvl - level of the error
81 */
82 void commitWithLvl(uint64_t transactionId, std::string errMsg,
83 uint32_t errLvl) override;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060084
Patrick Venturef18bf832018-10-26 18:14:00 -070085 /** @brief Erase specified entry d-bus object
86 *
87 * @param[in] entryId - unique identifier of the entry
88 */
89 void erase(uint32_t entryId);
Deepak Kodihalli99a85492017-03-31 06:01:57 -050090
Patrick Venturef18bf832018-10-26 18:14:00 -070091 /** @brief Construct error d-bus objects from their persisted
92 * representations.
93 */
94 void restore();
Deepak Kodihalli72654f12017-06-12 04:33:29 -050095
Patrick Venturef18bf832018-10-26 18:14:00 -070096 /** @brief Erase all error log entries
97 *
98 */
99 void eraseAll()
100 {
101 auto iter = entries.begin();
102 while (iter != entries.end())
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500103 {
Patrick Venture34438962018-10-30 13:17:37 -0700104 auto e = iter->first;
Patrick Venturef18bf832018-10-26 18:14:00 -0700105 ++iter;
Patrick Venture34438962018-10-30 13:17:37 -0700106 erase(e);
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500107 }
Patrick Venturef18bf832018-10-26 18:14:00 -0700108 }
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500109
Patrick Venturef18bf832018-10-26 18:14:00 -0700110 /** @brief Returns the count of high severity errors
111 *
112 * @return int - count of real errors
113 */
114 int getRealErrSize();
Nagaraju Goruganti477b7312018-06-25 23:28:58 -0500115
Patrick Venturef18bf832018-10-26 18:14:00 -0700116 /** @brief Returns the count of Info errors
117 *
118 * @return int - count of info errors
119 */
120 int getInfoErrSize();
Nagaraju Goruganti477b7312018-06-25 23:28:58 -0500121
Matt Spinler8ebfd312019-06-03 12:43:59 -0500122 sdbusplus::bus::bus& getBus()
123 {
124 return busLog;
125 }
126
Patrick Venturef18bf832018-10-26 18:14:00 -0700127 private:
128 /*
129 * @fn _commit()
130 * @brief commit() helper
131 * @param[in] transactionId - Unique identifier of the journal entries
132 * to be committed.
133 * @param[in] errMsg - The error exception message associated with the
134 * error log to be committed.
135 * @param[in] errLvl - level of the error
136 */
137 void _commit(uint64_t transactionId, std::string&& errMsg,
138 Entry::Level errLvl);
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -0500139
Patrick Venturef18bf832018-10-26 18:14:00 -0700140 /** @brief Call metadata handler(s), if any. Handlers may create
141 * associations.
142 * @param[in] errorName - name of the error
143 * @param[in] additionalData - list of metadata (in key=value format)
144 * @param[out] objects - list of error's association objects
145 */
146 void processMetadata(const std::string& errorName,
147 const std::vector<std::string>& additionalData,
148 AssociationList& objects) const;
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600149
Patrick Venturef18bf832018-10-26 18:14:00 -0700150 /** @brief Synchronize unwritten journal messages to disk.
151 * @details This is the same implementation as the systemd command
152 * "journalctl --sync".
153 */
154 void journalSync();
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500155
Patrick Venturef18bf832018-10-26 18:14:00 -0700156 /** @brief Reads the BMC code level
157 *
158 * @return std::string - the version string
159 */
160 static std::string readFWVersion();
Matt Spinler1275bd12018-05-01 15:13:53 -0500161
Matt Spinler99c2b402019-05-23 14:29:16 -0500162 /** @brief Call any create() functions provided by any extensions.
163 * This is called right after an event log is created to allow
164 * extensions to create their own log based on this one.
165 *
166 * @param[in] entry - the new event log entry
167 */
168 void doExtensionLogCreate(const Entry& entry);
169
Patrick Venturef18bf832018-10-26 18:14:00 -0700170 /** @brief Persistent sdbusplus DBus bus connection. */
171 sdbusplus::bus::bus& busLog;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -0600172
Patrick Venturef18bf832018-10-26 18:14:00 -0700173 /** @brief Persistent map of Entry dbus objects and their ID */
174 std::map<uint32_t, std::unique_ptr<Entry>> entries;
Adriana Kobylak4ea7f312017-01-10 12:52:34 -0600175
Patrick Venturef18bf832018-10-26 18:14:00 -0700176 /** @brief List of error ids for high severity errors */
177 std::list<uint32_t> realErrors;
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600178
Patrick Venturef18bf832018-10-26 18:14:00 -0700179 /** @brief List of error ids for Info(and below) severity */
180 std::list<uint32_t> infoErrors;
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500181
Patrick Venturef18bf832018-10-26 18:14:00 -0700182 /** @brief Id of last error log entry */
183 uint32_t entryId;
Matt Spinler1275bd12018-05-01 15:13:53 -0500184
Patrick Venturef18bf832018-10-26 18:14:00 -0700185 /** @brief The BMC firmware version */
186 const std::string fwVersion;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600187};
188
Patrick Venturef18bf832018-10-26 18:14:00 -0700189} // namespace internal
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500190
191/** @class Manager
192 * @brief Implementation for delete all error log entries.
193 * @details A concrete implementation for the
194 * xyz.openbmc_project.Collection.DeleteAll
195 */
196class Manager : public DeleteAllIface
197{
Patrick Venturef18bf832018-10-26 18:14:00 -0700198 public:
199 Manager() = delete;
200 Manager(const Manager&) = delete;
201 Manager& operator=(const Manager&) = delete;
202 Manager(Manager&&) = delete;
203 Manager& operator=(Manager&&) = delete;
204 virtual ~Manager() = default;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500205
Patrick Venturef18bf832018-10-26 18:14:00 -0700206 /** @brief Constructor to put object onto bus at a dbus path.
207 * Defer signal registration (pass true for deferSignal to the
208 * base class) until after the properties are set.
209 * @param[in] bus - Bus to attach to.
210 * @param[in] path - Path to attach at.
211 * @param[in] manager - Reference to internal manager object.
212 */
213 Manager(sdbusplus::bus::bus& bus, const std::string& path,
214 internal::Manager& manager) :
215 DeleteAllIface(bus, path.c_str(), true),
216 manager(manager){};
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500217
Patrick Venturef18bf832018-10-26 18:14:00 -0700218 /** @brief Delete all d-bus objects.
219 */
220 void deleteAll()
221 {
222 manager.eraseAll();
223 }
224
225 private:
226 /** @brief This is a reference to manager object */
227 internal::Manager& manager;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500228};
229
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600230} // namespace logging
231} // namespace phosphor