Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [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 | #pragma once |
| 17 | |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 18 | #include "health.hpp" |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 19 | #include "led.hpp" |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 20 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 21 | #include <app.hpp> |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 22 | #include <boost/container/flat_map.hpp> |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 23 | #include <registries/privilege_registry.hpp> |
Gunnar Mills | 02f6ff1 | 2020-10-14 15:59:58 -0500 | [diff] [blame] | 24 | #include <utils/collection.hpp> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 25 | |
Ed Tanous | abf2add | 2019-01-22 16:40:12 -0800 | [diff] [blame] | 26 | #include <variant> |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 27 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 28 | namespace redfish |
| 29 | { |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 30 | |
| 31 | /** |
Gunnar Mills | beeca0a | 2019-02-14 16:30:45 -0600 | [diff] [blame] | 32 | * @brief Retrieves chassis state properties over dbus |
| 33 | * |
| 34 | * @param[in] aResp - Shared pointer for completing asynchronous calls. |
| 35 | * |
| 36 | * @return None. |
| 37 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 38 | inline void getChassisState(std::shared_ptr<bmcweb::AsyncResp> aResp) |
Gunnar Mills | beeca0a | 2019-02-14 16:30:45 -0600 | [diff] [blame] | 39 | { |
| 40 | crow::connections::systemBus->async_method_call( |
| 41 | [aResp{std::move(aResp)}]( |
| 42 | const boost::system::error_code ec, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 43 | const std::variant<std::string>& chassisState) { |
Gunnar Mills | beeca0a | 2019-02-14 16:30:45 -0600 | [diff] [blame] | 44 | if (ec) |
| 45 | { |
| 46 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 47 | messages::internalError(aResp->res); |
| 48 | return; |
| 49 | } |
| 50 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 51 | const std::string* s = std::get_if<std::string>(&chassisState); |
Gunnar Mills | beeca0a | 2019-02-14 16:30:45 -0600 | [diff] [blame] | 52 | BMCWEB_LOG_DEBUG << "Chassis state: " << *s; |
| 53 | if (s != nullptr) |
| 54 | { |
| 55 | // Verify Chassis State |
| 56 | if (*s == "xyz.openbmc_project.State.Chassis.PowerState.On") |
| 57 | { |
| 58 | aResp->res.jsonValue["PowerState"] = "On"; |
| 59 | aResp->res.jsonValue["Status"]["State"] = "Enabled"; |
| 60 | } |
| 61 | else if (*s == |
| 62 | "xyz.openbmc_project.State.Chassis.PowerState.Off") |
| 63 | { |
| 64 | aResp->res.jsonValue["PowerState"] = "Off"; |
| 65 | aResp->res.jsonValue["Status"]["State"] = "StandbyOffline"; |
| 66 | } |
| 67 | } |
| 68 | }, |
| 69 | "xyz.openbmc_project.State.Chassis", |
| 70 | "/xyz/openbmc_project/state/chassis0", |
| 71 | "org.freedesktop.DBus.Properties", "Get", |
| 72 | "xyz.openbmc_project.State.Chassis", "CurrentPowerState"); |
| 73 | } |
| 74 | |
| 75 | /** |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 76 | * DBus types primitives for several generic DBus interfaces |
| 77 | * TODO(Pawel) consider move this to separate file into boost::dbus |
| 78 | */ |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 79 | // Note, this is not a very useful Variant, but because it isn't used to get |
Ed Tanous | aa2e59c | 2018-04-12 12:17:20 -0700 | [diff] [blame] | 80 | // values, it should be as simple as possible |
| 81 | // TODO(ed) invent a nullvariant type |
Cheng C Yang | 5fd7ba6 | 2019-11-28 15:58:08 +0800 | [diff] [blame] | 82 | using VariantType = std::variant<bool, std::string, uint64_t, uint32_t>; |
Ed Tanous | aa2e59c | 2018-04-12 12:17:20 -0700 | [diff] [blame] | 83 | using ManagedObjectsType = std::vector<std::pair< |
| 84 | sdbusplus::message::object_path, |
| 85 | std::vector<std::pair<std::string, |
| 86 | std::vector<std::pair<std::string, VariantType>>>>>>; |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 87 | |
Ed Tanous | aa2e59c | 2018-04-12 12:17:20 -0700 | [diff] [blame] | 88 | using PropertiesType = boost::container::flat_map<std::string, VariantType>; |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 89 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 90 | inline void getIntrusionByService(std::shared_ptr<bmcweb::AsyncResp> aResp, |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 91 | const std::string& service, |
| 92 | const std::string& objPath) |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 93 | { |
| 94 | BMCWEB_LOG_DEBUG << "Get intrusion status by service \n"; |
| 95 | |
| 96 | crow::connections::systemBus->async_method_call( |
| 97 | [aResp{std::move(aResp)}](const boost::system::error_code ec, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 98 | const std::variant<std::string>& value) { |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 99 | if (ec) |
| 100 | { |
Gunnar Mills | 4e0453b | 2020-07-08 14:00:30 -0500 | [diff] [blame] | 101 | // do not add err msg in redfish response, because this is not |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 102 | // mandatory property |
| 103 | BMCWEB_LOG_ERROR << "DBUS response error " << ec << "\n"; |
| 104 | return; |
| 105 | } |
| 106 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 107 | const std::string* status = std::get_if<std::string>(&value); |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 108 | |
| 109 | if (status == nullptr) |
| 110 | { |
| 111 | BMCWEB_LOG_ERROR << "intrusion status read error \n"; |
| 112 | return; |
| 113 | } |
| 114 | |
| 115 | aResp->res.jsonValue["PhysicalSecurity"] = { |
| 116 | {"IntrusionSensorNumber", 1}, {"IntrusionSensor", *status}}; |
| 117 | }, |
| 118 | service, objPath, "org.freedesktop.DBus.Properties", "Get", |
| 119 | "xyz.openbmc_project.Chassis.Intrusion", "Status"); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Retrieves physical security properties over dbus |
| 124 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 125 | inline void getPhysicalSecurityData(std::shared_ptr<bmcweb::AsyncResp> aResp) |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 126 | { |
| 127 | crow::connections::systemBus->async_method_call( |
| 128 | [aResp{std::move(aResp)}]( |
| 129 | const boost::system::error_code ec, |
| 130 | const std::vector<std::pair< |
| 131 | std::string, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 132 | std::vector<std::pair<std::string, std::vector<std::string>>>>>& |
| 133 | subtree) { |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 134 | if (ec) |
| 135 | { |
Gunnar Mills | 4e0453b | 2020-07-08 14:00:30 -0500 | [diff] [blame] | 136 | // do not add err msg in redfish response, because this is not |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 137 | // mandatory property |
Andrew Geissler | 54fbf17 | 2021-11-11 15:59:30 -0600 | [diff] [blame] | 138 | BMCWEB_LOG_INFO << "DBUS error: no matched iface " << ec |
| 139 | << "\n"; |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 140 | return; |
| 141 | } |
| 142 | // Iterate over all retrieved ObjectPaths. |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 143 | for (const auto& object : subtree) |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 144 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 145 | for (const auto& service : object.second) |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 146 | { |
| 147 | getIntrusionByService(aResp, service.first, object.first); |
| 148 | return; |
| 149 | } |
| 150 | } |
| 151 | }, |
| 152 | "xyz.openbmc_project.ObjectMapper", |
| 153 | "/xyz/openbmc_project/object_mapper", |
| 154 | "xyz.openbmc_project.ObjectMapper", "GetSubTree", |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 155 | "/xyz/openbmc_project/Intrusion", 1, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 156 | std::array<const char*, 1>{"xyz.openbmc_project.Chassis.Intrusion"}); |
Qiang XU | c181942 | 2019-02-27 13:51:32 +0800 | [diff] [blame] | 157 | } |
| 158 | |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 159 | /** |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 160 | * ChassisCollection derived class for delivering Chassis Collection Schema |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 161 | * Functions triggers appropriate requests on DBus |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 162 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 163 | inline void requestRoutesChassisCollection(App& app) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 164 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 165 | BMCWEB_ROUTE(app, "/redfish/v1/Chassis/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 166 | .privileges(redfish::privileges::getChassisCollection) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 167 | .methods(boost::beast::http::verb::get)( |
| 168 | [](const crow::Request&, |
| 169 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
| 170 | asyncResp->res.jsonValue["@odata.type"] = |
| 171 | "#ChassisCollection.ChassisCollection"; |
| 172 | asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Chassis"; |
| 173 | asyncResp->res.jsonValue["Name"] = "Chassis Collection"; |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 174 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 175 | collection_util::getCollectionMembers( |
| 176 | asyncResp, "/redfish/v1/Chassis", |
| 177 | {"xyz.openbmc_project.Inventory.Item.Board", |
| 178 | "xyz.openbmc_project.Inventory.Item.Chassis"}); |
| 179 | }); |
| 180 | } |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 181 | |
Willy Tu | 308f70c | 2021-09-28 20:24:52 -0700 | [diff] [blame^] | 182 | inline void |
| 183 | getChassisLocationCode(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 184 | const std::string& connectionName, |
| 185 | const std::string& path) |
| 186 | { |
| 187 | crow::connections::systemBus->async_method_call( |
| 188 | [asyncResp](const boost::system::error_code ec, |
| 189 | const std::variant<std::string>& property) { |
| 190 | if (ec) |
| 191 | { |
| 192 | BMCWEB_LOG_DEBUG << "DBUS response error for " |
| 193 | "Location"; |
| 194 | messages::internalError(asyncResp->res); |
| 195 | return; |
| 196 | } |
| 197 | |
| 198 | const std::string* value = std::get_if<std::string>(&property); |
| 199 | if (value == nullptr) |
| 200 | { |
| 201 | BMCWEB_LOG_DEBUG << "Null value returned " |
| 202 | "for locaton code"; |
| 203 | messages::internalError(asyncResp->res); |
| 204 | return; |
| 205 | } |
| 206 | asyncResp->res |
| 207 | .jsonValue["Location"]["PartLocation"]["ServiceLabel"] = *value; |
| 208 | }, |
| 209 | connectionName, path, "org.freedesktop.DBus.Properties", "Get", |
| 210 | "xyz.openbmc_project.Inventory.Decorator.LocationCode", "LocationCode"); |
| 211 | } |
| 212 | |
| 213 | inline void getChassisUUID(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 214 | const std::string& connectionName, |
| 215 | const std::string& path) |
| 216 | { |
| 217 | crow::connections::systemBus->async_method_call( |
| 218 | [asyncResp](const boost::system::error_code ec, |
| 219 | const std::variant<std::string>& chassisUUID) { |
| 220 | if (ec) |
| 221 | { |
| 222 | BMCWEB_LOG_DEBUG << "DBUS response error for " |
| 223 | "UUID"; |
| 224 | messages::internalError(asyncResp->res); |
| 225 | return; |
| 226 | } |
| 227 | const std::string* value = std::get_if<std::string>(&chassisUUID); |
| 228 | if (value == nullptr) |
| 229 | { |
| 230 | BMCWEB_LOG_DEBUG << "Null value returned " |
| 231 | "for UUID"; |
| 232 | messages::internalError(asyncResp->res); |
| 233 | return; |
| 234 | } |
| 235 | asyncResp->res.jsonValue["UUID"] = *value; |
| 236 | }, |
| 237 | connectionName, path, "org.freedesktop.DBus.Properties", "Get", |
| 238 | "xyz.openbmc_project.Common.UUID", "UUID"); |
| 239 | } |
| 240 | |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 241 | /** |
| 242 | * Chassis override class for delivering Chassis Schema |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 243 | * Functions triggers appropriate requests on DBus |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 244 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 245 | inline void requestRoutesChassis(App& app) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 246 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 247 | BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 248 | .privileges(redfish::privileges::getChassis) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 249 | .methods( |
| 250 | boost::beast::http::verb::get)([](const crow::Request&, |
| 251 | const std::shared_ptr< |
| 252 | bmcweb::AsyncResp>& asyncResp, |
| 253 | const std::string& chassisId) { |
| 254 | const std::array<const char*, 2> interfaces = { |
| 255 | "xyz.openbmc_project.Inventory.Item.Board", |
| 256 | "xyz.openbmc_project.Inventory.Item.Chassis"}; |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 257 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 258 | crow::connections::systemBus->async_method_call( |
| 259 | [asyncResp, chassisId(std::string(chassisId))]( |
| 260 | const boost::system::error_code ec, |
| 261 | const crow::openbmc_mapper::GetSubTreeType& subtree) { |
| 262 | if (ec) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 263 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 264 | messages::internalError(asyncResp->res); |
| 265 | return; |
Ed Tanous | daf36e2 | 2018-04-20 16:01:36 -0700 | [diff] [blame] | 266 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 267 | // Iterate over all retrieved ObjectPaths. |
| 268 | for (const std::pair< |
| 269 | std::string, |
| 270 | std::vector<std::pair<std::string, |
| 271 | std::vector<std::string>>>>& |
| 272 | object : subtree) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 273 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 274 | const std::string& path = object.first; |
| 275 | const std::vector< |
| 276 | std::pair<std::string, std::vector<std::string>>>& |
| 277 | connectionNames = object.second; |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 278 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 279 | if (!boost::ends_with(path, chassisId)) |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 280 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 281 | continue; |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 282 | } |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 283 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 284 | auto health = |
| 285 | std::make_shared<HealthPopulate>(asyncResp); |
| 286 | |
| 287 | crow::connections::systemBus->async_method_call( |
| 288 | [health]( |
| 289 | const boost::system::error_code ec2, |
| 290 | std::variant<std::vector<std::string>>& resp) { |
| 291 | if (ec2) |
| 292 | { |
| 293 | return; // no sensors = no failures |
| 294 | } |
| 295 | std::vector<std::string>* data = |
| 296 | std::get_if<std::vector<std::string>>( |
| 297 | &resp); |
| 298 | if (data == nullptr) |
| 299 | { |
| 300 | return; |
| 301 | } |
| 302 | health->inventory = std::move(*data); |
| 303 | }, |
| 304 | "xyz.openbmc_project.ObjectMapper", |
| 305 | path + "/all_sensors", |
| 306 | "org.freedesktop.DBus.Properties", "Get", |
| 307 | "xyz.openbmc_project.Association", "endpoints"); |
| 308 | |
| 309 | health->populate(); |
| 310 | |
| 311 | if (connectionNames.size() < 1) |
| 312 | { |
| 313 | BMCWEB_LOG_ERROR << "Got 0 Connection names"; |
| 314 | continue; |
| 315 | } |
| 316 | |
| 317 | asyncResp->res.jsonValue["@odata.type"] = |
| 318 | "#Chassis.v1_14_0.Chassis"; |
| 319 | asyncResp->res.jsonValue["@odata.id"] = |
| 320 | "/redfish/v1/Chassis/" + chassisId; |
| 321 | asyncResp->res.jsonValue["Name"] = "Chassis Collection"; |
| 322 | asyncResp->res.jsonValue["ChassisType"] = "RackMount"; |
| 323 | asyncResp->res.jsonValue["Actions"]["#Chassis.Reset"] = |
| 324 | {{"target", "/redfish/v1/Chassis/" + chassisId + |
| 325 | "/Actions/Chassis.Reset"}, |
| 326 | {"@Redfish.ActionInfo", "/redfish/v1/Chassis/" + |
| 327 | chassisId + |
| 328 | "/ResetActionInfo"}}; |
| 329 | asyncResp->res.jsonValue["PCIeDevices"] = { |
| 330 | {"@odata.id", |
| 331 | "/redfish/v1/Systems/system/PCIeDevices"}}; |
| 332 | |
| 333 | const std::string& connectionName = |
| 334 | connectionNames[0].first; |
| 335 | |
| 336 | const std::vector<std::string>& interfaces2 = |
| 337 | connectionNames[0].second; |
| 338 | const std::array<const char*, 2> hasIndicatorLed = { |
| 339 | "xyz.openbmc_project.Inventory.Item.Panel", |
| 340 | "xyz.openbmc_project.Inventory.Item.Board." |
| 341 | "Motherboard"}; |
| 342 | |
Tejas Patil | 476b9cc | 2021-06-04 17:09:14 +0530 | [diff] [blame] | 343 | const std::string assetTagInterface = |
| 344 | "xyz.openbmc_project.Inventory.Decorator." |
| 345 | "AssetTag"; |
| 346 | if (std::find(interfaces2.begin(), interfaces2.end(), |
| 347 | assetTagInterface) != interfaces2.end()) |
| 348 | { |
| 349 | crow::connections::systemBus->async_method_call( |
| 350 | [asyncResp, chassisId(std::string(chassisId))]( |
| 351 | const boost::system::error_code ec, |
| 352 | const std::variant<std::string>& property) { |
| 353 | if (ec) |
| 354 | { |
| 355 | BMCWEB_LOG_DEBUG |
| 356 | << "DBus response error for " |
| 357 | "AssetTag"; |
| 358 | messages::internalError(asyncResp->res); |
| 359 | return; |
| 360 | } |
| 361 | |
| 362 | const std::string* assetTag = |
| 363 | std::get_if<std::string>(&property); |
| 364 | if (assetTag == nullptr) |
| 365 | { |
| 366 | BMCWEB_LOG_DEBUG |
| 367 | << "Null value returned " |
| 368 | "for Chassis AssetTag"; |
| 369 | messages::internalError(asyncResp->res); |
| 370 | return; |
| 371 | } |
| 372 | asyncResp->res.jsonValue["AssetTag"] = |
| 373 | *assetTag; |
| 374 | }, |
| 375 | connectionName, path, |
| 376 | "org.freedesktop.DBus.Properties", "Get", |
| 377 | assetTagInterface, "AssetTag"); |
| 378 | } |
| 379 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 380 | for (const char* interface : hasIndicatorLed) |
| 381 | { |
| 382 | if (std::find(interfaces2.begin(), |
| 383 | interfaces2.end(), |
| 384 | interface) != interfaces2.end()) |
| 385 | { |
| 386 | getIndicatorLedState(asyncResp); |
| 387 | getLocationIndicatorActive(asyncResp); |
| 388 | break; |
| 389 | } |
| 390 | } |
| 391 | |
SunnySrivastava1984 | 88ad7f0 | 2020-12-03 10:27:52 -0600 | [diff] [blame] | 392 | crow::connections::systemBus->async_method_call( |
| 393 | [asyncResp, chassisId(std::string(chassisId))]( |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 394 | const boost::system::error_code /*ec2*/, |
| 395 | const std::vector< |
| 396 | std::pair<std::string, VariantType>>& |
| 397 | propertiesList) { |
| 398 | for (const std::pair<std::string, VariantType>& |
| 399 | property : propertiesList) |
SunnySrivastava1984 | 88ad7f0 | 2020-12-03 10:27:52 -0600 | [diff] [blame] | 400 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 401 | // Store DBus properties that are also |
| 402 | // Redfish properties with same name and a |
| 403 | // string value |
| 404 | const std::string& propertyName = |
| 405 | property.first; |
| 406 | if ((propertyName == "PartNumber") || |
| 407 | (propertyName == "SerialNumber") || |
| 408 | (propertyName == "Manufacturer") || |
| 409 | (propertyName == "Model")) |
Shawn McCarney | 99cffd7 | 2019-03-01 10:46:20 -0600 | [diff] [blame] | 410 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 411 | const std::string* value = |
| 412 | std::get_if<std::string>( |
| 413 | &property.second); |
| 414 | if (value != nullptr) |
| 415 | { |
| 416 | asyncResp->res |
| 417 | .jsonValue[propertyName] = |
| 418 | *value; |
| 419 | } |
Shawn McCarney | 99cffd7 | 2019-03-01 10:46:20 -0600 | [diff] [blame] | 420 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 421 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 422 | asyncResp->res.jsonValue["Name"] = chassisId; |
| 423 | asyncResp->res.jsonValue["Id"] = chassisId; |
zhanghch05 | 0256b69 | 2021-06-12 10:26:52 +0800 | [diff] [blame] | 424 | #ifdef BMCWEB_ALLOW_DEPRECATED_POWER_THERMAL |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 425 | asyncResp->res.jsonValue["Thermal"] = { |
| 426 | {"@odata.id", "/redfish/v1/Chassis/" + |
| 427 | chassisId + "/Thermal"}}; |
| 428 | // Power object |
| 429 | asyncResp->res.jsonValue["Power"] = { |
| 430 | {"@odata.id", "/redfish/v1/Chassis/" + |
| 431 | chassisId + "/Power"}}; |
zhanghch05 | 0256b69 | 2021-06-12 10:26:52 +0800 | [diff] [blame] | 432 | #endif |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 433 | // SensorCollection |
| 434 | asyncResp->res.jsonValue["Sensors"] = { |
| 435 | {"@odata.id", "/redfish/v1/Chassis/" + |
| 436 | chassisId + "/Sensors"}}; |
| 437 | asyncResp->res.jsonValue["Status"] = { |
| 438 | {"State", "Enabled"}, |
| 439 | }; |
| 440 | |
| 441 | asyncResp->res |
| 442 | .jsonValue["Links"]["ComputerSystems"] = { |
| 443 | {{"@odata.id", |
| 444 | "/redfish/v1/Systems/system"}}}; |
| 445 | asyncResp->res.jsonValue["Links"]["ManagedBy"] = |
| 446 | {{{"@odata.id", |
| 447 | "/redfish/v1/Managers/bmc"}}}; |
| 448 | getChassisState(asyncResp); |
| 449 | }, |
| 450 | connectionName, path, |
| 451 | "org.freedesktop.DBus.Properties", "GetAll", |
| 452 | "xyz.openbmc_project.Inventory.Decorator.Asset"); |
Sharad Yadav | 2c37b4b | 2021-05-10 12:53:38 +0530 | [diff] [blame] | 453 | |
Willy Tu | 308f70c | 2021-09-28 20:24:52 -0700 | [diff] [blame^] | 454 | for (const auto& interface : interfaces2) |
Sharad Yadav | 2c37b4b | 2021-05-10 12:53:38 +0530 | [diff] [blame] | 455 | { |
Willy Tu | 308f70c | 2021-09-28 20:24:52 -0700 | [diff] [blame^] | 456 | if (interface == "xyz.openbmc_project.Common.UUID") |
| 457 | { |
| 458 | getChassisUUID(asyncResp, connectionName, path); |
| 459 | } |
| 460 | else if (interface == |
| 461 | "xyz.openbmc_project.Inventory." |
| 462 | "Decorator.LocationCode") |
| 463 | { |
| 464 | getChassisLocationCode(asyncResp, |
| 465 | connectionName, path); |
| 466 | } |
Sharad Yadav | 2c37b4b | 2021-05-10 12:53:38 +0530 | [diff] [blame] | 467 | } |
| 468 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 469 | return; |
| 470 | } |
| 471 | |
| 472 | // Couldn't find an object with that name. return an error |
| 473 | messages::resourceNotFound( |
| 474 | asyncResp->res, "#Chassis.v1_14_0.Chassis", chassisId); |
| 475 | }, |
| 476 | "xyz.openbmc_project.ObjectMapper", |
| 477 | "/xyz/openbmc_project/object_mapper", |
| 478 | "xyz.openbmc_project.ObjectMapper", "GetSubTree", |
| 479 | "/xyz/openbmc_project/inventory", 0, interfaces); |
| 480 | |
| 481 | getPhysicalSecurityData(asyncResp); |
| 482 | }); |
| 483 | |
| 484 | BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 485 | .privileges(redfish::privileges::patchChassis) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 486 | .methods( |
| 487 | boost::beast::http::verb:: |
| 488 | patch)([](const crow::Request& req, |
| 489 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 490 | const std::string& param) { |
| 491 | std::optional<bool> locationIndicatorActive; |
| 492 | std::optional<std::string> indicatorLed; |
| 493 | |
| 494 | if (param.empty()) |
| 495 | { |
| 496 | return; |
| 497 | } |
| 498 | |
| 499 | if (!json_util::readJson( |
| 500 | req, asyncResp->res, "LocationIndicatorActive", |
| 501 | locationIndicatorActive, "IndicatorLED", indicatorLed)) |
| 502 | { |
| 503 | return; |
| 504 | } |
| 505 | |
| 506 | // TODO (Gunnar): Remove IndicatorLED after enough time has passed |
| 507 | if (!locationIndicatorActive && !indicatorLed) |
| 508 | { |
| 509 | return; // delete this when we support more patch properties |
| 510 | } |
| 511 | if (indicatorLed) |
| 512 | { |
| 513 | asyncResp->res.addHeader( |
| 514 | boost::beast::http::field::warning, |
| 515 | "299 - \"IndicatorLED is deprecated. Use " |
| 516 | "LocationIndicatorActive instead.\""); |
| 517 | } |
| 518 | |
| 519 | const std::array<const char*, 2> interfaces = { |
| 520 | "xyz.openbmc_project.Inventory.Item.Board", |
| 521 | "xyz.openbmc_project.Inventory.Item.Chassis"}; |
| 522 | |
| 523 | const std::string& chassisId = param; |
| 524 | |
| 525 | crow::connections::systemBus->async_method_call( |
| 526 | [asyncResp, chassisId, locationIndicatorActive, indicatorLed]( |
| 527 | const boost::system::error_code ec, |
| 528 | const crow::openbmc_mapper::GetSubTreeType& subtree) { |
| 529 | if (ec) |
| 530 | { |
| 531 | messages::internalError(asyncResp->res); |
| 532 | return; |
| 533 | } |
| 534 | |
| 535 | // Iterate over all retrieved ObjectPaths. |
| 536 | for (const std::pair< |
| 537 | std::string, |
| 538 | std::vector<std::pair<std::string, |
| 539 | std::vector<std::string>>>>& |
| 540 | object : subtree) |
| 541 | { |
| 542 | const std::string& path = object.first; |
| 543 | const std::vector< |
| 544 | std::pair<std::string, std::vector<std::string>>>& |
| 545 | connectionNames = object.second; |
| 546 | |
| 547 | if (!boost::ends_with(path, chassisId)) |
| 548 | { |
| 549 | continue; |
| 550 | } |
| 551 | |
| 552 | if (connectionNames.size() < 1) |
| 553 | { |
| 554 | BMCWEB_LOG_ERROR << "Got 0 Connection names"; |
| 555 | continue; |
| 556 | } |
| 557 | |
| 558 | const std::vector<std::string>& interfaces3 = |
| 559 | connectionNames[0].second; |
| 560 | |
| 561 | const std::array<const char*, 2> hasIndicatorLed = { |
| 562 | "xyz.openbmc_project.Inventory.Item.Panel", |
| 563 | "xyz.openbmc_project.Inventory.Item.Board." |
| 564 | "Motherboard"}; |
| 565 | bool indicatorChassis = false; |
| 566 | for (const char* interface : hasIndicatorLed) |
| 567 | { |
| 568 | if (std::find(interfaces3.begin(), |
| 569 | interfaces3.end(), |
| 570 | interface) != interfaces3.end()) |
| 571 | { |
| 572 | indicatorChassis = true; |
| 573 | break; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 574 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 575 | } |
| 576 | if (locationIndicatorActive) |
| 577 | { |
| 578 | if (indicatorChassis) |
| 579 | { |
| 580 | setLocationIndicatorActive( |
| 581 | asyncResp, *locationIndicatorActive); |
| 582 | } |
| 583 | else |
| 584 | { |
| 585 | messages::propertyUnknown( |
| 586 | asyncResp->res, "LocationIndicatorActive"); |
| 587 | } |
| 588 | } |
| 589 | if (indicatorLed) |
| 590 | { |
| 591 | if (indicatorChassis) |
| 592 | { |
| 593 | setIndicatorLedState(asyncResp, *indicatorLed); |
| 594 | } |
| 595 | else |
| 596 | { |
| 597 | messages::propertyUnknown(asyncResp->res, |
| 598 | "IndicatorLED"); |
| 599 | } |
| 600 | } |
| 601 | return; |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 602 | } |
| 603 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 604 | messages::resourceNotFound( |
| 605 | asyncResp->res, "#Chassis.v1_14_0.Chassis", chassisId); |
| 606 | }, |
| 607 | "xyz.openbmc_project.ObjectMapper", |
| 608 | "/xyz/openbmc_project/object_mapper", |
| 609 | "xyz.openbmc_project.ObjectMapper", "GetSubTree", |
| 610 | "/xyz/openbmc_project/inventory", 0, interfaces); |
| 611 | }); |
| 612 | } |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 613 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 614 | inline void |
| 615 | doChassisPowerCycle(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 616 | { |
Vijay Khemka | c3b3c92 | 2020-09-22 23:00:12 -0700 | [diff] [blame] | 617 | const char* busName = "xyz.openbmc_project.ObjectMapper"; |
| 618 | const char* path = "/xyz/openbmc_project/object_mapper"; |
| 619 | const char* interface = "xyz.openbmc_project.ObjectMapper"; |
| 620 | const char* method = "GetSubTreePaths"; |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 621 | |
Vijay Khemka | c3b3c92 | 2020-09-22 23:00:12 -0700 | [diff] [blame] | 622 | const std::array<const char*, 1> interfaces = { |
| 623 | "xyz.openbmc_project.State.Chassis"}; |
| 624 | |
| 625 | // Use mapper to get subtree paths. |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 626 | crow::connections::systemBus->async_method_call( |
Vijay Khemka | c3b3c92 | 2020-09-22 23:00:12 -0700 | [diff] [blame] | 627 | [asyncResp](const boost::system::error_code ec, |
| 628 | const std::vector<std::string>& chassisList) { |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 629 | if (ec) |
| 630 | { |
Vijay Khemka | c3b3c92 | 2020-09-22 23:00:12 -0700 | [diff] [blame] | 631 | BMCWEB_LOG_DEBUG << "[mapper] Bad D-Bus request error: " << ec; |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 632 | messages::internalError(asyncResp->res); |
| 633 | return; |
| 634 | } |
| 635 | |
Vijay Khemka | c3b3c92 | 2020-09-22 23:00:12 -0700 | [diff] [blame] | 636 | const char* processName = "xyz.openbmc_project.State.Chassis"; |
| 637 | const char* interfaceName = "xyz.openbmc_project.State.Chassis"; |
| 638 | const char* destProperty = "RequestedPowerTransition"; |
| 639 | const std::string propertyValue = |
| 640 | "xyz.openbmc_project.State.Chassis.Transition.PowerCycle"; |
| 641 | std::string objectPath = |
| 642 | "/xyz/openbmc_project/state/chassis_system0"; |
| 643 | |
| 644 | /* Look for system reset chassis path */ |
| 645 | if ((std::find(chassisList.begin(), chassisList.end(), |
| 646 | objectPath)) == chassisList.end()) |
| 647 | { |
| 648 | /* We prefer to reset the full chassis_system, but if it doesn't |
| 649 | * exist on some platforms, fall back to a host-only power reset |
| 650 | */ |
| 651 | objectPath = "/xyz/openbmc_project/state/chassis0"; |
| 652 | } |
| 653 | |
| 654 | crow::connections::systemBus->async_method_call( |
| 655 | [asyncResp](const boost::system::error_code ec) { |
| 656 | // Use "Set" method to set the property value. |
| 657 | if (ec) |
| 658 | { |
| 659 | BMCWEB_LOG_DEBUG << "[Set] Bad D-Bus request error: " |
| 660 | << ec; |
| 661 | messages::internalError(asyncResp->res); |
| 662 | return; |
| 663 | } |
| 664 | |
| 665 | messages::success(asyncResp->res); |
| 666 | }, |
| 667 | processName, objectPath, "org.freedesktop.DBus.Properties", |
| 668 | "Set", interfaceName, destProperty, |
| 669 | std::variant<std::string>{propertyValue}); |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 670 | }, |
Vijay Khemka | c3b3c92 | 2020-09-22 23:00:12 -0700 | [diff] [blame] | 671 | busName, path, interface, method, "/", 0, interfaces); |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | /** |
| 675 | * ChassisResetAction class supports the POST method for the Reset |
| 676 | * action. |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 677 | * Function handles POST method request. |
| 678 | * Analyzes POST body before sending Reset request data to D-Bus. |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 679 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 680 | |
| 681 | inline void requestRoutesChassisResetAction(App& app) |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 682 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 683 | BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/Actions/Chassis.Reset/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 684 | .privileges(redfish::privileges::postChassis) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 685 | .methods(boost::beast::http::verb::post)( |
| 686 | [](const crow::Request& req, |
| 687 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 688 | const std::string&) { |
| 689 | BMCWEB_LOG_DEBUG << "Post Chassis Reset."; |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 690 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 691 | std::string resetType; |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 692 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 693 | if (!json_util::readJson(req, asyncResp->res, "ResetType", |
| 694 | resetType)) |
| 695 | { |
| 696 | return; |
| 697 | } |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 698 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 699 | if (resetType != "PowerCycle") |
| 700 | { |
| 701 | BMCWEB_LOG_DEBUG << "Invalid property value for ResetType: " |
| 702 | << resetType; |
| 703 | messages::actionParameterNotSupported( |
| 704 | asyncResp->res, resetType, "ResetType"); |
P.K. Lee | dd99e04 | 2020-06-17 19:43:16 +0800 | [diff] [blame] | 705 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 706 | return; |
| 707 | } |
| 708 | doChassisPowerCycle(asyncResp); |
| 709 | }); |
| 710 | } |
AppaRao Puli | 1cb1a9e | 2020-07-17 23:38:57 +0530 | [diff] [blame] | 711 | |
| 712 | /** |
| 713 | * ChassisResetActionInfo derived class for delivering Chassis |
| 714 | * ResetType AllowableValues using ResetInfo schema. |
| 715 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 716 | inline void requestRoutesChassisResetActionInfo(App& app) |
AppaRao Puli | 1cb1a9e | 2020-07-17 23:38:57 +0530 | [diff] [blame] | 717 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 718 | BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/ResetActionInfo/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 719 | .privileges(redfish::privileges::getActionInfo) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 720 | .methods(boost::beast::http::verb::get)( |
| 721 | [](const crow::Request&, |
| 722 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 723 | const std::string& chassisId) |
AppaRao Puli | 1cb1a9e | 2020-07-17 23:38:57 +0530 | [diff] [blame] | 724 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 725 | { |
| 726 | asyncResp->res.jsonValue = { |
| 727 | {"@odata.type", "#ActionInfo.v1_1_2.ActionInfo"}, |
| 728 | {"@odata.id", |
| 729 | "/redfish/v1/Chassis/" + chassisId + "/ResetActionInfo"}, |
| 730 | {"Name", "Reset Action Info"}, |
| 731 | {"Id", "ResetActionInfo"}, |
| 732 | {"Parameters", |
| 733 | {{{"Name", "ResetType"}, |
| 734 | {"Required", true}, |
| 735 | {"DataType", "String"}, |
| 736 | {"AllowableValues", {"PowerCycle"}}}}}}; |
| 737 | }); |
| 738 | } |
AppaRao Puli | 1cb1a9e | 2020-07-17 23:38:57 +0530 | [diff] [blame] | 739 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 740 | } // namespace redfish |