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