blob: 8e898affa580500d5d251a79521d3258fe54a34d [file] [log] [blame]
Pavithra Barithaya51efaf82020-04-02 02:42:27 -05001#pragma once
2
George Liu6492f522020-06-16 10:34:05 +08003#include "libpldm/base.h"
4#include "libpldm/platform.h"
5
Deepak Kodihallid130e1a2020-06-17 05:55:32 -05006#include "common/types.hpp"
7#include "common/utils.hpp"
Pavithra Barithaya3aec9972020-12-14 01:55:44 -06008#include "libpldmresponder/event_parser.hpp"
Tom Josephb4268602020-04-17 17:20:45 +05309#include "libpldmresponder/pdr_utils.hpp"
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -050010#include "pldmd/dbus_impl_requester.hpp"
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050011
12#include <sdeventplus/event.hpp>
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -050013#include <sdeventplus/source/event.hpp>
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050014
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -050015#include <deque>
George Liu6492f522020-06-16 10:34:05 +080016#include <map>
17#include <memory>
18#include <vector>
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050019
20using namespace pldm::dbus_api;
Pavithra Barithaya3aec9972020-12-14 01:55:44 -060021using namespace pldm::responder::events;
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050022
23namespace pldm
24{
25
Deepak Kodihalli87514cc2020-04-16 09:08:38 -050026using EntityType = uint16_t;
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -050027// vector which would hold the PDR record handle data returned by
28// pldmPDRRepositoryChgEvent event data
29using ChangeEntry = uint32_t;
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -050030using PDRRecordHandles = std::deque<ChangeEntry>;
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -050031
Tom Josephb4268602020-04-17 17:20:45 +053032/** @struct SensorEntry
33 *
34 * SensorEntry is a unique key which maps a sensorEventType request in the
35 * PlatformEventMessage command to a host sensor PDR. This struct is a key
36 * in a std::map, so implemented operator==and operator<.
37 */
38struct SensorEntry
39{
40 pdr::TerminusID terminusID;
41 pdr::SensorID sensorID;
42
43 bool operator==(const SensorEntry& e) const
44 {
45 return ((terminusID == e.terminusID) && (sensorID == e.sensorID));
46 }
47
48 bool operator<(const SensorEntry& e) const
49 {
50 return ((terminusID < e.terminusID) ||
51 ((terminusID == e.terminusID) && (sensorID < e.sensorID)));
52 }
53};
54
55using HostStateSensorMap = std::map<SensorEntry, pdr::SensorInfo>;
Sampa Misra868c8792020-05-26 03:12:13 -050056using PDRList = std::vector<std::vector<uint8_t>>;
Tom Josephb4268602020-04-17 17:20:45 +053057
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050058/** @class HostPDRHandler
59 * @brief This class can fetch and process PDRs from host firmware
60 * @details Provides an API to fetch PDRs from the host firmware. Upon
61 * receiving the PDRs, they are stored into the BMC's primary PDR repo.
62 * Adjustments are made to entity association PDRs received from the host,
63 * because they need to be assimilated into the BMC's entity association
64 * tree. A PLDM event containing the record handles of the updated entity
65 * association PDRs is sent to the host.
66 */
67class HostPDRHandler
68{
69 public:
70 HostPDRHandler() = delete;
71 HostPDRHandler(const HostPDRHandler&) = delete;
72 HostPDRHandler(HostPDRHandler&&) = delete;
73 HostPDRHandler& operator=(const HostPDRHandler&) = delete;
74 HostPDRHandler& operator=(HostPDRHandler&&) = delete;
75 ~HostPDRHandler() = default;
76
Sampa Misra868c8792020-05-26 03:12:13 -050077 using TLPDRMap = std::map<pdr::TerminusHandle, pdr::TerminusID>;
78
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050079 /** @brief Constructor
80 * @param[in] mctp_fd - fd of MCTP communications socket
81 * @param[in] mctp_eid - MCTP EID of host firmware
82 * @param[in] event - reference of main event loop of pldmd
83 * @param[in] repo - pointer to BMC's primary PDR repo
Pavithra Barithaya3aec9972020-12-14 01:55:44 -060084 * @param[in] eventsJsonDir - directory path which has the config JSONs
Deepak Kodihalli87514cc2020-04-16 09:08:38 -050085 * @param[in] tree - pointer to BMC's entity association tree
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050086 * @param[in] requester - reference to Requester object
87 */
88 explicit HostPDRHandler(int mctp_fd, uint8_t mctp_eid,
89 sdeventplus::Event& event, pldm_pdr* repo,
Pavithra Barithaya3aec9972020-12-14 01:55:44 -060090 const std::string& eventsJsonsDir,
Deepak Kodihalli87514cc2020-04-16 09:08:38 -050091 pldm_entity_association_tree* entityTree,
Sampa Misrac073a202021-05-08 10:56:05 -050092 pldm_entity_association_tree* bmcEntityTree,
Sridevi Rameshae28bc72020-12-10 07:21:16 -060093 Requester& requester, bool verbose = false);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050094
95 /** @brief fetch PDRs from host firmware. See @class.
96 * @param[in] recordHandles - list of record handles pointing to host's
97 * PDRs that need to be fetched.
98 */
Pavithra Barithayae8beb892020-04-14 23:24:25 -050099
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -0500100 void fetchPDR(PDRRecordHandles&& recordHandles);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500101
Pavithra Barithayae8beb892020-04-14 23:24:25 -0500102 /** @brief Send a PLDM event to host firmware containing a list of record
103 * handles of PDRs that the host firmware has to fetch.
104 * @param[in] pdrTypes - list of PDR types that need to be looked up in the
105 * BMC repo
106 * @param[in] eventDataFormat - format for PDRRepositoryChgEvent in DSP0248
107 */
108 void sendPDRRepositoryChgEvent(std::vector<uint8_t>&& pdrTypes,
109 uint8_t eventDataFormat);
110
Tom Josephb4268602020-04-17 17:20:45 +0530111 /** @brief Lookup host sensor info corresponding to requested SensorEntry
112 *
113 * @param[in] entry - TerminusID and SensorID
114 *
115 * @return SensorInfo corresponding to the input paramter SensorEntry
116 * throw std::out_of_range exception if not found
117 */
118 const pdr::SensorInfo& lookupSensorInfo(const SensorEntry& entry) const
119 {
120 return sensorMap.at(entry);
121 }
122
Pavithra Barithaya3aec9972020-12-14 01:55:44 -0600123 /** @brief Handles state sensor event
124 *
125 * @param[in] entry - state sensor entry
126 * @param[in] state - event state
127 *
128 * @return PLDM completion code
129 */
130 int handleStateSensorEvent(const StateSensorEntry& entry,
131 pdr::EventState state);
132
Sampa Misra868c8792020-05-26 03:12:13 -0500133 /** @brief Parse state sensor PDRs and populate the sensorMap lookup data
134 * structure
135 *
136 * @param[in] stateSensorPDRs - host state sensor PDRs
137 * @param[in] tlpdrInfo - terminus locator PDRs info
138 *
139 */
140 void parseStateSensorPDRs(const PDRList& stateSensorPDRs,
141 const TLPDRMap& tlpdrInfo);
142
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500143 private:
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500144 /** @brief fetchPDR schedules work on the event loop, this method does the
145 * actual work. This is so that the PDR exchg with the host is async.
146 * @param[in] source - sdeventplus event source
147 */
148 void _fetchPDR(sdeventplus::source::EventBase& source);
149
Deepak Kodihalli87514cc2020-04-16 09:08:38 -0500150 /** @brief Merge host firmware's entity association PDRs into BMC's
151 * @details A merge operation involves adding a pldm_entity under the
152 * appropriate parent, and updating container ids.
153 * @param[in] pdr - entity association pdr
154 */
155 void mergeEntityAssociations(const std::vector<uint8_t>& pdr);
156
157 /** @brief Find parent of input entity type, from the entity association
158 * tree
159 * @param[in] type - PLDM entity type
160 * @param[out] parent - PLDM entity information of parent
161 * @return bool - true if parent found, false otherwise
162 */
163 bool getParent(EntityType type, pldm_entity& parent);
164
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500165 /** @brief fd of MCTP communications socket */
166 int mctp_fd;
167 /** @brief MCTP EID of host firmware */
168 uint8_t mctp_eid;
169 /** @brief reference of main event loop of pldmd, primarily used to schedule
170 * work.
171 */
172 sdeventplus::Event& event;
173 /** @brief pointer to BMC's primary PDR repo, host PDRs are added here */
174 pldm_pdr* repo;
Pavithra Barithaya3aec9972020-12-14 01:55:44 -0600175
176 StateSensorHandler stateSensorHandler;
Sampa Misrac073a202021-05-08 10:56:05 -0500177 /** @brief Pointer to BMC's and Host's entity association tree */
Deepak Kodihalli87514cc2020-04-16 09:08:38 -0500178 pldm_entity_association_tree* entityTree;
Sampa Misrac073a202021-05-08 10:56:05 -0500179
180 /** @brief Pointer to BMC's entity association tree */
181 pldm_entity_association_tree* bmcEntityTree;
182
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500183 /** @brief reference to Requester object, primarily used to access API to
184 * obtain PLDM instance id.
185 */
186 Requester& requester;
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500187 /** @brief sdeventplus event source */
188 std::unique_ptr<sdeventplus::source::Defer> pdrFetchEvent;
189 /** @brief list of PDR record handles pointing to host's PDRs */
190 PDRRecordHandles pdrRecordHandles;
Deepak Kodihalli87514cc2020-04-16 09:08:38 -0500191 /** @brief maps an entity type to parent pldm_entity from the BMC's entity
192 * association tree
193 */
194 std::map<EntityType, pldm_entity> parents;
Deepak Kodihalli6b1d1ca2020-04-27 07:24:51 -0500195 /** @brief D-Bus property changed signal match */
196 std::unique_ptr<sdbusplus::bus::match::match> hostOffMatch;
Tom Josephb4268602020-04-17 17:20:45 +0530197
198 /** @brief sensorMap is a lookup data structure that is build from the
199 * hostPDR that speeds up the lookup of <TerminusID, SensorID> in
200 * PlatformEventMessage command request.
201 */
202 HostStateSensorMap sensorMap;
Sridevi Rameshae28bc72020-12-10 07:21:16 -0600203 bool verbose;
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500204};
205
206} // namespace pldm