Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 1 | #include "dcmihandler.hpp" |
Patrick Williams | 37af733 | 2016-09-02 21:21:42 -0500 | [diff] [blame] | 2 | #include "host-ipmid/ipmid-api.h" |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 3 | #include <phosphor-logging/elog-errors.hpp> |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 4 | #include <phosphor-logging/log.hpp> |
| 5 | #include <sdbusplus/bus.hpp> |
| 6 | #include "utils.hpp" |
Chris Austen | 1810bec | 2015-10-13 12:12:39 -0500 | [diff] [blame] | 7 | #include <stdio.h> |
| 8 | #include <string.h> |
| 9 | #include <stdint.h> |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 10 | #include <fstream> |
| 11 | #include <bitset> |
| 12 | #include "nlohmann/json.hpp" |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 13 | #include "xyz/openbmc_project/Common/error.hpp" |
| 14 | |
| 15 | using namespace phosphor::logging; |
| 16 | using InternalFailure = |
| 17 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Chris Austen | 1810bec | 2015-10-13 12:12:39 -0500 | [diff] [blame] | 18 | |
| 19 | void register_netfn_dcmi_functions() __attribute__((constructor)); |
| 20 | |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 21 | constexpr auto PCAP_PATH = "/xyz/openbmc_project/control/host0/power_cap"; |
| 22 | constexpr auto PCAP_INTERFACE = "xyz.openbmc_project.Control.Power.Cap"; |
| 23 | |
| 24 | constexpr auto POWER_CAP_PROP = "PowerCap"; |
| 25 | constexpr auto POWER_CAP_ENABLE_PROP = "PowerCapEnable"; |
| 26 | |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 27 | constexpr auto DCMI_PARAMETER_REVISION = 2; |
| 28 | constexpr auto DCMI_SPEC_MAJOR_VERSION = 1; |
| 29 | constexpr auto DCMI_SPEC_MINOR_VERSION = 5; |
| 30 | constexpr auto DCMI_CAP_JSON_FILE = "/usr/share/ipmi-providers/dcmi_cap.json"; |
| 31 | |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 32 | using namespace phosphor::logging; |
| 33 | |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 34 | namespace dcmi |
| 35 | { |
| 36 | |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 37 | uint32_t getPcap(sdbusplus::bus::bus& bus) |
| 38 | { |
| 39 | auto settingService = ipmi::getService(bus, |
Andrew Geissler | a944d43 | 2017-07-19 17:53:44 -0500 | [diff] [blame] | 40 | PCAP_INTERFACE,PCAP_PATH); |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 41 | |
| 42 | auto method = bus.new_method_call(settingService.c_str(), |
| 43 | PCAP_PATH, |
| 44 | "org.freedesktop.DBus.Properties", |
| 45 | "Get"); |
| 46 | |
| 47 | method.append(PCAP_INTERFACE, POWER_CAP_PROP); |
| 48 | auto reply = bus.call(method); |
| 49 | |
| 50 | if (reply.is_method_error()) |
| 51 | { |
| 52 | log<level::ERR>("Error in getPcap prop"); |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 53 | elog<InternalFailure>(); |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 54 | } |
| 55 | sdbusplus::message::variant<uint32_t> pcap; |
| 56 | reply.read(pcap); |
| 57 | |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 58 | return pcap.get<uint32_t>(); |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | bool getPcapEnabled(sdbusplus::bus::bus& bus) |
| 62 | { |
| 63 | auto settingService = ipmi::getService(bus, |
Andrew Geissler | a944d43 | 2017-07-19 17:53:44 -0500 | [diff] [blame] | 64 | PCAP_INTERFACE,PCAP_PATH); |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 65 | |
| 66 | auto method = bus.new_method_call(settingService.c_str(), |
| 67 | PCAP_PATH, |
| 68 | "org.freedesktop.DBus.Properties", |
| 69 | "Get"); |
| 70 | |
| 71 | method.append(PCAP_INTERFACE, POWER_CAP_ENABLE_PROP); |
| 72 | auto reply = bus.call(method); |
| 73 | |
| 74 | if (reply.is_method_error()) |
| 75 | { |
| 76 | log<level::ERR>("Error in getPcapEnabled prop"); |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 77 | elog<InternalFailure>(); |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 78 | } |
| 79 | sdbusplus::message::variant<bool> pcapEnabled; |
| 80 | reply.read(pcapEnabled); |
| 81 | |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 82 | return pcapEnabled.get<bool>(); |
Andrew Geissler | 50c0c8f | 2017-07-11 16:18:51 -0500 | [diff] [blame] | 83 | } |
Chris Austen | 1810bec | 2015-10-13 12:12:39 -0500 | [diff] [blame] | 84 | |
Tom Joseph | 46fa37d | 2017-07-26 18:11:55 +0530 | [diff] [blame] | 85 | void setPcap(sdbusplus::bus::bus& bus, const uint32_t powerCap) |
| 86 | { |
| 87 | auto service = ipmi::getService(bus, PCAP_INTERFACE, PCAP_PATH); |
| 88 | |
| 89 | auto method = bus.new_method_call(service.c_str(), |
| 90 | PCAP_PATH, |
| 91 | "org.freedesktop.DBus.Properties", |
| 92 | "Set"); |
| 93 | |
| 94 | method.append(PCAP_INTERFACE, POWER_CAP_PROP); |
| 95 | method.append(sdbusplus::message::variant<uint32_t>(powerCap)); |
| 96 | |
| 97 | auto reply = bus.call(method); |
| 98 | |
| 99 | if (reply.is_method_error()) |
| 100 | { |
| 101 | log<level::ERR>("Error in setPcap property"); |
| 102 | elog<InternalFailure>(); |
| 103 | } |
| 104 | } |
| 105 | |
Tom Joseph | 6c8d51b | 2017-07-26 18:18:06 +0530 | [diff] [blame] | 106 | void setPcapEnable(sdbusplus::bus::bus& bus, bool enabled) |
| 107 | { |
| 108 | auto service = ipmi::getService(bus, PCAP_INTERFACE, PCAP_PATH); |
| 109 | |
| 110 | auto method = bus.new_method_call(service.c_str(), |
| 111 | PCAP_PATH, |
| 112 | "org.freedesktop.DBus.Properties", |
| 113 | "Set"); |
| 114 | |
| 115 | method.append(PCAP_INTERFACE, POWER_CAP_ENABLE_PROP); |
| 116 | method.append(sdbusplus::message::variant<bool>(enabled)); |
| 117 | |
| 118 | auto reply = bus.call(method); |
| 119 | |
| 120 | if (reply.is_method_error()) |
| 121 | { |
| 122 | log<level::ERR>("Error in setPcapEnabled property"); |
| 123 | elog<InternalFailure>(); |
| 124 | } |
| 125 | } |
| 126 | |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 127 | void readAssetTagObjectTree(dcmi::assettag::ObjectTree& objectTree) |
| 128 | { |
| 129 | static constexpr auto mapperBusName = "xyz.openbmc_project.ObjectMapper"; |
| 130 | static constexpr auto mapperObjPath = "/xyz/openbmc_project/object_mapper"; |
| 131 | static constexpr auto mapperIface = "xyz.openbmc_project.ObjectMapper"; |
| 132 | static constexpr auto inventoryRoot = "/xyz/openbmc_project/inventory/"; |
| 133 | |
| 134 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 135 | auto depth = 0; |
| 136 | |
| 137 | auto mapperCall = bus.new_method_call(mapperBusName, |
| 138 | mapperObjPath, |
| 139 | mapperIface, |
| 140 | "GetSubTree"); |
| 141 | |
| 142 | mapperCall.append(inventoryRoot); |
| 143 | mapperCall.append(depth); |
| 144 | mapperCall.append(std::vector<std::string>({dcmi::assetTagIntf})); |
| 145 | |
| 146 | auto mapperReply = bus.call(mapperCall); |
| 147 | if (mapperReply.is_method_error()) |
| 148 | { |
| 149 | log<level::ERR>("Error in mapper call"); |
| 150 | elog<InternalFailure>(); |
| 151 | } |
| 152 | |
| 153 | mapperReply.read(objectTree); |
| 154 | |
| 155 | if (objectTree.empty()) |
| 156 | { |
| 157 | log<level::ERR>("AssetTag property is not populated"); |
| 158 | elog<InternalFailure>(); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | std::string readAssetTag() |
| 163 | { |
| 164 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 165 | dcmi::assettag::ObjectTree objectTree; |
| 166 | |
| 167 | // Read the object tree with the inventory root to figure out the object |
| 168 | // that has implemented the Asset tag interface. |
| 169 | readAssetTagObjectTree(objectTree); |
| 170 | |
| 171 | auto method = bus.new_method_call( |
| 172 | (objectTree.begin()->second.begin()->first).c_str(), |
| 173 | (objectTree.begin()->first).c_str(), |
| 174 | dcmi::propIntf, |
| 175 | "Get"); |
| 176 | method.append(dcmi::assetTagIntf); |
| 177 | method.append(dcmi::assetTagProp); |
| 178 | |
| 179 | auto reply = bus.call(method); |
| 180 | if (reply.is_method_error()) |
| 181 | { |
| 182 | log<level::ERR>("Error in reading asset tag"); |
| 183 | elog<InternalFailure>(); |
| 184 | } |
| 185 | |
| 186 | sdbusplus::message::variant<std::string> assetTag; |
| 187 | reply.read(assetTag); |
| 188 | |
| 189 | return assetTag.get<std::string>(); |
| 190 | } |
| 191 | |
Tom Joseph | be5b989 | 2017-07-15 00:55:23 +0530 | [diff] [blame] | 192 | void writeAssetTag(const std::string& assetTag) |
| 193 | { |
| 194 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 195 | dcmi::assettag::ObjectTree objectTree; |
| 196 | |
| 197 | // Read the object tree with the inventory root to figure out the object |
| 198 | // that has implemented the Asset tag interface. |
| 199 | readAssetTagObjectTree(objectTree); |
| 200 | |
| 201 | auto method = bus.new_method_call( |
| 202 | (objectTree.begin()->second.begin()->first).c_str(), |
| 203 | (objectTree.begin()->first).c_str(), |
| 204 | dcmi::propIntf, |
| 205 | "Set"); |
| 206 | method.append(dcmi::assetTagIntf); |
| 207 | method.append(dcmi::assetTagProp); |
| 208 | method.append(sdbusplus::message::variant<std::string>(assetTag)); |
| 209 | |
| 210 | auto reply = bus.call(method); |
| 211 | if (reply.is_method_error()) |
| 212 | { |
| 213 | log<level::ERR>("Error in writing asset tag"); |
| 214 | elog<InternalFailure>(); |
| 215 | } |
| 216 | } |
| 217 | |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 218 | std::string getHostName(void) |
| 219 | { |
| 220 | sdbusplus::bus::bus bus{ ipmid_get_sd_bus_connection() }; |
| 221 | |
| 222 | auto service = ipmi::getService(bus, networkConfigIntf, networkConfigObj); |
| 223 | auto value = ipmi::getDbusProperty(bus, service, |
| 224 | networkConfigObj, networkConfigIntf, hostNameProp); |
| 225 | |
| 226 | return value.get<std::string>(); |
| 227 | } |
| 228 | |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 229 | } // namespace dcmi |
Chris Austen | 1810bec | 2015-10-13 12:12:39 -0500 | [diff] [blame] | 230 | |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 231 | ipmi_ret_t getPowerLimit(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 232 | ipmi_request_t request, ipmi_response_t response, |
| 233 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 234 | { |
| 235 | auto requestData = reinterpret_cast<const dcmi::GetPowerLimitRequest*> |
| 236 | (request); |
| 237 | std::vector<uint8_t> outPayload(sizeof(dcmi::GetPowerLimitResponse)); |
| 238 | auto responseData = reinterpret_cast<dcmi::GetPowerLimitResponse*> |
| 239 | (outPayload.data()); |
| 240 | |
| 241 | if (requestData->groupID != dcmi::groupExtId) |
| 242 | { |
| 243 | *data_len = 0; |
| 244 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 245 | } |
| 246 | |
| 247 | sdbusplus::bus::bus sdbus {ipmid_get_sd_bus_connection()}; |
| 248 | uint32_t pcapValue = 0; |
| 249 | bool pcapEnable = false; |
| 250 | |
| 251 | try |
| 252 | { |
| 253 | pcapValue = dcmi::getPcap(sdbus); |
| 254 | pcapEnable = dcmi::getPcapEnabled(sdbus); |
| 255 | } |
| 256 | catch (InternalFailure& e) |
| 257 | { |
| 258 | *data_len = 0; |
| 259 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 260 | } |
| 261 | |
| 262 | responseData->groupID = dcmi::groupExtId; |
| 263 | |
| 264 | /* |
| 265 | * Exception action if power limit is exceeded and cannot be controlled |
| 266 | * with the correction time limit is hardcoded to Hard Power Off system |
| 267 | * and log event to SEL. |
| 268 | */ |
| 269 | constexpr auto exception = 0x01; |
| 270 | responseData->exceptionAction = exception; |
| 271 | |
| 272 | responseData->powerLimit = static_cast<uint16_t>(pcapValue); |
| 273 | |
| 274 | /* |
| 275 | * Correction time limit and Statistics sampling period is currently not |
| 276 | * populated. |
| 277 | */ |
| 278 | |
| 279 | *data_len = outPayload.size(); |
| 280 | memcpy(response, outPayload.data(), *data_len); |
| 281 | |
| 282 | if (pcapEnable) |
| 283 | { |
| 284 | return IPMI_CC_OK; |
| 285 | } |
| 286 | else |
| 287 | { |
| 288 | return IPMI_DCMI_CC_NO_ACTIVE_POWER_LIMIT; |
| 289 | } |
| 290 | } |
| 291 | |
Tom Joseph | 46fa37d | 2017-07-26 18:11:55 +0530 | [diff] [blame] | 292 | ipmi_ret_t setPowerLimit(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 293 | ipmi_request_t request, ipmi_response_t response, |
| 294 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 295 | { |
| 296 | auto requestData = reinterpret_cast<const dcmi::SetPowerLimitRequest*> |
| 297 | (request); |
| 298 | std::vector<uint8_t> outPayload(sizeof(dcmi::SetPowerLimitResponse)); |
| 299 | auto responseData = reinterpret_cast<dcmi::SetPowerLimitResponse*> |
| 300 | (outPayload.data()); |
| 301 | |
| 302 | if (requestData->groupID != dcmi::groupExtId) |
| 303 | { |
| 304 | *data_len = 0; |
| 305 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 306 | } |
| 307 | |
| 308 | sdbusplus::bus::bus sdbus {ipmid_get_sd_bus_connection()}; |
| 309 | |
| 310 | // Only process the power limit requested in watts. |
| 311 | try |
| 312 | { |
| 313 | dcmi::setPcap(sdbus, requestData->powerLimit); |
| 314 | } |
| 315 | catch (InternalFailure& e) |
| 316 | { |
| 317 | *data_len = 0; |
| 318 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 319 | } |
| 320 | |
| 321 | log<level::INFO>("Set Power Cap", |
| 322 | entry("POWERCAP=%u", requestData->powerLimit)); |
| 323 | |
| 324 | responseData->groupID = dcmi::groupExtId; |
| 325 | memcpy(response, outPayload.data(), outPayload.size()); |
| 326 | *data_len = outPayload.size(); |
| 327 | |
| 328 | return IPMI_CC_OK; |
| 329 | } |
| 330 | |
Tom Joseph | 6c8d51b | 2017-07-26 18:18:06 +0530 | [diff] [blame] | 331 | ipmi_ret_t applyPowerLimit(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 332 | ipmi_request_t request, ipmi_response_t response, |
| 333 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 334 | { |
| 335 | auto requestData = reinterpret_cast<const dcmi::ApplyPowerLimitRequest*> |
| 336 | (request); |
| 337 | std::vector<uint8_t> outPayload(sizeof(dcmi::ApplyPowerLimitResponse)); |
| 338 | auto responseData = reinterpret_cast<dcmi::ApplyPowerLimitResponse*> |
| 339 | (outPayload.data()); |
| 340 | |
| 341 | if (requestData->groupID != dcmi::groupExtId) |
| 342 | { |
| 343 | *data_len = 0; |
| 344 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 345 | } |
| 346 | |
| 347 | sdbusplus::bus::bus sdbus {ipmid_get_sd_bus_connection()}; |
| 348 | |
| 349 | try |
| 350 | { |
| 351 | dcmi::setPcapEnable(sdbus, |
| 352 | static_cast<bool>(requestData->powerLimitAction)); |
| 353 | } |
| 354 | catch (InternalFailure& e) |
| 355 | { |
| 356 | *data_len = 0; |
| 357 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 358 | } |
| 359 | |
| 360 | log<level::INFO>("Set Power Cap Enable", |
| 361 | entry("POWERCAPENABLE=%u", requestData->powerLimitAction)); |
| 362 | |
| 363 | responseData->groupID = dcmi::groupExtId; |
| 364 | memcpy(response, outPayload.data(), outPayload.size()); |
| 365 | *data_len = outPayload.size(); |
| 366 | |
| 367 | return IPMI_CC_OK; |
| 368 | } |
| 369 | |
Tom Joseph | 6f6dd4d | 2017-07-12 20:07:11 +0530 | [diff] [blame] | 370 | ipmi_ret_t getAssetTag(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 371 | ipmi_request_t request, ipmi_response_t response, |
| 372 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 373 | { |
| 374 | auto requestData = reinterpret_cast<const dcmi::GetAssetTagRequest*> |
| 375 | (request); |
| 376 | std::vector<uint8_t> outPayload(sizeof(dcmi::GetAssetTagResponse)); |
| 377 | auto responseData = reinterpret_cast<dcmi::GetAssetTagResponse*> |
| 378 | (outPayload.data()); |
| 379 | |
| 380 | if (requestData->groupID != dcmi::groupExtId) |
| 381 | { |
| 382 | *data_len = 0; |
| 383 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 384 | } |
| 385 | |
| 386 | // Verify offset to read and number of bytes to read are not exceeding the |
| 387 | // range. |
| 388 | if ((requestData->offset > dcmi::assetTagMaxOffset) || |
| 389 | (requestData->bytes > dcmi::maxBytes) || |
| 390 | ((requestData->offset + requestData->bytes) > dcmi::assetTagMaxSize)) |
| 391 | { |
| 392 | *data_len = 0; |
| 393 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 394 | } |
| 395 | |
| 396 | std::string assetTag; |
| 397 | |
| 398 | try |
| 399 | { |
| 400 | assetTag = dcmi::readAssetTag(); |
| 401 | } |
| 402 | catch (InternalFailure& e) |
| 403 | { |
| 404 | *data_len = 0; |
| 405 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 406 | } |
| 407 | |
| 408 | responseData->groupID = dcmi::groupExtId; |
| 409 | |
| 410 | // Return if the asset tag is not populated. |
| 411 | if (!assetTag.size()) |
| 412 | { |
| 413 | responseData->tagLength = 0; |
| 414 | memcpy(response, outPayload.data(), outPayload.size()); |
| 415 | *data_len = outPayload.size(); |
| 416 | return IPMI_CC_OK; |
| 417 | } |
| 418 | |
| 419 | // If the asset tag is longer than 63 bytes, restrict it to 63 bytes to suit |
| 420 | // Get Asset Tag command. |
| 421 | if (assetTag.size() > dcmi::assetTagMaxSize) |
| 422 | { |
| 423 | assetTag.resize(dcmi::assetTagMaxSize); |
| 424 | } |
| 425 | |
| 426 | // If the requested offset is beyond the asset tag size. |
| 427 | if (requestData->offset >= assetTag.size()) |
| 428 | { |
| 429 | *data_len = 0; |
| 430 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 431 | } |
| 432 | |
| 433 | auto returnData = assetTag.substr(requestData->offset, requestData->bytes); |
| 434 | |
| 435 | responseData->tagLength = assetTag.size(); |
| 436 | |
| 437 | memcpy(response, outPayload.data(), outPayload.size()); |
| 438 | memcpy(static_cast<uint8_t*>(response) + outPayload.size(), |
| 439 | returnData.data(), returnData.size()); |
| 440 | *data_len = outPayload.size() + returnData.size(); |
| 441 | |
| 442 | return IPMI_CC_OK; |
| 443 | } |
| 444 | |
Tom Joseph | 545dd23 | 2017-07-12 20:20:49 +0530 | [diff] [blame] | 445 | ipmi_ret_t setAssetTag(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 446 | ipmi_request_t request, ipmi_response_t response, |
| 447 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 448 | { |
| 449 | auto requestData = reinterpret_cast<const dcmi::SetAssetTagRequest*> |
| 450 | (request); |
| 451 | std::vector<uint8_t> outPayload(sizeof(dcmi::SetAssetTagResponse)); |
| 452 | auto responseData = reinterpret_cast<dcmi::SetAssetTagResponse*> |
| 453 | (outPayload.data()); |
| 454 | |
| 455 | if (requestData->groupID != dcmi::groupExtId) |
| 456 | { |
| 457 | *data_len = 0; |
| 458 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 459 | } |
| 460 | |
| 461 | // Verify offset to read and number of bytes to read are not exceeding the |
| 462 | // range. |
| 463 | if ((requestData->offset > dcmi::assetTagMaxOffset) || |
| 464 | (requestData->bytes > dcmi::maxBytes) || |
| 465 | ((requestData->offset + requestData->bytes) > dcmi::assetTagMaxSize)) |
| 466 | { |
| 467 | *data_len = 0; |
| 468 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 469 | } |
| 470 | |
| 471 | std::string assetTag; |
| 472 | |
| 473 | try |
| 474 | { |
| 475 | assetTag = dcmi::readAssetTag(); |
| 476 | |
| 477 | if (requestData->offset > assetTag.size()) |
| 478 | { |
| 479 | *data_len = 0; |
| 480 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 481 | } |
| 482 | |
| 483 | assetTag.replace(requestData->offset, |
| 484 | assetTag.size() - requestData->offset, |
| 485 | static_cast<const char*>(request) + |
| 486 | sizeof(dcmi::SetAssetTagRequest), |
| 487 | requestData->bytes); |
| 488 | |
| 489 | dcmi::writeAssetTag(assetTag); |
| 490 | |
| 491 | responseData->groupID = dcmi::groupExtId; |
| 492 | responseData->tagLength = assetTag.size(); |
| 493 | memcpy(response, outPayload.data(), outPayload.size()); |
| 494 | *data_len = outPayload.size(); |
| 495 | |
| 496 | return IPMI_CC_OK; |
| 497 | } |
| 498 | catch (InternalFailure& e) |
| 499 | { |
| 500 | *data_len = 0; |
| 501 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 502 | } |
| 503 | } |
| 504 | |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 505 | ipmi_ret_t getMgmntCtrlIdStr(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 506 | ipmi_request_t request, ipmi_response_t response, |
| 507 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 508 | { |
| 509 | auto requestData = reinterpret_cast<const dcmi::GetMgmntCtrlIdStrRequest *> |
| 510 | (request); |
| 511 | auto responseData = reinterpret_cast<dcmi::GetMgmntCtrlIdStrResponse *> |
| 512 | (response); |
| 513 | std::string hostName; |
| 514 | |
| 515 | *data_len = 0; |
| 516 | |
| 517 | if (requestData->groupID != dcmi::groupExtId || |
| 518 | requestData->bytes > dcmi::maxBytes || |
| 519 | requestData->offset + requestData->bytes > dcmi::maxCtrlIdStrLen) |
| 520 | { |
| 521 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 522 | } |
| 523 | |
| 524 | try |
| 525 | { |
| 526 | hostName = dcmi::getHostName(); |
| 527 | } |
| 528 | catch (InternalFailure& e) |
| 529 | { |
| 530 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 531 | } |
| 532 | |
| 533 | if (requestData->offset > hostName.length()) |
| 534 | { |
| 535 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 536 | } |
| 537 | auto responseStr = hostName.substr(requestData->offset, requestData->bytes); |
| 538 | auto responseStrLen = std::min(static_cast<std::size_t>(requestData->bytes), |
| 539 | responseStr.length() + 1); |
| 540 | responseData->groupID = dcmi::groupExtId; |
| 541 | responseData->strLen = hostName.length(); |
| 542 | std::copy(begin(responseStr), end(responseStr), responseData->data); |
| 543 | |
| 544 | *data_len = sizeof(*responseData) + responseStrLen; |
| 545 | return IPMI_CC_OK; |
| 546 | } |
| 547 | |
| 548 | ipmi_ret_t setMgmntCtrlIdStr(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 549 | ipmi_request_t request, ipmi_response_t response, |
| 550 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 551 | { |
| 552 | static std::array<char, dcmi::maxCtrlIdStrLen + 1> newCtrlIdStr; |
| 553 | |
| 554 | auto requestData = reinterpret_cast<const dcmi::SetMgmntCtrlIdStrRequest *> |
| 555 | (request); |
| 556 | auto responseData = reinterpret_cast<dcmi::SetMgmntCtrlIdStrResponse *> |
| 557 | (response); |
| 558 | |
| 559 | *data_len = 0; |
| 560 | |
| 561 | if (requestData->groupID != dcmi::groupExtId || |
| 562 | requestData->bytes > dcmi::maxBytes || |
| 563 | requestData->offset + requestData->bytes > dcmi::maxCtrlIdStrLen + 1 || |
| 564 | (requestData->offset + requestData->bytes == dcmi::maxCtrlIdStrLen + 1 && |
| 565 | requestData->data[requestData->bytes - 1] != '\0')) |
| 566 | { |
| 567 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 568 | } |
| 569 | |
| 570 | try |
| 571 | { |
| 572 | /* if there is no old value and offset is not 0 */ |
| 573 | if (newCtrlIdStr[0] == '\0' && requestData->offset != 0) |
| 574 | { |
| 575 | /* read old ctrlIdStr */ |
| 576 | auto hostName = dcmi::getHostName(); |
| 577 | hostName.resize(dcmi::maxCtrlIdStrLen); |
| 578 | std::copy(begin(hostName), end(hostName), begin(newCtrlIdStr)); |
| 579 | newCtrlIdStr[hostName.length()] = '\0'; |
| 580 | } |
| 581 | |
| 582 | /* replace part of string and mark byte after the last as \0 */ |
| 583 | auto restStrIter = std::copy_n(requestData->data, |
| 584 | requestData->bytes, begin(newCtrlIdStr) + requestData->offset); |
| 585 | /* if the last written byte is not 64th - add '\0' */ |
| 586 | if (requestData->offset + requestData->bytes <= dcmi::maxCtrlIdStrLen) |
| 587 | { |
| 588 | *restStrIter = '\0'; |
| 589 | } |
| 590 | |
| 591 | /* if input data contains '\0' whole string is sent - update hostname */ |
| 592 | auto it = std::find(requestData->data, |
| 593 | requestData->data + requestData->bytes, '\0'); |
| 594 | if (it != requestData->data + requestData->bytes) |
| 595 | { |
| 596 | sdbusplus::bus::bus bus{ ipmid_get_sd_bus_connection() }; |
| 597 | ipmi::setDbusProperty(bus, dcmi::networkServiceName, |
| 598 | dcmi::networkConfigObj, dcmi::networkConfigIntf, |
| 599 | dcmi::hostNameProp, std::string(newCtrlIdStr.data())); |
| 600 | } |
| 601 | } |
| 602 | catch (InternalFailure& e) |
| 603 | { |
| 604 | *data_len = 0; |
| 605 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 606 | } |
| 607 | |
| 608 | responseData->groupID = dcmi::groupExtId; |
| 609 | responseData->offset = requestData->offset + requestData->bytes; |
| 610 | *data_len = sizeof(*responseData); |
| 611 | return IPMI_CC_OK; |
| 612 | } |
| 613 | |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 614 | //List of the capabilities under each parameter |
| 615 | dcmi::DCMICaps dcmiCaps = |
| 616 | { |
| 617 | //Supported DCMI Capabilities |
| 618 | { |
| 619 | dcmi::DCMICapParameters::SUPPORTED_DCMI_CAPS, |
| 620 | { |
| 621 | 3, {{"PowerManagement", 2, 0, 1}, |
| 622 | {"OOBSecondaryLan", 3, 2, 1}, |
| 623 | {"SerialTMODE", 3, 1, 1}, |
| 624 | {"InBandSystemInterfaceChannel", 3, 0, 1} |
| 625 | } |
| 626 | } |
| 627 | }, |
| 628 | //Mandatory Platform Attributes |
| 629 | { |
| 630 | dcmi::DCMICapParameters::MANDATORY_PLAT_ATTRIBUTES, |
| 631 | { |
| 632 | 5, {{"SELAutoRollOver", 1, 15, 1}, |
| 633 | {"FlushEntireSELUponRollOver", 1, 14, 1}, |
| 634 | {"RecordLevelSELFlushUponRollOver", 1, 13, 1}, |
| 635 | {"NumberOfSELEntries", 1, 0, 12}, |
| 636 | {"TempMonitoringSamplingFreq", 5, 0, 8} |
| 637 | } |
| 638 | } |
| 639 | }, |
| 640 | //Optional Platform Attributes |
| 641 | { |
| 642 | dcmi::DCMICapParameters::OPTIONAL_PLAT_ATTRIBUTES, |
| 643 | { |
| 644 | 2, {{"PowerMgmtDeviceSlaveAddress", 1, 1, 7}, |
| 645 | {"BMCChannelNumber", 2, 4, 4}, |
| 646 | {"DeviceRivision", 2, 0, 4} |
| 647 | } |
| 648 | } |
| 649 | }, |
| 650 | //Manageability Access Attributes |
| 651 | { |
| 652 | dcmi::DCMICapParameters::MANAGEABILITY_ACCESS_ATTRIBUTES, |
| 653 | { |
| 654 | 3, {{"MandatoryPrimaryLanOOBSupport", 1, 0, 8}, |
| 655 | {"OptionalSecondaryLanOOBSupport", 2, 0, 8}, |
| 656 | {"OptionalSerialOOBMTMODECapability", 3, 0, 8} |
| 657 | } |
| 658 | } |
| 659 | } |
| 660 | }; |
| 661 | |
| 662 | ipmi_ret_t getDCMICapabilities(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 663 | ipmi_request_t request, ipmi_response_t response, |
| 664 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 665 | { |
| 666 | |
| 667 | std::ifstream dcmiCapFile(DCMI_CAP_JSON_FILE); |
| 668 | if (!dcmiCapFile.is_open()) |
| 669 | { |
| 670 | log<level::ERR>("DCMI Capabilities file not found"); |
| 671 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 672 | } |
| 673 | |
| 674 | auto data = nlohmann::json::parse(dcmiCapFile, nullptr, false); |
| 675 | if (data.is_discarded()) |
| 676 | { |
| 677 | log<level::ERR>("DCMI Capabilities JSON parser failure"); |
| 678 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 679 | } |
| 680 | |
| 681 | auto requestData = reinterpret_cast<const dcmi::GetDCMICapRequest*> |
| 682 | (request); |
| 683 | |
| 684 | //get list of capabilities in a parameter |
| 685 | auto caps = |
| 686 | dcmiCaps.find(static_cast<dcmi::DCMICapParameters>(requestData->param)); |
| 687 | if (caps == dcmiCaps.end()) |
| 688 | { |
| 689 | log<level::ERR>("Invalid input parameter"); |
| 690 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 691 | } |
| 692 | |
| 693 | if (requestData->groupID != dcmi::groupExtId) |
| 694 | { |
| 695 | *data_len = 0; |
| 696 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 697 | } |
| 698 | |
| 699 | auto responseData = reinterpret_cast<dcmi::GetDCMICapResponse*> |
| 700 | (response); |
| 701 | |
| 702 | //For each capabilities in a parameter fill the data from |
| 703 | //the json file based on the capability name. |
| 704 | for (auto cap : caps->second.capList) |
| 705 | { |
| 706 | //If the data is beyond first byte boundary, insert in a |
| 707 | //16bit pattern for example number of SEL entries are represented |
| 708 | //in 12bits. |
| 709 | if ((cap.length + cap.position) > 8) |
| 710 | { |
| 711 | //Read the value corresponding to capability name and assign to |
| 712 | //16bit bitset. |
| 713 | std::bitset<16> val(data.value(cap.name.c_str(), 0)); |
| 714 | val <<= cap.position; |
| 715 | reinterpret_cast<uint16_t*>(responseData->data)[ |
| 716 | (cap.bytePosition - 1) / sizeof(uint16_t)] |= val.to_ulong(); |
| 717 | } |
| 718 | else |
| 719 | { |
| 720 | responseData->data[cap.bytePosition - 1] |= |
| 721 | data.value(cap.name.c_str(), 0) << cap.position; |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | responseData->groupID = dcmi::groupExtId; |
| 726 | responseData->major = DCMI_SPEC_MAJOR_VERSION; |
| 727 | responseData->minor = DCMI_SPEC_MINOR_VERSION; |
| 728 | responseData->paramRevision = DCMI_PARAMETER_REVISION; |
| 729 | *data_len = sizeof(*responseData) + caps->second.size; |
| 730 | |
| 731 | return IPMI_CC_OK; |
| 732 | } |
| 733 | |
Chris Austen | 1810bec | 2015-10-13 12:12:39 -0500 | [diff] [blame] | 734 | void register_netfn_dcmi_functions() |
| 735 | { |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 736 | // <Get Power Limit> |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 737 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", |
| 738 | NETFUN_GRPEXT, dcmi::Commands::GET_POWER_LIMIT); |
| 739 | |
| 740 | ipmi_register_callback(NETFUN_GRPEXT, dcmi::Commands::GET_POWER_LIMIT, |
| 741 | NULL, getPowerLimit, PRIVILEGE_USER); |
Tom Joseph | 6f6dd4d | 2017-07-12 20:07:11 +0530 | [diff] [blame] | 742 | |
Tom Joseph | 46fa37d | 2017-07-26 18:11:55 +0530 | [diff] [blame] | 743 | // <Set Power Limit> |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 744 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", |
| 745 | NETFUN_GRPEXT, dcmi::Commands::SET_POWER_LIMIT); |
| 746 | |
| 747 | ipmi_register_callback(NETFUN_GRPEXT, dcmi::Commands::SET_POWER_LIMIT, |
| 748 | NULL, setPowerLimit, PRIVILEGE_OPERATOR); |
Tom Joseph | 46fa37d | 2017-07-26 18:11:55 +0530 | [diff] [blame] | 749 | |
Tom Joseph | 6c8d51b | 2017-07-26 18:18:06 +0530 | [diff] [blame] | 750 | // <Activate/Deactivate Power Limit> |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 751 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", |
| 752 | NETFUN_GRPEXT, dcmi::Commands::APPLY_POWER_LIMIT); |
| 753 | |
| 754 | ipmi_register_callback(NETFUN_GRPEXT, dcmi::Commands::APPLY_POWER_LIMIT, |
| 755 | NULL, applyPowerLimit, PRIVILEGE_OPERATOR); |
Tom Joseph | 6c8d51b | 2017-07-26 18:18:06 +0530 | [diff] [blame] | 756 | |
Tom Joseph | 6f6dd4d | 2017-07-12 20:07:11 +0530 | [diff] [blame] | 757 | // <Get Asset Tag> |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 758 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", |
| 759 | NETFUN_GRPEXT, dcmi::Commands::GET_ASSET_TAG); |
| 760 | |
| 761 | ipmi_register_callback(NETFUN_GRPEXT, dcmi::Commands::GET_ASSET_TAG, |
| 762 | NULL, getAssetTag, PRIVILEGE_USER); |
Tom Joseph | 545dd23 | 2017-07-12 20:20:49 +0530 | [diff] [blame] | 763 | |
| 764 | // <Set Asset Tag> |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 765 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", |
| 766 | NETFUN_GRPEXT, dcmi::Commands::SET_ASSET_TAG); |
| 767 | |
| 768 | ipmi_register_callback(NETFUN_GRPEXT, dcmi::Commands::SET_ASSET_TAG, |
| 769 | NULL, setAssetTag, PRIVILEGE_OPERATOR); |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 770 | |
Gunnar Mills | 8991dd6 | 2017-10-25 17:11:29 -0500 | [diff] [blame] | 771 | // <Get Management Controller Identifier String> |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 772 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", |
| 773 | NETFUN_GRPEXT, dcmi::Commands::GET_MGMNT_CTRL_ID_STR); |
| 774 | |
| 775 | ipmi_register_callback(NETFUN_GRPEXT, dcmi::Commands::GET_MGMNT_CTRL_ID_STR, |
| 776 | NULL, getMgmntCtrlIdStr, PRIVILEGE_USER); |
| 777 | |
| 778 | // <Set Management Controller Identifier String> |
| 779 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", |
| 780 | NETFUN_GRPEXT, dcmi::Commands::SET_MGMNT_CTRL_ID_STR); |
| 781 | ipmi_register_callback(NETFUN_GRPEXT, dcmi::Commands::SET_MGMNT_CTRL_ID_STR, |
| 782 | NULL, setMgmntCtrlIdStr, PRIVILEGE_ADMIN); |
| 783 | |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 784 | // <Get DCMI capabilities> |
| 785 | ipmi_register_callback(NETFUN_GRPEXT, dcmi::Commands::GET_CAPABILITIES, |
| 786 | NULL, getDCMICapabilities, PRIVILEGE_USER); |
Chris Austen | 1810bec | 2015-10-13 12:12:39 -0500 | [diff] [blame] | 787 | return; |
| 788 | } |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 789 | // 956379 |