blob: 2100fabba24f89bf91b2b1417c0702e9e1d2ae77 [file] [log] [blame]
Feras Aldahlawi735ef6d2021-03-19 14:01:46 -07001#pragma once
2
3#include <app.hpp>
4#include <async_resp.hpp>
Jiaqing Zhaob6a55182022-05-20 11:47:46 +08005#include <dbus_utility.hpp>
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -07006#include <error_messages.hpp>
Feras Aldahlawi735ef6d2021-03-19 14:01:46 -07007#include <nlohmann/json.hpp>
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -07008#include <utils/collection.hpp>
9#include <utils/hex_utils.hpp>
10#include <utils/json_utils.hpp>
11
12#include <vector>
Feras Aldahlawi735ef6d2021-03-19 14:01:46 -070013
14namespace crow
15{
16namespace google_api
17{
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -070018
Nan Zhou30aacdd2022-07-03 05:02:36 +000019inline void
20 handleGoogleV1Get(const crow::Request& /*req*/,
21 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -070022{
23 asyncResp->res.jsonValue["@odata.type"] =
24 "#GoogleServiceRoot.v1_0_0.GoogleServiceRoot";
25 asyncResp->res.jsonValue["@odata.id"] = "/google/v1";
26 asyncResp->res.jsonValue["Id"] = "Google Rest RootService";
27 asyncResp->res.jsonValue["Name"] = "Google Service Root";
28 asyncResp->res.jsonValue["Version"] = "1.0.0";
29 asyncResp->res.jsonValue["RootOfTrustCollection"]["@odata.id"] =
Nan Zhoucd027592022-07-03 05:18:29 +000030 "/google/v1/RootOfTrustCollection";
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -070031}
32
Nan Zhou30aacdd2022-07-03 05:02:36 +000033inline void handleRootOfTrustCollectionGet(
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -070034 const crow::Request& /*req*/,
35 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
36{
Nan Zhoucd027592022-07-03 05:18:29 +000037 asyncResp->res.jsonValue["@odata.id"] = "/google/v1/RootOfTrustCollection";
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -070038 asyncResp->res.jsonValue["@odata.type"] =
39 "#RootOfTrustCollection.RootOfTrustCollection";
40 redfish::collection_util::getCollectionMembers(
Nan Zhoucd027592022-07-03 05:18:29 +000041 asyncResp, "/google/v1/RootOfTrustCollection",
42 {"xyz.openbmc_project.Control.Hoth"}, "/xyz/openbmc_project");
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -070043}
44
45// Helper struct to identify a resolved D-Bus object interface
46struct ResolvedEntity
47{
48 std::string id;
49 std::string service;
50 std::string object;
Nan Zhou16a55352022-07-03 05:06:08 +000051 std::string interface;
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -070052};
53
54using ResolvedEntityHandler = std::function<void(
55 const std::string&, const std::shared_ptr<bmcweb::AsyncResp>&,
56 const ResolvedEntity&)>;
57
Nan Zhou30aacdd2022-07-03 05:02:36 +000058inline void hothGetSubtreeCallback(
59 const std::string& command,
60 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
61 const std::string& rotId, const ResolvedEntityHandler& entityHandler,
62 const boost::system::error_code ec,
63 const dbus::utility::MapperGetSubTreeResponse& subtree)
64{
65 if (ec)
66 {
67 redfish::messages::internalError(asyncResp->res);
68 return;
69 }
Nan Zhou5600f022022-07-03 16:22:38 +000070 for (const auto& [path, services] : subtree)
Nan Zhou30aacdd2022-07-03 05:02:36 +000071 {
Nan Zhou5600f022022-07-03 16:22:38 +000072 sdbusplus::message::object_path objPath(path);
73 if (objPath.filename() != rotId || services.empty())
Nan Zhou30aacdd2022-07-03 05:02:36 +000074 {
75 continue;
76 }
77
Nan Zhoucd027592022-07-03 05:18:29 +000078 ResolvedEntity resolvedEntity = {
79 .id = rotId,
Nan Zhou5600f022022-07-03 16:22:38 +000080 .service = services[0].first,
81 .object = path,
Nan Zhoucd027592022-07-03 05:18:29 +000082 .interface = "xyz.openbmc_project.Control.Hoth"};
Nan Zhou30aacdd2022-07-03 05:02:36 +000083 entityHandler(command, asyncResp, resolvedEntity);
84 return;
85 }
86
87 // Couldn't find an object with that name. return an error
88 redfish::messages::resourceNotFound(
89 asyncResp->res, "#RootOfTrust.v1_0_0.RootOfTrust", rotId);
90}
91
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -070092inline void resolveRoT(const std::string& command,
93 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
94 const std::string& rotId,
95 ResolvedEntityHandler&& entityHandler)
96{
Nan Zhou30aacdd2022-07-03 05:02:36 +000097
Nan Zhoucd027592022-07-03 05:18:29 +000098 std::array<std::string, 1> hothIfaces = {
99 "xyz.openbmc_project.Control.Hoth"};
Nan Zhou30aacdd2022-07-03 05:02:36 +0000100 crow::connections::systemBus->async_method_call(
Ed Tanous002d39b2022-05-31 08:59:27 -0700101 [command, asyncResp, rotId,
102 entityHandler{std::forward<ResolvedEntityHandler>(entityHandler)}](
103 const boost::system::error_code ec,
104 const dbus::utility::MapperGetSubTreeResponse& subtree) {
Nan Zhou30aacdd2022-07-03 05:02:36 +0000105 hothGetSubtreeCallback(command, asyncResp, rotId, entityHandler, ec,
106 subtree);
107 },
108 "xyz.openbmc_project.ObjectMapper",
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700109 "/xyz/openbmc_project/object_mapper",
Nan Zhoucd027592022-07-03 05:18:29 +0000110 "xyz.openbmc_project.ObjectMapper", "GetSubTree",
111 "/xyz/openbmc_project",
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700112 /*depth=*/0, hothIfaces);
113}
114
115inline 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";
121 asyncResp->res.jsonValue["@odata.id"] =
122 "/google/v1/RootOfTrustCollection/" + resolvedEntity.id;
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 Zhou30aacdd2022-07-03 05:02:36 +0000139inline void
140 handleRootOfTrustGet(const crow::Request& /*req*/,
141 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
142 const std::string& param)
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700143{
Nan Zhou30aacdd2022-07-03 05:02:36 +0000144 std::string emptyCommand;
145 resolveRoT(emptyCommand, asyncResp, param, populateRootOfTrustEntity);
146}
147
148inline void
149 invocationCallback(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
150 const boost::system::error_code ec,
151 const std::vector<uint8_t>& responseBytes)
152{
153 if (ec)
154 {
155 BMCWEB_LOG_ERROR << "RootOfTrust.Actions.SendCommand failed: "
156 << ec.message();
157 redfish::messages::internalError(asyncResp->res);
158 return;
159 }
160
161 asyncResp->res.jsonValue["CommandResponse"] =
162 bytesToHexString(responseBytes);
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700163}
164
165inline void
166 invokeRoTCommand(const std::string& command,
167 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
168 const ResolvedEntity& resolvedEntity)
169{
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700170 std::vector<uint8_t> bytes = hexStringToBytes(command);
171 if (bytes.empty())
172 {
173 BMCWEB_LOG_DEBUG << "Invalid command: " << command;
174 redfish::messages::actionParameterValueTypeError(command, "Command",
175 "SendCommand");
176 return;
177 }
178
179 crow::connections::systemBus->async_method_call(
Nan Zhou30aacdd2022-07-03 05:02:36 +0000180 [asyncResp{asyncResp}](const boost::system::error_code ec,
181 const std::vector<uint8_t>& responseBytes) {
182 invocationCallback(asyncResp, ec, responseBytes);
183 },
184 resolvedEntity.service, resolvedEntity.object, resolvedEntity.interface,
185 "SendHostCommand", bytes);
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700186}
187
Nan Zhou30aacdd2022-07-03 05:02:36 +0000188inline void handleRoTSendCommandPost(
189 const crow::Request& request,
190 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
191 const std::string& rotId)
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700192{
193 std::string command;
194 if (!redfish::json_util::readJsonAction(request, asyncResp->res, "Command",
195 command))
196 {
197 BMCWEB_LOG_DEBUG << "Missing property Command.";
198 redfish::messages::actionParameterMissing(asyncResp->res, "SendCommand",
199 "Command");
200 return;
201 }
202
203 resolveRoT(command, asyncResp, rotId, invokeRoTCommand);
204}
Feras Aldahlawi735ef6d2021-03-19 14:01:46 -0700205
206inline void requestRoutes(App& app)
207{
208 BMCWEB_ROUTE(app, "/google/v1/")
Nan Zhou30aacdd2022-07-03 05:02:36 +0000209 .methods(boost::beast::http::verb::get)(handleGoogleV1Get);
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700210
211 BMCWEB_ROUTE(app, "/google/v1/RootOfTrustCollection")
212 .privileges({{"ConfigureManager"}})
Nan Zhou30aacdd2022-07-03 05:02:36 +0000213 .methods(boost::beast::http::verb::get)(handleRootOfTrustCollectionGet);
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700214
215 BMCWEB_ROUTE(app, "/google/v1/RootOfTrustCollection/<str>")
216 .privileges({{"ConfigureManager"}})
Nan Zhou30aacdd2022-07-03 05:02:36 +0000217 .methods(boost::beast::http::verb::get)(handleRootOfTrustGet);
Vidya Satyamsetti4cee35e2022-04-21 14:53:44 -0700218
219 BMCWEB_ROUTE(
220 app,
221 "/google/v1/RootOfTrustCollection/<str>/Actions/RootOfTrust.SendCommand")
222 .privileges({{"ConfigureManager"}})
Nan Zhou30aacdd2022-07-03 05:02:36 +0000223 .methods(boost::beast::http::verb::post)(handleRoTSendCommandPost);
Feras Aldahlawi735ef6d2021-03-19 14:01:46 -0700224}
225
226} // namespace google_api
227} // namespace crow