Feras Aldahlawi | 735ef6d | 2021-03-19 14:01:46 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 3 | #include "app.hpp" |
| 4 | #include "async_resp.hpp" |
| 5 | #include "dbus_utility.hpp" |
| 6 | #include "error_messages.hpp" |
| 7 | #include "utils/collection.hpp" |
| 8 | #include "utils/hex_utils.hpp" |
| 9 | #include "utils/json_utils.hpp" |
| 10 | |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 11 | #include <boost/system/error_code.hpp> |
Ed Tanous | ef4c65b | 2023-04-24 15:28:50 -0700 | [diff] [blame] | 12 | #include <boost/url/format.hpp> |
Feras Aldahlawi | 735ef6d | 2021-03-19 14:01:46 -0700 | [diff] [blame] | 13 | #include <nlohmann/json.hpp> |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 14 | |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 15 | #include <array> |
| 16 | #include <string_view> |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 17 | #include <vector> |
Feras Aldahlawi | 735ef6d | 2021-03-19 14:01:46 -0700 | [diff] [blame] | 18 | |
| 19 | namespace crow |
| 20 | { |
| 21 | namespace google_api |
| 22 | { |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 23 | |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 24 | inline void |
| 25 | handleGoogleV1Get(const crow::Request& /*req*/, |
| 26 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 27 | { |
| 28 | asyncResp->res.jsonValue["@odata.type"] = |
| 29 | "#GoogleServiceRoot.v1_0_0.GoogleServiceRoot"; |
| 30 | asyncResp->res.jsonValue["@odata.id"] = "/google/v1"; |
| 31 | asyncResp->res.jsonValue["Id"] = "Google Rest RootService"; |
| 32 | asyncResp->res.jsonValue["Name"] = "Google Service Root"; |
| 33 | asyncResp->res.jsonValue["Version"] = "1.0.0"; |
| 34 | asyncResp->res.jsonValue["RootOfTrustCollection"]["@odata.id"] = |
Nan Zhou | cd02759 | 2022-07-03 05:18:29 +0000 | [diff] [blame] | 35 | "/google/v1/RootOfTrustCollection"; |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 36 | } |
| 37 | |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 38 | inline void handleRootOfTrustCollectionGet( |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 39 | const crow::Request& /*req*/, |
| 40 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
| 41 | { |
Nan Zhou | cd02759 | 2022-07-03 05:18:29 +0000 | [diff] [blame] | 42 | asyncResp->res.jsonValue["@odata.id"] = "/google/v1/RootOfTrustCollection"; |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 43 | asyncResp->res.jsonValue["@odata.type"] = |
| 44 | "#RootOfTrustCollection.RootOfTrustCollection"; |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 45 | const std::array<std::string_view, 1> interfaces{ |
| 46 | "xyz.openbmc_project.Control.Hoth"}; |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 47 | redfish::collection_util::getCollectionMembers( |
Willy Tu | ae9031f | 2022-09-27 05:48:07 +0000 | [diff] [blame] | 48 | asyncResp, boost::urls::url("/google/v1/RootOfTrustCollection"), |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 49 | interfaces, "/xyz/openbmc_project"); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | // Helper struct to identify a resolved D-Bus object interface |
| 53 | struct ResolvedEntity |
| 54 | { |
| 55 | std::string id; |
| 56 | std::string service; |
| 57 | std::string object; |
Nan Zhou | 16a5535 | 2022-07-03 05:06:08 +0000 | [diff] [blame] | 58 | std::string interface; |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | using ResolvedEntityHandler = std::function<void( |
| 62 | const std::string&, const std::shared_ptr<bmcweb::AsyncResp>&, |
| 63 | const ResolvedEntity&)>; |
| 64 | |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 65 | inline void hothGetSubtreeCallback( |
| 66 | const std::string& command, |
| 67 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 68 | const std::string& rotId, const ResolvedEntityHandler& entityHandler, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 69 | const boost::system::error_code& ec, |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 70 | const dbus::utility::MapperGetSubTreeResponse& subtree) |
| 71 | { |
| 72 | if (ec) |
| 73 | { |
| 74 | redfish::messages::internalError(asyncResp->res); |
| 75 | return; |
| 76 | } |
Nan Zhou | 5600f02 | 2022-07-03 16:22:38 +0000 | [diff] [blame] | 77 | for (const auto& [path, services] : subtree) |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 78 | { |
Nan Zhou | 5600f02 | 2022-07-03 16:22:38 +0000 | [diff] [blame] | 79 | sdbusplus::message::object_path objPath(path); |
| 80 | if (objPath.filename() != rotId || services.empty()) |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 81 | { |
| 82 | continue; |
| 83 | } |
| 84 | |
Nan Zhou | cd02759 | 2022-07-03 05:18:29 +0000 | [diff] [blame] | 85 | ResolvedEntity resolvedEntity = { |
| 86 | .id = rotId, |
Nan Zhou | 5600f02 | 2022-07-03 16:22:38 +0000 | [diff] [blame] | 87 | .service = services[0].first, |
| 88 | .object = path, |
Nan Zhou | cd02759 | 2022-07-03 05:18:29 +0000 | [diff] [blame] | 89 | .interface = "xyz.openbmc_project.Control.Hoth"}; |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 90 | entityHandler(command, asyncResp, resolvedEntity); |
| 91 | return; |
| 92 | } |
| 93 | |
| 94 | // Couldn't find an object with that name. return an error |
Jiaqing Zhao | d8a5d5d | 2022-08-05 16:21:51 +0800 | [diff] [blame] | 95 | redfish::messages::resourceNotFound(asyncResp->res, "RootOfTrust", rotId); |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 98 | inline void resolveRoT(const std::string& command, |
| 99 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 100 | const std::string& rotId, |
| 101 | ResolvedEntityHandler&& entityHandler) |
| 102 | { |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 103 | constexpr std::array<std::string_view, 1> hothIfaces = { |
Nan Zhou | cd02759 | 2022-07-03 05:18:29 +0000 | [diff] [blame] | 104 | "xyz.openbmc_project.Control.Hoth"}; |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 105 | dbus::utility::getSubTree( |
| 106 | "/xyz/openbmc_project", 0, hothIfaces, |
Ed Tanous | 8cb2c02 | 2024-03-27 16:31:46 -0700 | [diff] [blame] | 107 | [command, asyncResp, rotId, entityHandler{std::move(entityHandler)}]( |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 108 | const boost::system::error_code& ec, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 109 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 110 | hothGetSubtreeCallback(command, asyncResp, rotId, entityHandler, ec, |
| 111 | subtree); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 112 | }); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | inline void populateRootOfTrustEntity( |
| 116 | const std::string& /*unused*/, |
| 117 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 118 | const ResolvedEntity& resolvedEntity) |
| 119 | { |
| 120 | asyncResp->res.jsonValue["@odata.type"] = "#RootOfTrust.v1_0_0.RootOfTrust"; |
Ed Tanous | ef4c65b | 2023-04-24 15:28:50 -0700 | [diff] [blame] | 121 | asyncResp->res.jsonValue["@odata.id"] = boost::urls::format( |
| 122 | "/google/v1/RootOfTrustCollection/{}", resolvedEntity.id); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 123 | |
| 124 | asyncResp->res.jsonValue["Status"]["State"] = "Enabled"; |
| 125 | asyncResp->res.jsonValue["Id"] = resolvedEntity.id; |
| 126 | // Need to fix this later to a stabler property. |
| 127 | asyncResp->res.jsonValue["Name"] = resolvedEntity.id; |
| 128 | asyncResp->res.jsonValue["Description"] = "Google Root Of Trust"; |
| 129 | asyncResp->res.jsonValue["Actions"]["#RootOfTrust.SendCommand"]["target"] = |
| 130 | "/google/v1/RootOfTrustCollection/" + resolvedEntity.id + |
| 131 | "/Actions/RootOfTrust.SendCommand"; |
| 132 | |
| 133 | asyncResp->res.jsonValue["Location"]["PartLocation"]["ServiceLabel"] = |
| 134 | resolvedEntity.id; |
| 135 | asyncResp->res.jsonValue["Location"]["PartLocation"]["LocationType"] = |
| 136 | "Embedded"; |
| 137 | } |
| 138 | |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 139 | inline void |
| 140 | handleRootOfTrustGet(const crow::Request& /*req*/, |
| 141 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 142 | const std::string& param) |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 143 | { |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 144 | std::string emptyCommand; |
| 145 | resolveRoT(emptyCommand, asyncResp, param, populateRootOfTrustEntity); |
| 146 | } |
| 147 | |
| 148 | inline void |
| 149 | invocationCallback(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 150 | const boost::system::error_code& ec, |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 151 | const std::vector<uint8_t>& responseBytes) |
| 152 | { |
| 153 | if (ec) |
| 154 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 155 | BMCWEB_LOG_ERROR("RootOfTrust.Actions.SendCommand failed: {}", |
| 156 | ec.message()); |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 157 | redfish::messages::internalError(asyncResp->res); |
| 158 | return; |
| 159 | } |
| 160 | |
| 161 | asyncResp->res.jsonValue["CommandResponse"] = |
| 162 | bytesToHexString(responseBytes); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | inline void |
| 166 | invokeRoTCommand(const std::string& command, |
| 167 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 168 | const ResolvedEntity& resolvedEntity) |
| 169 | { |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 170 | std::vector<uint8_t> bytes = hexStringToBytes(command); |
| 171 | if (bytes.empty()) |
| 172 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 173 | BMCWEB_LOG_DEBUG("Invalid command: {}", command); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 174 | redfish::messages::actionParameterValueTypeError(command, "Command", |
| 175 | "SendCommand"); |
| 176 | return; |
| 177 | } |
| 178 | |
| 179 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 180 | [asyncResp{asyncResp}](const boost::system::error_code& ec, |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 181 | const std::vector<uint8_t>& responseBytes) { |
| 182 | invocationCallback(asyncResp, ec, responseBytes); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 183 | }, |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 184 | resolvedEntity.service, resolvedEntity.object, resolvedEntity.interface, |
| 185 | "SendHostCommand", bytes); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 188 | inline void handleRoTSendCommandPost( |
| 189 | const crow::Request& request, |
| 190 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 191 | const std::string& rotId) |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 192 | { |
| 193 | std::string command; |
| 194 | if (!redfish::json_util::readJsonAction(request, asyncResp->res, "Command", |
| 195 | command)) |
| 196 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 197 | BMCWEB_LOG_DEBUG("Missing property Command."); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 198 | redfish::messages::actionParameterMissing(asyncResp->res, "SendCommand", |
| 199 | "Command"); |
| 200 | return; |
| 201 | } |
| 202 | |
| 203 | resolveRoT(command, asyncResp, rotId, invokeRoTCommand); |
| 204 | } |
Feras Aldahlawi | 735ef6d | 2021-03-19 14:01:46 -0700 | [diff] [blame] | 205 | |
| 206 | inline void requestRoutes(App& app) |
| 207 | { |
| 208 | BMCWEB_ROUTE(app, "/google/v1/") |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 209 | .methods(boost::beast::http::verb::get)(handleGoogleV1Get); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 210 | |
| 211 | BMCWEB_ROUTE(app, "/google/v1/RootOfTrustCollection") |
| 212 | .privileges({{"ConfigureManager"}}) |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 213 | .methods(boost::beast::http::verb::get)(handleRootOfTrustCollectionGet); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 214 | |
| 215 | BMCWEB_ROUTE(app, "/google/v1/RootOfTrustCollection/<str>") |
| 216 | .privileges({{"ConfigureManager"}}) |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 217 | .methods(boost::beast::http::verb::get)(handleRootOfTrustGet); |
Vidya Satyamsetti | 4cee35e | 2022-04-21 14:53:44 -0700 | [diff] [blame] | 218 | |
| 219 | BMCWEB_ROUTE( |
| 220 | app, |
| 221 | "/google/v1/RootOfTrustCollection/<str>/Actions/RootOfTrust.SendCommand") |
| 222 | .privileges({{"ConfigureManager"}}) |
Nan Zhou | 30aacdd | 2022-07-03 05:02:36 +0000 | [diff] [blame] | 223 | .methods(boost::beast::http::verb::post)(handleRoTSendCommandPost); |
Feras Aldahlawi | 735ef6d | 2021-03-19 14:01:46 -0700 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | } // namespace google_api |
| 227 | } // namespace crow |