Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 Intel Corporation |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #pragma once |
| 18 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 19 | #include <app.hpp> |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 20 | #include <boost/system/linux_error.hpp> |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 21 | #include <dbus_utility.hpp> |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 22 | #include <query.hpp> |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 23 | #include <registries/privilege_registry.hpp> |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 24 | #include <sdbusplus/asio/property.hpp> |
| 25 | #include <sdbusplus/unpack_properties.hpp> |
| 26 | #include <utils/dbus_utils.hpp> |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 27 | |
| 28 | namespace redfish |
| 29 | { |
| 30 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 31 | static constexpr char const* pcieService = "xyz.openbmc_project.PCIe"; |
| 32 | static constexpr char const* pciePath = "/xyz/openbmc_project/PCIe"; |
| 33 | static constexpr char const* pcieDeviceInterface = |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 34 | "xyz.openbmc_project.PCIe.Device"; |
| 35 | |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 36 | static inline void |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 37 | getPCIeDeviceList(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 38 | const std::string& name) |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 39 | { |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 40 | auto getPCIeMapCallback = |
| 41 | [asyncResp, name](const boost::system::error_code ec, |
| 42 | const dbus::utility::MapperGetSubTreePathsResponse& |
| 43 | pcieDevicePaths) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 44 | if (ec) |
| 45 | { |
| 46 | BMCWEB_LOG_DEBUG << "no PCIe device paths found ec: " |
| 47 | << ec.message(); |
| 48 | // Not an error, system just doesn't have PCIe info |
| 49 | return; |
| 50 | } |
| 51 | nlohmann::json& pcieDeviceList = asyncResp->res.jsonValue[name]; |
| 52 | pcieDeviceList = nlohmann::json::array(); |
| 53 | for (const std::string& pcieDevicePath : pcieDevicePaths) |
| 54 | { |
| 55 | size_t devStart = pcieDevicePath.rfind('/'); |
| 56 | if (devStart == std::string::npos) |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 57 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 58 | continue; |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 59 | } |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 60 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 61 | std::string devName = pcieDevicePath.substr(devStart + 1); |
| 62 | if (devName.empty()) |
| 63 | { |
| 64 | continue; |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 65 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 66 | nlohmann::json::object_t pcieDevice; |
| 67 | pcieDevice["@odata.id"] = |
| 68 | "/redfish/v1/Systems/system/PCIeDevices/" + devName; |
| 69 | pcieDeviceList.push_back(std::move(pcieDevice)); |
| 70 | } |
| 71 | asyncResp->res.jsonValue[name + "@odata.count"] = pcieDeviceList.size(); |
| 72 | }; |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 73 | crow::connections::systemBus->async_method_call( |
| 74 | std::move(getPCIeMapCallback), "xyz.openbmc_project.ObjectMapper", |
| 75 | "/xyz/openbmc_project/object_mapper", |
| 76 | "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths", |
| 77 | std::string(pciePath) + "/", 1, std::array<std::string, 0>()); |
| 78 | } |
| 79 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 80 | inline void requestRoutesSystemPCIeDeviceCollection(App& app) |
Jason M. Bills | adbe192 | 2019-10-14 15:44:35 -0700 | [diff] [blame] | 81 | { |
Jason M. Bills | adbe192 | 2019-10-14 15:44:35 -0700 | [diff] [blame] | 82 | /** |
| 83 | * Functions triggers appropriate requests on DBus |
| 84 | */ |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 85 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/PCIeDevices/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 86 | .privileges(redfish::privileges::getPCIeDeviceCollection) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 87 | .methods(boost::beast::http::verb::get)( |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 88 | [&app](const crow::Request& req, |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 89 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 90 | const std::string& systemName) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 91 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 92 | { |
| 93 | return; |
| 94 | } |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 95 | if (systemName != "system") |
| 96 | { |
| 97 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 98 | systemName); |
| 99 | return; |
| 100 | } |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 101 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 102 | asyncResp->res.jsonValue["@odata.type"] = |
| 103 | "#PCIeDeviceCollection.PCIeDeviceCollection"; |
| 104 | asyncResp->res.jsonValue["@odata.id"] = |
| 105 | "/redfish/v1/Systems/system/PCIeDevices"; |
| 106 | asyncResp->res.jsonValue["Name"] = "PCIe Device Collection"; |
| 107 | asyncResp->res.jsonValue["Description"] = "Collection of PCIe Devices"; |
| 108 | asyncResp->res.jsonValue["Members"] = nlohmann::json::array(); |
| 109 | asyncResp->res.jsonValue["Members@odata.count"] = 0; |
| 110 | getPCIeDeviceList(asyncResp, "Members"); |
| 111 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 112 | } |
| 113 | |
Spencer Ku | 62cd45a | 2021-11-22 16:41:25 +0800 | [diff] [blame] | 114 | inline std::optional<std::string> |
| 115 | redfishPcieGenerationFromDbus(const std::string& generationInUse) |
| 116 | { |
| 117 | if (generationInUse == |
| 118 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.Generations.Gen1") |
| 119 | { |
| 120 | return "Gen1"; |
| 121 | } |
| 122 | if (generationInUse == |
| 123 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.Generations.Gen2") |
| 124 | { |
| 125 | return "Gen2"; |
| 126 | } |
| 127 | if (generationInUse == |
| 128 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.Generations.Gen3") |
| 129 | { |
| 130 | return "Gen3"; |
| 131 | } |
| 132 | if (generationInUse == |
| 133 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.Generations.Gen4") |
| 134 | { |
| 135 | return "Gen4"; |
| 136 | } |
| 137 | if (generationInUse == |
| 138 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.Generations.Gen5") |
| 139 | { |
| 140 | return "Gen5"; |
| 141 | } |
Ed Tanous | e825cbc | 2022-06-17 11:39:22 -0700 | [diff] [blame] | 142 | if (generationInUse.empty() || |
| 143 | generationInUse == |
| 144 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.Generations.Unknown") |
Spencer Ku | 62cd45a | 2021-11-22 16:41:25 +0800 | [diff] [blame] | 145 | { |
| 146 | return ""; |
| 147 | } |
| 148 | |
| 149 | // The value is not unknown or Gen1-5, need return an internal error. |
| 150 | return std::nullopt; |
| 151 | } |
| 152 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 153 | inline void requestRoutesSystemPCIeDevice(App& app) |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 154 | { |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 155 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/PCIeDevices/<str>/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 156 | .privileges(redfish::privileges::getPCIeDevice) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 157 | .methods(boost::beast::http::verb::get)( |
| 158 | [&app](const crow::Request& req, |
| 159 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 160 | const std::string& systemName, const std::string& device) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 161 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 162 | { |
| 163 | return; |
| 164 | } |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 165 | if (systemName != "system") |
| 166 | { |
| 167 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 168 | systemName); |
| 169 | return; |
| 170 | } |
| 171 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 172 | auto getPCIeDeviceCallback = |
| 173 | [asyncResp, device]( |
| 174 | const boost::system::error_code ec, |
| 175 | const dbus::utility::DBusPropertiesMap& pcieDevProperties) { |
| 176 | if (ec) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 177 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 178 | BMCWEB_LOG_DEBUG |
| 179 | << "failed to get PCIe Device properties ec: " << ec.value() |
| 180 | << ": " << ec.message(); |
| 181 | if (ec.value() == |
| 182 | boost::system::linux_error::bad_request_descriptor) |
| 183 | { |
| 184 | messages::resourceNotFound(asyncResp->res, "PCIeDevice", |
| 185 | device); |
| 186 | } |
| 187 | else |
| 188 | { |
| 189 | messages::internalError(asyncResp->res); |
| 190 | } |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 191 | return; |
| 192 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 193 | |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 194 | const std::string* manufacturer = nullptr; |
| 195 | const std::string* deviceType = nullptr; |
| 196 | const std::string* generationInUse = nullptr; |
| 197 | |
| 198 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 199 | dbus_utils::UnpackErrorPrinter(), pcieDevProperties, |
| 200 | "Manufacturer", manufacturer, "DeviceType", deviceType, |
| 201 | "GenerationInUse", generationInUse); |
| 202 | |
| 203 | if (!success) |
| 204 | { |
| 205 | messages::internalError(asyncResp->res); |
| 206 | return; |
| 207 | } |
| 208 | |
| 209 | if (generationInUse != nullptr) |
| 210 | { |
| 211 | std::optional<std::string> redfishGenerationInUse = |
| 212 | redfishPcieGenerationFromDbus(*generationInUse); |
| 213 | if (!redfishGenerationInUse) |
| 214 | { |
| 215 | messages::internalError(asyncResp->res); |
| 216 | return; |
| 217 | } |
| 218 | if (redfishGenerationInUse->empty()) |
| 219 | { |
| 220 | // unknown, no need to handle |
| 221 | return; |
| 222 | } |
| 223 | asyncResp->res.jsonValue["PCIeInterface"]["PCIeType"] = |
| 224 | *redfishGenerationInUse; |
| 225 | } |
| 226 | |
| 227 | if (manufacturer != nullptr) |
| 228 | { |
| 229 | asyncResp->res.jsonValue["Manufacturer"] = *manufacturer; |
| 230 | } |
| 231 | |
| 232 | if (deviceType != nullptr) |
| 233 | { |
| 234 | asyncResp->res.jsonValue["DeviceType"] = *deviceType; |
| 235 | } |
| 236 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 237 | asyncResp->res.jsonValue["@odata.type"] = |
| 238 | "#PCIeDevice.v1_4_0.PCIeDevice"; |
| 239 | asyncResp->res.jsonValue["@odata.id"] = |
| 240 | "/redfish/v1/Systems/system/PCIeDevices/" + device; |
| 241 | asyncResp->res.jsonValue["Name"] = "PCIe Device"; |
| 242 | asyncResp->res.jsonValue["Id"] = device; |
| 243 | |
| 244 | asyncResp->res.jsonValue["PCIeFunctions"]["@odata.id"] = |
| 245 | "/redfish/v1/Systems/system/PCIeDevices/" + device + |
| 246 | "/PCIeFunctions"; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 247 | }; |
| 248 | std::string escapedPath = std::string(pciePath) + "/" + device; |
| 249 | dbus::utility::escapePathForDbus(escapedPath); |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 250 | sdbusplus::asio::getAllProperties( |
| 251 | *crow::connections::systemBus, pcieService, escapedPath, |
| 252 | pcieDeviceInterface, std::move(getPCIeDeviceCallback)); |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 253 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | inline void requestRoutesSystemPCIeFunctionCollection(App& app) |
| 257 | { |
| 258 | /** |
| 259 | * Functions triggers appropriate requests on DBus |
| 260 | */ |
| 261 | BMCWEB_ROUTE(app, |
| 262 | "/redfish/v1/Systems/system/PCIeDevices/<str>/PCIeFunctions/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 263 | .privileges(redfish::privileges::getPCIeFunctionCollection) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 264 | .methods(boost::beast::http::verb::get)( |
| 265 | [&app](const crow::Request& req, |
| 266 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 267 | const std::string& device) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 268 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 269 | { |
| 270 | return; |
| 271 | } |
| 272 | |
| 273 | asyncResp->res.jsonValue["@odata.type"] = |
| 274 | "#PCIeFunctionCollection.PCIeFunctionCollection"; |
| 275 | asyncResp->res.jsonValue["@odata.id"] = |
| 276 | "/redfish/v1/Systems/system/PCIeDevices/" + device + |
| 277 | "/PCIeFunctions"; |
| 278 | asyncResp->res.jsonValue["Name"] = "PCIe Function Collection"; |
| 279 | asyncResp->res.jsonValue["Description"] = |
| 280 | "Collection of PCIe Functions for PCIe Device " + device; |
| 281 | |
| 282 | auto getPCIeDeviceCallback = |
| 283 | [asyncResp, device]( |
| 284 | const boost::system::error_code ec, |
| 285 | const dbus::utility::DBusPropertiesMap& pcieDevProperties) { |
| 286 | if (ec) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 287 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 288 | BMCWEB_LOG_DEBUG |
| 289 | << "failed to get PCIe Device properties ec: " << ec.value() |
| 290 | << ": " << ec.message(); |
| 291 | if (ec.value() == |
| 292 | boost::system::linux_error::bad_request_descriptor) |
| 293 | { |
| 294 | messages::resourceNotFound(asyncResp->res, "PCIeDevice", |
| 295 | device); |
| 296 | } |
| 297 | else |
| 298 | { |
| 299 | messages::internalError(asyncResp->res); |
| 300 | } |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 301 | return; |
| 302 | } |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 303 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 304 | nlohmann::json& pcieFunctionList = |
| 305 | asyncResp->res.jsonValue["Members"]; |
| 306 | pcieFunctionList = nlohmann::json::array(); |
| 307 | static constexpr const int maxPciFunctionNum = 8; |
| 308 | for (int functionNum = 0; functionNum < maxPciFunctionNum; |
| 309 | functionNum++) |
| 310 | { |
| 311 | // Check if this function exists by looking for a |
| 312 | // device ID |
| 313 | std::string devIDProperty = |
| 314 | "Function" + std::to_string(functionNum) + "DeviceId"; |
| 315 | const std::string* property = nullptr; |
| 316 | for (const auto& propEntry : pcieDevProperties) |
| 317 | { |
| 318 | if (propEntry.first == devIDProperty) |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 319 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 320 | property = std::get_if<std::string>(&propEntry.second); |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 321 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 322 | } |
Nan Zhou | fb0ecc3 | 2022-10-17 19:17:36 +0000 | [diff] [blame] | 323 | if (property == nullptr || property->empty()) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 324 | { |
Nan Zhou | e28ce0e | 2022-10-13 22:28:36 +0000 | [diff] [blame] | 325 | continue; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 326 | } |
| 327 | nlohmann::json::object_t pcieFunction; |
| 328 | pcieFunction["@odata.id"] = |
| 329 | "/redfish/v1/Systems/system/PCIeDevices/" + device + |
| 330 | "/PCIeFunctions/" + std::to_string(functionNum); |
| 331 | pcieFunctionList.push_back(std::move(pcieFunction)); |
| 332 | } |
| 333 | asyncResp->res.jsonValue["Members@odata.count"] = |
| 334 | pcieFunctionList.size(); |
| 335 | }; |
| 336 | std::string escapedPath = std::string(pciePath) + "/" + device; |
| 337 | dbus::utility::escapePathForDbus(escapedPath); |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 338 | sdbusplus::asio::getAllProperties( |
| 339 | *crow::connections::systemBus, pcieService, escapedPath, |
| 340 | pcieDeviceInterface, std::move(getPCIeDeviceCallback)); |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 341 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | inline void requestRoutesSystemPCIeFunction(App& app) |
| 345 | { |
| 346 | BMCWEB_ROUTE( |
| 347 | app, |
| 348 | "/redfish/v1/Systems/system/PCIeDevices/<str>/PCIeFunctions/<str>/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 349 | .privileges(redfish::privileges::getPCIeFunction) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 350 | .methods(boost::beast::http::verb::get)( |
| 351 | [&app](const crow::Request& req, |
| 352 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 353 | const std::string& device, const std::string& function) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 354 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 355 | { |
| 356 | return; |
| 357 | } |
| 358 | auto getPCIeDeviceCallback = |
| 359 | [asyncResp, device, function]( |
| 360 | const boost::system::error_code ec, |
| 361 | const dbus::utility::DBusPropertiesMap& pcieDevProperties) { |
| 362 | if (ec) |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 363 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 364 | BMCWEB_LOG_DEBUG |
| 365 | << "failed to get PCIe Device properties ec: " << ec.value() |
| 366 | << ": " << ec.message(); |
| 367 | if (ec.value() == |
| 368 | boost::system::linux_error::bad_request_descriptor) |
| 369 | { |
| 370 | messages::resourceNotFound(asyncResp->res, "PCIeDevice", |
| 371 | device); |
| 372 | } |
| 373 | else |
| 374 | { |
| 375 | messages::internalError(asyncResp->res); |
| 376 | } |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 377 | return; |
| 378 | } |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 379 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 380 | // Check if this function exists by looking for a device |
| 381 | // ID |
| 382 | std::string functionName = "Function" + function; |
| 383 | std::string devIDProperty = functionName + "DeviceId"; |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 384 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 385 | const std::string* devIdProperty = nullptr; |
| 386 | for (const auto& property : pcieDevProperties) |
| 387 | { |
| 388 | if (property.first == devIDProperty) |
| 389 | { |
| 390 | devIdProperty = std::get_if<std::string>(&property.second); |
| 391 | continue; |
| 392 | } |
| 393 | } |
| 394 | if (devIdProperty == nullptr || !devIdProperty->empty()) |
| 395 | { |
| 396 | messages::resourceNotFound(asyncResp->res, "PCIeFunction", |
| 397 | function); |
| 398 | return; |
| 399 | } |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 400 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 401 | asyncResp->res.jsonValue["@odata.type"] = |
| 402 | "#PCIeFunction.v1_2_0.PCIeFunction"; |
| 403 | asyncResp->res.jsonValue["@odata.id"] = |
| 404 | "/redfish/v1/Systems/system/PCIeDevices/" + device + |
| 405 | "/PCIeFunctions/" + function; |
| 406 | asyncResp->res.jsonValue["Name"] = "PCIe Function"; |
| 407 | asyncResp->res.jsonValue["Id"] = function; |
| 408 | asyncResp->res.jsonValue["FunctionId"] = std::stoi(function); |
| 409 | asyncResp->res.jsonValue["Links"]["PCIeDevice"]["@odata.id"] = |
| 410 | "/redfish/v1/Systems/system/PCIeDevices/" + device; |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 411 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 412 | for (const auto& property : pcieDevProperties) |
| 413 | { |
| 414 | const std::string* strProperty = |
| 415 | std::get_if<std::string>(&property.second); |
| 416 | if (property.first == functionName + "DeviceId") |
| 417 | { |
| 418 | asyncResp->res.jsonValue["DeviceId"] = *strProperty; |
| 419 | } |
| 420 | if (property.first == functionName + "VendorId") |
| 421 | { |
| 422 | asyncResp->res.jsonValue["VendorId"] = *strProperty; |
| 423 | } |
| 424 | if (property.first == functionName + "FunctionType") |
| 425 | { |
| 426 | asyncResp->res.jsonValue["FunctionType"] = *strProperty; |
| 427 | } |
| 428 | if (property.first == functionName + "DeviceClass") |
| 429 | { |
| 430 | asyncResp->res.jsonValue["DeviceClass"] = *strProperty; |
| 431 | } |
| 432 | if (property.first == functionName + "ClassCode") |
| 433 | { |
| 434 | asyncResp->res.jsonValue["ClassCode"] = *strProperty; |
| 435 | } |
| 436 | if (property.first == functionName + "RevisionId") |
| 437 | { |
| 438 | asyncResp->res.jsonValue["RevisionId"] = *strProperty; |
| 439 | } |
| 440 | if (property.first == functionName + "SubsystemId") |
| 441 | { |
| 442 | asyncResp->res.jsonValue["SubsystemId"] = *strProperty; |
| 443 | } |
| 444 | if (property.first == functionName + "SubsystemVendorId") |
| 445 | { |
| 446 | asyncResp->res.jsonValue["SubsystemVendorId"] = |
| 447 | *strProperty; |
| 448 | } |
| 449 | } |
| 450 | }; |
| 451 | std::string escapedPath = std::string(pciePath) + "/" + device; |
| 452 | dbus::utility::escapePathForDbus(escapedPath); |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 453 | sdbusplus::asio::getAllProperties( |
| 454 | *crow::connections::systemBus, pcieService, escapedPath, |
| 455 | pcieDeviceInterface, std::move(getPCIeDeviceCallback)); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 456 | }); |
| 457 | } |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 458 | |
| 459 | } // namespace redfish |