Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 1 | #include "storagehandler.hpp" |
| 2 | |
| 3 | #include "fruread.hpp" |
| 4 | #include "read_fru_data.hpp" |
| 5 | #include "selutility.hpp" |
| 6 | #include "sensorhandler.hpp" |
| 7 | #include "storageaddsel.hpp" |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 8 | |
Lei YU | 52d9124 | 2017-10-17 22:52:28 +0800 | [diff] [blame] | 9 | #include <arpa/inet.h> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 10 | #include <mapper.h> |
| 11 | #include <systemd/sd-bus.h> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 12 | |
| 13 | #include <algorithm> |
Lei YU | 52d9124 | 2017-10-17 22:52:28 +0800 | [diff] [blame] | 14 | #include <chrono> |
| 15 | #include <cstdio> |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 16 | #include <cstring> |
Vernon Mauery | bdda800 | 2019-02-26 10:18:51 -0800 | [diff] [blame] | 17 | #include <filesystem> |
Vernon Mauery | e08fbff | 2019-04-03 09:19:34 -0700 | [diff] [blame] | 18 | #include <ipmid/api.hpp> |
Vernon Mauery | 6a98fe7 | 2019-03-11 15:57:48 -0700 | [diff] [blame] | 19 | #include <ipmid/utils.hpp> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 20 | #include <phosphor-logging/elog-errors.hpp> |
| 21 | #include <phosphor-logging/log.hpp> |
William A. Kennington III | 4c00802 | 2018-10-12 17:18:14 -0700 | [diff] [blame] | 22 | #include <sdbusplus/message/types.hpp> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 23 | #include <sdbusplus/server.hpp> |
| 24 | #include <string> |
| 25 | #include <xyz/openbmc_project/Common/error.hpp> |
| 26 | |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 27 | void register_netfn_storage_functions() __attribute__((constructor)); |
| 28 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 29 | unsigned int g_sel_time = 0xFFFFFFFF; |
Dhruvaraj Subhashchandran | e66c3b0 | 2018-02-07 01:21:56 -0600 | [diff] [blame] | 30 | extern const ipmi::sensor::IdInfoMap sensors; |
| 31 | extern const FruMap frus; |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 32 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 33 | namespace |
| 34 | { |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 35 | constexpr auto TIME_INTERFACE = "xyz.openbmc_project.Time.EpochTime"; |
| 36 | constexpr auto HOST_TIME_PATH = "/xyz/openbmc_project/time/host"; |
| 37 | constexpr auto DBUS_PROPERTIES = "org.freedesktop.DBus.Properties"; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 38 | constexpr auto PROPERTY_ELAPSED = "Elapsed"; |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 39 | |
| 40 | const char* getTimeString(const uint64_t& usecSinceEpoch) |
| 41 | { |
| 42 | using namespace std::chrono; |
| 43 | system_clock::time_point tp{microseconds(usecSinceEpoch)}; |
| 44 | auto t = system_clock::to_time_t(tp); |
| 45 | return std::ctime(&t); |
| 46 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 47 | } // namespace |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 48 | |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 49 | namespace cache |
| 50 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 51 | /* |
| 52 | * This cache contains the object paths of the logging entries sorted in the |
| 53 | * order of the filename(numeric order). The cache is initialized by |
| 54 | * invoking readLoggingObjectPaths with the cache as the parameter. The |
| 55 | * cache is invoked in the execution of the Get SEL info and Delete SEL |
| 56 | * entry command. The Get SEL Info command is typically invoked before the |
| 57 | * Get SEL entry command, so the cache is utilized for responding to Get SEL |
| 58 | * entry command. The cache is invalidated by clearing after Delete SEL |
| 59 | * entry and Clear SEL command. |
| 60 | */ |
| 61 | ipmi::sel::ObjectPaths paths; |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 62 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 63 | } // namespace cache |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 64 | |
| 65 | using InternalFailure = |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 66 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 67 | using namespace phosphor::logging; |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 68 | using namespace ipmi::fru; |
| 69 | |
| 70 | /** |
| 71 | * @enum Device access mode |
| 72 | */ |
| 73 | enum class AccessMode |
| 74 | { |
| 75 | bytes, ///< Device is accessed by bytes |
| 76 | words ///< Device is accessed by words |
| 77 | }; |
| 78 | |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 79 | ipmi_ret_t ipmi_storage_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 80 | ipmi_request_t request, |
| 81 | ipmi_response_t response, |
| 82 | ipmi_data_len_t data_len, |
| 83 | ipmi_context_t context) |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 84 | { |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 85 | // Status code. |
Nan Li | 70aa8d9 | 2016-08-29 00:11:10 +0800 | [diff] [blame] | 86 | ipmi_ret_t rc = IPMI_CC_INVALID; |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 87 | *data_len = 0; |
| 88 | return rc; |
| 89 | } |
| 90 | |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 91 | ipmi_ret_t getSELInfo(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 92 | ipmi_request_t request, ipmi_response_t response, |
| 93 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 94 | { |
Jason M. Bills | 851acb1 | 2019-02-04 14:06:57 -0800 | [diff] [blame] | 95 | if (*data_len != 0) |
| 96 | { |
| 97 | *data_len = 0; |
| 98 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 99 | } |
| 100 | |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 101 | std::vector<uint8_t> outPayload(sizeof(ipmi::sel::GetSELInfoResponse)); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 102 | auto responseData = |
| 103 | reinterpret_cast<ipmi::sel::GetSELInfoResponse*>(outPayload.data()); |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 104 | |
| 105 | responseData->selVersion = ipmi::sel::selVersion; |
| 106 | // Last erase timestamp is not available from log manager. |
| 107 | responseData->eraseTimeStamp = ipmi::sel::invalidTimeStamp; |
| 108 | responseData->operationSupport = ipmi::sel::operationSupport; |
| 109 | |
Tom Joseph | e59abfb | 2018-08-06 18:46:27 +0530 | [diff] [blame] | 110 | try |
| 111 | { |
| 112 | ipmi::sel::readLoggingObjectPaths(cache::paths); |
| 113 | } |
| 114 | catch (const sdbusplus::exception::SdBusError& e) |
| 115 | { |
| 116 | // No action if reading log objects have failed for this command. |
| 117 | // readLoggingObjectPaths will throw exception if there are no log |
| 118 | // entries. The command will be responded with number of SEL entries |
| 119 | // as 0. |
| 120 | } |
| 121 | |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 122 | responseData->entries = 0; |
| 123 | responseData->addTimeStamp = ipmi::sel::invalidTimeStamp; |
| 124 | |
| 125 | if (!cache::paths.empty()) |
| 126 | { |
| 127 | responseData->entries = static_cast<uint16_t>(cache::paths.size()); |
| 128 | |
| 129 | try |
| 130 | { |
| 131 | responseData->addTimeStamp = static_cast<uint32_t>( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 132 | (ipmi::sel::getEntryTimeStamp(cache::paths.back()).count())); |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 133 | } |
| 134 | catch (InternalFailure& e) |
| 135 | { |
| 136 | } |
| 137 | catch (const std::runtime_error& e) |
| 138 | { |
| 139 | log<level::ERR>(e.what()); |
| 140 | } |
| 141 | } |
| 142 | |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 143 | std::memcpy(response, outPayload.data(), outPayload.size()); |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 144 | *data_len = outPayload.size(); |
| 145 | |
| 146 | return IPMI_CC_OK; |
| 147 | } |
| 148 | |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 149 | ipmi_ret_t getSELEntry(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 150 | ipmi_request_t request, ipmi_response_t response, |
| 151 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 152 | { |
Jason M. Bills | 851acb1 | 2019-02-04 14:06:57 -0800 | [diff] [blame] | 153 | if (*data_len != sizeof(ipmi::sel::GetSELEntryRequest)) |
| 154 | { |
| 155 | *data_len = 0; |
| 156 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 157 | } |
| 158 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 159 | auto requestData = |
| 160 | reinterpret_cast<const ipmi::sel::GetSELEntryRequest*>(request); |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 161 | |
| 162 | if (requestData->reservationID != 0) |
| 163 | { |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 164 | if (!checkSELReservation(requestData->reservationID)) |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 165 | { |
| 166 | *data_len = 0; |
| 167 | return IPMI_CC_INVALID_RESERVATION_ID; |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | if (cache::paths.empty()) |
| 172 | { |
| 173 | *data_len = 0; |
| 174 | return IPMI_CC_SENSOR_INVALID; |
| 175 | } |
| 176 | |
| 177 | ipmi::sel::ObjectPaths::const_iterator iter; |
| 178 | |
| 179 | // Check for the requested SEL Entry. |
| 180 | if (requestData->selRecordID == ipmi::sel::firstEntry) |
| 181 | { |
| 182 | iter = cache::paths.begin(); |
| 183 | } |
| 184 | else if (requestData->selRecordID == ipmi::sel::lastEntry) |
| 185 | { |
| 186 | iter = cache::paths.end(); |
| 187 | } |
| 188 | else |
| 189 | { |
| 190 | std::string objPath = std::string(ipmi::sel::logBasePath) + "/" + |
| 191 | std::to_string(requestData->selRecordID); |
| 192 | |
| 193 | iter = std::find(cache::paths.begin(), cache::paths.end(), objPath); |
| 194 | if (iter == cache::paths.end()) |
| 195 | { |
| 196 | *data_len = 0; |
| 197 | return IPMI_CC_SENSOR_INVALID; |
| 198 | } |
| 199 | } |
| 200 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 201 | ipmi::sel::GetSELEntryResponse record{}; |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 202 | |
| 203 | // Convert the log entry into SEL record. |
| 204 | try |
| 205 | { |
| 206 | record = ipmi::sel::convertLogEntrytoSEL(*iter); |
| 207 | } |
| 208 | catch (InternalFailure& e) |
| 209 | { |
| 210 | *data_len = 0; |
| 211 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 212 | } |
| 213 | catch (const std::runtime_error& e) |
| 214 | { |
| 215 | log<level::ERR>(e.what()); |
| 216 | *data_len = 0; |
| 217 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 218 | } |
| 219 | |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 220 | // Identify the next SEL record ID |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 221 | if (iter != cache::paths.end()) |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 222 | { |
| 223 | ++iter; |
| 224 | if (iter == cache::paths.end()) |
| 225 | { |
| 226 | record.nextRecordID = ipmi::sel::lastEntry; |
| 227 | } |
| 228 | else |
| 229 | { |
Vernon Mauery | 185b9f8 | 2018-07-20 10:52:36 -0700 | [diff] [blame] | 230 | namespace fs = std::filesystem; |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 231 | fs::path path(*iter); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 232 | record.nextRecordID = static_cast<uint16_t>( |
| 233 | std::stoul(std::string(path.filename().c_str()))); |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 234 | } |
| 235 | } |
| 236 | else |
| 237 | { |
| 238 | record.nextRecordID = ipmi::sel::lastEntry; |
| 239 | } |
| 240 | |
| 241 | if (requestData->readLength == ipmi::sel::entireRecord) |
| 242 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 243 | std::memcpy(response, &record, sizeof(record)); |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 244 | *data_len = sizeof(record); |
| 245 | } |
| 246 | else |
| 247 | { |
| 248 | if (requestData->offset >= ipmi::sel::selRecordSize || |
| 249 | requestData->readLength > ipmi::sel::selRecordSize) |
| 250 | { |
| 251 | *data_len = 0; |
| 252 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 253 | } |
| 254 | |
| 255 | auto diff = ipmi::sel::selRecordSize - requestData->offset; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 256 | auto readLength = |
| 257 | std::min(diff, static_cast<int>(requestData->readLength)); |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 258 | |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 259 | std::memcpy(response, &record.nextRecordID, |
| 260 | sizeof(record.nextRecordID)); |
| 261 | std::memcpy(static_cast<uint8_t*>(response) + |
| 262 | sizeof(record.nextRecordID), |
| 263 | &record.recordID + requestData->offset, readLength); |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 264 | *data_len = sizeof(record.nextRecordID) + readLength; |
| 265 | } |
| 266 | |
| 267 | return IPMI_CC_OK; |
| 268 | } |
| 269 | |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 270 | ipmi_ret_t deleteSELEntry(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 271 | ipmi_request_t request, ipmi_response_t response, |
| 272 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 273 | { |
Jason M. Bills | 851acb1 | 2019-02-04 14:06:57 -0800 | [diff] [blame] | 274 | if (*data_len != sizeof(ipmi::sel::DeleteSELEntryRequest)) |
| 275 | { |
| 276 | *data_len = 0; |
| 277 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 278 | } |
| 279 | |
Brad Bishop | 1a4117b | 2018-11-21 15:48:18 -0500 | [diff] [blame] | 280 | namespace fs = std::filesystem; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 281 | auto requestData = |
| 282 | reinterpret_cast<const ipmi::sel::DeleteSELEntryRequest*>(request); |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 283 | |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 284 | if (!checkSELReservation(requestData->reservationID)) |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 285 | { |
| 286 | *data_len = 0; |
| 287 | return IPMI_CC_INVALID_RESERVATION_ID; |
| 288 | } |
| 289 | |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 290 | // Per the IPMI spec, need to cancel the reservation when a SEL entry is |
| 291 | // deleted |
| 292 | cancelSELReservation(); |
| 293 | |
Tom Joseph | e59abfb | 2018-08-06 18:46:27 +0530 | [diff] [blame] | 294 | try |
| 295 | { |
| 296 | ipmi::sel::readLoggingObjectPaths(cache::paths); |
| 297 | } |
| 298 | catch (const sdbusplus::exception::SdBusError& e) |
| 299 | { |
| 300 | // readLoggingObjectPaths will throw exception if there are no error |
| 301 | // log entries. |
| 302 | *data_len = 0; |
| 303 | return IPMI_CC_SENSOR_INVALID; |
| 304 | } |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 305 | |
| 306 | if (cache::paths.empty()) |
| 307 | { |
| 308 | *data_len = 0; |
| 309 | return IPMI_CC_SENSOR_INVALID; |
| 310 | } |
| 311 | |
| 312 | ipmi::sel::ObjectPaths::const_iterator iter; |
| 313 | uint16_t delRecordID = 0; |
| 314 | |
| 315 | if (requestData->selRecordID == ipmi::sel::firstEntry) |
| 316 | { |
| 317 | iter = cache::paths.begin(); |
| 318 | fs::path path(*iter); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 319 | delRecordID = static_cast<uint16_t>( |
| 320 | std::stoul(std::string(path.filename().c_str()))); |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 321 | } |
| 322 | else if (requestData->selRecordID == ipmi::sel::lastEntry) |
| 323 | { |
| 324 | iter = cache::paths.end(); |
| 325 | fs::path path(*iter); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 326 | delRecordID = static_cast<uint16_t>( |
| 327 | std::stoul(std::string(path.filename().c_str()))); |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 328 | } |
| 329 | else |
| 330 | { |
| 331 | std::string objPath = std::string(ipmi::sel::logBasePath) + "/" + |
| 332 | std::to_string(requestData->selRecordID); |
| 333 | |
| 334 | iter = std::find(cache::paths.begin(), cache::paths.end(), objPath); |
| 335 | if (iter == cache::paths.end()) |
| 336 | { |
| 337 | *data_len = 0; |
| 338 | return IPMI_CC_SENSOR_INVALID; |
| 339 | } |
| 340 | delRecordID = requestData->selRecordID; |
| 341 | } |
| 342 | |
| 343 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 344 | std::string service; |
| 345 | |
| 346 | try |
| 347 | { |
| 348 | service = ipmi::getService(bus, ipmi::sel::logDeleteIntf, *iter); |
| 349 | } |
| 350 | catch (const std::runtime_error& e) |
| 351 | { |
| 352 | log<level::ERR>(e.what()); |
| 353 | *data_len = 0; |
| 354 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 355 | } |
| 356 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 357 | auto methodCall = bus.new_method_call(service.c_str(), (*iter).c_str(), |
| 358 | ipmi::sel::logDeleteIntf, "Delete"); |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 359 | auto reply = bus.call(methodCall); |
| 360 | if (reply.is_method_error()) |
| 361 | { |
| 362 | *data_len = 0; |
| 363 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 364 | } |
| 365 | |
| 366 | // Invalidate the cache of dbus entry objects. |
| 367 | cache::paths.clear(); |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 368 | std::memcpy(response, &delRecordID, sizeof(delRecordID)); |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 369 | *data_len = sizeof(delRecordID); |
| 370 | |
| 371 | return IPMI_CC_OK; |
| 372 | } |
| 373 | |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 374 | ipmi_ret_t clearSEL(ipmi_netfn_t netfn, ipmi_cmd_t cmd, ipmi_request_t request, |
| 375 | ipmi_response_t response, ipmi_data_len_t data_len, |
| 376 | ipmi_context_t context) |
| 377 | { |
Jason M. Bills | 851acb1 | 2019-02-04 14:06:57 -0800 | [diff] [blame] | 378 | if (*data_len != sizeof(ipmi::sel::ClearSELRequest)) |
| 379 | { |
| 380 | *data_len = 0; |
| 381 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 382 | } |
| 383 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 384 | auto requestData = |
| 385 | reinterpret_cast<const ipmi::sel::ClearSELRequest*>(request); |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 386 | |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 387 | if (!checkSELReservation(requestData->reservationID)) |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 388 | { |
| 389 | *data_len = 0; |
| 390 | return IPMI_CC_INVALID_RESERVATION_ID; |
| 391 | } |
| 392 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 393 | if (requestData->charC != 'C' || requestData->charL != 'L' || |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 394 | requestData->charR != 'R') |
| 395 | { |
| 396 | *data_len = 0; |
| 397 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 398 | } |
| 399 | |
| 400 | uint8_t eraseProgress = ipmi::sel::eraseComplete; |
| 401 | |
| 402 | /* |
| 403 | * Erasure status cannot be fetched from DBUS, so always return erasure |
| 404 | * status as `erase completed`. |
| 405 | */ |
| 406 | if (requestData->eraseOperation == ipmi::sel::getEraseStatus) |
| 407 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 408 | std::memcpy(response, &eraseProgress, sizeof(eraseProgress)); |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 409 | *data_len = sizeof(eraseProgress); |
| 410 | return IPMI_CC_OK; |
| 411 | } |
| 412 | |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 413 | // Per the IPMI spec, need to cancel any reservation when the SEL is cleared |
| 414 | cancelSELReservation(); |
| 415 | |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 416 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
Tom Joseph | e59abfb | 2018-08-06 18:46:27 +0530 | [diff] [blame] | 417 | ipmi::sel::ObjectPaths objectPaths; |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 418 | auto depth = 0; |
| 419 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 420 | auto mapperCall = |
| 421 | bus.new_method_call(ipmi::sel::mapperBusName, ipmi::sel::mapperObjPath, |
| 422 | ipmi::sel::mapperIntf, "GetSubTreePaths"); |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 423 | mapperCall.append(ipmi::sel::logBasePath); |
| 424 | mapperCall.append(depth); |
| 425 | mapperCall.append(ipmi::sel::ObjectPaths({ipmi::sel::logEntryIntf})); |
| 426 | |
Tom Joseph | e59abfb | 2018-08-06 18:46:27 +0530 | [diff] [blame] | 427 | try |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 428 | { |
Tom Joseph | e59abfb | 2018-08-06 18:46:27 +0530 | [diff] [blame] | 429 | auto reply = bus.call(mapperCall); |
| 430 | if (reply.is_method_error()) |
| 431 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 432 | std::memcpy(response, &eraseProgress, sizeof(eraseProgress)); |
Tom Joseph | e59abfb | 2018-08-06 18:46:27 +0530 | [diff] [blame] | 433 | *data_len = sizeof(eraseProgress); |
| 434 | return IPMI_CC_OK; |
| 435 | } |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 436 | |
Tom Joseph | e59abfb | 2018-08-06 18:46:27 +0530 | [diff] [blame] | 437 | reply.read(objectPaths); |
| 438 | if (objectPaths.empty()) |
| 439 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 440 | std::memcpy(response, &eraseProgress, sizeof(eraseProgress)); |
Tom Joseph | e59abfb | 2018-08-06 18:46:27 +0530 | [diff] [blame] | 441 | *data_len = sizeof(eraseProgress); |
| 442 | return IPMI_CC_OK; |
| 443 | } |
| 444 | } |
| 445 | catch (const sdbusplus::exception::SdBusError& e) |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 446 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 447 | std::memcpy(response, &eraseProgress, sizeof(eraseProgress)); |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 448 | *data_len = sizeof(eraseProgress); |
| 449 | return IPMI_CC_OK; |
| 450 | } |
| 451 | |
| 452 | std::string service; |
| 453 | |
| 454 | try |
| 455 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 456 | service = ipmi::getService(bus, ipmi::sel::logDeleteIntf, |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 457 | objectPaths.front()); |
| 458 | } |
| 459 | catch (const std::runtime_error& e) |
| 460 | { |
| 461 | log<level::ERR>(e.what()); |
| 462 | *data_len = 0; |
| 463 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 464 | } |
| 465 | |
| 466 | for (const auto& iter : objectPaths) |
| 467 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 468 | auto methodCall = bus.new_method_call( |
| 469 | service.c_str(), iter.c_str(), ipmi::sel::logDeleteIntf, "Delete"); |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 470 | |
| 471 | auto reply = bus.call(methodCall); |
| 472 | if (reply.is_method_error()) |
| 473 | { |
| 474 | *data_len = 0; |
| 475 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | // Invalidate the cache of dbus entry objects. |
| 480 | cache::paths.clear(); |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 481 | std::memcpy(response, &eraseProgress, sizeof(eraseProgress)); |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 482 | *data_len = sizeof(eraseProgress); |
| 483 | return IPMI_CC_OK; |
| 484 | } |
| 485 | |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 486 | ipmi_ret_t ipmi_storage_get_sel_time(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 487 | ipmi_request_t request, |
| 488 | ipmi_response_t response, |
| 489 | ipmi_data_len_t data_len, |
| 490 | ipmi_context_t context) |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 491 | { |
Jason M. Bills | 851acb1 | 2019-02-04 14:06:57 -0800 | [diff] [blame] | 492 | if (*data_len != 0) |
| 493 | { |
| 494 | *data_len = 0; |
| 495 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 496 | } |
| 497 | |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 498 | using namespace std::chrono; |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 499 | uint64_t host_time_usec = 0; |
| 500 | uint32_t resp = 0; |
Nagaraju Goruganti | 8960b7c | 2018-04-29 22:38:40 -0500 | [diff] [blame] | 501 | std::stringstream hostTime; |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 502 | |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 503 | try |
| 504 | { |
| 505 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 506 | auto service = ipmi::getService(bus, TIME_INTERFACE, HOST_TIME_PATH); |
| 507 | sdbusplus::message::variant<uint64_t> value; |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 508 | |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 509 | // Get host time |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 510 | auto method = bus.new_method_call(service.c_str(), HOST_TIME_PATH, |
| 511 | DBUS_PROPERTIES, "Get"); |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 512 | |
| 513 | method.append(TIME_INTERFACE, PROPERTY_ELAPSED); |
| 514 | auto reply = bus.call(method); |
| 515 | if (reply.is_method_error()) |
| 516 | { |
| 517 | log<level::ERR>("Error getting time", |
| 518 | entry("SERVICE=%s", service.c_str()), |
| 519 | entry("PATH=%s", HOST_TIME_PATH)); |
| 520 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 521 | } |
| 522 | reply.read(value); |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 523 | host_time_usec = std::get<uint64_t>(value); |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 524 | } |
| 525 | catch (InternalFailure& e) |
| 526 | { |
| 527 | log<level::ERR>(e.what()); |
| 528 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 529 | } |
| 530 | catch (const std::runtime_error& e) |
| 531 | { |
| 532 | log<level::ERR>(e.what()); |
| 533 | return IPMI_CC_UNSPECIFIED_ERROR; |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 534 | } |
| 535 | |
Nagaraju Goruganti | 8960b7c | 2018-04-29 22:38:40 -0500 | [diff] [blame] | 536 | hostTime << "Host time:" << getTimeString(host_time_usec); |
| 537 | log<level::DEBUG>(hostTime.str().c_str()); |
| 538 | |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 539 | // Time is really long int but IPMI wants just uint32. This works okay until |
| 540 | // the number of seconds since 1970 overflows uint32 size.. Still a whole |
| 541 | // lot of time here to even think about that. |
| 542 | resp = duration_cast<seconds>(microseconds(host_time_usec)).count(); |
| 543 | resp = htole32(resp); |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 544 | |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 545 | // From the IPMI Spec 2.0, response should be a 32-bit value |
| 546 | *data_len = sizeof(resp); |
| 547 | |
| 548 | // Pack the actual response |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 549 | std::memcpy(response, &resp, *data_len); |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 550 | |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 551 | return IPMI_CC_OK; |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | ipmi_ret_t ipmi_storage_set_sel_time(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 555 | ipmi_request_t request, |
| 556 | ipmi_response_t response, |
| 557 | ipmi_data_len_t data_len, |
| 558 | ipmi_context_t context) |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 559 | { |
Jason M. Bills | 851acb1 | 2019-02-04 14:06:57 -0800 | [diff] [blame] | 560 | if (*data_len != sizeof(uint32_t)) |
| 561 | { |
| 562 | *data_len = 0; |
| 563 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 564 | } |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 565 | using namespace std::chrono; |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 566 | ipmi_ret_t rc = IPMI_CC_OK; |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 567 | uint32_t secs = *static_cast<uint32_t*>(request); |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 568 | *data_len = 0; |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 569 | |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 570 | secs = le32toh(secs); |
| 571 | microseconds usec{seconds(secs)}; |
Norman James | 8233044 | 2015-11-19 16:53:26 -0600 | [diff] [blame] | 572 | |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 573 | try |
| 574 | { |
| 575 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 576 | auto service = ipmi::getService(bus, TIME_INTERFACE, HOST_TIME_PATH); |
| 577 | sdbusplus::message::variant<uint64_t> value{usec.count()}; |
| 578 | |
| 579 | // Set host time |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 580 | auto method = bus.new_method_call(service.c_str(), HOST_TIME_PATH, |
| 581 | DBUS_PROPERTIES, "Set"); |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 582 | |
| 583 | method.append(TIME_INTERFACE, PROPERTY_ELAPSED, value); |
| 584 | auto reply = bus.call(method); |
| 585 | if (reply.is_method_error()) |
| 586 | { |
| 587 | log<level::ERR>("Error setting time", |
| 588 | entry("SERVICE=%s", service.c_str()), |
| 589 | entry("PATH=%s", HOST_TIME_PATH)); |
| 590 | rc = IPMI_CC_UNSPECIFIED_ERROR; |
| 591 | } |
Norman James | 8233044 | 2015-11-19 16:53:26 -0600 | [diff] [blame] | 592 | } |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 593 | catch (InternalFailure& e) |
| 594 | { |
| 595 | log<level::ERR>(e.what()); |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 596 | rc = IPMI_CC_UNSPECIFIED_ERROR; |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 597 | } |
Lei YU | e893939 | 2017-06-15 10:45:05 +0800 | [diff] [blame] | 598 | catch (const std::runtime_error& e) |
| 599 | { |
| 600 | log<level::ERR>(e.what()); |
Norman James | 8233044 | 2015-11-19 16:53:26 -0600 | [diff] [blame] | 601 | rc = IPMI_CC_UNSPECIFIED_ERROR; |
| 602 | } |
Vishwanatha Subbanna | 5fba7a6 | 2016-09-01 14:06:07 +0530 | [diff] [blame] | 603 | |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 604 | return rc; |
| 605 | } |
| 606 | |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 607 | ipmi_ret_t ipmi_storage_reserve_sel(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 608 | ipmi_request_t request, |
| 609 | ipmi_response_t response, |
| 610 | ipmi_data_len_t data_len, |
| 611 | ipmi_context_t context) |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 612 | { |
Jason M. Bills | 851acb1 | 2019-02-04 14:06:57 -0800 | [diff] [blame] | 613 | if (*data_len != 0) |
| 614 | { |
| 615 | *data_len = 0; |
| 616 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 617 | } |
| 618 | |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 619 | ipmi_ret_t rc = IPMI_CC_OK; |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 620 | unsigned short selResID = reserveSel(); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 621 | |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 622 | *data_len = sizeof(selResID); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 623 | |
| 624 | // Pack the actual response |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 625 | std::memcpy(response, &selResID, *data_len); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 626 | |
| 627 | return rc; |
| 628 | } |
| 629 | |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 630 | ipmi_ret_t ipmi_storage_add_sel(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 631 | ipmi_request_t request, |
| 632 | ipmi_response_t response, |
| 633 | ipmi_data_len_t data_len, |
| 634 | ipmi_context_t context) |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 635 | { |
Jason M. Bills | 851acb1 | 2019-02-04 14:06:57 -0800 | [diff] [blame] | 636 | if (*data_len != sizeof(ipmi_add_sel_request_t)) |
| 637 | { |
| 638 | *data_len = 0; |
| 639 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 640 | } |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 641 | |
| 642 | ipmi_ret_t rc = IPMI_CC_OK; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 643 | ipmi_add_sel_request_t* p = (ipmi_add_sel_request_t*)request; |
Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 644 | uint16_t recordid; |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 645 | |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 646 | // Per the IPMI spec, need to cancel the reservation when a SEL entry is |
| 647 | // added |
| 648 | cancelSELReservation(); |
| 649 | |
Chris Austen | 313d95b | 2015-10-31 12:55:30 -0500 | [diff] [blame] | 650 | recordid = ((uint16_t)p->eventdata[1] << 8) | p->eventdata[2]; |
Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 651 | |
Jason M. Bills | 13e67c8 | 2018-09-10 14:12:16 -0700 | [diff] [blame] | 652 | *data_len = sizeof(recordid); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 653 | |
| 654 | // Pack the actual response |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 655 | std::memcpy(response, &p->eventdata[1], 2); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 656 | |
Tom Joseph | b647d5b | 2017-10-31 17:25:33 +0530 | [diff] [blame] | 657 | // Hostboot sends SEL with OEM record type 0xDE to indicate that there is |
| 658 | // a maintenance procedure associated with eSEL record. |
| 659 | static constexpr auto procedureType = 0xDE; |
| 660 | if (p->recordtype == procedureType) |
| 661 | { |
| 662 | // In the OEM record type 0xDE, byte 11 in the SEL record indicate the |
| 663 | // procedure number. |
| 664 | createProcedureLogEntry(p->sensortype); |
| 665 | } |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 666 | |
| 667 | return rc; |
| 668 | } |
| 669 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 670 | // Read FRU info area |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 671 | ipmi_ret_t ipmi_storage_get_fru_inv_area_info( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 672 | ipmi_netfn_t netfn, ipmi_cmd_t cmd, ipmi_request_t request, |
| 673 | ipmi_response_t response, ipmi_data_len_t data_len, ipmi_context_t context) |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 674 | { |
| 675 | ipmi_ret_t rc = IPMI_CC_OK; |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 676 | const FruInvenAreaInfoRequest* reqptr = |
| 677 | reinterpret_cast<const FruInvenAreaInfoRequest*>(request); |
Tom Joseph | 187f564 | 2018-03-29 13:49:06 +0530 | [diff] [blame] | 678 | |
| 679 | auto iter = frus.find(reqptr->fruID); |
| 680 | if (iter == frus.end()) |
| 681 | { |
| 682 | *data_len = 0; |
| 683 | return IPMI_CC_SENSOR_INVALID; |
| 684 | } |
| 685 | |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 686 | try |
| 687 | { |
| 688 | const auto& fruArea = getFruAreaData(reqptr->fruID); |
| 689 | auto size = static_cast<uint16_t>(fruArea.size()); |
| 690 | FruInvenAreaInfoResponse resp; |
| 691 | resp.sizems = size >> 8; |
| 692 | resp.sizels = size; |
| 693 | resp.access = static_cast<uint8_t>(AccessMode::bytes); |
| 694 | |
| 695 | *data_len = sizeof(resp); |
| 696 | |
| 697 | // Pack the actual response |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 698 | std::memcpy(response, &resp, *data_len); |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 699 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 700 | catch (const InternalFailure& e) |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 701 | { |
| 702 | rc = IPMI_CC_UNSPECIFIED_ERROR; |
| 703 | *data_len = 0; |
| 704 | log<level::ERR>(e.what()); |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 705 | } |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 706 | return rc; |
| 707 | } |
| 708 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 709 | // Read FRU data |
| 710 | ipmi_ret_t ipmi_storage_read_fru_data(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 711 | ipmi_request_t request, |
| 712 | ipmi_response_t response, |
| 713 | ipmi_data_len_t data_len, |
| 714 | ipmi_context_t context) |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 715 | { |
| 716 | ipmi_ret_t rc = IPMI_CC_OK; |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 717 | const ReadFruDataRequest* reqptr = |
Nagaraju Goruganti | 7f2d7c9 | 2018-03-21 11:18:30 -0500 | [diff] [blame] | 718 | reinterpret_cast<const ReadFruDataRequest*>(request); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 719 | auto resptr = reinterpret_cast<ReadFruDataResponse*>(response); |
Tom Joseph | 187f564 | 2018-03-29 13:49:06 +0530 | [diff] [blame] | 720 | |
| 721 | auto iter = frus.find(reqptr->fruID); |
| 722 | if (iter == frus.end()) |
| 723 | { |
| 724 | *data_len = 0; |
| 725 | return IPMI_CC_SENSOR_INVALID; |
| 726 | } |
| 727 | |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 728 | auto offset = |
| 729 | static_cast<uint16_t>(reqptr->offsetMS << 8 | reqptr->offsetLS); |
| 730 | try |
| 731 | { |
| 732 | const auto& fruArea = getFruAreaData(reqptr->fruID); |
| 733 | auto size = fruArea.size(); |
Nagaraju Goruganti | 7f2d7c9 | 2018-03-21 11:18:30 -0500 | [diff] [blame] | 734 | |
Tom Joseph | efcd68b | 2018-04-26 18:46:27 +0530 | [diff] [blame] | 735 | if (offset >= size) |
| 736 | { |
| 737 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 738 | } |
| 739 | |
Nagaraju Goruganti | 7f2d7c9 | 2018-03-21 11:18:30 -0500 | [diff] [blame] | 740 | // Write the count of response data. |
| 741 | if ((offset + reqptr->count) <= size) |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 742 | { |
Nagaraju Goruganti | 7f2d7c9 | 2018-03-21 11:18:30 -0500 | [diff] [blame] | 743 | resptr->count = reqptr->count; |
| 744 | } |
| 745 | else |
| 746 | { |
| 747 | resptr->count = size - offset; |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 748 | } |
Ratan Gupta | 2848d60 | 2018-01-31 20:39:20 +0530 | [diff] [blame] | 749 | |
Ratan Gupta | 2848d60 | 2018-01-31 20:39:20 +0530 | [diff] [blame] | 750 | std::copy((fruArea.begin() + offset), |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 751 | (fruArea.begin() + offset + resptr->count), resptr->data); |
Ratan Gupta | 2848d60 | 2018-01-31 20:39:20 +0530 | [diff] [blame] | 752 | |
Nagaraju Goruganti | 7f2d7c9 | 2018-03-21 11:18:30 -0500 | [diff] [blame] | 753 | *data_len = resptr->count + 1; // additional one byte for count |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 754 | } |
| 755 | catch (const InternalFailure& e) |
| 756 | { |
| 757 | rc = IPMI_CC_UNSPECIFIED_ERROR; |
| 758 | *data_len = 0; |
| 759 | log<level::ERR>(e.what()); |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 760 | } |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 761 | return rc; |
| 762 | } |
| 763 | |
Dhruvaraj Subhashchandran | e66c3b0 | 2018-02-07 01:21:56 -0600 | [diff] [blame] | 764 | ipmi_ret_t ipmi_get_repository_info(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 765 | ipmi_request_t request, |
| 766 | ipmi_response_t response, |
| 767 | ipmi_data_len_t data_len, |
| 768 | ipmi_context_t context) |
Dhruvaraj Subhashchandran | e66c3b0 | 2018-02-07 01:21:56 -0600 | [diff] [blame] | 769 | { |
| 770 | constexpr auto sdrVersion = 0x51; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 771 | auto responseData = reinterpret_cast<GetRepositoryInfoResponse*>(response); |
Dhruvaraj Subhashchandran | e66c3b0 | 2018-02-07 01:21:56 -0600 | [diff] [blame] | 772 | |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 773 | std::memset(responseData, 0, sizeof(GetRepositoryInfoResponse)); |
Dhruvaraj Subhashchandran | e66c3b0 | 2018-02-07 01:21:56 -0600 | [diff] [blame] | 774 | |
| 775 | responseData->sdrVersion = sdrVersion; |
| 776 | |
| 777 | uint16_t records = frus.size() + sensors.size(); |
| 778 | responseData->recordCountMs = records >> 8; |
| 779 | responseData->recordCountLs = records; |
| 780 | |
| 781 | responseData->freeSpace[0] = 0xFF; |
| 782 | responseData->freeSpace[1] = 0xFF; |
| 783 | |
| 784 | *data_len = sizeof(GetRepositoryInfoResponse); |
| 785 | |
| 786 | return IPMI_CC_OK; |
| 787 | } |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 788 | |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 789 | void register_netfn_storage_functions() |
| 790 | { |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 791 | // <Wildcard Command> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 792 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_WILDCARD, NULL, |
| 793 | ipmi_storage_wildcard, PRIVILEGE_USER); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 794 | |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 795 | // <Get SEL Info> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 796 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_GET_SEL_INFO, NULL, |
| 797 | getSELInfo, PRIVILEGE_USER); |
Tom Joseph | 6f7deaa | 2017-06-30 19:03:54 +0530 | [diff] [blame] | 798 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 799 | // <Get SEL Time> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 800 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_GET_SEL_TIME, NULL, |
| 801 | ipmi_storage_get_sel_time, PRIVILEGE_USER); |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 802 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 803 | // <Set SEL Time> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 804 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_SET_SEL_TIME, NULL, |
| 805 | ipmi_storage_set_sel_time, PRIVILEGE_OPERATOR); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 806 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 807 | // <Reserve SEL> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 808 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_RESERVE_SEL, NULL, |
| 809 | ipmi_storage_reserve_sel, PRIVILEGE_USER); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 810 | |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 811 | // <Get SEL Entry> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 812 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_GET_SEL_ENTRY, NULL, |
| 813 | getSELEntry, PRIVILEGE_USER); |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 814 | |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 815 | // <Delete SEL Entry> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 816 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_DELETE_SEL, NULL, |
| 817 | deleteSELEntry, PRIVILEGE_OPERATOR); |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 818 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 819 | // <Add SEL Entry> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 820 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_ADD_SEL, NULL, |
| 821 | ipmi_storage_add_sel, PRIVILEGE_OPERATOR); |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 822 | // <Clear SEL> |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 823 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_CLEAR_SEL, NULL, clearSEL, |
| 824 | PRIVILEGE_OPERATOR); |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 825 | // <Get FRU Inventory Area Info> |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 826 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_GET_FRU_INV_AREA_INFO, NULL, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 827 | ipmi_storage_get_fru_inv_area_info, |
| 828 | PRIVILEGE_OPERATOR); |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 829 | |
| 830 | // <Add READ FRU Data |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 831 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_READ_FRU_DATA, NULL, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 832 | ipmi_storage_read_fru_data, PRIVILEGE_OPERATOR); |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 833 | |
Dhruvaraj Subhashchandran | e66c3b0 | 2018-02-07 01:21:56 -0600 | [diff] [blame] | 834 | // <Get Repository Info> |
| 835 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_GET_REPOSITORY_INFO, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 836 | nullptr, ipmi_get_repository_info, PRIVILEGE_USER); |
Dhruvaraj Subhashchandran | e66c3b0 | 2018-02-07 01:21:56 -0600 | [diff] [blame] | 837 | |
Tom Joseph | 5ca5095 | 2018-02-22 00:33:38 +0530 | [diff] [blame] | 838 | // <Reserve SDR Repository> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 839 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_RESERVE_SDR, nullptr, |
| 840 | ipmi_sen_reserve_sdr, PRIVILEGE_USER); |
Tom Joseph | 5ca5095 | 2018-02-22 00:33:38 +0530 | [diff] [blame] | 841 | |
| 842 | // <Get SDR> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 843 | ipmi_register_callback(NETFUN_STORAGE, IPMI_CMD_GET_SDR, nullptr, |
| 844 | ipmi_sen_get_sdr, PRIVILEGE_USER); |
Tom Joseph | 5ca5095 | 2018-02-22 00:33:38 +0530 | [diff] [blame] | 845 | |
Marri Devender Rao | 908f750 | 2017-07-10 01:49:54 -0500 | [diff] [blame] | 846 | ipmi::fru::registerCallbackHandler(); |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 847 | return; |
| 848 | } |