blob: 72f2977c1d7d2de185b12d81dd78543126a3e6d0 [file] [log] [blame]
Deepak Kodihalli557dfb02019-05-12 13:11:17 +05301#include "platform.hpp"
2
Tom Josephb70a1962020-07-13 12:56:31 +05303#include "common/types.hpp"
Deepak Kodihallid130e1a2020-06-17 05:55:32 -05004#include "common/utils.hpp"
Tom Josephc4959c32020-04-20 19:50:16 +05305#include "event_parser.hpp"
Sampa Misra12afe112020-05-25 11:40:44 -05006#include "pdr.hpp"
George Liu456c9a22020-01-13 11:36:22 +08007#include "pdr_numeric_effecter.hpp"
George Liua2870722020-02-11 11:09:30 +08008#include "pdr_state_effecter.hpp"
George Liuadbe1722020-05-09 19:20:19 +08009#include "pdr_state_sensor.hpp"
George Liu362c18d2020-05-14 09:46:36 +080010#include "pdr_utils.hpp"
George Liueccb0c52020-01-14 11:09:56 +080011#include "platform_numeric_effecter.hpp"
George Liu0d7aca82020-03-30 15:01:36 +080012#include "platform_state_effecter.hpp"
George Liu362c18d2020-05-14 09:46:36 +080013#include "platform_state_sensor.hpp"
Sagar Srinivas90314a32023-10-17 10:38:03 -050014#include "pldmd/dbus_impl_requester.hpp"
15#include "pldmd/handler.hpp"
16#include "requester/handler.hpp"
George Liu83409572019-12-24 18:42:54 +080017
George Liuc453e162022-12-21 17:16:23 +080018#include <libpldm/entity.h>
19#include <libpldm/state_set.h>
Manojkiran Edacc5f1582021-09-29 17:03:06 +053020
Riya Dixit49cfb132023-03-02 04:26:53 -060021#include <phosphor-logging/lg2.hpp>
22
23PHOSPHOR_LOG2_USING;
24
Brad Bishop5079ac42021-08-19 18:35:06 -040025using namespace pldm::utils;
26using namespace pldm::responder::pdr;
27using namespace pldm::responder::pdr_utils;
28
Deepak Kodihalli557dfb02019-05-12 13:11:17 +053029namespace pldm
30{
Deepak Kodihalli557dfb02019-05-12 13:11:17 +053031namespace responder
32{
Sampa Misraa2fa0702019-05-31 01:28:55 -050033namespace platform
34{
Deepak Kodihallic682fe22020-03-04 00:42:54 -060035using InternalFailure =
36 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
37
George Liu1ec85d42020-02-12 16:05:32 +080038static const Json empty{};
39
George Liua2870722020-02-11 11:09:30 +080040void Handler::addDbusObjMaps(
George Liuadbe1722020-05-09 19:20:19 +080041 uint16_t id,
42 std::tuple<pdr_utils::DbusMappings, pdr_utils::DbusValMaps> dbusObj,
43 TypeId typeId)
George Liu1ec85d42020-02-12 16:05:32 +080044{
George Liuadbe1722020-05-09 19:20:19 +080045 if (typeId == TypeId::PLDM_SENSOR_ID)
46 {
47 sensorDbusObjMaps.emplace(id, dbusObj);
48 }
49 else
50 {
51 effecterDbusObjMaps.emplace(id, dbusObj);
52 }
George Liu1ec85d42020-02-12 16:05:32 +080053}
54
George Liua2870722020-02-11 11:09:30 +080055const std::tuple<pdr_utils::DbusMappings, pdr_utils::DbusValMaps>&
George Liuadbe1722020-05-09 19:20:19 +080056 Handler::getDbusObjMaps(uint16_t id, TypeId typeId) const
George Liu1ec85d42020-02-12 16:05:32 +080057{
George Liuadbe1722020-05-09 19:20:19 +080058 if (typeId == TypeId::PLDM_SENSOR_ID)
59 {
60 return sensorDbusObjMaps.at(id);
61 }
62 else
63 {
64 return effecterDbusObjMaps.at(id);
65 }
George Liu1ec85d42020-02-12 16:05:32 +080066}
67
George Liu36e81352020-07-01 14:40:30 +080068void Handler::generate(const pldm::utils::DBusHandler& dBusIntf,
Kamalkumar Patel3c50c822024-01-30 07:14:40 -060069 const std::vector<fs::path>& dir, Repo& repo)
Deepak Kodihallic682fe22020-03-04 00:42:54 -060070{
Kamalkumar Patel3c50c822024-01-30 07:14:40 -060071 for (const auto& directory : dir)
Deepak Kodihallic6e49c42020-07-01 03:39:27 -050072 {
Kamalkumar Patel3c50c822024-01-30 07:14:40 -060073 info("checking if : {DIR} exists", "DIR", directory);
74 if (!fs::exists(directory))
75 {
76 return;
77 }
Deepak Kodihallic6e49c42020-07-01 03:39:27 -050078 }
79
Deepak Kodihallic682fe22020-03-04 00:42:54 -060080 // A map of PDR type to a lambda that handles creation of that PDR type.
81 // The lambda essentially would parse the platform specific PDR JSONs to
82 // generate the PDR structures. This function iterates through the map to
83 // invoke all lambdas, so that all PDR types can be created.
George Liua2870722020-02-11 11:09:30 +080084
Patrick Williamsa6756622023-10-20 11:19:15 -050085 const std::map<Type, generatePDR> generateHandlers = {
86 {PLDM_STATE_EFFECTER_PDR,
87 [this](const DBusHandler& dBusIntf, const auto& json,
88 RepoInterface& repo) {
Patrick Williams6da4f912023-05-10 07:50:53 -050089 pdr_state_effecter::generateStateEffecterPDR<pldm::utils::DBusHandler,
90 Handler>(dBusIntf, json,
91 *this, repo);
Patrick Williamsa6756622023-10-20 11:19:15 -050092 }},
93 {PLDM_NUMERIC_EFFECTER_PDR,
94 [this](const DBusHandler& dBusIntf, const auto& json,
95 RepoInterface& repo) {
Patrick Williams6da4f912023-05-10 07:50:53 -050096 pdr_numeric_effecter::generateNumericEffecterPDR<
97 pldm::utils::DBusHandler, Handler>(dBusIntf, json, *this, repo);
Patrick Williamsa6756622023-10-20 11:19:15 -050098 }},
George Liuadbe1722020-05-09 19:20:19 +080099 {PLDM_STATE_SENSOR_PDR, [this](const DBusHandler& dBusIntf,
100 const auto& json, RepoInterface& repo) {
Patrick Williamsa6756622023-10-20 11:19:15 -0500101 pdr_state_sensor::generateStateSensorPDR<pldm::utils::DBusHandler,
102 Handler>(dBusIntf, json, *this,
103 repo);
104 }}};
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600105
106 Type pdrType{};
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600107 for (const auto& directory : dir)
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600108 {
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600109 for (const auto& dirEntry : fs::directory_iterator(directory))
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600110 {
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600111 try
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600112 {
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600113 if (fs::is_regular_file(dirEntry.path().string()))
George Liu1ec85d42020-02-12 16:05:32 +0800114 {
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600115 auto json = readJson(dirEntry.path().string());
116 if (!json.empty())
117 {
118 auto effecterPDRs = json.value("effecterPDRs", empty);
119 for (const auto& effecter : effecterPDRs)
120 {
121 pdrType = effecter.value("pdrType", 0);
122 generateHandlers.at(pdrType)(dBusIntf, effecter,
123 repo);
124 }
George Liuadbe1722020-05-09 19:20:19 +0800125
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600126 auto sensorPDRs = json.value("sensorPDRs", empty);
127 for (const auto& sensor : sensorPDRs)
128 {
129 pdrType = sensor.value("pdrType", 0);
130 generateHandlers.at(pdrType)(dBusIntf, sensor,
131 repo);
132 }
133 }
George Liuadbe1722020-05-09 19:20:19 +0800134 }
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600135 }
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600136 catch (const InternalFailure& e)
137 {
138 error(
139 "PDR config directory '{PATH}' does not exist or empty for '{TYPE}' pdr: {ERROR}",
140 "TYPE", pdrType, "PATH", dirEntry.path(), "ERROR", e);
141 }
142 catch (const Json::exception& e)
143 {
144 error("Failed parsing PDR JSON file for '{TYPE}' pdr: {ERROR}",
145 "TYPE", pdrType, "ERROR", e);
146 pldm::utils::reportError(
147 "xyz.openbmc_project.PLDM.Error.Generate.PDRJsonFileParseFail");
148 }
149 catch (const std::exception& e)
150 {
151 error("Failed parsing PDR JSON file for '{TYPE}' pdr: {ERROR}",
152 "TYPE", pdrType, "ERROR", e);
153 pldm::utils::reportError(
154 "xyz.openbmc_project.PLDM.Error.Generate.PDRJsonFileParseFail");
155 }
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600156 }
157 }
158}
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530159
Deepak Kodihallibc669f12019-11-28 08:52:07 -0600160Response Handler::getPDR(const pldm_msg* request, size_t payloadLength)
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530161{
Pavithra Barithaya99854a72021-09-29 06:58:11 -0500162 if (hostPDRHandler)
163 {
164 if (hostPDRHandler->isHostUp() && oemPlatformHandler != nullptr)
165 {
166 auto rc = oemPlatformHandler->checkBMCState();
167 if (rc != PLDM_SUCCESS)
168 {
169 return ccOnlyResponse(request, PLDM_ERROR_NOT_READY);
170 }
171 }
172 }
173
174 // Build FRU table if not built, since entity association PDR's
175 // are built when the FRU table is constructed.
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530176 if (fruHandler)
177 {
178 fruHandler->buildFRUTable();
179 }
180
George Liud680ae02020-07-17 09:11:14 +0800181 if (!pdrCreated)
182 {
183 generateTerminusLocatorPDR(pdrRepo);
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600184 if (platformConfigHandler)
185 {
186 auto systemType = platformConfigHandler->getPlatformName();
187 if (systemType.has_value())
188 {
189 // In case of normal poweron , the system type would have been
190 // already filled by entity manager when ever BMC reaches Ready
191 // state. If this is not filled by time we get a getpdr request
192 // we can assume that the entity manager service is not present
193 // on this system & continue to build the common PDR's.
194 pdrJsonsDir.push_back(pdrJsonDir / systemType.value());
195 }
196 }
197
Sagar Srinivas78a225a2020-08-27 00:52:20 -0500198 if (oemPlatformHandler != nullptr)
199 {
200 oemPlatformHandler->buildOEMPDR(pdrRepo);
201 }
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600202 generate(*dBusIntf, pdrJsonsDir, pdrRepo);
Sagar Srinivas78a225a2020-08-27 00:52:20 -0500203
George Liud680ae02020-07-17 09:11:14 +0800204 pdrCreated = true;
George Liu5eed8e52020-12-18 11:24:37 +0800205
206 if (dbusToPLDMEventHandler)
207 {
Sampa Misra5fb37d52021-03-06 07:26:00 -0600208 deferredGetPDREvent = std::make_unique<sdeventplus::source::Defer>(
209 event,
210 std::bind(std::mem_fn(&pldm::responder::platform::Handler::
211 _processPostGetPDRActions),
212 this, std::placeholders::_1));
George Liu5eed8e52020-12-18 11:24:37 +0800213 }
George Liud680ae02020-07-17 09:11:14 +0800214 }
215
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530216 Response response(sizeof(pldm_msg_hdr) + PLDM_GET_PDR_MIN_RESP_BYTES, 0);
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530217
218 if (payloadLength != PLDM_GET_PDR_REQ_BYTES)
219 {
George Liufb8611d2019-12-06 10:14:15 +0800220 return CmdHandler::ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530221 }
222
223 uint32_t recordHandle{};
224 uint32_t dataTransferHandle{};
225 uint8_t transferOpFlag{};
226 uint16_t reqSizeBytes{};
227 uint16_t recordChangeNum{};
228
George Liufb8611d2019-12-06 10:14:15 +0800229 auto rc = decode_get_pdr_req(request, payloadLength, &recordHandle,
230 &dataTransferHandle, &transferOpFlag,
231 &reqSizeBytes, &recordChangeNum);
232 if (rc != PLDM_SUCCESS)
233 {
234 return CmdHandler::ccOnlyResponse(request, rc);
235 }
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530236
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530237 uint16_t respSizeBytes{};
238 uint8_t* recordData = nullptr;
239 try
240 {
George Liue53193f2020-02-24 09:23:26 +0800241 pdr_utils::PdrEntry e;
242 auto record = pdr::getRecordByHandle(pdrRepo, recordHandle, e);
243 if (record == NULL)
244 {
245 return CmdHandler::ccOnlyResponse(
246 request, PLDM_PLATFORM_INVALID_RECORD_HANDLE);
247 }
248
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530249 if (reqSizeBytes)
250 {
George Liue53193f2020-02-24 09:23:26 +0800251 respSizeBytes = e.size;
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530252 if (respSizeBytes > reqSizeBytes)
253 {
254 respSizeBytes = reqSizeBytes;
255 }
George Liue53193f2020-02-24 09:23:26 +0800256 recordData = e.data;
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530257 }
258 response.resize(sizeof(pldm_msg_hdr) + PLDM_GET_PDR_MIN_RESP_BYTES +
259 respSizeBytes,
260 0);
Manojkiran Eda31a78442021-09-12 15:18:25 +0530261 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
Deepak Kodihalli22b5a7d2020-03-17 23:28:41 -0500262 rc = encode_get_pdr_resp(
263 request->hdr.instance_id, PLDM_SUCCESS, e.handle.nextRecordHandle,
264 0, PLDM_START_AND_END, respSizeBytes, recordData, 0, responsePtr);
George Liufb8611d2019-12-06 10:14:15 +0800265 if (rc != PLDM_SUCCESS)
266 {
267 return ccOnlyResponse(request, rc);
268 }
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530269 }
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530270 catch (const std::exception& e)
271 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600272 error("Error accessing PDR, HANDLE={REC_HANDLE} ERROR={ERR_EXCEP}",
273 "REC_HANDLE", recordHandle, "ERR_EXCEP", e.what());
George Liufb8611d2019-12-06 10:14:15 +0800274 return CmdHandler::ccOnlyResponse(request, PLDM_ERROR);
Deepak Kodihalli557dfb02019-05-12 13:11:17 +0530275 }
276 return response;
277}
278
Deepak Kodihallibc669f12019-11-28 08:52:07 -0600279Response Handler::setStateEffecterStates(const pldm_msg* request,
280 size_t payloadLength)
Sampa Misraa2fa0702019-05-31 01:28:55 -0500281{
282 Response response(
283 sizeof(pldm_msg_hdr) + PLDM_SET_STATE_EFFECTER_STATES_RESP_BYTES, 0);
284 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
285 uint16_t effecterId;
286 uint8_t compEffecterCnt;
287 constexpr auto maxCompositeEffecterCnt = 8;
288 std::vector<set_effecter_state_field> stateField(maxCompositeEffecterCnt,
289 {0, 0});
290
291 if ((payloadLength > PLDM_SET_STATE_EFFECTER_STATES_REQ_BYTES) ||
292 (payloadLength < sizeof(effecterId) + sizeof(compEffecterCnt) +
293 sizeof(set_effecter_state_field)))
294 {
George Liufb8611d2019-12-06 10:14:15 +0800295 return CmdHandler::ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
Sampa Misraa2fa0702019-05-31 01:28:55 -0500296 }
297
298 int rc = decode_set_state_effecter_states_req(request, payloadLength,
299 &effecterId, &compEffecterCnt,
300 stateField.data());
301
George Liufb8611d2019-12-06 10:14:15 +0800302 if (rc != PLDM_SUCCESS)
Sampa Misraa2fa0702019-05-31 01:28:55 -0500303 {
George Liufb8611d2019-12-06 10:14:15 +0800304 return CmdHandler::ccOnlyResponse(request, rc);
Sampa Misraa2fa0702019-05-31 01:28:55 -0500305 }
306
George Liufb8611d2019-12-06 10:14:15 +0800307 stateField.resize(compEffecterCnt);
308 const pldm::utils::DBusHandler dBusIntf;
Sampa Misraaea5dde2020-08-31 08:33:47 -0500309 uint16_t entityType{};
310 uint16_t entityInstance{};
311 uint16_t stateSetId{};
312
313 if (isOemStateEffecter(*this, effecterId, compEffecterCnt, entityType,
314 entityInstance, stateSetId) &&
Manojkiran Eda321804e2022-03-03 12:36:54 +0530315 oemPlatformHandler != nullptr &&
316 !effecterDbusObjMaps.contains(effecterId))
Sampa Misraaea5dde2020-08-31 08:33:47 -0500317 {
Sampa Misra3a0e3b92020-10-21 05:58:00 -0500318 rc = oemPlatformHandler->oemSetStateEffecterStatesHandler(
Varsha Kaverappa3fbd39e2020-09-28 01:40:22 -0500319 entityType, entityInstance, stateSetId, compEffecterCnt, stateField,
320 effecterId);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500321 }
322 else
323 {
324 rc = platform_state_effecter::setStateEffecterStatesHandler<
325 pldm::utils::DBusHandler, Handler>(dBusIntf, *this, effecterId,
326 stateField);
327 }
George Liufb8611d2019-12-06 10:14:15 +0800328 if (rc != PLDM_SUCCESS)
329 {
330 return CmdHandler::ccOnlyResponse(request, rc);
331 }
332
333 rc = encode_set_state_effecter_states_resp(request->hdr.instance_id, rc,
334 responsePtr);
335 if (rc != PLDM_SUCCESS)
336 {
337 return ccOnlyResponse(request, rc);
338 }
339
Sampa Misraa2fa0702019-05-31 01:28:55 -0500340 return response;
341}
342
Tom Joseph56e45c52020-03-16 10:01:45 +0530343Response Handler::platformEventMessage(const pldm_msg* request,
344 size_t payloadLength)
345{
346 uint8_t formatVersion{};
347 uint8_t tid{};
348 uint8_t eventClass{};
349 size_t offset{};
350
351 auto rc = decode_platform_event_message_req(
352 request, payloadLength, &formatVersion, &tid, &eventClass, &offset);
353 if (rc != PLDM_SUCCESS)
354 {
355 return CmdHandler::ccOnlyResponse(request, rc);
356 }
357
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -0500358 if (eventClass == PLDM_HEARTBEAT_TIMER_ELAPSED_EVENT)
Tom Joseph56e45c52020-03-16 10:01:45 +0530359 {
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -0500360 rc = PLDM_SUCCESS;
Sagar Srinivas79669c92021-04-28 15:43:30 -0500361 if (oemPlatformHandler)
362 {
363 oemPlatformHandler->resetWatchDogTimer();
364 }
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -0500365 }
366 else
367 {
368 try
Tom Joseph56e45c52020-03-16 10:01:45 +0530369 {
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -0500370 const auto& handlers = eventHandlers.at(eventClass);
371 for (const auto& handler : handlers)
Tom Joseph56e45c52020-03-16 10:01:45 +0530372 {
Patrick Williams6da4f912023-05-10 07:50:53 -0500373 auto rc = handler(request, payloadLength, formatVersion, tid,
374 offset);
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -0500375 if (rc != PLDM_SUCCESS)
376 {
377 return CmdHandler::ccOnlyResponse(request, rc);
378 }
Tom Joseph56e45c52020-03-16 10:01:45 +0530379 }
380 }
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -0500381 catch (const std::out_of_range& e)
382 {
Kamalkumar Patel58cbcaf2023-10-06 03:48:25 -0500383 error("Error in handling platform event msg: {ERROR}", "ERROR", e);
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -0500384 return CmdHandler::ccOnlyResponse(request, PLDM_ERROR_INVALID_DATA);
385 }
Tom Joseph56e45c52020-03-16 10:01:45 +0530386 }
Tom Joseph56e45c52020-03-16 10:01:45 +0530387 Response response(
388 sizeof(pldm_msg_hdr) + PLDM_PLATFORM_EVENT_MESSAGE_RESP_BYTES, 0);
389 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
390
391 rc = encode_platform_event_message_resp(request->hdr.instance_id, rc,
392 PLDM_EVENT_NO_LOGGING, responsePtr);
393 if (rc != PLDM_SUCCESS)
394 {
395 return ccOnlyResponse(request, rc);
396 }
397
398 return response;
399}
400
401int Handler::sensorEvent(const pldm_msg* request, size_t payloadLength,
Tom Josephc4959c32020-04-20 19:50:16 +0530402 uint8_t /*formatVersion*/, uint8_t tid,
Tom Joseph56e45c52020-03-16 10:01:45 +0530403 size_t eventDataOffset)
404{
405 uint16_t sensorId{};
406 uint8_t eventClass{};
407 size_t eventClassDataOffset{};
Patrick Williams6da4f912023-05-10 07:50:53 -0500408 auto eventData = reinterpret_cast<const uint8_t*>(request->payload) +
409 eventDataOffset;
Tom Joseph56e45c52020-03-16 10:01:45 +0530410 auto eventDataSize = payloadLength - eventDataOffset;
411
412 auto rc = decode_sensor_event_data(eventData, eventDataSize, &sensorId,
413 &eventClass, &eventClassDataOffset);
414 if (rc != PLDM_SUCCESS)
415 {
416 return rc;
417 }
418
Zahed Hossain75330f32020-03-24 02:15:03 -0500419 auto eventClassData = reinterpret_cast<const uint8_t*>(request->payload) +
420 eventDataOffset + eventClassDataOffset;
Patrick Williams6da4f912023-05-10 07:50:53 -0500421 auto eventClassDataSize = payloadLength - eventDataOffset -
422 eventClassDataOffset;
Zahed Hossain75330f32020-03-24 02:15:03 -0500423
Tom Joseph56e45c52020-03-16 10:01:45 +0530424 if (eventClass == PLDM_STATE_SENSOR_STATE)
425 {
426 uint8_t sensorOffset{};
427 uint8_t eventState{};
428 uint8_t previousEventState{};
429
Zahed Hossain75330f32020-03-24 02:15:03 -0500430 rc = decode_state_sensor_data(eventClassData, eventClassDataSize,
Tom Joseph56e45c52020-03-16 10:01:45 +0530431 &sensorOffset, &eventState,
432 &previousEventState);
Zahed Hossain75330f32020-03-24 02:15:03 -0500433 if (rc != PLDM_SUCCESS)
434 {
435 return PLDM_ERROR;
436 }
437
Chicago Duanfe4d88b2020-06-12 16:44:13 +0800438 // Emitting state sensor event signal
439 emitStateSensorEventSignal(tid, sensorId, sensorOffset, eventState,
440 previousEventState);
441
Tom Josephc4959c32020-04-20 19:50:16 +0530442 // If there are no HOST PDR's, there is no further action
443 if (hostPDRHandler == NULL)
444 {
445 return PLDM_SUCCESS;
446 }
447
448 // Handle PLDM events for which PDR is available
449 SensorEntry sensorEntry{tid, sensorId};
Tom Josephb70a1962020-07-13 12:56:31 +0530450
451 pldm::pdr::EntityInfo entityInfo{};
452 pldm::pdr::CompositeSensorStates compositeSensorStates{};
Sagar Srinivase3607a32024-02-16 03:50:53 -0600453 std::vector<pldm::pdr::StateSetId> stateSetIds{};
Tom Josephb70a1962020-07-13 12:56:31 +0530454
Tom Josephc4959c32020-04-20 19:50:16 +0530455 try
456 {
Sagar Srinivase3607a32024-02-16 03:50:53 -0600457 std::tie(entityInfo, compositeSensorStates, stateSetIds) =
Tom Josephc4959c32020-04-20 19:50:16 +0530458 hostPDRHandler->lookupSensorInfo(sensorEntry);
Tom Josephc4959c32020-04-20 19:50:16 +0530459 }
Kamalkumar Patel58cbcaf2023-10-06 03:48:25 -0500460 catch (const std::out_of_range&)
Tom Josephc4959c32020-04-20 19:50:16 +0530461 {
Tom Josephb70a1962020-07-13 12:56:31 +0530462 // If there is no mapping for tid, sensorId combination, try
463 // PLDM_TID_RESERVED, sensorId for terminus that is yet to
464 // implement TL PDR.
465 try
466 {
467 sensorEntry.terminusID = PLDM_TID_RESERVED;
Sagar Srinivase3607a32024-02-16 03:50:53 -0600468 std::tie(entityInfo, compositeSensorStates, stateSetIds) =
Tom Josephb70a1962020-07-13 12:56:31 +0530469 hostPDRHandler->lookupSensorInfo(sensorEntry);
470 }
471 // If there is no mapping for events return PLDM_SUCCESS
Kamalkumar Patel58cbcaf2023-10-06 03:48:25 -0500472 catch (const std::out_of_range&)
Tom Josephb70a1962020-07-13 12:56:31 +0530473 {
474 return PLDM_SUCCESS;
475 }
Zahed Hossain75330f32020-03-24 02:15:03 -0500476 }
Tom Josephb70a1962020-07-13 12:56:31 +0530477
478 if (sensorOffset >= compositeSensorStates.size())
479 {
480 return PLDM_ERROR_INVALID_DATA;
481 }
482
483 const auto& possibleStates = compositeSensorStates[sensorOffset];
484 if (possibleStates.find(eventState) == possibleStates.end())
485 {
486 return PLDM_ERROR_INVALID_DATA;
487 }
488
489 const auto& [containerId, entityType, entityInstance] = entityInfo;
490 events::StateSensorEntry stateSensorEntry{containerId, entityType,
Sagar Srinivase3607a32024-02-16 03:50:53 -0600491 entityInstance, sensorOffset,
492 stateSetIds[sensorOffset]};
Pavithra Barithaya3aec9972020-12-14 01:55:44 -0600493 return hostPDRHandler->handleStateSensorEvent(stateSensorEntry,
494 eventState);
Tom Joseph56e45c52020-03-16 10:01:45 +0530495 }
496 else
497 {
498 return PLDM_ERROR_INVALID_DATA;
499 }
500
501 return PLDM_SUCCESS;
502}
503
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500504int Handler::pldmPDRRepositoryChgEvent(const pldm_msg* request,
505 size_t payloadLength,
Manojkiran Eda3ca40452021-10-04 22:51:37 +0530506 uint8_t /*formatVersion*/, uint8_t tid,
507 size_t eventDataOffset)
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500508{
509 uint8_t eventDataFormat{};
510 uint8_t numberOfChangeRecords{};
511 size_t dataOffset{};
512
Patrick Williams6da4f912023-05-10 07:50:53 -0500513 auto eventData = reinterpret_cast<const uint8_t*>(request->payload) +
514 eventDataOffset;
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500515 auto eventDataSize = payloadLength - eventDataOffset;
516
517 auto rc = decode_pldm_pdr_repository_chg_event_data(
518 eventData, eventDataSize, &eventDataFormat, &numberOfChangeRecords,
519 &dataOffset);
520 if (rc != PLDM_SUCCESS)
521 {
522 return rc;
523 }
524
525 PDRRecordHandles pdrRecordHandles;
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -0500526
527 if (eventDataFormat == FORMAT_IS_PDR_TYPES)
528 {
529 return PLDM_ERROR_INVALID_DATA;
530 }
531
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500532 if (eventDataFormat == FORMAT_IS_PDR_HANDLES)
533 {
534 uint8_t eventDataOperation{};
535 uint8_t numberOfChangeEntries{};
536
537 auto changeRecordData = eventData + dataOffset;
538 auto changeRecordDataSize = eventDataSize - dataOffset;
539
540 while (changeRecordDataSize)
541 {
542 rc = decode_pldm_pdr_repository_change_record_data(
543 changeRecordData, changeRecordDataSize, &eventDataOperation,
544 &numberOfChangeEntries, &dataOffset);
545
546 if (rc != PLDM_SUCCESS)
547 {
548 return rc;
549 }
550
Pavithra Barithayaae5c97e2022-08-29 02:57:59 -0500551 if (eventDataOperation == PLDM_RECORDS_ADDED ||
552 eventDataOperation == PLDM_RECORDS_MODIFIED)
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500553 {
Pavithra Barithayaae5c97e2022-08-29 02:57:59 -0500554 if (eventDataOperation == PLDM_RECORDS_MODIFIED)
555 {
556 hostPDRHandler->isHostPdrModified = true;
557 }
558
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500559 rc = getPDRRecordHandles(
560 reinterpret_cast<const ChangeEntry*>(changeRecordData +
561 dataOffset),
562 changeRecordDataSize - dataOffset,
563 static_cast<size_t>(numberOfChangeEntries),
564 pdrRecordHandles);
565
566 if (rc != PLDM_SUCCESS)
567 {
568 return rc;
569 }
570 }
571
Patrick Williams6da4f912023-05-10 07:50:53 -0500572 changeRecordData += dataOffset +
573 (numberOfChangeEntries * sizeof(ChangeEntry));
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500574 changeRecordDataSize -=
575 dataOffset + (numberOfChangeEntries * sizeof(ChangeEntry));
576 }
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500577 }
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -0500578 if (hostPDRHandler)
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500579 {
Manojkiran Eda3ca40452021-10-04 22:51:37 +0530580 // if we get a Repository change event with the eventDataFormat
581 // as REFRESH_ENTIRE_REPOSITORY, then delete all the PDR's that
582 // have the matched Terminus handle
583 if (eventDataFormat == REFRESH_ENTIRE_REPOSITORY)
584 {
585 // We cannot get the Repo change event from the Terminus
586 // that is not already added to the BMC repository
587
Pavithra Barithaya52aad392022-08-02 04:18:52 -0500588 for (auto it = hostPDRHandler->tlPDRInfo.cbegin();
589 it != hostPDRHandler->tlPDRInfo.cend();)
Manojkiran Eda3ca40452021-10-04 22:51:37 +0530590 {
Pavithra Barithaya52aad392022-08-02 04:18:52 -0500591 if (std::get<0>(it->second) == tid)
Manojkiran Eda3ca40452021-10-04 22:51:37 +0530592 {
593 pldm_pdr_remove_pdrs_by_terminus_handle(pdrRepo.getPdr(),
Pavithra Barithaya52aad392022-08-02 04:18:52 -0500594 it->first);
595 hostPDRHandler->tlPDRInfo.erase(it++);
596 }
597 else
598 {
599 ++it;
Manojkiran Eda3ca40452021-10-04 22:51:37 +0530600 }
601 }
602 }
Deepak Kodihalli7246e0c2020-07-08 06:40:18 -0500603 hostPDRHandler->fetchPDR(std::move(pdrRecordHandles));
Deepak Kodihalli8cb6f662020-04-10 02:55:43 -0500604 }
605
606 return PLDM_SUCCESS;
607}
608
609int Handler::getPDRRecordHandles(const ChangeEntry* changeEntryData,
610 size_t changeEntryDataSize,
611 size_t numberOfChangeEntries,
612 PDRRecordHandles& pdrRecordHandles)
613{
614 if (numberOfChangeEntries > (changeEntryDataSize / sizeof(ChangeEntry)))
615 {
616 return PLDM_ERROR_INVALID_DATA;
617 }
618 for (size_t i = 0; i < numberOfChangeEntries; i++)
619 {
620 pdrRecordHandles.push_back(changeEntryData[i]);
621 }
622 return PLDM_SUCCESS;
623}
624
Archana Kakani6ece21fb2023-10-10 08:21:52 -0500625Response Handler::getNumericEffecterValue(const pldm_msg* request,
626 size_t payloadLength)
627{
628 if (payloadLength != PLDM_GET_NUMERIC_EFFECTER_VALUE_REQ_BYTES)
629 {
630 return ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
631 }
632
633 uint16_t effecterId{};
634 auto rc = decode_get_numeric_effecter_value_req(request, payloadLength,
635 &effecterId);
636 if (rc != PLDM_SUCCESS)
637 {
638 return ccOnlyResponse(request, rc);
639 }
640
641 const pldm::utils::DBusHandler dBusIntf;
642 uint8_t effecterDataSize{};
643 pldm::utils::PropertyValue dbusValue;
644 std::string propertyType;
645 using effecterOperationalState = uint8_t;
646 using completionCode = uint8_t;
647
648 rc = platform_numeric_effecter::getNumericEffecterData<
649 pldm::utils::DBusHandler, Handler>(
650 dBusIntf, *this, effecterId, effecterDataSize, propertyType, dbusValue);
651
652 if (rc != PLDM_SUCCESS)
653 {
654 return ccOnlyResponse(request, rc);
655 }
656
657 // Refer DSP0248_1.2.0.pdf (section 22.3, Table 48)
658 // Completion Code (uint8), Effecter Data Size(uint8), Effecter Operational
659 // State(uint8), PendingValue (uint8|sint8|uint16|sint16|uint32|sint32 )
660 // PresentValue (uint8|sint8|uint16|sint16|uint32|sint32 )
661 // Size of PendingValue and PresentValue calculated based on size is
662 // provided in effecter data size
663 size_t responsePayloadLength = sizeof(completionCode) +
664 sizeof(effecterDataSize) +
665 sizeof(effecterOperationalState) +
666 getEffecterDataSize(effecterDataSize) +
667 getEffecterDataSize(effecterDataSize);
668
669 Response response(responsePayloadLength + sizeof(pldm_msg_hdr));
670 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
671
672 rc = platform_numeric_effecter::getNumericEffecterValueHandler(
673 propertyType, dbusValue, effecterDataSize, responsePtr,
674 responsePayloadLength, request->hdr.instance_id);
675
676 if (rc != PLDM_SUCCESS)
677 {
678 error(
679 "Reponse to GetNumericEffecterValue failed RC={RC} for EffectorId={EFFECTER_ID} ",
680 "RC", rc, "EFFECTER_ID", effecterId);
681 return ccOnlyResponse(request, rc);
682 }
683 return response;
684}
685
George Liueccb0c52020-01-14 11:09:56 +0800686Response Handler::setNumericEffecterValue(const pldm_msg* request,
687 size_t payloadLength)
688{
689 Response response(sizeof(pldm_msg_hdr) +
690 PLDM_SET_NUMERIC_EFFECTER_VALUE_RESP_BYTES);
691 uint16_t effecterId{};
692 uint8_t effecterDataSize{};
693 uint8_t effecterValue[4] = {};
694
695 if ((payloadLength > sizeof(effecterId) + sizeof(effecterDataSize) +
696 sizeof(union_effecter_data_size)) ||
697 (payloadLength < sizeof(effecterId) + sizeof(effecterDataSize) + 1))
698 {
699 return ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
700 }
701
702 int rc = decode_set_numeric_effecter_value_req(
Andrew Jeffery8fbf3cc2023-04-12 13:42:29 +0930703 request, payloadLength, &effecterId, &effecterDataSize, effecterValue);
George Liueccb0c52020-01-14 11:09:56 +0800704
705 if (rc == PLDM_SUCCESS)
706 {
707 const pldm::utils::DBusHandler dBusIntf;
708 rc = platform_numeric_effecter::setNumericEffecterValueHandler<
709 pldm::utils::DBusHandler, Handler>(dBusIntf, *this, effecterId,
710 effecterDataSize, effecterValue,
711 sizeof(effecterValue));
712 }
713
714 return ccOnlyResponse(request, rc);
715}
716
Sampa Misra12afe112020-05-25 11:40:44 -0500717void Handler::generateTerminusLocatorPDR(Repo& repo)
718{
719 std::vector<uint8_t> pdrBuffer(sizeof(pldm_terminus_locator_pdr));
720
721 auto pdr = reinterpret_cast<pldm_terminus_locator_pdr*>(pdrBuffer.data());
722
723 pdr->hdr.record_handle = 0;
724 pdr->hdr.version = 1;
725 pdr->hdr.type = PLDM_TERMINUS_LOCATOR_PDR;
726 pdr->hdr.record_change_num = 0;
727 pdr->hdr.length = sizeof(pldm_terminus_locator_pdr) - sizeof(pldm_pdr_hdr);
Manojkiran Edacc5f1582021-09-29 17:03:06 +0530728 pdr->terminus_handle = TERMINUS_HANDLE;
Sampa Misra12afe112020-05-25 11:40:44 -0500729 pdr->validity = PLDM_TL_PDR_VALID;
Manojkiran Edacc5f1582021-09-29 17:03:06 +0530730 pdr->tid = TERMINUS_ID;
Sampa Misra12afe112020-05-25 11:40:44 -0500731 pdr->container_id = 0x0;
732 pdr->terminus_locator_type = PLDM_TERMINUS_LOCATOR_TYPE_MCTP_EID;
733 pdr->terminus_locator_value_size =
734 sizeof(pldm_terminus_locator_type_mctp_eid);
735 auto locatorValue = reinterpret_cast<pldm_terminus_locator_type_mctp_eid*>(
736 pdr->terminus_locator_value);
737 locatorValue->eid = BmcMctpEid;
738
739 PdrEntry pdrEntry{};
740 pdrEntry.data = pdrBuffer.data();
741 pdrEntry.size = pdrBuffer.size();
742 repo.addRecord(pdrEntry);
Manojkiran Eda60e1fe92021-10-08 15:58:16 +0530743 if (hostPDRHandler)
744 {
745 hostPDRHandler->tlPDRInfo.insert_or_assign(
746 pdr->terminus_handle,
747 std::make_tuple(pdr->tid, locatorValue->eid, pdr->validity));
748 }
Sampa Misra12afe112020-05-25 11:40:44 -0500749}
George Liu362c18d2020-05-14 09:46:36 +0800750
751Response Handler::getStateSensorReadings(const pldm_msg* request,
752 size_t payloadLength)
753{
754 uint16_t sensorId{};
755 bitfield8_t sensorRearm{};
756 uint8_t reserved{};
757
Pavithra Barithaya87083f22023-04-17 01:27:49 -0500758 if (payloadLength != PLDM_GET_STATE_SENSOR_READINGS_REQ_BYTES)
George Liu362c18d2020-05-14 09:46:36 +0800759 {
760 return ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
761 }
762
763 int rc = decode_get_state_sensor_readings_req(
764 request, payloadLength, &sensorId, &sensorRearm, &reserved);
765
766 if (rc != PLDM_SUCCESS)
767 {
768 return ccOnlyResponse(request, rc);
769 }
770
771 // 0x01 to 0x08
George Liuc1230ca2021-08-03 16:06:50 +0800772 uint8_t sensorRearmCount = std::popcount(sensorRearm.byte);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500773 std::vector<get_sensor_state_field> stateField(sensorRearmCount);
George Liu362c18d2020-05-14 09:46:36 +0800774 uint8_t comSensorCnt{};
775 const pldm::utils::DBusHandler dBusIntf;
Sampa Misraaea5dde2020-08-31 08:33:47 -0500776
777 uint16_t entityType{};
778 uint16_t entityInstance{};
779 uint16_t stateSetId{};
780
781 if (isOemStateSensor(*this, sensorId, sensorRearmCount, comSensorCnt,
782 entityType, entityInstance, stateSetId) &&
Manojkiran Eda321804e2022-03-03 12:36:54 +0530783 oemPlatformHandler != nullptr && !sensorDbusObjMaps.contains(sensorId))
Sampa Misraaea5dde2020-08-31 08:33:47 -0500784 {
785 rc = oemPlatformHandler->getOemStateSensorReadingsHandler(
786 entityType, entityInstance, stateSetId, comSensorCnt, stateField);
787 }
788 else
789 {
790 rc = platform_state_sensor::getStateSensorReadingsHandler<
Manojkiran Edaae933cc2024-02-21 17:19:21 +0530791 pldm::utils::DBusHandler, Handler>(
792 dBusIntf, *this, sensorId, sensorRearmCount, comSensorCnt,
793 stateField, dbusToPLDMEventHandler->getSensorCache());
Sampa Misraaea5dde2020-08-31 08:33:47 -0500794 }
George Liu362c18d2020-05-14 09:46:36 +0800795
796 if (rc != PLDM_SUCCESS)
797 {
798 return ccOnlyResponse(request, rc);
799 }
800
801 Response response(sizeof(pldm_msg_hdr) +
802 PLDM_GET_STATE_SENSOR_READINGS_MIN_RESP_BYTES +
803 sizeof(get_sensor_state_field) * comSensorCnt);
804 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
805 rc = encode_get_state_sensor_readings_resp(request->hdr.instance_id, rc,
806 comSensorCnt, stateField.data(),
807 responsePtr);
808 if (rc != PLDM_SUCCESS)
809 {
810 return ccOnlyResponse(request, rc);
811 }
812
813 return response;
814}
815
Pavithra Barithaya99854a72021-09-29 06:58:11 -0500816void Handler::_processPostGetPDRActions(sdeventplus::source::EventBase&
817 /*source */)
Sampa Misra5fb37d52021-03-06 07:26:00 -0600818{
819 deferredGetPDREvent.reset();
820 dbusToPLDMEventHandler->listenSensorEvent(pdrRepo, sensorDbusObjMaps);
821}
822
Sampa Misraaea5dde2020-08-31 08:33:47 -0500823bool isOemStateSensor(Handler& handler, uint16_t sensorId,
824 uint8_t sensorRearmCount, uint8_t& compSensorCnt,
825 uint16_t& entityType, uint16_t& entityInstance,
826 uint16_t& stateSetId)
827{
828 pldm_state_sensor_pdr* pdr = nullptr;
829
830 std::unique_ptr<pldm_pdr, decltype(&pldm_pdr_destroy)> stateSensorPdrRepo(
831 pldm_pdr_init(), pldm_pdr_destroy);
Andrew Jefferyacb20292023-06-30 11:47:44 +0930832 if (!stateSensorPdrRepo)
833 {
834 error("Failed to instantiate state sensor PDR repository");
835 return false;
836 }
Sampa Misraaea5dde2020-08-31 08:33:47 -0500837 Repo stateSensorPDRs(stateSensorPdrRepo.get());
838 getRepoByType(handler.getRepo(), stateSensorPDRs, PLDM_STATE_SENSOR_PDR);
839 if (stateSensorPDRs.empty())
840 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600841 error("Failed to get record by PDR type");
Sampa Misraaea5dde2020-08-31 08:33:47 -0500842 return false;
843 }
844
845 PdrEntry pdrEntry{};
846 auto pdrRecord = stateSensorPDRs.getFirstRecord(pdrEntry);
847 while (pdrRecord)
848 {
849 pdr = reinterpret_cast<pldm_state_sensor_pdr*>(pdrEntry.data);
850 assert(pdr != NULL);
851 if (pdr->sensor_id != sensorId)
852 {
853 pdr = nullptr;
854 pdrRecord = stateSensorPDRs.getNextRecord(pdrRecord, pdrEntry);
855 continue;
856 }
857 auto tmpEntityType = pdr->entity_type;
858 auto tmpEntityInstance = pdr->entity_instance;
859 auto tmpCompSensorCnt = pdr->composite_sensor_count;
860 auto tmpPossibleStates =
861 reinterpret_cast<state_sensor_possible_states*>(
862 pdr->possible_states);
863 auto tmpStateSetId = tmpPossibleStates->state_set_id;
864
865 if (sensorRearmCount > tmpCompSensorCnt)
866 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600867 error(
868 "The requester sent wrong sensorRearm count for the sensor, SENSOR_ID={SENSOR_ID} SENSOR_REARM_COUNT={SENSOR_REARM_CNT}",
869 "SENSOR_ID", sensorId, "SENSOR_REARM_CNT",
870 (uint16_t)sensorRearmCount);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500871 break;
872 }
873
874 if ((tmpEntityType >= PLDM_OEM_ENTITY_TYPE_START &&
875 tmpEntityType <= PLDM_OEM_ENTITY_TYPE_END) ||
876 (tmpStateSetId >= PLDM_OEM_STATE_SET_ID_START &&
877 tmpStateSetId < PLDM_OEM_STATE_SET_ID_END))
878 {
879 entityType = tmpEntityType;
880 entityInstance = tmpEntityInstance;
881 stateSetId = tmpStateSetId;
882 compSensorCnt = tmpCompSensorCnt;
883 return true;
884 }
885 else
886 {
887 return false;
888 }
889 }
890 return false;
891}
892
893bool isOemStateEffecter(Handler& handler, uint16_t effecterId,
894 uint8_t compEffecterCnt, uint16_t& entityType,
895 uint16_t& entityInstance, uint16_t& stateSetId)
896{
897 pldm_state_effecter_pdr* pdr = nullptr;
898
899 std::unique_ptr<pldm_pdr, decltype(&pldm_pdr_destroy)> stateEffecterPdrRepo(
900 pldm_pdr_init(), pldm_pdr_destroy);
Andrew Jefferyacb20292023-06-30 11:47:44 +0930901 if (!stateEffecterPdrRepo)
902 {
903 error("Failed to instantiate state effecter PDR repository");
904 return false;
905 }
Sampa Misraaea5dde2020-08-31 08:33:47 -0500906 Repo stateEffecterPDRs(stateEffecterPdrRepo.get());
907 getRepoByType(handler.getRepo(), stateEffecterPDRs,
908 PLDM_STATE_EFFECTER_PDR);
909 if (stateEffecterPDRs.empty())
910 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600911 error("Failed to get record by PDR type");
Sampa Misraaea5dde2020-08-31 08:33:47 -0500912 return false;
913 }
914
915 PdrEntry pdrEntry{};
916 auto pdrRecord = stateEffecterPDRs.getFirstRecord(pdrEntry);
917 while (pdrRecord)
918 {
919 pdr = reinterpret_cast<pldm_state_effecter_pdr*>(pdrEntry.data);
920 assert(pdr != NULL);
921 if (pdr->effecter_id != effecterId)
922 {
923 pdr = nullptr;
924 pdrRecord = stateEffecterPDRs.getNextRecord(pdrRecord, pdrEntry);
925 continue;
926 }
927
928 auto tmpEntityType = pdr->entity_type;
929 auto tmpEntityInstance = pdr->entity_instance;
930 auto tmpPossibleStates =
931 reinterpret_cast<state_effecter_possible_states*>(
932 pdr->possible_states);
933 auto tmpStateSetId = tmpPossibleStates->state_set_id;
934
935 if (compEffecterCnt > pdr->composite_effecter_count)
936 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600937 error(
938 "The requester sent wrong composite effecter count for the effecter, EFFECTER_ID={EFFECTER_ID} COMP_EFF_CNT={COMP_EFF_CNT}",
939 "EFFECTER_ID", effecterId, "COMP_EFF_CNT",
940 (uint16_t)compEffecterCnt);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500941 return false;
942 }
943
944 if ((tmpEntityType >= PLDM_OEM_ENTITY_TYPE_START &&
945 tmpEntityType <= PLDM_OEM_ENTITY_TYPE_END) ||
946 (tmpStateSetId >= PLDM_OEM_STATE_SET_ID_START &&
947 tmpStateSetId < PLDM_OEM_STATE_SET_ID_END))
948 {
949 entityType = tmpEntityType;
950 entityInstance = tmpEntityInstance;
951 stateSetId = tmpStateSetId;
952 return true;
953 }
954 else
955 {
956 return false;
957 }
958 }
959 return false;
960}
961
Sagar Srinivas90314a32023-10-17 10:38:03 -0500962void Handler::setEventReceiver()
963{
964 std::vector<uint8_t> requestMsg(sizeof(pldm_msg_hdr) +
965 PLDM_SET_EVENT_RECEIVER_REQ_BYTES);
966 auto request = reinterpret_cast<pldm_msg*>(requestMsg.data());
967 auto instanceId = instanceIdDb->next(eid);
968 uint8_t eventMessageGlobalEnable =
969 PLDM_EVENT_MESSAGE_GLOBAL_ENABLE_ASYNC_KEEP_ALIVE;
970 uint8_t transportProtocolType = PLDM_TRANSPORT_PROTOCOL_TYPE_MCTP;
971 uint8_t eventReceiverAddressInfo = pldm::responder::pdr::BmcMctpEid;
972 uint16_t heartbeatTimer = HEARTBEAT_TIMEOUT;
973
974 auto rc = encode_set_event_receiver_req(
975 instanceId, eventMessageGlobalEnable, transportProtocolType,
976 eventReceiverAddressInfo, heartbeatTimer, request);
977 if (rc != PLDM_SUCCESS)
978 {
979 instanceIdDb->free(eid, instanceId);
980 error("Failed to encode_set_event_receiver_req, rc = {RC}", "RC",
981 lg2::hex, rc);
982 return;
983 }
984
985 auto processSetEventReceiverResponse =
986 [](mctp_eid_t /*eid*/, const pldm_msg* response, size_t respMsgLen) {
987 if (response == nullptr || !respMsgLen)
988 {
989 error("Failed to receive response for setEventReceiver command");
990 return;
991 }
992
993 uint8_t completionCode{};
994 auto rc = decode_set_event_receiver_resp(response, respMsgLen,
995 &completionCode);
996 if (rc || completionCode)
997 {
998 error(
999 "Failed to decode setEventReceiver command response, rc = {RC}, cc = {CC}",
1000 "RC", rc, "CC", (unsigned)completionCode);
1001 pldm::utils::reportError(
1002 "xyz.openbmc_project.bmc.pldm.InternalFailure");
1003 }
1004 };
1005 rc = handler->registerRequest(
1006 eid, instanceId, PLDM_PLATFORM, PLDM_SET_EVENT_RECEIVER,
1007 std::move(requestMsg), std::move(processSetEventReceiverResponse));
1008
1009 if (rc != PLDM_SUCCESS)
1010 {
1011 error("Failed to send the setEventReceiver request");
1012 }
1013
1014 if (oemPlatformHandler)
1015 {
1016 oemPlatformHandler->countSetEventReceiver();
1017 oemPlatformHandler->checkAndDisableWatchDog();
1018 }
1019}
1020
Deepak Kodihallibc669f12019-11-28 08:52:07 -06001021} // namespace platform
Deepak Kodihalli557dfb02019-05-12 13:11:17 +05301022} // namespace responder
1023} // namespace pldm