blob: dc539ced717d2c18e1748b77eb5b0d19393052cb [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"
Tom Joseph74f27c72021-05-16 07:58:53 -070011#include "requester/handler.hpp"
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050012
13#include <sdeventplus/event.hpp>
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -050014#include <sdeventplus/source/event.hpp>
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050015
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -050016#include <deque>
George Liu6492f522020-06-16 10:34:05 +080017#include <map>
18#include <memory>
19#include <vector>
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050020
21using namespace pldm::dbus_api;
Pavithra Barithaya3aec9972020-12-14 01:55:44 -060022using namespace pldm::responder::events;
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050023
24namespace pldm
25{
26
Deepak Kodihalli87514cc2020-04-16 09:08:38 -050027using EntityType = uint16_t;
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -050028// vector which would hold the PDR record handle data returned by
29// pldmPDRRepositoryChgEvent event data
30using ChangeEntry = uint32_t;
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -050031using PDRRecordHandles = std::deque<ChangeEntry>;
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -050032
Tom Josephb4268602020-04-17 17:20:45 +053033/** @struct SensorEntry
34 *
35 * SensorEntry is a unique key which maps a sensorEventType request in the
36 * PlatformEventMessage command to a host sensor PDR. This struct is a key
37 * in a std::map, so implemented operator==and operator<.
38 */
39struct SensorEntry
40{
41 pdr::TerminusID terminusID;
42 pdr::SensorID sensorID;
43
44 bool operator==(const SensorEntry& e) const
45 {
46 return ((terminusID == e.terminusID) && (sensorID == e.sensorID));
47 }
48
49 bool operator<(const SensorEntry& e) const
50 {
51 return ((terminusID < e.terminusID) ||
52 ((terminusID == e.terminusID) && (sensorID < e.sensorID)));
53 }
54};
55
Pavithra Barithaya4f2538a2021-03-05 07:32:15 -060056/* @struct TerminusLocatorInfo
57 * Contains validity, eid, terminus_id and terminus handle
58 * of a terminus locator PDR.
59 */
60struct TlInfo
61{
62 uint8_t valid;
63 uint8_t eid;
64 uint8_t tid;
65 uint16_t terminusHandle;
66};
67
Tom Josephb4268602020-04-17 17:20:45 +053068using HostStateSensorMap = std::map<SensorEntry, pdr::SensorInfo>;
Sampa Misra868c8792020-05-26 03:12:13 -050069using PDRList = std::vector<std::vector<uint8_t>>;
Tom Josephb4268602020-04-17 17:20:45 +053070
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050071/** @class HostPDRHandler
72 * @brief This class can fetch and process PDRs from host firmware
73 * @details Provides an API to fetch PDRs from the host firmware. Upon
74 * receiving the PDRs, they are stored into the BMC's primary PDR repo.
75 * Adjustments are made to entity association PDRs received from the host,
76 * because they need to be assimilated into the BMC's entity association
77 * tree. A PLDM event containing the record handles of the updated entity
78 * association PDRs is sent to the host.
79 */
80class HostPDRHandler
81{
82 public:
83 HostPDRHandler() = delete;
84 HostPDRHandler(const HostPDRHandler&) = delete;
85 HostPDRHandler(HostPDRHandler&&) = delete;
86 HostPDRHandler& operator=(const HostPDRHandler&) = delete;
87 HostPDRHandler& operator=(HostPDRHandler&&) = delete;
88 ~HostPDRHandler() = default;
89
Sampa Misra868c8792020-05-26 03:12:13 -050090 using TLPDRMap = std::map<pdr::TerminusHandle, pdr::TerminusID>;
91
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050092 /** @brief Constructor
93 * @param[in] mctp_fd - fd of MCTP communications socket
94 * @param[in] mctp_eid - MCTP EID of host firmware
95 * @param[in] event - reference of main event loop of pldmd
96 * @param[in] repo - pointer to BMC's primary PDR repo
Pavithra Barithaya3aec9972020-12-14 01:55:44 -060097 * @param[in] eventsJsonDir - directory path which has the config JSONs
Tom Joseph74f27c72021-05-16 07:58:53 -070098 * @param[in] entityTree - Pointer to BMC and Host entity association tree
99 * @param[in] bmcEntityTree - pointer to BMC's entity association tree
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500100 * @param[in] requester - reference to Requester object
Tom Joseph74f27c72021-05-16 07:58:53 -0700101 * @param[in] handler - PLDM request handler
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500102 */
Tom Joseph74f27c72021-05-16 07:58:53 -0700103 explicit HostPDRHandler(
104 int mctp_fd, uint8_t mctp_eid, sdeventplus::Event& event,
105 pldm_pdr* repo, const std::string& eventsJsonsDir,
106 pldm_entity_association_tree* entityTree,
107 pldm_entity_association_tree* bmcEntityTree, Requester& requester,
Sampa Misrac0c79482021-06-02 08:01:54 -0500108 pldm::requester::Handler<pldm::requester::Request>* handler,
Tom Joseph74f27c72021-05-16 07:58:53 -0700109 bool verbose = false);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500110
111 /** @brief fetch PDRs from host firmware. See @class.
112 * @param[in] recordHandles - list of record handles pointing to host's
113 * PDRs that need to be fetched.
114 */
Pavithra Barithayae8beb892020-04-14 23:24:25 -0500115
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -0500116 void fetchPDR(PDRRecordHandles&& recordHandles);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500117
Pavithra Barithayae8beb892020-04-14 23:24:25 -0500118 /** @brief Send a PLDM event to host firmware containing a list of record
119 * handles of PDRs that the host firmware has to fetch.
120 * @param[in] pdrTypes - list of PDR types that need to be looked up in the
121 * BMC repo
122 * @param[in] eventDataFormat - format for PDRRepositoryChgEvent in DSP0248
123 */
124 void sendPDRRepositoryChgEvent(std::vector<uint8_t>&& pdrTypes,
125 uint8_t eventDataFormat);
126
Tom Josephb4268602020-04-17 17:20:45 +0530127 /** @brief Lookup host sensor info corresponding to requested SensorEntry
128 *
129 * @param[in] entry - TerminusID and SensorID
130 *
131 * @return SensorInfo corresponding to the input paramter SensorEntry
132 * throw std::out_of_range exception if not found
133 */
134 const pdr::SensorInfo& lookupSensorInfo(const SensorEntry& entry) const
135 {
136 return sensorMap.at(entry);
137 }
138
Pavithra Barithaya3aec9972020-12-14 01:55:44 -0600139 /** @brief Handles state sensor event
140 *
141 * @param[in] entry - state sensor entry
142 * @param[in] state - event state
143 *
144 * @return PLDM completion code
145 */
146 int handleStateSensorEvent(const StateSensorEntry& entry,
147 pdr::EventState state);
148
Sampa Misra868c8792020-05-26 03:12:13 -0500149 /** @brief Parse state sensor PDRs and populate the sensorMap lookup data
150 * structure
151 *
152 * @param[in] stateSensorPDRs - host state sensor PDRs
153 * @param[in] tlpdrInfo - terminus locator PDRs info
154 *
155 */
156 void parseStateSensorPDRs(const PDRList& stateSensorPDRs,
157 const TLPDRMap& tlpdrInfo);
158
Sampa Misrac0c79482021-06-02 08:01:54 -0500159 /** @brief this function sends a GetPDR request to Host firmware.
160 * And processes the PDRs based on type
161 *
162 * @param[in] - nextRecordHandle - the next record handle to ask for
163 */
164 void getHostPDR(uint32_t nextRecordHandle = 0);
165
sampmisr6decfc12021-03-02 11:07:36 +0530166 /** @brief set the Host state when pldmd starts
167 */
168 void setHostState();
169
Pavithra Barithaya4f2538a2021-03-05 07:32:15 -0600170 /** @brief set HostSensorStates when pldmd starts or restarts
171 * and updates the D-Bus property
172 * @param[in] stateSensorPDRs - host state sensor PDRs
173 * @param[in] tlinfo - vector of struct TlInfo
174 */
175 void setHostSensorState(const PDRList& stateSensorPDRs,
176 const std::vector<TlInfo>& tlinfo);
177
sampmisr6decfc12021-03-02 11:07:36 +0530178 /** @brief check whether Host is running when pldmd starts
179 */
180 bool isHostUp();
181
182 private:
183 /** @brief deferred function to fetch PDR from Host, scheduled to work on
184 * the event loop. The PDR exchg with the host is async.
185 * @param[in] source - sdeventplus event source
186 */
187 void _fetchPDR(sdeventplus::source::EventBase& source);
188
Deepak Kodihalli87514cc2020-04-16 09:08:38 -0500189 /** @brief Merge host firmware's entity association PDRs into BMC's
190 * @details A merge operation involves adding a pldm_entity under the
191 * appropriate parent, and updating container ids.
192 * @param[in] pdr - entity association pdr
193 */
194 void mergeEntityAssociations(const std::vector<uint8_t>& pdr);
195
196 /** @brief Find parent of input entity type, from the entity association
197 * tree
198 * @param[in] type - PLDM entity type
199 * @param[out] parent - PLDM entity information of parent
200 * @return bool - true if parent found, false otherwise
201 */
202 bool getParent(EntityType type, pldm_entity& parent);
203
Sampa Misrac0c79482021-06-02 08:01:54 -0500204 /** @brief process the Host's PDR and add to BMC's PDR repo
205 * @param[in] eid - MCTP id of Host
206 * @param[in] response - response from Host for GetPDR
207 * @param[in] respMsgLen - response message length
208 */
209 void processHostPDRs(mctp_eid_t eid, const pldm_msg* response,
210 size_t respMsgLen);
211
212 /** @brief send PDR Repo change after merging Host's PDR to BMC PDR repo
213 * @param[in] source - sdeventplus event source
214 */
215 void _processPDRRepoChgEvent(sdeventplus::source::EventBase& source);
216
217 /** @brief fetch the next PDR based on the record handle sent by Host
218 * @param[in] nextRecordHandle - next record handle
219 * @param[in] source - sdeventplus event source
220 */
221 void _processFetchPDREvent(uint32_t nextRecordHandle,
222 sdeventplus::source::EventBase& source);
223
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500224 /** @brief fd of MCTP communications socket */
225 int mctp_fd;
226 /** @brief MCTP EID of host firmware */
227 uint8_t mctp_eid;
228 /** @brief reference of main event loop of pldmd, primarily used to schedule
229 * work.
230 */
231 sdeventplus::Event& event;
232 /** @brief pointer to BMC's primary PDR repo, host PDRs are added here */
233 pldm_pdr* repo;
Pavithra Barithaya3aec9972020-12-14 01:55:44 -0600234
235 StateSensorHandler stateSensorHandler;
Sampa Misrac073a202021-05-08 10:56:05 -0500236 /** @brief Pointer to BMC's and Host's entity association tree */
Deepak Kodihalli87514cc2020-04-16 09:08:38 -0500237 pldm_entity_association_tree* entityTree;
Sampa Misrac073a202021-05-08 10:56:05 -0500238
239 /** @brief Pointer to BMC's entity association tree */
240 pldm_entity_association_tree* bmcEntityTree;
241
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500242 /** @brief reference to Requester object, primarily used to access API to
243 * obtain PLDM instance id.
244 */
245 Requester& requester;
Tom Joseph74f27c72021-05-16 07:58:53 -0700246
247 /** @brief PLDM request handler */
Sampa Misrac0c79482021-06-02 08:01:54 -0500248 pldm::requester::Handler<pldm::requester::Request>* handler;
Tom Joseph74f27c72021-05-16 07:58:53 -0700249
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500250 /** @brief sdeventplus event source */
251 std::unique_ptr<sdeventplus::source::Defer> pdrFetchEvent;
Sampa Misrac0c79482021-06-02 08:01:54 -0500252 std::unique_ptr<sdeventplus::source::Defer> deferredFetchPDREvent;
253 std::unique_ptr<sdeventplus::source::Defer> deferredPDRRepoChgEvent;
254
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500255 /** @brief list of PDR record handles pointing to host's PDRs */
256 PDRRecordHandles pdrRecordHandles;
Deepak Kodihalli87514cc2020-04-16 09:08:38 -0500257 /** @brief maps an entity type to parent pldm_entity from the BMC's entity
258 * association tree
259 */
260 std::map<EntityType, pldm_entity> parents;
Deepak Kodihalli6b1d1ca2020-04-27 07:24:51 -0500261 /** @brief D-Bus property changed signal match */
262 std::unique_ptr<sdbusplus::bus::match::match> hostOffMatch;
Tom Josephb4268602020-04-17 17:20:45 +0530263
264 /** @brief sensorMap is a lookup data structure that is build from the
265 * hostPDR that speeds up the lookup of <TerminusID, SensorID> in
266 * PlatformEventMessage command request.
267 */
268 HostStateSensorMap sensorMap;
Sridevi Rameshae28bc72020-12-10 07:21:16 -0600269 bool verbose;
sampmisr6decfc12021-03-02 11:07:36 +0530270
271 /** @brief whether response received from Host */
272 bool responseReceived;
273 /** @brief whether timed out waiting for a response from Host */
274 bool timeOut;
275 /** @brief request message instance id */
276 uint8_t insId;
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500277};
278
279} // namespace pldm