Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 3 | #include "app.hpp" |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 4 | #include "dbus_utility.hpp" |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 5 | #include "error_messages.hpp" |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 6 | #include "generated/enums/pcie_slots.hpp" |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 7 | #include "pcie.hpp" |
| 8 | #include "registries/privilege_registry.hpp" |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 9 | #include "utility.hpp" |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 10 | #include "utils/dbus_utils.hpp" |
| 11 | #include "utils/json_utils.hpp" |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 12 | |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 13 | #include <boost/system/error_code.hpp> |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 14 | #include <sdbusplus/asio/property.hpp> |
| 15 | #include <sdbusplus/unpack_properties.hpp> |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 16 | |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 17 | #include <array> |
| 18 | #include <string_view> |
| 19 | |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 20 | namespace redfish |
| 21 | { |
| 22 | |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 23 | inline pcie_slots::SlotTypes dbusSlotTypeToRf(const std::string& slotType) |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 24 | { |
| 25 | if (slotType == |
| 26 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.FullLength") |
| 27 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 28 | return pcie_slots::SlotTypes::FullLength; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 29 | } |
| 30 | if (slotType == |
| 31 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.HalfLength") |
| 32 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 33 | return pcie_slots::SlotTypes::HalfLength; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 34 | } |
| 35 | if (slotType == |
| 36 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.LowProfile") |
| 37 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 38 | return pcie_slots::SlotTypes::LowProfile; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 39 | } |
| 40 | if (slotType == |
| 41 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.Mini") |
| 42 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 43 | return pcie_slots::SlotTypes::Mini; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 44 | } |
| 45 | if (slotType == "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.M_2") |
| 46 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 47 | return pcie_slots::SlotTypes::M2; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 48 | } |
| 49 | if (slotType == "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.OEM") |
| 50 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 51 | return pcie_slots::SlotTypes::OEM; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 52 | } |
| 53 | if (slotType == |
| 54 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.OCP3Small") |
| 55 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 56 | return pcie_slots::SlotTypes::OCP3Small; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 57 | } |
| 58 | if (slotType == |
| 59 | "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.OCP3Large") |
| 60 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 61 | return pcie_slots::SlotTypes::OCP3Large; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 62 | } |
| 63 | if (slotType == "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.U_2") |
| 64 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 65 | return pcie_slots::SlotTypes::U2; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | // Unknown or others |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 69 | return pcie_slots::SlotTypes::Invalid; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | inline void |
| 73 | onPcieSlotGetAllDone(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 74 | const boost::system::error_code& ec, |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 75 | const dbus::utility::DBusPropertiesMap& propertiesList) |
| 76 | { |
| 77 | if (ec) |
| 78 | { |
| 79 | BMCWEB_LOG_ERROR << "Can't get PCIeSlot properties!"; |
| 80 | messages::internalError(asyncResp->res); |
| 81 | return; |
| 82 | } |
| 83 | |
| 84 | nlohmann::json& slots = asyncResp->res.jsonValue["Slots"]; |
| 85 | |
| 86 | nlohmann::json::array_t* slotsPtr = |
| 87 | slots.get_ptr<nlohmann::json::array_t*>(); |
| 88 | if (slotsPtr == nullptr) |
| 89 | { |
| 90 | BMCWEB_LOG_ERROR << "Slots key isn't an array???"; |
| 91 | messages::internalError(asyncResp->res); |
| 92 | return; |
| 93 | } |
| 94 | |
| 95 | nlohmann::json::object_t slot; |
| 96 | |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 97 | const std::string* generation = nullptr; |
| 98 | const size_t* lanes = nullptr; |
| 99 | const std::string* slotType = nullptr; |
| 100 | const bool* hotPluggable = nullptr; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 101 | |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 102 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 103 | dbus_utils::UnpackErrorPrinter(), propertiesList, "Generation", |
| 104 | generation, "Lanes", lanes, "SlotType", slotType, "HotPluggable", |
| 105 | hotPluggable); |
| 106 | |
| 107 | if (!success) |
| 108 | { |
| 109 | messages::internalError(asyncResp->res); |
| 110 | return; |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 111 | } |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 112 | |
| 113 | if (generation != nullptr) |
| 114 | { |
Ed Tanous | 0ec8b83 | 2022-03-14 14:56:47 -0700 | [diff] [blame] | 115 | std::optional<pcie_device::PCIeTypes> pcieType = |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 116 | redfishPcieGenerationFromDbus(*generation); |
| 117 | if (!pcieType) |
| 118 | { |
| 119 | messages::internalError(asyncResp->res); |
| 120 | return; |
| 121 | } |
| 122 | slot["PCIeType"] = !pcieType; |
| 123 | } |
| 124 | |
| 125 | if (lanes != nullptr) |
| 126 | { |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 127 | slot["Lanes"] = *lanes; |
| 128 | } |
| 129 | |
| 130 | if (slotType != nullptr) |
| 131 | { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 132 | pcie_slots::SlotTypes redfishSlotType = dbusSlotTypeToRf(*slotType); |
| 133 | if (redfishSlotType == pcie_slots::SlotTypes::Invalid) |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 134 | { |
| 135 | messages::internalError(asyncResp->res); |
| 136 | return; |
| 137 | } |
| 138 | slot["SlotType"] = redfishSlotType; |
| 139 | } |
| 140 | |
| 141 | if (hotPluggable != nullptr) |
| 142 | { |
| 143 | slot["HotPluggable"] = *hotPluggable; |
| 144 | } |
| 145 | |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 146 | slots.emplace_back(std::move(slot)); |
| 147 | } |
| 148 | |
| 149 | inline void onMapperAssociationDone( |
| 150 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 151 | const std::string& chassisID, const std::string& pcieSlotPath, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 152 | const std::string& connectionName, const boost::system::error_code& ec, |
George Liu | 6c3e945 | 2023-03-03 13:55:29 +0800 | [diff] [blame] | 153 | const dbus::utility::MapperEndPoints& pcieSlotChassis) |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 154 | { |
| 155 | if (ec) |
| 156 | { |
| 157 | if (ec.value() == EBADR) |
| 158 | { |
| 159 | // This PCIeSlot have no chassis association. |
| 160 | return; |
| 161 | } |
| 162 | BMCWEB_LOG_ERROR << "DBUS response error"; |
| 163 | messages::internalError(asyncResp->res); |
| 164 | return; |
| 165 | } |
| 166 | |
George Liu | 6c3e945 | 2023-03-03 13:55:29 +0800 | [diff] [blame] | 167 | if (pcieSlotChassis.size() != 1) |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 168 | { |
| 169 | BMCWEB_LOG_ERROR << "PCIe Slot association error! "; |
| 170 | messages::internalError(asyncResp->res); |
| 171 | return; |
| 172 | } |
| 173 | |
George Liu | 6c3e945 | 2023-03-03 13:55:29 +0800 | [diff] [blame] | 174 | sdbusplus::message::object_path path(pcieSlotChassis[0]); |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 175 | std::string chassisName = path.filename(); |
| 176 | if (chassisName != chassisID) |
| 177 | { |
| 178 | // The pcie slot doesn't belong to the chassisID |
| 179 | return; |
| 180 | } |
| 181 | |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 182 | sdbusplus::asio::getAllProperties( |
| 183 | *crow::connections::systemBus, connectionName, pcieSlotPath, |
| 184 | "xyz.openbmc_project.Inventory.Item.PCIeSlot", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 185 | [asyncResp](const boost::system::error_code& ec2, |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 186 | const dbus::utility::DBusPropertiesMap& propertiesList) { |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 187 | onPcieSlotGetAllDone(asyncResp, ec2, propertiesList); |
Krzysztof Grobelny | d1bde9e | 2022-09-07 10:40:51 +0200 | [diff] [blame] | 188 | }); |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | inline void |
| 192 | onMapperSubtreeDone(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 193 | const std::string& chassisID, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 194 | const boost::system::error_code& ec, |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 195 | const dbus::utility::MapperGetSubTreeResponse& subtree) |
| 196 | { |
| 197 | if (ec) |
| 198 | { |
| 199 | BMCWEB_LOG_ERROR << "D-Bus response error on GetSubTree " << ec; |
| 200 | messages::internalError(asyncResp->res); |
| 201 | return; |
| 202 | } |
| 203 | if (subtree.empty()) |
| 204 | { |
Jiaqing Zhao | d8a5d5d | 2022-08-05 16:21:51 +0800 | [diff] [blame] | 205 | messages::resourceNotFound(asyncResp->res, "Chassis", chassisID); |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 206 | return; |
| 207 | } |
| 208 | |
| 209 | BMCWEB_LOG_DEBUG << "Get properties for PCIeSlots associated to chassis = " |
| 210 | << chassisID; |
| 211 | |
| 212 | asyncResp->res.jsonValue["@odata.type"] = "#PCIeSlots.v1_4_1.PCIeSlots"; |
| 213 | asyncResp->res.jsonValue["Name"] = "PCIe Slot Information"; |
| 214 | asyncResp->res.jsonValue["@odata.id"] = crow::utility::urlFromPieces( |
| 215 | "redfish", "v1", "Chassis", chassisID, "PCIeSlots"); |
| 216 | asyncResp->res.jsonValue["Id"] = "1"; |
| 217 | asyncResp->res.jsonValue["Slots"] = nlohmann::json::array(); |
| 218 | |
| 219 | for (const auto& pathServicePair : subtree) |
| 220 | { |
| 221 | const std::string& pcieSlotPath = pathServicePair.first; |
| 222 | for (const auto& connectionInterfacePair : pathServicePair.second) |
| 223 | { |
| 224 | const std::string& connectionName = connectionInterfacePair.first; |
| 225 | sdbusplus::message::object_path pcieSlotAssociationPath( |
| 226 | pcieSlotPath); |
| 227 | pcieSlotAssociationPath /= "chassis"; |
| 228 | |
| 229 | // The association of this PCIeSlot is used to determine whether |
| 230 | // it belongs to this ChassisID |
George Liu | 6c3e945 | 2023-03-03 13:55:29 +0800 | [diff] [blame] | 231 | dbus::utility::getAssociationEndPoints( |
| 232 | std::string{pcieSlotAssociationPath}, |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 233 | [asyncResp, chassisID, pcieSlotPath, connectionName]( |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 234 | const boost::system::error_code& ec2, |
George Liu | 6c3e945 | 2023-03-03 13:55:29 +0800 | [diff] [blame] | 235 | const dbus::utility::MapperEndPoints& endpoints) { |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 236 | onMapperAssociationDone(asyncResp, chassisID, pcieSlotPath, |
Ed Tanous | 4ce2c1b | 2023-02-10 11:57:54 -0800 | [diff] [blame] | 237 | connectionName, ec2, endpoints); |
George Liu | 6c3e945 | 2023-03-03 13:55:29 +0800 | [diff] [blame] | 238 | }); |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | inline void handlePCIeSlotCollectionGet( |
| 244 | crow::App& app, const crow::Request& req, |
| 245 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 246 | const std::string& chassisID) |
| 247 | { |
Ed Tanous | 2aacf85 | 2022-06-17 08:07:54 -0700 | [diff] [blame] | 248 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 249 | { |
| 250 | return; |
| 251 | } |
| 252 | |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 253 | constexpr std::array<std::string_view, 1> interfaces = { |
| 254 | "xyz.openbmc_project.Inventory.Item.PCIeSlot"}; |
| 255 | dbus::utility::getSubTree( |
| 256 | "/xyz/openbmc_project/inventory", 0, interfaces, |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 257 | [asyncResp, |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 258 | chassisID](const boost::system::error_code& ec, |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 259 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
| 260 | onMapperSubtreeDone(asyncResp, chassisID, ec, subtree); |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 261 | }); |
Chicago Duan | 7691cc2 | 2021-01-25 19:52:35 +0800 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | inline void requestRoutesPCIeSlots(App& app) |
| 265 | { |
| 266 | BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/PCIeSlots/") |
| 267 | .privileges(redfish::privileges::getPCIeSlots) |
| 268 | .methods(boost::beast::http::verb::get)( |
| 269 | std::bind_front(handlePCIeSlotCollectionGet, std::ref(app))); |
| 270 | } |
| 271 | |
| 272 | } // namespace redfish |