blob: 4432634850f752b2084ca29b40efc3f9efbe6bbe [file] [log] [blame]
Matt Spinler4e8078c2019-07-09 13:22:32 -05001#pragma once
2
Matt Spinlera34ab722019-12-16 10:39:32 -06003#include "config.h"
4
Matt Spinlerc8705e22019-09-11 12:36:07 -05005#include "data_interface.hpp"
Matt Spinlerf682b402019-12-18 13:48:08 -06006#include "event_logger.hpp"
Matt Spinlerf60ac272019-12-11 13:47:50 -06007#include "host_notifier.hpp"
Matt Spinler4e8078c2019-07-09 13:22:32 -05008#include "log_manager.hpp"
Matt Spinler89fa0822019-07-17 13:54:30 -05009#include "paths.hpp"
Matt Spinler56ad2a02020-03-26 14:00:52 -050010#include "pel.hpp"
Matt Spinler367144c2019-09-19 15:33:52 -050011#include "registry.hpp"
Matt Spinler89fa0822019-07-17 13:54:30 -050012#include "repository.hpp"
Matt Spinler4e8078c2019-07-09 13:22:32 -050013
Vijay Loboafb1b462021-07-21 23:29:13 -050014#include <org/open_power/Logging/PEL/Entry/server.hpp>
Matt Spinlera34ab722019-12-16 10:39:32 -060015#include <org/open_power/Logging/PEL/server.hpp>
16#include <sdbusplus/server.hpp>
Matt Spinler6b1a5c82020-01-07 08:48:53 -060017#include <sdeventplus/event.hpp>
18#include <sdeventplus/source/event.hpp>
Matt Spinler44893cc2020-08-26 11:34:17 -050019#include <xyz/openbmc_project/Logging/Create/server.hpp>
Matt Spinlera34ab722019-12-16 10:39:32 -060020
Matt Spinler4e8078c2019-07-09 13:22:32 -050021namespace openpower
22{
23namespace pels
24{
25
Matt Spinlera34ab722019-12-16 10:39:32 -060026using PELInterface = sdbusplus::server::object::object<
27 sdbusplus::org::open_power::Logging::server::PEL>;
28
Matt Spinler4e8078c2019-07-09 13:22:32 -050029/**
30 * @brief PEL manager object
31 */
Matt Spinlera34ab722019-12-16 10:39:32 -060032class Manager : public PELInterface
Matt Spinler4e8078c2019-07-09 13:22:32 -050033{
34 public:
35 Manager() = delete;
Matt Spinler4e8078c2019-07-09 13:22:32 -050036 Manager(const Manager&) = default;
37 Manager& operator=(const Manager&) = default;
38 Manager(Manager&&) = default;
39 Manager& operator=(Manager&&) = default;
40
41 /**
42 * @brief constructor
43 *
44 * @param[in] logManager - internal::Manager object
Matt Spinlerf60ac272019-12-11 13:47:50 -060045 * @param[in] dataIface - The data interface object
Matt Spinlerf682b402019-12-18 13:48:08 -060046 * @param[in] creatorFunc - The function that EventLogger will
47 * use for creating event logs
Matt Spinler4e8078c2019-07-09 13:22:32 -050048 */
Matt Spinlerf60ac272019-12-11 13:47:50 -060049 Manager(phosphor::logging::internal::Manager& logManager,
Matt Spinlerf682b402019-12-18 13:48:08 -060050 std::unique_ptr<DataInterfaceBase> dataIface,
51 EventLogger::LogFunction creatorFunc) :
Matt Spinlera34ab722019-12-16 10:39:32 -060052 PELInterface(logManager.getBus(), OBJ_LOGGING),
Matt Spinler104e9362020-04-02 09:34:41 -050053 _logManager(logManager), _eventLogger(std::move(creatorFunc)),
Matt Spinlerf682b402019-12-18 13:48:08 -060054 _repo(getPELRepoPath()),
Matt Spinler0d804ef2020-05-12 16:16:26 -050055 _registry(getPELReadOnlyDataPath() / message::registryFileName),
Matt Spinlerff9cec22020-07-15 13:06:35 -050056 _event(sdeventplus::Event::get_default()),
Matt Spinler367144c2019-09-19 15:33:52 -050057 _dataIface(std::move(dataIface))
Matt Spinler4e8078c2019-07-09 13:22:32 -050058 {
Adriana Kobylake7d271a2020-12-07 14:32:44 -060059 for (const auto& entry : _logManager.entries)
60 {
61 setEntryPath(entry.first);
Vijay Lobocbc93a42021-05-20 19:04:07 -050062 setServiceProviderNotifyFlag(entry.first);
Vijay Loboafb1b462021-07-21 23:29:13 -050063 // Create PELEntry interface and setup properties with their values
Matt Spinler734ed2b2022-01-21 09:31:46 -060064 createPELEntry(entry.first, true);
Adriana Kobylake7d271a2020-12-07 14:32:44 -060065 }
Matt Spinler28d6ae22022-03-18 11:18:27 -050066
67 _repo.for_each(
68 std::bind(&Manager::updateResolution, this, std::placeholders::_1));
69
Matt Spinlerff9cec22020-07-15 13:06:35 -050070 setupPELDeleteWatch();
Matt Spinler4e8078c2019-07-09 13:22:32 -050071 }
72
73 /**
Matt Spinlerf60ac272019-12-11 13:47:50 -060074 * @brief constructor that enables host notification
75 *
76 * @param[in] logManager - internal::Manager object
77 * @param[in] dataIface - The data interface object
Matt Spinlerf682b402019-12-18 13:48:08 -060078 * @param[in] creatorFunc - The function that EventLogger will
79 * use for creating event logs
Matt Spinlerf60ac272019-12-11 13:47:50 -060080 * @param[in] hostIface - The hostInterface object
81 */
82 Manager(phosphor::logging::internal::Manager& logManager,
83 std::unique_ptr<DataInterfaceBase> dataIface,
Matt Spinlerf682b402019-12-18 13:48:08 -060084 EventLogger::LogFunction creatorFunc,
Matt Spinlerf60ac272019-12-11 13:47:50 -060085 std::unique_ptr<HostInterface> hostIface) :
Matt Spinlerf682b402019-12-18 13:48:08 -060086 Manager(logManager, std::move(dataIface), std::move(creatorFunc))
Matt Spinlerf60ac272019-12-11 13:47:50 -060087 {
88 _hostNotifier = std::make_unique<HostNotifier>(
89 _repo, *(_dataIface.get()), std::move(hostIface));
90 }
91
92 /**
Matt Spinlerff9cec22020-07-15 13:06:35 -050093 * @brief Destructor
94 */
95 ~Manager();
96
97 /**
Matt Spinler4e8078c2019-07-09 13:22:32 -050098 * @brief Creates a PEL based on the OpenBMC event log contents. If
99 * a PEL was passed in via the RAWPEL specifier in the
100 * additionalData parameter, use that instead.
101 *
102 * @param[in] message - the event log message property
103 * @param[in] obmcLogID - the corresponding OpenBMC event log id
104 * @param[in] timestamp - the Timestamp property
105 * @param[in] severity - the event log severity
106 * @param[in] additionalData - the AdditionalData property
107 * @param[in] associations - the Associations property
Matt Spinler56ad2a02020-03-26 14:00:52 -0500108 * @param[in] ffdc - A vector of FFDC file information
Matt Spinler4e8078c2019-07-09 13:22:32 -0500109 */
110 void create(const std::string& message, uint32_t obmcLogID,
Matt Spinler367144c2019-09-19 15:33:52 -0500111 uint64_t timestamp, phosphor::logging::Entry::Level severity,
Matt Spinler4e8078c2019-07-09 13:22:32 -0500112 const std::vector<std::string>& additionalData,
Matt Spinler56ad2a02020-03-26 14:00:52 -0500113 const std::vector<std::string>& associations,
114 const phosphor::logging::FFDCEntries& ffdc =
115 phosphor::logging::FFDCEntries{});
Matt Spinler4e8078c2019-07-09 13:22:32 -0500116
117 /**
118 * @brief Erase a PEL based on its OpenBMC event log ID
119 *
120 * @param[in] obmcLogID - the corresponding OpenBMC event log id
121 */
122 void erase(uint32_t obmcLogID);
123
124 /** @brief Says if an OpenBMC event log may not be manually deleted at this
125 * time because its corresponding PEL cannot be.
126 *
127 * There are PEL retention policies that can prohibit the manual deletion
128 * of PELs (and therefore OpenBMC event logs).
129 *
130 * @param[in] obmcLogID - the OpenBMC event log ID
131 * @return bool - true if prohibited
132 */
133 bool isDeleteProhibited(uint32_t obmcLogID);
134
Matt Spinlera34ab722019-12-16 10:39:32 -0600135 /**
136 * @brief Return a file descriptor to the raw PEL data
137 *
138 * Throws InvalidArgument if the PEL ID isn't found,
139 * and InternalFailure if anything else fails.
140 *
141 * @param[in] pelID - The PEL ID to get the data for
142 *
143 * @return unix_fd - File descriptor to the file that contains the PEL
144 */
145 sdbusplus::message::unix_fd getPEL(uint32_t pelID) override;
146
147 /**
148 * @brief Returns data for the PEL corresponding to an OpenBMC
149 * event log.
150 *
151 * @param[in] obmcLogID - The OpenBMC event log ID
152 *
153 * @return vector<uint8_t> - The raw PEL data
154 */
155 std::vector<uint8_t> getPELFromOBMCID(uint32_t obmcLogID) override;
156
157 /**
158 * @brief The D-Bus method called when a host successfully processes
159 * a PEL.
160 *
161 * This D-Bus method is called from the PLDM daemon when they get an
162 * 'Ack PEL' PLDM message from the host, which indicates the host
163 * firmware successfully sent it to the OS and this code doesn't need
164 * to send it to the host again.
165 *
166 * @param[in] pelID - The PEL ID
167 */
168 void hostAck(uint32_t pelID) override;
169
170 /**
171 * @brief D-Bus method called when the host rejects a PEL.
172 *
173 * This D-Bus method is called from the PLDM daemon when they get an
174 * 'Ack PEL' PLDM message from the host with a payload that says
175 * something when wrong.
176 *
177 * The choices are either:
178 * * Host Full - The host's staging area is full - try again later
179 * * Malrformed PEL - The host received an invalid PEL
180 *
181 * @param[in] pelID - The PEL ID
182 * @param[in] reason - One of the above two reasons
183 */
184 void hostReject(uint32_t pelID, RejectionReason reason) override;
185
Matt Spinler44893cc2020-08-26 11:34:17 -0500186 /**
187 * @brief D-Bus method to create a PEL/OpenBMC event log and
188 * return the created OpenBMC and PEL log IDs.
189 *
190 * The same as the CreateWithFFDCFiles method on the
191 * xyz.openbmc_project.Logging.Create interface, except for
192 * the return values.
193 *
194 * @param[in] message - The event log message property
195 * @param[in] severity - The event log severity
196 * @param[in] additionalData - The AdditionalData property
197 * @param[in] ffdc - A vector of FFDC file information
198 */
Matt Spinler9cc30072020-09-16 15:39:34 -0500199 std::tuple<uint32_t, uint32_t> createPELWithFFDCFiles(
200 std::string message, phosphor::logging::Entry::Level severity,
201 std::map<std::string, std::string> additionalData,
202 std::vector<std::tuple<sdbusplus::xyz::openbmc_project::Logging::
203 server::Create::FFDCFormat,
204 uint8_t, uint8_t, sdbusplus::message::unix_fd>>
Matt Spinler44893cc2020-08-26 11:34:17 -0500205 fFDC) override;
Matt Spinler9cc30072020-09-16 15:39:34 -0500206
Matt Spinler19e72902020-01-24 11:05:20 -0600207 /**
Matt Spinleraa85a072022-03-23 11:26:41 -0500208 * @brief D-Bus method to return the PEL in JSON format
209 *
210 * @param[in] obmcLogID - The OpenBMC entry log ID
211 *
212 * @return std::string - The fully parsed PEL in JSON
213 */
Matt Spinler8bd4ca42022-04-01 16:06:06 -0500214 std::string getPELJSON(uint32_t obmcLogID) override;
Matt Spinleraa85a072022-03-23 11:26:41 -0500215
216 /**
Matt Spinler19e72902020-01-24 11:05:20 -0600217 * @brief Converts the ESEL field in an OpenBMC event log to a
218 * vector of uint8_ts that just contains the PEL data.
219 *
220 * That data string looks like: "50 48 00 ab ..."
221 *
222 * Throws an exception on any failures.
223 *
224 * @param[in] esel - The ESEL string
225 *
226 * @return std::vector<uint8_t> - The contained PEL data
227 */
228 static std::vector<uint8_t> eselToRawData(const std::string& esel);
229
Vijay Lobod354a392021-06-01 16:21:02 -0500230 /**
Vijay Lobo593a4c62021-06-16 14:25:26 -0500231 * @brief Generate resolution string from the PEL
232 *
233 * @param[in] pel - The PEL to use
234 */
235 std::string getResolution(const openpower::pels::PEL& pel) const;
236
237 /**
Vijay Lobod354a392021-06-01 16:21:02 -0500238 * @brief Generate event ID from the PEL
239 *
240 * @param[in] pel - The PEL to use
241 */
242 std::string getEventId(const openpower::pels::PEL& pel) const;
243
Ramesh Iyyarf4203c42021-06-24 06:09:23 -0500244 /** @brief Implementation for GetPELIdFromBMCLogId
245 *
246 * Returns the PEL Id (aka Entry ID (EID)) based on the given
247 * BMC event log id.
248 *
249 * @param[in] bmcLogId - The BMC event log id of the PEL to retrieve
250 * the PEL id.
251 *
252 * @return uint32_t - The Id of the PEL.
253 * Throw "InvalidArgument" if not found.
254 */
255 uint32_t getPELIdFromBMCLogId(uint32_t bmcLogId) override;
256
Ramesh Iyyar530efbf2021-06-24 06:22:22 -0500257 /** @brief Implementation for GetBMCLogIdFromPELId
258 *
259 * Returns the BMC event log id based on the given PEL id
260 * (aka Entry ID (EID)).
261 *
262 * @param[in] pelId - The PEL id to retrieve the BMC event log id.
263 *
264 * @return uint32_t - The BMC event log id of the PEL.
265 * Throw "InvalidArgument" if not found.
266 */
267 uint32_t getBMCLogIdFromPELId(uint32_t pelId) override;
268
Sumit Kumar3e274432021-09-14 06:37:56 -0500269 /**
270 * @brief Update boot progress SRC based on severity 0x51, critical error
271 *
272 * @param[in] pel - The PEL to use
273 */
274 void updateProgressSRC(std::unique_ptr<openpower::pels::PEL>& pel) const;
275
Matt Spinler4e8078c2019-07-09 13:22:32 -0500276 private:
277 /**
278 * @brief Adds a received raw PEL to the PEL repository
279 *
280 * @param[in] rawPelPath - The path to the file that contains the
281 * raw PEL.
282 * @param[in] obmcLogID - the corresponding OpenBMC event log id
283 */
284 void addRawPEL(const std::string& rawPelPath, uint32_t obmcLogID);
285
286 /**
287 * @brief Creates a PEL based on the OpenBMC event log contents.
288 *
289 * @param[in] message - The event log message property
290 * @param[in] obmcLogID - the corresponding OpenBMC event log id
291 * @param[in] timestamp - The timestamp property
292 * @param[in] severity - The event log severity
293 * @param[in] additionalData - The AdditionalData property
294 * @param[in] associations - The associations property
Matt Spinler56ad2a02020-03-26 14:00:52 -0500295 * @param[in] ffdc - A vector of FFDC file information
Matt Spinler4e8078c2019-07-09 13:22:32 -0500296 */
297 void createPEL(const std::string& message, uint32_t obmcLogID,
Matt Spinler367144c2019-09-19 15:33:52 -0500298 uint64_t timestamp, phosphor::logging::Entry::Level severity,
Matt Spinler4e8078c2019-07-09 13:22:32 -0500299 const std::vector<std::string>& additionalData,
Matt Spinler56ad2a02020-03-26 14:00:52 -0500300 const std::vector<std::string>& associations,
301 const phosphor::logging::FFDCEntries& ffdc);
Matt Spinler4e8078c2019-07-09 13:22:32 -0500302
303 /**
Matt Spinler6b1a5c82020-01-07 08:48:53 -0600304 * @brief Schedules a close of the file descriptor to occur from
305 * the event loop.
306 *
307 * Uses sd_event_add_defer
308 *
309 * @param[in] fd - The file descriptor to close
310 */
311 void scheduleFDClose(int fd);
312
313 /**
314 * @brief Closes the file descriptor passed in.
315 *
316 * This is called from the event loop to close FDs returned
317 * from getPEL().
318 *
319 * @param[in] fd - The file descriptor to close
320 * @param[in] source - The event source object used
321 */
322 void closeFD(int fd, sdeventplus::source::EventBase& source);
323
324 /**
Matt Spinler19e72902020-01-24 11:05:20 -0600325 * @brief Adds a PEL to the repository given its data
326 *
327 * @param[in] pelData - The PEL to add as a vector of uint8_ts
328 * @param[in] obmcLogID - the OpenBMC event log ID
329 */
330 void addPEL(std::vector<uint8_t>& pelData, uint32_t obmcLogID);
331
332 /**
333 * @brief Adds the PEL stored in the ESEL field of the AdditionalData
334 * property of an OpenBMC event log to the repository.
335 *
336 * @param[in] esel - The ESEL AdditionalData contents
337 * @param[in] obmcLogID - The OpenBMC event log ID
338 */
339 void addESELPEL(const std::string& esel, uint32_t obmcLogID);
340
341 /**
Matt Spinler56ad2a02020-03-26 14:00:52 -0500342 * @brief Converts the D-Bus FFDC method argument into a data
343 * structure understood by the PEL code.
344 *
345 * @param[in] ffdc - A vector of FFDC file information
346 *
347 * @return PelFFDC - The PEL FFDC data structure
348 */
349 PelFFDC convertToPelFFDC(const phosphor::logging::FFDCEntries& ffdc);
350
351 /**
Matt Spinler7e727a32020-07-07 15:00:17 -0500352 * @brief Schedules a PEL repository prune to occur from
353 * the event loop.
354 *
355 * Uses sd_event_add_defer
356 */
357 void scheduleRepoPrune();
358
359 /**
360 * @brief Prunes old PELs out of the repository to save space.
361 *
362 * This is called from the event loop.
363 *
364 * @param[in] source - The event source object used
365 */
366 void pruneRepo(sdeventplus::source::EventBase& source);
367
368 /**
Matt Spinlerff9cec22020-07-15 13:06:35 -0500369 * @brief Sets up an inotify watch to watch for deleted PEL
370 * files. Calls pelFileDeleted() when that occurs.
371 */
372 void setupPELDeleteWatch();
373
374 /**
375 * @brief Called when the inotify watch put on the repository directory
376 * detects a PEL file was deleted.
377 *
378 * Will tell the Repository class about the deleted PEL, and then tell
379 * the log manager class to delete the corresponding OpenBMC event log.
380 */
381 void pelFileDeleted(sdeventplus::source::IO& io, int fd, uint32_t revents);
382
383 /**
Andrew Geissler44fc3162020-07-09 09:21:31 -0500384 * @brief Check if the input PEL should cause a quiesce of the system
385 *
386 * If QuiesceOnHwError is enabled within phosphor-settings and the PEL
Matt Spinlerb2abc042021-05-17 15:32:50 -0600387 * from the host has a severity which is not SeverityType::nonError or
388 * recovered then execute the quiesce and boot block logic.
Andrew Geissler44fc3162020-07-09 09:21:31 -0500389 *
390 * @param[in] pel - The PEL to check
391 */
392 void checkPelAndQuiesce(std::unique_ptr<openpower::pels::PEL>& pel);
393
394 /**
Vijay Lobod354a392021-06-01 16:21:02 -0500395 * @brief Update eventId D-bus property for this error log
396 *
397 * Update the eventId property of D-bus with SRC and hexwords from the
398 * PEL created
399 *
400 * @param[in] pel - The PEL to use
401 */
402 void updateEventId(std::unique_ptr<openpower::pels::PEL>& pel);
403
404 /**
Adriana Kobylake7d271a2020-12-07 14:32:44 -0600405 * @brief Sets the FilePath of the specified error log entry to the PEL file
406 * path.
407 *
408 * @param[in] obmcLogID - The OpenBMC entry log ID
409 */
410 void setEntryPath(uint32_t obmcLogID);
411
412 /**
Vijay Lobocbc93a42021-05-20 19:04:07 -0500413 * @brief Sets the serviceProviderNotify D-bus property of PEL.
414 *
415 * @param[in] obmcLogID - The OpenBMC entry log ID
416 */
417 void setServiceProviderNotifyFlag(uint32_t obmcLogID);
418
419 /**
Vijay Lobo593a4c62021-06-16 14:25:26 -0500420 * @brief Update resolution D-bus property for this error log
421 *
422 * Update the resolution property of D-bus with callouts extracted from PEL
423 *
424 * @param[in] pel - The PEL to use
Matt Spinler28d6ae22022-03-18 11:18:27 -0500425 *
426 * @return bool - false for Repositor::for_each().
Vijay Lobo593a4c62021-06-16 14:25:26 -0500427 */
Matt Spinler28d6ae22022-03-18 11:18:27 -0500428 bool updateResolution(const openpower::pels::PEL& pel);
Vijay Lobo593a4c62021-06-16 14:25:26 -0500429
430 /**
Vijay Loboafb1b462021-07-21 23:29:13 -0500431 * @brief Create PELEntry Interface with supported properties
432 *
433 * Create PELEntry Interface and update all the properties which are
434 * supported
435 *
436 * @param[in] obmcLogID - The OpenBMC entry log ID
Matt Spinler734ed2b2022-01-21 09:31:46 -0600437 * @param[in] skipIaSignal - If The InterfacesAdded signal should be
438 * skipped after creating the interfaces.
Vijay Loboafb1b462021-07-21 23:29:13 -0500439 */
Matt Spinler734ed2b2022-01-21 09:31:46 -0600440 void createPELEntry(uint32_t obmcLogID, bool skipIaSignal = false);
Vijay Loboafb1b462021-07-21 23:29:13 -0500441
442 /**
Matt Spinlerd8fb5ba2022-01-25 13:01:14 -0600443 * @brief Schedules the delete of the OpenBMC event log for when
444 * execution gets back to the event loop (uses sd_event_add_defer).
445 *
446 * @param[in] obmcLogID - The OpenBMC entry log ID
447 */
448 void scheduleObmcLogDelete(uint32_t obmcLogID);
449
450 /**
451 * @brief SD event callback to delete an OpenBMC event log
452 *
453 * @param[in] obmcLogID - The OpenBMC entry log ID
454 */
455 void deleteObmcLog(sdeventplus::source::EventBase&, uint32_t obmcLogID);
456
457 /**
Matt Spinler4e8078c2019-07-09 13:22:32 -0500458 * @brief Reference to phosphor-logging's Manager class
459 */
Matt Spinler367144c2019-09-19 15:33:52 -0500460 phosphor::logging::internal::Manager& _logManager;
Matt Spinler89fa0822019-07-17 13:54:30 -0500461
462 /**
Matt Spinlerf682b402019-12-18 13:48:08 -0600463 * @brief Handles creating event logs/PELs from within
464 * the PEL extension code
465 */
466 EventLogger _eventLogger;
467
468 /**
Matt Spinler89fa0822019-07-17 13:54:30 -0500469 * @brief The PEL repository object
470 */
471 Repository _repo;
Matt Spinlerc8705e22019-09-11 12:36:07 -0500472
473 /**
Matt Spinler367144c2019-09-19 15:33:52 -0500474 * @brief The PEL message registry object
475 */
476 message::Registry _registry;
477
478 /**
Matt Spinlerff9cec22020-07-15 13:06:35 -0500479 * @brief The Event object this class uses
480 */
481 sdeventplus::Event _event;
482
483 /**
Matt Spinlerc8705e22019-09-11 12:36:07 -0500484 * @brief The API the PEL sections use to gather data
485 */
486 std::unique_ptr<DataInterfaceBase> _dataIface;
Matt Spinlerf60ac272019-12-11 13:47:50 -0600487
488 /**
Vijay Loboafb1b462021-07-21 23:29:13 -0500489 * @brief The map used to keep track of PEL entry pointer associated with
490 * event log.
491 */
492 std::map<std::string,
493 std::unique_ptr<
494 sdbusplus::org::open_power::Logging::PEL::server::Entry>>
495 _pelEntries;
496
497 /**
Matt Spinlerf60ac272019-12-11 13:47:50 -0600498 * @brief The HostNotifier object used for telling the
499 * host about new PELs
500 */
501 std::unique_ptr<HostNotifier> _hostNotifier;
Matt Spinler6b1a5c82020-01-07 08:48:53 -0600502
503 /**
504 * @brief The event source for closing a PEL file descriptor after
505 * it has been returned from the getPEL D-Bus method.
506 */
507 std::unique_ptr<sdeventplus::source::Defer> _fdCloserEventSource;
Matt Spinler7e727a32020-07-07 15:00:17 -0500508
509 /**
510 * @brief The even source for removing old PELs when the repo is
511 * running out of space to make room for new ones.
512 */
513 std::unique_ptr<sdeventplus::source::Defer> _repoPrunerEventSource;
Matt Spinlerff9cec22020-07-15 13:06:35 -0500514
515 /**
Matt Spinlerd8fb5ba2022-01-25 13:01:14 -0600516 * @brief The event source for deleting an OpenBMC event log.
517 * Used when its corresponding PEL is invalid.
518 */
519 std::unique_ptr<sdeventplus::source::Defer> _obmcLogDeleteEventSource;
520
521 /**
Matt Spinlerff9cec22020-07-15 13:06:35 -0500522 * @brief The even source for watching for deleted PEL files.
523 */
524 std::unique_ptr<sdeventplus::source::IO> _pelFileDeleteEventSource;
525
526 /**
527 * @brief The file descriptor returned by inotify_init1() used
528 * for watching for deleted PEL files.
529 */
530 int _pelFileDeleteFD = -1;
531
532 /**
533 * @brief The file descriptor returned by inotify_add_watch().
534 */
535 int _pelFileDeleteWatchFD = -1;
Matt Spinler4e8078c2019-07-09 13:22:32 -0500536};
537
538} // namespace pels
539} // namespace openpower