Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Matt Spinler | a34ab72 | 2019-12-16 10:39:32 -0600 | [diff] [blame] | 3 | #include "config.h" |
| 4 | |
Matt Spinler | c8705e2 | 2019-09-11 12:36:07 -0500 | [diff] [blame] | 5 | #include "data_interface.hpp" |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 6 | #include "event_logger.hpp" |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 7 | #include "host_notifier.hpp" |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 8 | #include "log_manager.hpp" |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 9 | #include "paths.hpp" |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 10 | #include "pel.hpp" |
Matt Spinler | 367144c | 2019-09-19 15:33:52 -0500 | [diff] [blame] | 11 | #include "registry.hpp" |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 12 | #include "repository.hpp" |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 13 | |
Matt Spinler | a34ab72 | 2019-12-16 10:39:32 -0600 | [diff] [blame] | 14 | #include <org/open_power/Logging/PEL/server.hpp> |
| 15 | #include <sdbusplus/server.hpp> |
Matt Spinler | 6b1a5c8 | 2020-01-07 08:48:53 -0600 | [diff] [blame] | 16 | #include <sdeventplus/event.hpp> |
| 17 | #include <sdeventplus/source/event.hpp> |
Matt Spinler | a34ab72 | 2019-12-16 10:39:32 -0600 | [diff] [blame] | 18 | |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 19 | namespace openpower |
| 20 | { |
| 21 | namespace pels |
| 22 | { |
| 23 | |
Matt Spinler | a34ab72 | 2019-12-16 10:39:32 -0600 | [diff] [blame] | 24 | using PELInterface = sdbusplus::server::object::object< |
| 25 | sdbusplus::org::open_power::Logging::server::PEL>; |
| 26 | |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 27 | /** |
| 28 | * @brief PEL manager object |
| 29 | */ |
Matt Spinler | a34ab72 | 2019-12-16 10:39:32 -0600 | [diff] [blame] | 30 | class Manager : public PELInterface |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 31 | { |
| 32 | public: |
| 33 | Manager() = delete; |
| 34 | ~Manager() = default; |
| 35 | Manager(const Manager&) = default; |
| 36 | Manager& operator=(const Manager&) = default; |
| 37 | Manager(Manager&&) = default; |
| 38 | Manager& operator=(Manager&&) = default; |
| 39 | |
| 40 | /** |
| 41 | * @brief constructor |
| 42 | * |
| 43 | * @param[in] logManager - internal::Manager object |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 44 | * @param[in] dataIface - The data interface object |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 45 | * @param[in] creatorFunc - The function that EventLogger will |
| 46 | * use for creating event logs |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 47 | */ |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 48 | Manager(phosphor::logging::internal::Manager& logManager, |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 49 | std::unique_ptr<DataInterfaceBase> dataIface, |
| 50 | EventLogger::LogFunction creatorFunc) : |
Matt Spinler | a34ab72 | 2019-12-16 10:39:32 -0600 | [diff] [blame] | 51 | PELInterface(logManager.getBus(), OBJ_LOGGING), |
Matt Spinler | 104e936 | 2020-04-02 09:34:41 -0500 | [diff] [blame] | 52 | _logManager(logManager), _eventLogger(std::move(creatorFunc)), |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 53 | _repo(getPELRepoPath()), |
Matt Spinler | 0d804ef | 2020-05-12 16:16:26 -0500 | [diff] [blame] | 54 | _registry(getPELReadOnlyDataPath() / message::registryFileName), |
Matt Spinler | 367144c | 2019-09-19 15:33:52 -0500 | [diff] [blame] | 55 | _dataIface(std::move(dataIface)) |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 56 | { |
| 57 | } |
| 58 | |
| 59 | /** |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 60 | * @brief constructor that enables host notification |
| 61 | * |
| 62 | * @param[in] logManager - internal::Manager object |
| 63 | * @param[in] dataIface - The data interface object |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 64 | * @param[in] creatorFunc - The function that EventLogger will |
| 65 | * use for creating event logs |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 66 | * @param[in] hostIface - The hostInterface object |
| 67 | */ |
| 68 | Manager(phosphor::logging::internal::Manager& logManager, |
| 69 | std::unique_ptr<DataInterfaceBase> dataIface, |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 70 | EventLogger::LogFunction creatorFunc, |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 71 | std::unique_ptr<HostInterface> hostIface) : |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 72 | Manager(logManager, std::move(dataIface), std::move(creatorFunc)) |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 73 | { |
| 74 | _hostNotifier = std::make_unique<HostNotifier>( |
| 75 | _repo, *(_dataIface.get()), std::move(hostIface)); |
| 76 | } |
| 77 | |
| 78 | /** |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 79 | * @brief Creates a PEL based on the OpenBMC event log contents. If |
| 80 | * a PEL was passed in via the RAWPEL specifier in the |
| 81 | * additionalData parameter, use that instead. |
| 82 | * |
| 83 | * @param[in] message - the event log message property |
| 84 | * @param[in] obmcLogID - the corresponding OpenBMC event log id |
| 85 | * @param[in] timestamp - the Timestamp property |
| 86 | * @param[in] severity - the event log severity |
| 87 | * @param[in] additionalData - the AdditionalData property |
| 88 | * @param[in] associations - the Associations property |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 89 | * @param[in] ffdc - A vector of FFDC file information |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 90 | */ |
| 91 | void create(const std::string& message, uint32_t obmcLogID, |
Matt Spinler | 367144c | 2019-09-19 15:33:52 -0500 | [diff] [blame] | 92 | uint64_t timestamp, phosphor::logging::Entry::Level severity, |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 93 | const std::vector<std::string>& additionalData, |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 94 | const std::vector<std::string>& associations, |
| 95 | const phosphor::logging::FFDCEntries& ffdc = |
| 96 | phosphor::logging::FFDCEntries{}); |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 97 | |
| 98 | /** |
| 99 | * @brief Erase a PEL based on its OpenBMC event log ID |
| 100 | * |
| 101 | * @param[in] obmcLogID - the corresponding OpenBMC event log id |
| 102 | */ |
| 103 | void erase(uint32_t obmcLogID); |
| 104 | |
| 105 | /** @brief Says if an OpenBMC event log may not be manually deleted at this |
| 106 | * time because its corresponding PEL cannot be. |
| 107 | * |
| 108 | * There are PEL retention policies that can prohibit the manual deletion |
| 109 | * of PELs (and therefore OpenBMC event logs). |
| 110 | * |
| 111 | * @param[in] obmcLogID - the OpenBMC event log ID |
| 112 | * @return bool - true if prohibited |
| 113 | */ |
| 114 | bool isDeleteProhibited(uint32_t obmcLogID); |
| 115 | |
Matt Spinler | a34ab72 | 2019-12-16 10:39:32 -0600 | [diff] [blame] | 116 | /** |
| 117 | * @brief Return a file descriptor to the raw PEL data |
| 118 | * |
| 119 | * Throws InvalidArgument if the PEL ID isn't found, |
| 120 | * and InternalFailure if anything else fails. |
| 121 | * |
| 122 | * @param[in] pelID - The PEL ID to get the data for |
| 123 | * |
| 124 | * @return unix_fd - File descriptor to the file that contains the PEL |
| 125 | */ |
| 126 | sdbusplus::message::unix_fd getPEL(uint32_t pelID) override; |
| 127 | |
| 128 | /** |
| 129 | * @brief Returns data for the PEL corresponding to an OpenBMC |
| 130 | * event log. |
| 131 | * |
| 132 | * @param[in] obmcLogID - The OpenBMC event log ID |
| 133 | * |
| 134 | * @return vector<uint8_t> - The raw PEL data |
| 135 | */ |
| 136 | std::vector<uint8_t> getPELFromOBMCID(uint32_t obmcLogID) override; |
| 137 | |
| 138 | /** |
| 139 | * @brief The D-Bus method called when a host successfully processes |
| 140 | * a PEL. |
| 141 | * |
| 142 | * This D-Bus method is called from the PLDM daemon when they get an |
| 143 | * 'Ack PEL' PLDM message from the host, which indicates the host |
| 144 | * firmware successfully sent it to the OS and this code doesn't need |
| 145 | * to send it to the host again. |
| 146 | * |
| 147 | * @param[in] pelID - The PEL ID |
| 148 | */ |
| 149 | void hostAck(uint32_t pelID) override; |
| 150 | |
| 151 | /** |
| 152 | * @brief D-Bus method called when the host rejects a PEL. |
| 153 | * |
| 154 | * This D-Bus method is called from the PLDM daemon when they get an |
| 155 | * 'Ack PEL' PLDM message from the host with a payload that says |
| 156 | * something when wrong. |
| 157 | * |
| 158 | * The choices are either: |
| 159 | * * Host Full - The host's staging area is full - try again later |
| 160 | * * Malrformed PEL - The host received an invalid PEL |
| 161 | * |
| 162 | * @param[in] pelID - The PEL ID |
| 163 | * @param[in] reason - One of the above two reasons |
| 164 | */ |
| 165 | void hostReject(uint32_t pelID, RejectionReason reason) override; |
| 166 | |
Matt Spinler | 19e7290 | 2020-01-24 11:05:20 -0600 | [diff] [blame] | 167 | /** |
| 168 | * @brief Converts the ESEL field in an OpenBMC event log to a |
| 169 | * vector of uint8_ts that just contains the PEL data. |
| 170 | * |
| 171 | * That data string looks like: "50 48 00 ab ..." |
| 172 | * |
| 173 | * Throws an exception on any failures. |
| 174 | * |
| 175 | * @param[in] esel - The ESEL string |
| 176 | * |
| 177 | * @return std::vector<uint8_t> - The contained PEL data |
| 178 | */ |
| 179 | static std::vector<uint8_t> eselToRawData(const std::string& esel); |
| 180 | |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 181 | private: |
| 182 | /** |
| 183 | * @brief Adds a received raw PEL to the PEL repository |
| 184 | * |
| 185 | * @param[in] rawPelPath - The path to the file that contains the |
| 186 | * raw PEL. |
| 187 | * @param[in] obmcLogID - the corresponding OpenBMC event log id |
| 188 | */ |
| 189 | void addRawPEL(const std::string& rawPelPath, uint32_t obmcLogID); |
| 190 | |
| 191 | /** |
| 192 | * @brief Creates a PEL based on the OpenBMC event log contents. |
| 193 | * |
| 194 | * @param[in] message - The event log message property |
| 195 | * @param[in] obmcLogID - the corresponding OpenBMC event log id |
| 196 | * @param[in] timestamp - The timestamp property |
| 197 | * @param[in] severity - The event log severity |
| 198 | * @param[in] additionalData - The AdditionalData property |
| 199 | * @param[in] associations - The associations property |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 200 | * @param[in] ffdc - A vector of FFDC file information |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 201 | */ |
| 202 | void createPEL(const std::string& message, uint32_t obmcLogID, |
Matt Spinler | 367144c | 2019-09-19 15:33:52 -0500 | [diff] [blame] | 203 | uint64_t timestamp, phosphor::logging::Entry::Level severity, |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 204 | const std::vector<std::string>& additionalData, |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 205 | const std::vector<std::string>& associations, |
| 206 | const phosphor::logging::FFDCEntries& ffdc); |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 207 | |
| 208 | /** |
Matt Spinler | 6b1a5c8 | 2020-01-07 08:48:53 -0600 | [diff] [blame] | 209 | * @brief Schedules a close of the file descriptor to occur from |
| 210 | * the event loop. |
| 211 | * |
| 212 | * Uses sd_event_add_defer |
| 213 | * |
| 214 | * @param[in] fd - The file descriptor to close |
| 215 | */ |
| 216 | void scheduleFDClose(int fd); |
| 217 | |
| 218 | /** |
| 219 | * @brief Closes the file descriptor passed in. |
| 220 | * |
| 221 | * This is called from the event loop to close FDs returned |
| 222 | * from getPEL(). |
| 223 | * |
| 224 | * @param[in] fd - The file descriptor to close |
| 225 | * @param[in] source - The event source object used |
| 226 | */ |
| 227 | void closeFD(int fd, sdeventplus::source::EventBase& source); |
| 228 | |
| 229 | /** |
Matt Spinler | 19e7290 | 2020-01-24 11:05:20 -0600 | [diff] [blame] | 230 | * @brief Adds a PEL to the repository given its data |
| 231 | * |
| 232 | * @param[in] pelData - The PEL to add as a vector of uint8_ts |
| 233 | * @param[in] obmcLogID - the OpenBMC event log ID |
| 234 | */ |
| 235 | void addPEL(std::vector<uint8_t>& pelData, uint32_t obmcLogID); |
| 236 | |
| 237 | /** |
| 238 | * @brief Adds the PEL stored in the ESEL field of the AdditionalData |
| 239 | * property of an OpenBMC event log to the repository. |
| 240 | * |
| 241 | * @param[in] esel - The ESEL AdditionalData contents |
| 242 | * @param[in] obmcLogID - The OpenBMC event log ID |
| 243 | */ |
| 244 | void addESELPEL(const std::string& esel, uint32_t obmcLogID); |
| 245 | |
| 246 | /** |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 247 | * @brief Converts the D-Bus FFDC method argument into a data |
| 248 | * structure understood by the PEL code. |
| 249 | * |
| 250 | * @param[in] ffdc - A vector of FFDC file information |
| 251 | * |
| 252 | * @return PelFFDC - The PEL FFDC data structure |
| 253 | */ |
| 254 | PelFFDC convertToPelFFDC(const phosphor::logging::FFDCEntries& ffdc); |
| 255 | |
| 256 | /** |
Matt Spinler | 7e727a3 | 2020-07-07 15:00:17 -0500 | [diff] [blame] | 257 | * @brief Schedules a PEL repository prune to occur from |
| 258 | * the event loop. |
| 259 | * |
| 260 | * Uses sd_event_add_defer |
| 261 | */ |
| 262 | void scheduleRepoPrune(); |
| 263 | |
| 264 | /** |
| 265 | * @brief Prunes old PELs out of the repository to save space. |
| 266 | * |
| 267 | * This is called from the event loop. |
| 268 | * |
| 269 | * @param[in] source - The event source object used |
| 270 | */ |
| 271 | void pruneRepo(sdeventplus::source::EventBase& source); |
| 272 | |
| 273 | /** |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 274 | * @brief Reference to phosphor-logging's Manager class |
| 275 | */ |
Matt Spinler | 367144c | 2019-09-19 15:33:52 -0500 | [diff] [blame] | 276 | phosphor::logging::internal::Manager& _logManager; |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 277 | |
| 278 | /** |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 279 | * @brief Handles creating event logs/PELs from within |
| 280 | * the PEL extension code |
| 281 | */ |
| 282 | EventLogger _eventLogger; |
| 283 | |
| 284 | /** |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 285 | * @brief The PEL repository object |
| 286 | */ |
| 287 | Repository _repo; |
Matt Spinler | c8705e2 | 2019-09-11 12:36:07 -0500 | [diff] [blame] | 288 | |
| 289 | /** |
Matt Spinler | 367144c | 2019-09-19 15:33:52 -0500 | [diff] [blame] | 290 | * @brief The PEL message registry object |
| 291 | */ |
| 292 | message::Registry _registry; |
| 293 | |
| 294 | /** |
Matt Spinler | c8705e2 | 2019-09-11 12:36:07 -0500 | [diff] [blame] | 295 | * @brief The API the PEL sections use to gather data |
| 296 | */ |
| 297 | std::unique_ptr<DataInterfaceBase> _dataIface; |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 298 | |
| 299 | /** |
| 300 | * @brief The HostNotifier object used for telling the |
| 301 | * host about new PELs |
| 302 | */ |
| 303 | std::unique_ptr<HostNotifier> _hostNotifier; |
Matt Spinler | 6b1a5c8 | 2020-01-07 08:48:53 -0600 | [diff] [blame] | 304 | |
| 305 | /** |
| 306 | * @brief The event source for closing a PEL file descriptor after |
| 307 | * it has been returned from the getPEL D-Bus method. |
| 308 | */ |
| 309 | std::unique_ptr<sdeventplus::source::Defer> _fdCloserEventSource; |
Matt Spinler | 7e727a3 | 2020-07-07 15:00:17 -0500 | [diff] [blame] | 310 | |
| 311 | /** |
| 312 | * @brief The even source for removing old PELs when the repo is |
| 313 | * running out of space to make room for new ones. |
| 314 | */ |
| 315 | std::unique_ptr<sdeventplus::source::Defer> _repoPrunerEventSource; |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 316 | }; |
| 317 | |
| 318 | } // namespace pels |
| 319 | } // namespace openpower |