blob: 42af4ad3da34c2b3e5621ab24ab74608bd32cbaa [file] [log] [blame]
George Liua2870722020-02-11 11:09:30 +08001#pragma once
2
Sampa Misra12afe112020-05-25 11:40:44 -05003#include "pdr.hpp"
4#include "pdr_utils.hpp"
George Liu6492f522020-06-16 10:34:05 +08005
George Liuc453e162022-12-21 17:16:23 +08006#include <libpldm/platform.h>
Manojkiran Edacc5f1582021-09-29 17:03:06 +05307
Riya Dixit49cfb132023-03-02 04:26:53 -06008#include <phosphor-logging/lg2.hpp>
9
10PHOSPHOR_LOG2_USING;
11
George Liua2870722020-02-11 11:09:30 +080012namespace pldm
13{
George Liua2870722020-02-11 11:09:30 +080014namespace responder
15{
George Liua2870722020-02-11 11:09:30 +080016namespace pdr_state_effecter
17{
George Liua2870722020-02-11 11:09:30 +080018using Json = nlohmann::json;
19
20static const Json empty{};
21
22/** @brief Parse PDR JSON file and generate state effecter PDR structure
23 *
24 * @param[in] json - the JSON Object with the state effecter PDR
25 * @param[out] handler - the Parser of PLDM command handler
26 * @param[out] repo - pdr::RepoInterface
27 *
28 */
George Liu36e81352020-07-01 14:40:30 +080029template <class DBusInterface, class Handler>
30void generateStateEffecterPDR(const DBusInterface& dBusIntf, const Json& json,
31 Handler& handler, pdr_utils::RepoInterface& repo)
George Liua2870722020-02-11 11:09:30 +080032{
33 static const std::vector<Json> emptyList{};
34 auto entries = json.value("entries", emptyList);
35 for (const auto& e : entries)
36 {
37 size_t pdrSize = 0;
38 auto effecters = e.value("effecters", emptyList);
39 for (const auto& effecter : effecters)
40 {
41 auto set = effecter.value("set", empty);
42 auto statesSize = set.value("size", 0);
43 if (!statesSize)
44 {
Riya Dixit49cfb132023-03-02 04:26:53 -060045 error(
Riya Dixit89644442024-03-31 05:39:59 -050046 "Malformed PDR JSON return pdrEntry; no state set info for state effecter pdr '{STATE_EFFECTER_PDR}'",
Riya Dixit1e5c81e2024-05-03 07:54:00 -050047 "STATE_EFFECTER_PDR", PLDM_STATE_EFFECTER_PDR);
George Liua2870722020-02-11 11:09:30 +080048 throw InternalFailure();
49 }
50 pdrSize += sizeof(state_effecter_possible_states) -
51 sizeof(bitfield8_t) + (sizeof(bitfield8_t) * statesSize);
52 }
53 pdrSize += sizeof(pldm_state_effecter_pdr) - sizeof(uint8_t);
54
55 std::vector<uint8_t> entry{};
56 entry.resize(pdrSize);
57
58 pldm_state_effecter_pdr* pdr =
59 reinterpret_cast<pldm_state_effecter_pdr*>(entry.data());
Manojkiran Edabcf91ac2021-03-14 13:50:48 +053060 if (!pdr)
61 {
Riya Dixit49cfb132023-03-02 04:26:53 -060062 error("Failed to get state effecter PDR.");
Manojkiran Edabcf91ac2021-03-14 13:50:48 +053063 continue;
64 }
George Liua2870722020-02-11 11:09:30 +080065 pdr->hdr.record_handle = 0;
66 pdr->hdr.version = 1;
67 pdr->hdr.type = PLDM_STATE_EFFECTER_PDR;
68 pdr->hdr.record_change_num = 0;
69 pdr->hdr.length = pdrSize - sizeof(pldm_pdr_hdr);
70
Manojkiran Edacc5f1582021-09-29 17:03:06 +053071 pdr->terminus_handle = TERMINUS_HANDLE;
George Liuc4ea6a92020-07-14 15:48:44 +080072
73 try
74 {
75 std::string entity_path = e.value("entity_path", "");
76 auto& associatedEntityMap = handler.getAssociateEntityMap();
Sagar Srinivas06f9b292024-03-31 11:35:28 -050077 if (entity_path != "" && associatedEntityMap.contains(entity_path))
George Liuc4ea6a92020-07-14 15:48:44 +080078 {
79 pdr->entity_type =
80 associatedEntityMap.at(entity_path).entity_type;
81 pdr->entity_instance =
82 associatedEntityMap.at(entity_path).entity_instance_num;
83 pdr->container_id =
84 associatedEntityMap.at(entity_path).entity_container_id;
85 }
86 else
87 {
88 pdr->entity_type = e.value("type", 0);
89 pdr->entity_instance = e.value("instance", 0);
90 pdr->container_id = e.value("container", 0);
Pavithra Barithaya5f213472022-08-29 02:20:19 -050091
92 // do not create the PDR when the FRU or the entity path is not
93 // present
94 if (!pdr->entity_type)
95 {
Pavithra Barithaya5f213472022-08-29 02:20:19 -050096 continue;
97 }
George Liuc4ea6a92020-07-14 15:48:44 +080098 }
99 }
Kamalkumar Patel58cbcaf2023-10-06 03:48:25 -0500100 catch (const std::exception&)
George Liuc4ea6a92020-07-14 15:48:44 +0800101 {
102 pdr->entity_type = e.value("type", 0);
103 pdr->entity_instance = e.value("instance", 0);
104 pdr->container_id = e.value("container", 0);
105 }
106
George Liua2870722020-02-11 11:09:30 +0800107 pdr->effecter_semantic_id = 0;
108 pdr->effecter_init = PLDM_NO_INIT;
109 pdr->has_description_pdr = false;
110 pdr->composite_effecter_count = effecters.size();
111
Brad Bishop5079ac42021-08-19 18:35:06 -0400112 pldm::responder::pdr_utils::DbusMappings dbusMappings{};
113 pldm::responder::pdr_utils::DbusValMaps dbusValMaps{};
Patrick Williams6da4f912023-05-10 07:50:53 -0500114 uint8_t* start = entry.data() + sizeof(pldm_state_effecter_pdr) -
115 sizeof(uint8_t);
George Liua2870722020-02-11 11:09:30 +0800116 for (const auto& effecter : effecters)
117 {
118 auto set = effecter.value("set", empty);
119 state_effecter_possible_states* possibleStates =
120 reinterpret_cast<state_effecter_possible_states*>(start);
121 possibleStates->state_set_id = set.value("id", 0);
122 possibleStates->possible_states_size = set.value("size", 0);
123
124 start += sizeof(possibleStates->state_set_id) +
125 sizeof(possibleStates->possible_states_size);
126 static const std::vector<uint8_t> emptyStates{};
Brad Bishop5079ac42021-08-19 18:35:06 -0400127 pldm::responder::pdr_utils::PossibleValues stateValues;
George Liua2870722020-02-11 11:09:30 +0800128 auto states = set.value("states", emptyStates);
129 for (const auto& state : states)
130 {
131 auto index = state / 8;
132 auto bit = state - (index * 8);
133 bitfield8_t* bf = reinterpret_cast<bitfield8_t*>(start + index);
134 bf->byte |= 1 << bit;
George Liuadbe1722020-05-09 19:20:19 +0800135 stateValues.emplace_back(state);
George Liua2870722020-02-11 11:09:30 +0800136 }
137 start += possibleStates->possible_states_size;
138
139 auto dbusEntry = effecter.value("dbus", empty);
140 auto objectPath = dbusEntry.value("path", "");
141 auto interface = dbusEntry.value("interface", "");
142 auto propertyName = dbusEntry.value("property_name", "");
143 auto propertyType = dbusEntry.value("property_type", "");
George Liu36e81352020-07-01 14:40:30 +0800144
Brad Bishop5079ac42021-08-19 18:35:06 -0400145 pldm::responder::pdr_utils::StatestoDbusVal dbusIdToValMap{};
George Liu821ebc42021-01-26 14:36:11 +0800146 pldm::utils::DBusMapping dbusMapping{};
George Liu36e81352020-07-01 14:40:30 +0800147 try
148 {
Patrick Williams6da4f912023-05-10 07:50:53 -0500149 auto service = dBusIntf.getService(objectPath.c_str(),
150 interface.c_str());
George Liu821ebc42021-01-26 14:36:11 +0800151
152 dbusMapping = pldm::utils::DBusMapping{
153 objectPath, interface, propertyName, propertyType};
Brad Bishop5079ac42021-08-19 18:35:06 -0400154 dbusIdToValMap = pldm::responder::pdr_utils::populateMapping(
George Liu821ebc42021-01-26 14:36:11 +0800155 propertyType, dbusEntry["property_values"], stateValues);
George Liu36e81352020-07-01 14:40:30 +0800156 }
157 catch (const std::exception& e)
158 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600159 error(
Riya Dixit89644442024-03-31 05:39:59 -0500160 "Failed to create effecter PDR, D-Bus object '{PATH}' returned error - {ERROR}",
Manojkiran Edac81d1122024-02-21 20:17:34 +0530161 "PATH", objectPath, "ERROR", e);
Manojkiran Eda3daf7a12024-04-17 20:33:44 +0530162 break;
George Liu36e81352020-07-01 14:40:30 +0800163 }
George Liua2870722020-02-11 11:09:30 +0800164 dbusMappings.emplace_back(std::move(dbusMapping));
George Liu821ebc42021-01-26 14:36:11 +0800165 dbusValMaps.emplace_back(std::move(dbusIdToValMap));
George Liua2870722020-02-11 11:09:30 +0800166 }
Manojkiran Eda3daf7a12024-04-17 20:33:44 +0530167 if (!(dbusMappings.empty() && dbusValMaps.empty()))
168 {
169 pdr->effecter_id = handler.getNextEffecterId();
170 handler.addDbusObjMaps(pdr->effecter_id,
171 std::make_tuple(std::move(dbusMappings),
172 std::move(dbusValMaps)));
173 pldm::responder::pdr_utils::PdrEntry pdrEntry{};
174 pdrEntry.data = entry.data();
175 pdrEntry.size = pdrSize;
176 repo.addRecord(pdrEntry);
177 }
George Liua2870722020-02-11 11:09:30 +0800178 }
179}
180
181} // namespace pdr_state_effecter
182} // namespace responder
183} // namespace pldm