Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 3 | #include "xyz/openbmc_project/Logging/Entry/server.hpp" |
Deepak Kodihalli | 36db46c | 2017-03-31 06:28:44 -0500 | [diff] [blame] | 4 | #include "xyz/openbmc_project/Object/Delete/server.hpp" |
Matt Spinler | 375ac9b | 2018-05-01 15:20:55 -0500 | [diff] [blame] | 5 | #include "xyz/openbmc_project/Software/Version/server.hpp" |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 6 | |
| 7 | #include <sdbusplus/bus.hpp> |
| 8 | #include <sdbusplus/server/object.hpp> |
Adriana Kobylak | eb5d3f2 | 2021-02-04 14:03:28 -0600 | [diff] [blame] | 9 | #include <sdeventplus/event.hpp> |
| 10 | #include <sdeventplus/source/event.hpp> |
John Wang | 27d8281 | 2019-09-11 16:39:36 +0800 | [diff] [blame] | 11 | #include <xyz/openbmc_project/Association/Definitions/server.hpp> |
Adriana Kobylak | 1ff95ef | 2020-12-03 13:52:19 -0600 | [diff] [blame] | 12 | #include <xyz/openbmc_project/Common/FilePath/server.hpp> |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 13 | |
| 14 | namespace phosphor |
| 15 | { |
| 16 | namespace logging |
| 17 | { |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 18 | |
Deepak Kodihalli | b388da6 | 2017-02-27 00:47:12 -0600 | [diff] [blame] | 19 | using EntryIfaces = sdbusplus::server::object::object< |
| 20 | sdbusplus::xyz::openbmc_project::Logging::server::Entry, |
Deepak Kodihalli | 36db46c | 2017-03-31 06:28:44 -0500 | [diff] [blame] | 21 | sdbusplus::xyz::openbmc_project::Object::server::Delete, |
John Wang | 27d8281 | 2019-09-11 16:39:36 +0800 | [diff] [blame] | 22 | sdbusplus::xyz::openbmc_project::Association::server::Definitions, |
Adriana Kobylak | 1ff95ef | 2020-12-03 13:52:19 -0600 | [diff] [blame] | 23 | sdbusplus::xyz::openbmc_project::Software::server::Version, |
| 24 | sdbusplus::xyz::openbmc_project::Common::server::FilePath>; |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 25 | |
Deepak Kodihalli | 35b4637 | 2017-02-27 04:58:18 -0600 | [diff] [blame] | 26 | using AssociationList = |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 27 | std::vector<std::tuple<std::string, std::string, std::string>>; |
Deepak Kodihalli | 35b4637 | 2017-02-27 04:58:18 -0600 | [diff] [blame] | 28 | |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 29 | namespace internal |
| 30 | { |
Deepak Kodihalli | 8110ca6 | 2017-04-10 02:11:54 -0500 | [diff] [blame] | 31 | class Manager; |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 32 | } |
Deepak Kodihalli | 8110ca6 | 2017-04-10 02:11:54 -0500 | [diff] [blame] | 33 | |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 34 | /** @class Entry |
| 35 | * @brief OpenBMC logging entry implementation. |
| 36 | * @details A concrete implementation for the |
Deepak Kodihalli | b388da6 | 2017-02-27 00:47:12 -0600 | [diff] [blame] | 37 | * xyz.openbmc_project.Logging.Entry and |
John Wang | 27d8281 | 2019-09-11 16:39:36 +0800 | [diff] [blame] | 38 | * xyz.openbmc_project.Associations.Definitions DBus APIs. |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 39 | */ |
Deepak Kodihalli | b388da6 | 2017-02-27 00:47:12 -0600 | [diff] [blame] | 40 | class Entry : public EntryIfaces |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 41 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 42 | public: |
| 43 | Entry() = delete; |
| 44 | Entry(const Entry&) = delete; |
| 45 | Entry& operator=(const Entry&) = delete; |
| 46 | Entry(Entry&&) = delete; |
| 47 | Entry& operator=(Entry&&) = delete; |
| 48 | virtual ~Entry() = default; |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 49 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 50 | /** @brief Constructor to put object onto bus at a dbus path. |
| 51 | * Defer signal registration (pass true for deferSignal to the |
| 52 | * base class) until after the properties are set. |
| 53 | * @param[in] bus - Bus to attach to. |
| 54 | * @param[in] path - Path to attach at. |
| 55 | * @param[in] idErr - The error entry id. |
| 56 | * @param[in] timestampErr - The commit timestamp. |
| 57 | * @param[in] severityErr - The severity of the error. |
| 58 | * @param[in] msgErr - The message of the error. |
| 59 | * @param[in] additionalDataErr - The error metadata. |
| 60 | * @param[in] objects - The list of associations. |
| 61 | * @param[in] fwVersion - The BMC code version. |
| 62 | * @param[in] parent - The error's parent. |
| 63 | */ |
| 64 | Entry(sdbusplus::bus::bus& bus, const std::string& path, uint32_t idErr, |
| 65 | uint64_t timestampErr, Level severityErr, std::string&& msgErr, |
| 66 | std::vector<std::string>&& additionalDataErr, |
| 67 | AssociationList&& objects, const std::string& fwVersion, |
| 68 | internal::Manager& parent) : |
| 69 | EntryIfaces(bus, path.c_str(), true), |
| 70 | parent(parent) |
| 71 | { |
| 72 | id(idErr); |
| 73 | severity(severityErr); |
| 74 | timestamp(timestampErr); |
Matt Spinler | 1e71a4d | 2020-03-04 13:40:22 -0600 | [diff] [blame] | 75 | updateTimestamp(timestampErr); |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 76 | message(std::move(msgErr)); |
| 77 | additionalData(std::move(additionalDataErr)); |
| 78 | associations(std::move(objects)); |
| 79 | // Store a copy of associations in case we need to recreate |
| 80 | assocs = associations(); |
| 81 | sdbusplus::xyz::openbmc_project::Logging::server::Entry::resolved( |
| 82 | false); |
Adriana Kobylak | 4ea7f31 | 2017-01-10 12:52:34 -0600 | [diff] [blame] | 83 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 84 | version(fwVersion); |
| 85 | purpose(VersionPurpose::BMC); |
Matt Spinler | 375ac9b | 2018-05-01 15:20:55 -0500 | [diff] [blame] | 86 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 87 | // Emit deferred signal. |
| 88 | this->emit_object_added(); |
| 89 | }; |
Adriana Kobylak | 4ea7f31 | 2017-01-10 12:52:34 -0600 | [diff] [blame] | 90 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 91 | /** @brief Constructor that puts an "empty" error object on the bus, |
| 92 | * with only the id property populated. Rest of the properties |
| 93 | * to be set by the caller. Caller should emit the added signal. |
| 94 | * @param[in] bus - Bus to attach to. |
| 95 | * @param[in] path - Path to attach at. |
| 96 | * @param[in] id - The error entry id. |
| 97 | * @param[in] parent - The error's parent. |
| 98 | */ |
| 99 | Entry(sdbusplus::bus::bus& bus, const std::string& path, uint32_t entryId, |
| 100 | internal::Manager& parent) : |
| 101 | EntryIfaces(bus, path.c_str(), true), |
| 102 | parent(parent) |
| 103 | { |
| 104 | id(entryId); |
| 105 | }; |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 106 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 107 | /** @brief Set resolution status of the error. |
| 108 | * @param[in] value - boolean indicating resolution |
| 109 | * status (true = resolved) |
| 110 | * @returns value of 'Resolved' property |
| 111 | */ |
| 112 | bool resolved(bool value) override; |
Deepak Kodihalli | 90abed6 | 2017-03-27 03:56:44 -0500 | [diff] [blame] | 113 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 114 | using sdbusplus::xyz::openbmc_project::Logging::server::Entry::resolved; |
Deepak Kodihalli | 90abed6 | 2017-03-27 03:56:44 -0500 | [diff] [blame] | 115 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 116 | /** @brief Delete this d-bus object. |
| 117 | */ |
| 118 | void delete_() override; |
Deepak Kodihalli | 36db46c | 2017-03-31 06:28:44 -0500 | [diff] [blame] | 119 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 120 | /** @brief Severity level to check in cap. |
| 121 | * @details Errors with severity lesser than this will be |
| 122 | * considered as low priority and maximum ERROR_INFO_CAP |
| 123 | * number errors of this category will be captured. |
| 124 | */ |
| 125 | static constexpr auto sevLowerLimit = Entry::Level::Informational; |
Nagaraju Goruganti | f8a5a79 | 2017-10-13 08:09:52 -0500 | [diff] [blame] | 126 | |
Adriana Kobylak | eb5d3f2 | 2021-02-04 14:03:28 -0600 | [diff] [blame] | 127 | /** |
| 128 | * @brief Returns the file descriptor to the Entry file. |
| 129 | * @return unix_fd - File descriptor to the Entry file. |
| 130 | */ |
| 131 | sdbusplus::message::unix_fd getEntry() override; |
| 132 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 133 | private: |
| 134 | /** @brief This entry's associations */ |
| 135 | AssociationList assocs = {}; |
Deepak Kodihalli | 8110ca6 | 2017-04-10 02:11:54 -0500 | [diff] [blame] | 136 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 137 | /** @brief This entry's parent */ |
| 138 | internal::Manager& parent; |
Adriana Kobylak | eb5d3f2 | 2021-02-04 14:03:28 -0600 | [diff] [blame] | 139 | |
| 140 | /** |
| 141 | * @brief The event source for closing the Entry file descriptor after it |
| 142 | * has been returned from the getEntry D-Bus method. |
| 143 | */ |
| 144 | std::unique_ptr<sdeventplus::source::Defer> fdCloseEventSource; |
| 145 | |
| 146 | /** |
| 147 | * @brief Closes the file descriptor passed in. |
| 148 | * @details This is called from the event loop to close FDs returned from |
| 149 | * getEntry(). |
| 150 | * @param[in] fd - The file descriptor to close |
| 151 | * @param[in] source - The event source object used |
| 152 | */ |
| 153 | void closeFD(int fd, sdeventplus::source::EventBase& source); |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 154 | }; |
| 155 | |
| 156 | } // namespace logging |
| 157 | } // namespace phosphor |