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