Patrick Venture | 02ba884 | 2018-10-20 13:37:54 -0700 | [diff] [blame] | 1 | #include "writefrudata.hpp" |
| 2 | |
Patrick Venture | 5c2bd5e | 2018-10-20 19:45:48 -0700 | [diff] [blame] | 3 | #include "fru_area.hpp" |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 4 | #include "frup.hpp" |
| 5 | #include "types.hpp" |
| 6 | |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 7 | #include <host-ipmid/ipmid-api.h> |
Chris Austen | b45c4cb | 2015-11-01 06:34:56 -0600 | [diff] [blame] | 8 | #include <unistd.h> |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 9 | |
| 10 | #include <algorithm> |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 11 | #include <cstdio> |
| 12 | #include <cstring> |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 13 | #include <exception> |
| 14 | #include <fstream> |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 15 | #include <iostream> |
Patrick Venture | b390c0e | 2018-10-20 13:36:48 -0700 | [diff] [blame] | 16 | #include <map> |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 17 | #include <memory> |
Patrick Venture | 5739ac3 | 2018-10-16 19:17:41 -0700 | [diff] [blame] | 18 | #include <phosphor-logging/log.hpp> |
Patrick Venture | 7191849 | 2018-10-20 19:40:13 -0700 | [diff] [blame] | 19 | #include <sdbusplus/bus.hpp> |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 20 | #include <sstream> |
| 21 | #include <vector> |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 22 | |
Deepak Kodihalli | 788bd1f | 2017-02-20 01:21:59 -0600 | [diff] [blame] | 23 | using namespace ipmi::vpd; |
Patrick Venture | 5739ac3 | 2018-10-16 19:17:41 -0700 | [diff] [blame] | 24 | using namespace phosphor::logging; |
Deepak Kodihalli | 788bd1f | 2017-02-20 01:21:59 -0600 | [diff] [blame] | 25 | |
Ratan Gupta | cb0d4e5 | 2016-12-22 19:05:57 +0530 | [diff] [blame] | 26 | extern const FruMap frus; |
Deepak Kodihalli | 788bd1f | 2017-02-20 01:21:59 -0600 | [diff] [blame] | 27 | extern const std::map<Path, InterfaceMap> extras; |
Ratan Gupta | cb0d4e5 | 2016-12-22 19:05:57 +0530 | [diff] [blame] | 28 | |
Patrick Venture | 19bea9a | 2018-10-20 19:54:27 -0700 | [diff] [blame] | 29 | using FruAreaVector = std::vector<std::unique_ptr<IPMIFruArea>>; |
| 30 | |
Patrick Venture | 234b735 | 2018-10-20 09:37:09 -0700 | [diff] [blame] | 31 | namespace |
| 32 | { |
| 33 | |
| 34 | //------------------------------------------------------------ |
| 35 | // Cleanup routine |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 36 | // Must always be called as last reference to fruFilePointer. |
Patrick Venture | 234b735 | 2018-10-20 09:37:09 -0700 | [diff] [blame] | 37 | //------------------------------------------------------------ |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 38 | int cleanupError(FILE* fruFilePointer, FruAreaVector& fruAreaVec) |
Patrick Venture | 234b735 | 2018-10-20 09:37:09 -0700 | [diff] [blame] | 39 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 40 | if (fruFilePointer != NULL) |
Patrick Venture | 234b735 | 2018-10-20 09:37:09 -0700 | [diff] [blame] | 41 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 42 | std::fclose(fruFilePointer); |
Patrick Venture | 234b735 | 2018-10-20 09:37:09 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 45 | if (!(fruAreaVec.empty())) |
Patrick Venture | 234b735 | 2018-10-20 09:37:09 -0700 | [diff] [blame] | 46 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 47 | fruAreaVec.clear(); |
Patrick Venture | 234b735 | 2018-10-20 09:37:09 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | return -1; |
| 51 | } |
| 52 | |
Patrick Venture | de8ea56 | 2018-10-20 09:44:19 -0700 | [diff] [blame] | 53 | //------------------------------------------------------------------------ |
| 54 | // Gets the value of the key from the fru dictionary of the given section. |
| 55 | // FRU dictionary is parsed fru data for all the sections. |
| 56 | //------------------------------------------------------------------------ |
| 57 | std::string getFRUValue(const std::string& section, const std::string& key, |
| 58 | const std::string& delimiter, IPMIFruInfo& fruData) |
| 59 | { |
| 60 | |
| 61 | auto minIndexValue = 0; |
| 62 | auto maxIndexValue = 0; |
| 63 | std::string fruValue = ""; |
| 64 | |
| 65 | if (section == "Board") |
| 66 | { |
| 67 | minIndexValue = OPENBMC_VPD_KEY_BOARD_MFG_DATE; |
| 68 | maxIndexValue = OPENBMC_VPD_KEY_BOARD_MAX; |
| 69 | } |
| 70 | else if (section == "Product") |
| 71 | { |
| 72 | minIndexValue = OPENBMC_VPD_KEY_PRODUCT_MFR; |
| 73 | maxIndexValue = OPENBMC_VPD_KEY_PRODUCT_MAX; |
| 74 | } |
| 75 | else if (section == "Chassis") |
| 76 | { |
| 77 | minIndexValue = OPENBMC_VPD_KEY_CHASSIS_TYPE; |
| 78 | maxIndexValue = OPENBMC_VPD_KEY_CHASSIS_MAX; |
| 79 | } |
| 80 | |
| 81 | auto first = fruData.cbegin() + minIndexValue; |
| 82 | auto last = first + (maxIndexValue - minIndexValue) + 1; |
| 83 | |
Patrick Venture | c7eecc1 | 2018-10-21 08:55:44 -0700 | [diff] [blame] | 84 | auto itr = std::find_if(first, last, |
| 85 | [&key](const auto& e) { return key == e.first; }); |
Patrick Venture | de8ea56 | 2018-10-20 09:44:19 -0700 | [diff] [blame] | 86 | |
| 87 | if (itr != last) |
| 88 | { |
| 89 | fruValue = itr->second; |
| 90 | } |
| 91 | |
| 92 | // if the key is custom property then the value could be in two formats. |
| 93 | // 1) custom field 2 = "value". |
| 94 | // 2) custom field 2 = "key:value". |
| 95 | // if delimiter length = 0 i.e custom field 2 = "value" |
| 96 | |
| 97 | constexpr auto customProp = "Custom Field"; |
| 98 | if (key.find(customProp) != std::string::npos) |
| 99 | { |
| 100 | if (delimiter.length() > 0) |
| 101 | { |
| 102 | size_t delimiterpos = fruValue.find(delimiter); |
| 103 | if (delimiterpos != std::string::npos) |
| 104 | fruValue = fruValue.substr(delimiterpos + 1); |
| 105 | } |
| 106 | } |
| 107 | return fruValue; |
| 108 | } |
| 109 | |
Patrick Venture | 17baa27 | 2018-10-20 09:48:08 -0700 | [diff] [blame] | 110 | // Get the inventory service from the mapper. |
| 111 | auto getService(sdbusplus::bus::bus& bus, const std::string& intf, |
| 112 | const std::string& path) |
| 113 | { |
| 114 | auto mapperCall = |
| 115 | bus.new_method_call("xyz.openbmc_project.ObjectMapper", |
| 116 | "/xyz/openbmc_project/object_mapper", |
| 117 | "xyz.openbmc_project.ObjectMapper", "GetObject"); |
| 118 | |
| 119 | mapperCall.append(path); |
| 120 | mapperCall.append(std::vector<std::string>({intf})); |
| 121 | std::map<std::string, std::vector<std::string>> mapperResponse; |
| 122 | |
| 123 | try |
| 124 | { |
| 125 | auto mapperResponseMsg = bus.call(mapperCall); |
| 126 | mapperResponseMsg.read(mapperResponse); |
| 127 | } |
| 128 | catch (const sdbusplus::exception::SdBusError& ex) |
| 129 | { |
| 130 | log<level::ERR>("Exception from sdbus call", |
| 131 | entry("WHAT=%s", ex.what())); |
| 132 | throw; |
| 133 | } |
| 134 | |
| 135 | if (mapperResponse.begin() == mapperResponse.end()) |
| 136 | { |
| 137 | throw std::runtime_error("ERROR in reading the mapper response"); |
| 138 | } |
| 139 | |
| 140 | return mapperResponse.begin()->first; |
| 141 | } |
| 142 | |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 143 | // Takes FRU data, invokes Parser for each fru record area and updates |
| 144 | // Inventory |
| 145 | //------------------------------------------------------------------------ |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 146 | int updateInventory(FruAreaVector& areaVector, sdbusplus::bus::bus& bus) |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 147 | { |
| 148 | // Generic error reporter |
| 149 | int rc = 0; |
| 150 | uint8_t fruid = 0; |
| 151 | IPMIFruInfo fruData; |
| 152 | |
| 153 | // For each FRU area, extract the needed data , get it parsed and update |
| 154 | // the Inventory. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 155 | for (const auto& fruArea : areaVector) |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 156 | { |
Patrick Venture | f22b36a | 2018-10-20 20:59:07 -0700 | [diff] [blame] | 157 | fruid = fruArea->getFruID(); |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 158 | // Fill the container with information |
Patrick Venture | f22b36a | 2018-10-20 20:59:07 -0700 | [diff] [blame] | 159 | rc = parse_fru_area((fruArea)->getType(), (void*)(fruArea)->getData(), |
| 160 | (fruArea)->getLength(), fruData); |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 161 | if (rc < 0) |
| 162 | { |
| 163 | log<level::ERR>("Error parsing FRU records"); |
| 164 | return rc; |
| 165 | } |
| 166 | } // END walking the vector of areas and updating |
| 167 | |
| 168 | // For each Fru we have the list of instances which needs to be updated. |
| 169 | // Each instance object implements certain interfaces. |
| 170 | // Each Interface is having Dbus properties. |
| 171 | // Each Dbus Property would be having metaData(eg section,VpdPropertyName). |
| 172 | |
| 173 | // Here we are just printing the object,interface and the properties. |
| 174 | // which needs to be called with the new inventory manager implementation. |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 175 | using namespace std::string_literals; |
| 176 | static const auto intf = "xyz.openbmc_project.Inventory.Manager"s; |
| 177 | static const auto path = "/xyz/openbmc_project/inventory"s; |
| 178 | std::string service; |
| 179 | try |
| 180 | { |
| 181 | service = getService(bus, intf, path); |
| 182 | } |
| 183 | catch (const std::exception& e) |
| 184 | { |
| 185 | std::cerr << e.what() << "\n"; |
| 186 | return -1; |
| 187 | } |
| 188 | |
| 189 | auto iter = frus.find(fruid); |
| 190 | if (iter == frus.end()) |
| 191 | { |
| 192 | log<level::ERR>("Unable to get the fru info", |
| 193 | entry("FRU=%d", static_cast<int>(fruid))); |
| 194 | return -1; |
| 195 | } |
| 196 | |
| 197 | auto& instanceList = iter->second; |
| 198 | if (instanceList.size() <= 0) |
| 199 | { |
| 200 | log<level::DEBUG>("Object list empty for this FRU", |
| 201 | entry("FRU=%d", static_cast<int>(fruid))); |
| 202 | } |
| 203 | |
| 204 | ObjectMap objects; |
Patrick Venture | c7eecc1 | 2018-10-21 08:55:44 -0700 | [diff] [blame] | 205 | for (const auto& instance : instanceList) |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 206 | { |
| 207 | InterfaceMap interfaces; |
| 208 | const auto& extrasIter = extras.find(instance.path); |
| 209 | |
Patrick Venture | c7eecc1 | 2018-10-21 08:55:44 -0700 | [diff] [blame] | 210 | for (const auto& interfaceList : instance.interfaces) |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 211 | { |
| 212 | PropertyMap props; // store all the properties |
Patrick Venture | c7eecc1 | 2018-10-21 08:55:44 -0700 | [diff] [blame] | 213 | for (const auto& properties : interfaceList.second) |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 214 | { |
| 215 | std::string value; |
| 216 | decltype(auto) pdata = properties.second; |
| 217 | |
| 218 | if (!pdata.section.empty() && !pdata.property.empty()) |
| 219 | { |
| 220 | value = getFRUValue(pdata.section, pdata.property, |
| 221 | pdata.delimiter, fruData); |
| 222 | } |
| 223 | props.emplace(std::move(properties.first), std::move(value)); |
| 224 | } |
| 225 | // Check and update extra properties |
| 226 | if (extras.end() != extrasIter) |
| 227 | { |
| 228 | const auto& propsIter = |
| 229 | (extrasIter->second).find(interfaceList.first); |
| 230 | if ((extrasIter->second).end() != propsIter) |
| 231 | { |
| 232 | for (const auto& map : propsIter->second) |
| 233 | { |
| 234 | props.emplace(map.first, map.second); |
| 235 | } |
| 236 | } |
| 237 | } |
| 238 | interfaces.emplace(std::move(interfaceList.first), |
| 239 | std::move(props)); |
| 240 | } |
| 241 | |
| 242 | // Call the inventory manager |
Patrick Venture | 9a528f2 | 2018-10-20 13:31:28 -0700 | [diff] [blame] | 243 | sdbusplus::message::object_path objectPath = instance.path; |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 244 | // Check and update extra properties |
| 245 | if (extras.end() != extrasIter) |
| 246 | { |
| 247 | for (const auto& entry : extrasIter->second) |
| 248 | { |
| 249 | if (interfaces.end() == interfaces.find(entry.first)) |
| 250 | { |
| 251 | interfaces.emplace(entry.first, entry.second); |
| 252 | } |
| 253 | } |
| 254 | } |
Patrick Venture | 9a528f2 | 2018-10-20 13:31:28 -0700 | [diff] [blame] | 255 | objects.emplace(objectPath, interfaces); |
Patrick Venture | 44a957d | 2018-10-20 09:41:29 -0700 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | auto pimMsg = bus.new_method_call(service.c_str(), path.c_str(), |
| 259 | intf.c_str(), "Notify"); |
| 260 | pimMsg.append(std::move(objects)); |
| 261 | |
| 262 | try |
| 263 | { |
| 264 | auto inventoryMgrResponseMsg = bus.call(pimMsg); |
| 265 | } |
| 266 | catch (const sdbusplus::exception::SdBusError& ex) |
| 267 | { |
| 268 | log<level::ERR>("Error in notify call", entry("WHAT=%s", ex.what())); |
| 269 | return -1; |
| 270 | } |
| 271 | |
| 272 | return rc; |
| 273 | } |
| 274 | |
Patrick Venture | 234b735 | 2018-10-20 09:37:09 -0700 | [diff] [blame] | 275 | } // namespace |
| 276 | |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 277 | //------------------------------------------------ |
vishwa | f3ca352 | 2015-12-02 10:35:13 -0600 | [diff] [blame] | 278 | // Takes the pointer to stream of bytes and length |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 279 | // and returns the 8 bit checksum |
| 280 | // This algo is per IPMI V2.0 spec |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 281 | //------------------------------------------------- |
Patrick Venture | 062e145 | 2018-10-21 09:16:47 -0700 | [diff] [blame] | 282 | unsigned char calculateCRC(const unsigned char* data, size_t len) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 283 | { |
| 284 | char crc = 0; |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 285 | size_t byte = 0; |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 286 | |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 287 | for (byte = 0; byte < len; byte++) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 288 | { |
| 289 | crc += *data++; |
| 290 | } |
vishwa | f3ca352 | 2015-12-02 10:35:13 -0600 | [diff] [blame] | 291 | |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 292 | return (-crc); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | //--------------------------------------------------------------------- |
| 296 | // Accepts a fru area offset in commom hdr and tells which area it is. |
| 297 | //--------------------------------------------------------------------- |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 298 | ipmi_fru_area_type getFruAreaType(uint8_t areaOffset) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 299 | { |
| 300 | ipmi_fru_area_type type = IPMI_FRU_AREA_TYPE_MAX; |
| 301 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 302 | switch (areaOffset) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 303 | { |
| 304 | case IPMI_FRU_INTERNAL_OFFSET: |
| 305 | type = IPMI_FRU_AREA_INTERNAL_USE; |
| 306 | break; |
| 307 | |
| 308 | case IPMI_FRU_CHASSIS_OFFSET: |
| 309 | type = IPMI_FRU_AREA_CHASSIS_INFO; |
| 310 | break; |
| 311 | |
| 312 | case IPMI_FRU_BOARD_OFFSET: |
| 313 | type = IPMI_FRU_AREA_BOARD_INFO; |
| 314 | break; |
| 315 | |
| 316 | case IPMI_FRU_PRODUCT_OFFSET: |
| 317 | type = IPMI_FRU_AREA_PRODUCT_INFO; |
| 318 | break; |
| 319 | |
| 320 | case IPMI_FRU_MULTI_OFFSET: |
| 321 | type = IPMI_FRU_AREA_MULTI_RECORD; |
| 322 | break; |
| 323 | |
| 324 | default: |
| 325 | type = IPMI_FRU_AREA_TYPE_MAX; |
| 326 | } |
| 327 | |
| 328 | return type; |
| 329 | } |
| 330 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 331 | ///----------------------------------------------- |
| 332 | // Validates the data for crc and mandatory fields |
| 333 | ///----------------------------------------------- |
Patrick Venture | 062e145 | 2018-10-21 09:16:47 -0700 | [diff] [blame] | 334 | int verifyFruData(const uint8_t* data, const size_t len) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 335 | { |
| 336 | uint8_t checksum = 0; |
| 337 | int rc = -1; |
| 338 | |
| 339 | // Validate for first byte to always have a value of [1] |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 340 | if (data[0] != IPMI_FRU_HDR_BYTE_ZERO) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 341 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 342 | log<level::ERR>("Invalid entry in byte-0", |
| 343 | entry("ENTRY=0x%X", static_cast<uint32_t>(data[0]))); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 344 | return rc; |
| 345 | } |
| 346 | #ifdef __IPMI_DEBUG__ |
| 347 | else |
| 348 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 349 | log<level::DEBUG>("Validated in entry_1 of fruData", |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 350 | entry("ENTRY=0x%X", static_cast<uint32_t>(data[0]))); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 351 | } |
| 352 | #endif |
| 353 | |
| 354 | // See if the calculated CRC matches with the embedded one. |
| 355 | // CRC to be calculated on all except the last one that is CRC itself. |
Patrick Venture | 062e145 | 2018-10-21 09:16:47 -0700 | [diff] [blame] | 356 | checksum = calculateCRC(data, len - 1); |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 357 | if (checksum != data[len - 1]) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 358 | { |
| 359 | #ifdef __IPMI_DEBUG__ |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 360 | log<level::ERR>( |
| 361 | "Checksum mismatch", |
| 362 | entry("Calculated=0x%X", static_cast<uint32_t>(checksum)), |
| 363 | entry("Embedded=0x%X", static_cast<uint32_t>(data[len]))); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 364 | #endif |
| 365 | return rc; |
| 366 | } |
| 367 | #ifdef __IPMI_DEBUG__ |
| 368 | else |
| 369 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 370 | log<level::DEBUG>("Checksum matches"); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 371 | } |
| 372 | #endif |
| 373 | |
| 374 | return EXIT_SUCCESS; |
| 375 | } |
| 376 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 377 | ///---------------------------------------------------- |
| 378 | // Checks if a particular fru area is populated or not |
| 379 | ///---------------------------------------------------- |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 380 | bool removeInvalidArea(const std::unique_ptr<IPMIFruArea>& fruArea) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 381 | { |
Deepak Kodihalli | 89ededd | 2017-02-11 01:59:32 -0600 | [diff] [blame] | 382 | // Filter the ones that are empty |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 383 | if (!(fruArea->getLength())) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 384 | { |
| 385 | return true; |
| 386 | } |
| 387 | return false; |
| 388 | } |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 389 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 390 | ///---------------------------------------------------------------------------------- |
| 391 | // Populates various FRU areas |
| 392 | // @prereq : This must be called only after validating common header. |
| 393 | ///---------------------------------------------------------------------------------- |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 394 | int ipmiPopulateFruAreas(uint8_t* fruData, const size_t dataLen, |
| 395 | FruAreaVector& fruAreaVec) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 396 | { |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 397 | int rc = -1; |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 398 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 399 | // Now walk the common header and see if the file size has atleast the last |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 400 | // offset mentioned by the struct common_header. If the file size is less |
| 401 | // than the offset of any if the fru areas mentioned in the common header, |
| 402 | // then we do not have a complete file. |
| 403 | for (uint8_t fruEntry = IPMI_FRU_INTERNAL_OFFSET; |
| 404 | fruEntry < (sizeof(struct common_header) - 2); fruEntry++) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 405 | { |
Yi Li | 75c2d46 | 2016-04-11 16:57:46 +0800 | [diff] [blame] | 406 | rc = -1; |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 407 | // Actual offset in the payload is the offset mentioned in common header |
Gunnar Mills | c19b813 | 2018-06-14 08:56:17 -0500 | [diff] [blame] | 408 | // multiplied by 8. Common header is always the first 8 bytes. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 409 | size_t areaOffset = fruData[fruEntry] * IPMI_EIGHT_BYTES; |
| 410 | if (areaOffset && (dataLen < (areaOffset + 2))) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 411 | { |
| 412 | // Our file size is less than what it needs to be. +2 because we are |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 413 | // using area len that is at 2 byte off areaOffset |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 414 | log<level::ERR>("fru file is incomplete", |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 415 | entry("SIZE=%d", dataLen)); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 416 | return rc; |
| 417 | } |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 418 | else if (areaOffset) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 419 | { |
| 420 | // Read 2 bytes to know the actual size of area. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 421 | uint8_t areaHeader[2] = {0}; |
| 422 | std::memcpy(areaHeader, &((uint8_t*)fruData)[areaOffset], |
| 423 | sizeof(areaHeader)); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 424 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 425 | // Size of this area will be the 2nd byte in the fru area header. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 426 | size_t areaLen = areaHeader[1] * IPMI_EIGHT_BYTES; |
| 427 | uint8_t areaData[areaLen] = {0}; |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 428 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 429 | log<level::DEBUG>("Fru Data", entry("SIZE=%d", dataLen), |
| 430 | entry("AREA OFFSET=%d", areaOffset), |
| 431 | entry("AREA_SIZE=%d", areaLen)); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 432 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 433 | // See if we really have that much buffer. We have area offset amd |
| 434 | // from there, the actual len. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 435 | if (dataLen < (areaLen + areaOffset)) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 436 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 437 | log<level::ERR>("Incomplete Fru file", |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 438 | entry("SIZE=%d", dataLen)); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 439 | return rc; |
| 440 | } |
| 441 | |
| 442 | // Save off the data. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 443 | std::memcpy(areaData, &((uint8_t*)fruData)[areaOffset], areaLen); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 444 | |
| 445 | // Validate the crc |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 446 | rc = verifyFruData(areaData, areaLen); |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 447 | if (rc < 0) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 448 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 449 | log<level::ERR>("Err validating fru area", |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 450 | entry("OFFSET=%d", areaOffset)); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 451 | return rc; |
| 452 | } |
| 453 | else |
| 454 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 455 | log<level::DEBUG>("Successfully verified area checksum.", |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 456 | entry("OFFSET=%d", areaOffset)); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | // We already have a vector that is passed to us containing all |
| 460 | // of the fields populated. Update the data portion now. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 461 | for (auto& iter : fruAreaVec) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 462 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 463 | if (iter->getType() == getFruAreaType(fruEntry)) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 464 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 465 | iter->setData(areaData, areaLen); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 466 | } |
| 467 | } |
| 468 | } // If we have fru data present |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 469 | } // Walk struct common_header |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 470 | |
| 471 | // Not all the fields will be populated in a fru data. Mostly all cases will |
| 472 | // not have more than 2 or 3. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 473 | fruAreaVec.erase( |
| 474 | std::remove_if(fruAreaVec.begin(), fruAreaVec.end(), removeInvalidArea), |
| 475 | fruAreaVec.end()); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 476 | |
| 477 | return EXIT_SUCCESS; |
| 478 | } |
| 479 | |
| 480 | ///--------------------------------------------------------- |
| 481 | // Validates the fru data per ipmi common header constructs. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 482 | // Returns with updated struct common_header and also file_size |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 483 | //---------------------------------------------------------- |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 484 | int ipmiValidateCommonHeader(const uint8_t* fruData, const size_t dataLen) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 485 | { |
| 486 | int rc = -1; |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 487 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 488 | uint8_t commonHdr[sizeof(struct common_header)] = {0}; |
| 489 | if (dataLen >= sizeof(commonHdr)) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 490 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 491 | std::memcpy(commonHdr, fruData, sizeof(commonHdr)); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 492 | } |
| 493 | else |
| 494 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 495 | log<level::ERR>("Incomplete fru data file", entry("SIZE=%d", dataLen)); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 496 | return rc; |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 497 | } |
| 498 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 499 | // Verify the crc and size |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 500 | rc = verifyFruData(commonHdr, sizeof(commonHdr)); |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 501 | if (rc < 0) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 502 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 503 | log<level::ERR>("Failed to validate common header"); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 504 | return rc; |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 505 | } |
| 506 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 507 | return EXIT_SUCCESS; |
| 508 | } |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 509 | |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 510 | ///----------------------------------------------------- |
| 511 | // Accepts the filename and validates per IPMI FRU spec |
| 512 | //---------------------------------------------------- |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 513 | int validateFRUArea(const uint8_t fruid, const char* fruFilename, |
| 514 | sdbusplus::bus::bus& bus, const bool bmcOnlyFru) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 515 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 516 | size_t dataLen = 0; |
| 517 | size_t bytesRead = 0; |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 518 | int rc = -1; |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 519 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 520 | // Vector that holds individual IPMI FRU AREAs. Although MULTI and INTERNAL |
| 521 | // are not used, keeping it here for completeness. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 522 | FruAreaVector fruAreaVec; |
Yi Li | 75c2d46 | 2016-04-11 16:57:46 +0800 | [diff] [blame] | 523 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 524 | for (uint8_t fruEntry = IPMI_FRU_INTERNAL_OFFSET; |
| 525 | fruEntry < (sizeof(struct common_header) - 2); fruEntry++) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 526 | { |
| 527 | // Create an object and push onto a vector. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 528 | std::unique_ptr<IPMIFruArea> fruArea = std::make_unique<IPMIFruArea>( |
| 529 | fruid, getFruAreaType(fruEntry), bmcOnlyFru); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 530 | |
| 531 | // Physically being present |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 532 | bool present = access(fruFilename, F_OK) == 0; |
| 533 | fruArea->setPresent(present); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 534 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 535 | fruAreaVec.emplace_back(std::move(fruArea)); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 536 | } |
| 537 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 538 | FILE* fruFilePointer = std::fopen(fruFilename, "rb"); |
| 539 | if (fruFilePointer == NULL) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 540 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 541 | log<level::ERR>("Unable to open fru file", |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 542 | entry("FILE=%s", fruFilename), |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 543 | entry("ERRNO=%s", std::strerror(errno))); |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 544 | return cleanupError(fruFilePointer, fruAreaVec); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 545 | } |
| 546 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 547 | // Get the size of the file to see if it meets minimum requirement |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 548 | if (std::fseek(fruFilePointer, 0, SEEK_END)) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 549 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 550 | log<level::ERR>("Unable to seek fru file", |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 551 | entry("FILE=%s", fruFilename), |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 552 | entry("ERRNO=%s", std::strerror(errno))); |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 553 | return cleanupError(fruFilePointer, fruAreaVec); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 554 | } |
| 555 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 556 | // Allocate a buffer to hold entire file content |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 557 | dataLen = std::ftell(fruFilePointer); |
| 558 | uint8_t fruData[dataLen] = {0}; |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 559 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 560 | std::rewind(fruFilePointer); |
| 561 | bytesRead = std::fread(fruData, dataLen, 1, fruFilePointer); |
| 562 | if (bytesRead != 1) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 563 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 564 | log<level::ERR>("Failed reading fru data.", |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 565 | entry("BYTESREAD=%d", bytesRead), |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 566 | entry("ERRNO=%s", std::strerror(errno))); |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 567 | return cleanupError(fruFilePointer, fruAreaVec); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 568 | } |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 569 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 570 | // We are done reading. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 571 | std::fclose(fruFilePointer); |
| 572 | fruFilePointer = NULL; |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 573 | |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 574 | rc = ipmiValidateCommonHeader(fruData, dataLen); |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 575 | if (rc < 0) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 576 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 577 | return cleanupError(fruFilePointer, fruAreaVec); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 578 | } |
| 579 | |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 580 | // Now that we validated the common header, populate various fru sections if |
| 581 | // we have them here. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 582 | rc = ipmiPopulateFruAreas(fruData, dataLen, fruAreaVec); |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 583 | if (rc < 0) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 584 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 585 | log<level::ERR>("Populating FRU areas failed", entry("FRU=%d", fruid)); |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 586 | return cleanupError(fruFilePointer, fruAreaVec); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 587 | } |
| 588 | else |
| 589 | { |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 590 | log<level::DEBUG>("Populated FRU areas", entry("FILE=%s", fruFilename)); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 591 | } |
| 592 | |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 593 | #ifdef __IPMI_DEBUG__ |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 594 | for (const auto& iter : fruAreaVec) |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 595 | { |
Patrick Venture | 0e3a1c4 | 2018-10-20 21:15:41 -0700 | [diff] [blame] | 596 | std::printf("FRU ID : [%d]\n", iter->getFruID()); |
| 597 | std::printf("AREA NAME : [%s]\n", iter->getName()); |
| 598 | std::printf("TYPE : [%d]\n", iter->getType()); |
| 599 | std::printf("LEN : [%d]\n", iter->getLength()); |
| 600 | std::printf("BUS NAME : [%s]\n", iter->getBusName()); |
| 601 | std::printf("OBJ PATH : [%s]\n", iter->getObjectPath()); |
| 602 | std::printf("INTF NAME :[%s]\n", iter->getIntfName()); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 603 | } |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 604 | #endif |
| 605 | |
| 606 | // If the vector is populated with everything, then go ahead and update the |
| 607 | // inventory. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 608 | if (!(fruAreaVec.empty())) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 609 | { |
| 610 | |
| 611 | #ifdef __IPMI_DEBUG__ |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 612 | std::printf("\n SIZE of vector is : [%d] \n", fruAreaVec.size()); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 613 | #endif |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 614 | rc = updateInventory(fruAreaVec, bus); |
Patrick Venture | c9508db | 2018-10-16 17:18:43 -0700 | [diff] [blame] | 615 | if (rc < 0) |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 616 | { |
Patrick Venture | 5c78721 | 2018-10-17 13:48:23 -0700 | [diff] [blame] | 617 | log<level::ERR>("Error updating inventory."); |
vishwa | c93d6d4 | 2015-12-16 11:55:16 -0600 | [diff] [blame] | 618 | } |
| 619 | } |
| 620 | |
| 621 | // we are done with all that we wanted to do. This will do the job of |
| 622 | // calling any destructors too. |
Patrick Venture | ef83b99 | 2018-10-21 09:32:44 -0700 | [diff] [blame] | 623 | fruAreaVec.clear(); |
Vishwa | 4be4b7a | 2015-10-31 22:55:50 -0500 | [diff] [blame] | 624 | |
| 625 | return rc; |
| 626 | } |