Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Adriana Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame] | 3 | #include "elog_entry.hpp" |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 4 | #include "xyz/openbmc_project/Collection/DeleteAll/server.hpp" |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 5 | #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 Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 10 | |
| 11 | namespace phosphor |
| 12 | { |
| 13 | namespace logging |
| 14 | { |
Adriana Kobylak | d722b3a | 2017-02-28 12:10:44 -0600 | [diff] [blame] | 15 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 16 | extern const std::map<std::string, std::vector<std::string>> g_errMetaMap; |
| 17 | extern const std::map<std::string, level> g_errLevelMap; |
Adriana Kobylak | d722b3a | 2017-02-28 12:10:44 -0600 | [diff] [blame] | 18 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 19 | using DeleteAllIface = sdbusplus::server::object::object< |
| 20 | sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>; |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 21 | |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 22 | namespace details |
| 23 | { |
| 24 | |
| 25 | template <typename T> |
| 26 | using ServerObject = typename sdbusplus::server::object::object<T>; |
| 27 | |
| 28 | using ManagerIface = |
| 29 | sdbusplus::xyz::openbmc_project::Logging::Internal::server::Manager; |
| 30 | |
| 31 | } // namespace details |
| 32 | |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 33 | namespace internal |
| 34 | { |
| 35 | |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 36 | /** @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 Kobylak | f477fe2 | 2017-01-06 11:56:41 -0600 | [diff] [blame] | 41 | class Manager : public details::ServerObject<details::ManagerIface> |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 42 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 43 | 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 Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 50 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 51 | /** @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 Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 58 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 59 | /* |
| 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 Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame] | 70 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 71 | /* |
| 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 Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame] | 84 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 85 | /** @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 Kodihalli | 99a8549 | 2017-03-31 06:01:57 -0500 | [diff] [blame] | 90 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 91 | /** @brief Construct error d-bus objects from their persisted |
| 92 | * representations. |
| 93 | */ |
| 94 | void restore(); |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 95 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 96 | /** @brief Erase all error log entries |
| 97 | * |
| 98 | */ |
| 99 | void eraseAll() |
| 100 | { |
| 101 | auto iter = entries.begin(); |
| 102 | while (iter != entries.end()) |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 103 | { |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 104 | auto e = iter->first; |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 105 | ++iter; |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 106 | erase(e); |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 107 | } |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 108 | } |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 109 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 110 | /** @brief Returns the count of high severity errors |
| 111 | * |
| 112 | * @return int - count of real errors |
| 113 | */ |
| 114 | int getRealErrSize(); |
Nagaraju Goruganti | 477b731 | 2018-06-25 23:28:58 -0500 | [diff] [blame] | 115 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 116 | /** @brief Returns the count of Info errors |
| 117 | * |
| 118 | * @return int - count of info errors |
| 119 | */ |
| 120 | int getInfoErrSize(); |
Nagaraju Goruganti | 477b731 | 2018-06-25 23:28:58 -0500 | [diff] [blame] | 121 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 122 | private: |
| 123 | /* |
| 124 | * @fn _commit() |
| 125 | * @brief commit() helper |
| 126 | * @param[in] transactionId - Unique identifier of the journal entries |
| 127 | * to be committed. |
| 128 | * @param[in] errMsg - The error exception message associated with the |
| 129 | * error log to be committed. |
| 130 | * @param[in] errLvl - level of the error |
| 131 | */ |
| 132 | void _commit(uint64_t transactionId, std::string&& errMsg, |
| 133 | Entry::Level errLvl); |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 134 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 135 | /** @brief Call metadata handler(s), if any. Handlers may create |
| 136 | * associations. |
| 137 | * @param[in] errorName - name of the error |
| 138 | * @param[in] additionalData - list of metadata (in key=value format) |
| 139 | * @param[out] objects - list of error's association objects |
| 140 | */ |
| 141 | void processMetadata(const std::string& errorName, |
| 142 | const std::vector<std::string>& additionalData, |
| 143 | AssociationList& objects) const; |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 144 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 145 | /** @brief Synchronize unwritten journal messages to disk. |
| 146 | * @details This is the same implementation as the systemd command |
| 147 | * "journalctl --sync". |
| 148 | */ |
| 149 | void journalSync(); |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 150 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 151 | /** @brief Reads the BMC code level |
| 152 | * |
| 153 | * @return std::string - the version string |
| 154 | */ |
| 155 | static std::string readFWVersion(); |
Matt Spinler | 1275bd1 | 2018-05-01 15:13:53 -0500 | [diff] [blame] | 156 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 157 | /** @brief Persistent sdbusplus DBus bus connection. */ |
| 158 | sdbusplus::bus::bus& busLog; |
Adriana Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame] | 159 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 160 | /** @brief Persistent map of Entry dbus objects and their ID */ |
| 161 | std::map<uint32_t, std::unique_ptr<Entry>> entries; |
Adriana Kobylak | 4ea7f31 | 2017-01-10 12:52:34 -0600 | [diff] [blame] | 162 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 163 | /** @brief List of error ids for high severity errors */ |
| 164 | std::list<uint32_t> realErrors; |
Nagaraju Goruganti | e4b0b77 | 2017-11-30 02:12:45 -0600 | [diff] [blame] | 165 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 166 | /** @brief List of error ids for Info(and below) severity */ |
| 167 | std::list<uint32_t> infoErrors; |
Nagaraju Goruganti | f8a5a79 | 2017-10-13 08:09:52 -0500 | [diff] [blame] | 168 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 169 | /** @brief Id of last error log entry */ |
| 170 | uint32_t entryId; |
Matt Spinler | 1275bd1 | 2018-05-01 15:13:53 -0500 | [diff] [blame] | 171 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 172 | /** @brief The BMC firmware version */ |
| 173 | const std::string fwVersion; |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 174 | }; |
| 175 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 176 | } // namespace internal |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 177 | |
| 178 | /** @class Manager |
| 179 | * @brief Implementation for delete all error log entries. |
| 180 | * @details A concrete implementation for the |
| 181 | * xyz.openbmc_project.Collection.DeleteAll |
| 182 | */ |
| 183 | class Manager : public DeleteAllIface |
| 184 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 185 | public: |
| 186 | Manager() = delete; |
| 187 | Manager(const Manager&) = delete; |
| 188 | Manager& operator=(const Manager&) = delete; |
| 189 | Manager(Manager&&) = delete; |
| 190 | Manager& operator=(Manager&&) = delete; |
| 191 | virtual ~Manager() = default; |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 192 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 193 | /** @brief Constructor to put object onto bus at a dbus path. |
| 194 | * Defer signal registration (pass true for deferSignal to the |
| 195 | * base class) until after the properties are set. |
| 196 | * @param[in] bus - Bus to attach to. |
| 197 | * @param[in] path - Path to attach at. |
| 198 | * @param[in] manager - Reference to internal manager object. |
| 199 | */ |
| 200 | Manager(sdbusplus::bus::bus& bus, const std::string& path, |
| 201 | internal::Manager& manager) : |
| 202 | DeleteAllIface(bus, path.c_str(), true), |
| 203 | manager(manager){}; |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 204 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 205 | /** @brief Delete all d-bus objects. |
| 206 | */ |
| 207 | void deleteAll() |
| 208 | { |
| 209 | manager.eraseAll(); |
| 210 | } |
| 211 | |
| 212 | private: |
| 213 | /** @brief This is a reference to manager object */ |
| 214 | internal::Manager& manager; |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 215 | }; |
| 216 | |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 217 | } // namespace logging |
| 218 | } // namespace phosphor |