1 #pragma once 2 3 #include "pdr.hpp" 4 #include "pdr_utils.hpp" 5 6 #include <libpldm/platform.h> 7 8 #include <phosphor-logging/lg2.hpp> 9 10 PHOSPHOR_LOG2_USING; 11 12 namespace pldm 13 { 14 namespace responder 15 { 16 namespace pdr_state_effecter 17 { 18 using Json = nlohmann::json; 19 20 static 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 */ 29 template <class DBusInterface, class Handler> 30 void generateStateEffecterPDR(const DBusInterface& dBusIntf, const Json& json, 31 Handler& handler, pdr_utils::RepoInterface& repo) 32 { 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 { 45 error( 46 "Malformed PDR JSON return pdrEntry;- no state set info, TYPE={STATE_EFFECTER_PDR}", 47 "STATE_EFFECTER_PDR", 48 static_cast<unsigned>(PLDM_STATE_EFFECTER_PDR)); 49 throw InternalFailure(); 50 } 51 pdrSize += sizeof(state_effecter_possible_states) - 52 sizeof(bitfield8_t) + (sizeof(bitfield8_t) * statesSize); 53 } 54 pdrSize += sizeof(pldm_state_effecter_pdr) - sizeof(uint8_t); 55 56 std::vector<uint8_t> entry{}; 57 entry.resize(pdrSize); 58 59 pldm_state_effecter_pdr* pdr = 60 reinterpret_cast<pldm_state_effecter_pdr*>(entry.data()); 61 if (!pdr) 62 { 63 error("Failed to get state effecter PDR."); 64 continue; 65 } 66 pdr->hdr.record_handle = 0; 67 pdr->hdr.version = 1; 68 pdr->hdr.type = PLDM_STATE_EFFECTER_PDR; 69 pdr->hdr.record_change_num = 0; 70 pdr->hdr.length = pdrSize - sizeof(pldm_pdr_hdr); 71 72 pdr->terminus_handle = TERMINUS_HANDLE; 73 pdr->effecter_id = handler.getNextEffecterId(); 74 75 try 76 { 77 std::string entity_path = e.value("entity_path", ""); 78 auto& associatedEntityMap = handler.getAssociateEntityMap(); 79 if (entity_path != "" && associatedEntityMap.contains(entity_path)) 80 { 81 pdr->entity_type = 82 associatedEntityMap.at(entity_path).entity_type; 83 pdr->entity_instance = 84 associatedEntityMap.at(entity_path).entity_instance_num; 85 pdr->container_id = 86 associatedEntityMap.at(entity_path).entity_container_id; 87 } 88 else 89 { 90 pdr->entity_type = e.value("type", 0); 91 pdr->entity_instance = e.value("instance", 0); 92 pdr->container_id = e.value("container", 0); 93 94 // do not create the PDR when the FRU or the entity path is not 95 // present 96 if (!pdr->entity_type) 97 { 98 continue; 99 } 100 } 101 } 102 catch (const std::exception&) 103 { 104 pdr->entity_type = e.value("type", 0); 105 pdr->entity_instance = e.value("instance", 0); 106 pdr->container_id = e.value("container", 0); 107 } 108 109 pdr->effecter_semantic_id = 0; 110 pdr->effecter_init = PLDM_NO_INIT; 111 pdr->has_description_pdr = false; 112 pdr->composite_effecter_count = effecters.size(); 113 114 pldm::responder::pdr_utils::DbusMappings dbusMappings{}; 115 pldm::responder::pdr_utils::DbusValMaps dbusValMaps{}; 116 uint8_t* start = entry.data() + sizeof(pldm_state_effecter_pdr) - 117 sizeof(uint8_t); 118 for (const auto& effecter : effecters) 119 { 120 auto set = effecter.value("set", empty); 121 state_effecter_possible_states* possibleStates = 122 reinterpret_cast<state_effecter_possible_states*>(start); 123 possibleStates->state_set_id = set.value("id", 0); 124 possibleStates->possible_states_size = set.value("size", 0); 125 126 start += sizeof(possibleStates->state_set_id) + 127 sizeof(possibleStates->possible_states_size); 128 static const std::vector<uint8_t> emptyStates{}; 129 pldm::responder::pdr_utils::PossibleValues stateValues; 130 auto states = set.value("states", emptyStates); 131 for (const auto& state : states) 132 { 133 auto index = state / 8; 134 auto bit = state - (index * 8); 135 bitfield8_t* bf = reinterpret_cast<bitfield8_t*>(start + index); 136 bf->byte |= 1 << bit; 137 stateValues.emplace_back(state); 138 } 139 start += possibleStates->possible_states_size; 140 141 auto dbusEntry = effecter.value("dbus", empty); 142 auto objectPath = dbusEntry.value("path", ""); 143 auto interface = dbusEntry.value("interface", ""); 144 auto propertyName = dbusEntry.value("property_name", ""); 145 auto propertyType = dbusEntry.value("property_type", ""); 146 147 pldm::responder::pdr_utils::StatestoDbusVal dbusIdToValMap{}; 148 pldm::utils::DBusMapping dbusMapping{}; 149 try 150 { 151 auto service = dBusIntf.getService(objectPath.c_str(), 152 interface.c_str()); 153 154 dbusMapping = pldm::utils::DBusMapping{ 155 objectPath, interface, propertyName, propertyType}; 156 dbusIdToValMap = pldm::responder::pdr_utils::populateMapping( 157 propertyType, dbusEntry["property_values"], stateValues); 158 } 159 catch (const std::exception& e) 160 { 161 error( 162 "Failed to create effecter PDR, D-Bus object '{PATH}' returned {ERROR}", 163 "PATH", objectPath, "ERROR", e); 164 continue; 165 } 166 167 dbusMappings.emplace_back(std::move(dbusMapping)); 168 dbusValMaps.emplace_back(std::move(dbusIdToValMap)); 169 } 170 handler.addDbusObjMaps( 171 pdr->effecter_id, 172 std::make_tuple(std::move(dbusMappings), std::move(dbusValMaps))); 173 pldm::responder::pdr_utils::PdrEntry pdrEntry{}; 174 pdrEntry.data = entry.data(); 175 pdrEntry.size = pdrSize; 176 repo.addRecord(pdrEntry); 177 } 178 } 179 180 } // namespace pdr_state_effecter 181 } // namespace responder 182 } // namespace pldm 183