blob: d609acb40e69b82a32df3c2d18bc3a425c85c767 [file] [log] [blame]
Ed Tanous2474adf2018-09-05 16:31:16 -07001/*
2// Copyright (c) 2018 Intel Corporation
3// Copyright (c) 2018 Ampere Computing LLC
4/
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16*/
17#pragma once
18
Ed Tanous2474adf2018-09-05 16:31:16 -070019#include "sensors.hpp"
20
John Edward Broadbent7e860f12021-04-08 15:57:16 -070021#include <app.hpp>
Ed Tanous168e20c2021-12-13 14:39:53 -080022#include <dbus_utility.hpp>
Ed Tanous45ca1b82022-03-25 13:07:27 -070023#include <query.hpp>
Ed Tanoused398212021-06-09 17:05:54 -070024#include <registries/privilege_registry.hpp>
John Edward Broadbent7e860f12021-04-08 15:57:16 -070025
Ed Tanous2474adf2018-09-05 16:31:16 -070026namespace redfish
27{
Ed Tanous4f48d5f2021-06-21 08:27:45 -070028inline void setPowerCapOverride(
John Edward Broadbent7e860f12021-04-08 15:57:16 -070029 const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
30 std::vector<nlohmann::json>& powerControlCollections)
Ed Tanous2474adf2018-09-05 16:31:16 -070031{
George Liu0fda0f12021-11-16 10:06:17 +080032 auto getChassisPath = [sensorsAsyncResp, powerControlCollections](
33 const std::optional<std::string>&
34 chassisPath) mutable {
35 if (!chassisPath)
36 {
37 BMCWEB_LOG_ERROR << "Don't find valid chassis path ";
38 messages::resourceNotFound(sensorsAsyncResp->asyncResp->res,
39 "Chassis", sensorsAsyncResp->chassisId);
40 return;
41 }
42
43 if (powerControlCollections.size() != 1)
44 {
45 BMCWEB_LOG_ERROR << "Don't support multiple hosts at present ";
46 messages::resourceNotFound(sensorsAsyncResp->asyncResp->res,
47 "Power", "PowerControl");
48 return;
49 }
50
51 auto& item = powerControlCollections[0];
52
53 std::optional<nlohmann::json> powerLimit;
54 if (!json_util::readJson(item, sensorsAsyncResp->asyncResp->res,
55 "PowerLimit", powerLimit))
56 {
57 return;
58 }
59 if (!powerLimit)
60 {
61 return;
62 }
63 std::optional<uint32_t> value;
64 if (!json_util::readJson(*powerLimit, sensorsAsyncResp->asyncResp->res,
65 "LimitInWatts", value))
66 {
67 return;
68 }
69 if (!value)
70 {
71 return;
72 }
Jonathan Doman1e1e5982021-06-11 09:36:17 -070073 sdbusplus::asio::getProperty<bool>(
74 *crow::connections::systemBus, "xyz.openbmc_project.Settings",
George Liu0fda0f12021-11-16 10:06:17 +080075 "/xyz/openbmc_project/control/host0/power_cap",
Jonathan Doman1e1e5982021-06-11 09:36:17 -070076 "xyz.openbmc_project.Control.Power.Cap", "PowerCapEnable",
77 [value, sensorsAsyncResp](const boost::system::error_code ec,
78 bool powerCapEnable) {
79 if (ec)
80 {
81 messages::internalError(sensorsAsyncResp->asyncResp->res);
82 BMCWEB_LOG_ERROR
83 << "powerCapEnable Get handler: Dbus error " << ec;
84 return;
85 }
86 if (!powerCapEnable)
87 {
88 messages::actionNotSupported(
89 sensorsAsyncResp->asyncResp->res,
90 "Setting LimitInWatts when PowerLimit feature is disabled");
91 BMCWEB_LOG_ERROR << "PowerLimit feature is disabled ";
92 return;
93 }
94
95 crow::connections::systemBus->async_method_call(
96 [sensorsAsyncResp](const boost::system::error_code ec2) {
97 if (ec2)
98 {
99 BMCWEB_LOG_DEBUG << "Power Limit Set: Dbus error: "
100 << ec2;
101 messages::internalError(
102 sensorsAsyncResp->asyncResp->res);
103 return;
104 }
105 sensorsAsyncResp->asyncResp->res.result(
106 boost::beast::http::status::no_content);
107 },
108 "xyz.openbmc_project.Settings",
109 "/xyz/openbmc_project/control/host0/power_cap",
110 "org.freedesktop.DBus.Properties", "Set",
111 "xyz.openbmc_project.Control.Power.Cap", "PowerCap",
112 std::variant<uint32_t>(*value));
113 });
George Liu0fda0f12021-11-16 10:06:17 +0800114 };
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700115 getValidChassisPath(sensorsAsyncResp, std::move(getChassisPath));
116}
117inline void requestRoutesPower(App& app)
118{
Ed Tanous2474adf2018-09-05 16:31:16 -0700119
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700120 BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/Power/")
Ed Tanoused398212021-06-09 17:05:54 -0700121 .privileges(redfish::privileges::getPower)
Ed Tanous168e20c2021-12-13 14:39:53 -0800122 .methods(
Ed Tanous45ca1b82022-03-25 13:07:27 -0700123 boost::beast::http::verb::
124 get)([&app](const crow::Request& req,
125 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
126 const std::string& chassisName) {
127 if (!redfish::setUpRedfishRoute(app, req, asyncResp->res))
128 {
129 return;
130 }
Ed Tanous168e20c2021-12-13 14:39:53 -0800131 asyncResp->res.jsonValue["PowerControl"] = nlohmann::json::array();
Jennifer Leec5d03ff2019-03-08 15:42:58 -0800132
Ed Tanous168e20c2021-12-13 14:39:53 -0800133 auto sensorAsyncResp = std::make_shared<SensorsAsyncResp>(
Ed Tanous02da7c52022-02-27 00:09:02 -0800134 asyncResp, chassisName, sensors::dbus::powerPaths,
Ed Tanous168e20c2021-12-13 14:39:53 -0800135 sensors::node::power);
Eddie James028f7eb2019-05-17 21:24:36 +0000136
Ed Tanous168e20c2021-12-13 14:39:53 -0800137 getChassisData(sensorAsyncResp);
Eddie James028f7eb2019-05-17 21:24:36 +0000138
Ed Tanous168e20c2021-12-13 14:39:53 -0800139 // This callback verifies that the power limit is only provided
140 // for the chassis that implements the Chassis inventory item.
141 // This prevents things like power supplies providing the
142 // chassis power limit
Ed Tanousb9d36b42022-02-26 21:42:46 -0800143
144 using Mapper = dbus::utility::MapperGetSubTreePathsResponse;
Ed Tanous168e20c2021-12-13 14:39:53 -0800145 auto chassisHandler = [sensorAsyncResp](
146 const boost::system::error_code e,
Ed Tanousb9d36b42022-02-26 21:42:46 -0800147 const Mapper& chassisPaths) {
Ed Tanous168e20c2021-12-13 14:39:53 -0800148 if (e)
149 {
150 BMCWEB_LOG_ERROR
151 << "Power Limit GetSubTreePaths handler Dbus error "
152 << e;
153 return;
154 }
155
156 bool found = false;
157 for (const std::string& chassis : chassisPaths)
158 {
159 size_t len = std::string::npos;
160 size_t lastPos = chassis.rfind('/');
161 if (lastPos == std::string::npos)
Eddie James028f7eb2019-05-17 21:24:36 +0000162 {
Ed Tanous168e20c2021-12-13 14:39:53 -0800163 continue;
Eddie James028f7eb2019-05-17 21:24:36 +0000164 }
165
Ed Tanous168e20c2021-12-13 14:39:53 -0800166 if (lastPos == chassis.size() - 1)
Eddie James028f7eb2019-05-17 21:24:36 +0000167 {
Ed Tanous168e20c2021-12-13 14:39:53 -0800168 size_t end = lastPos;
169 lastPos = chassis.rfind('/', lastPos - 1);
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700170 if (lastPos == std::string::npos)
Eddie James028f7eb2019-05-17 21:24:36 +0000171 {
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700172 continue;
Eddie James028f7eb2019-05-17 21:24:36 +0000173 }
Eddie James028f7eb2019-05-17 21:24:36 +0000174
Ed Tanous168e20c2021-12-13 14:39:53 -0800175 len = end - (lastPos + 1);
Eddie James028f7eb2019-05-17 21:24:36 +0000176 }
177
Ed Tanous168e20c2021-12-13 14:39:53 -0800178 std::string interfaceChassisName =
179 chassis.substr(lastPos + 1, len);
Ed Tanous55f79e62022-01-25 11:26:16 -0800180 if (interfaceChassisName == sensorAsyncResp->chassisId)
Eddie James028f7eb2019-05-17 21:24:36 +0000181 {
Ed Tanous168e20c2021-12-13 14:39:53 -0800182 found = true;
183 break;
Eddie James028f7eb2019-05-17 21:24:36 +0000184 }
Ed Tanous168e20c2021-12-13 14:39:53 -0800185 }
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700186
Ed Tanous168e20c2021-12-13 14:39:53 -0800187 if (!found)
188 {
189 BMCWEB_LOG_DEBUG << "Power Limit not present for "
190 << sensorAsyncResp->chassisId;
191 return;
192 }
193
194 auto valueHandler =
195 [sensorAsyncResp](
196 const boost::system::error_code ec,
Ed Tanousb9d36b42022-02-26 21:42:46 -0800197 const dbus::utility::DBusPropertiesMap& properties) {
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700198 if (ec)
199 {
200 messages::internalError(
201 sensorAsyncResp->asyncResp->res);
202 BMCWEB_LOG_ERROR
203 << "Power Limit GetAll handler: Dbus error "
204 << ec;
205 return;
206 }
207
208 nlohmann::json& tempArray =
209 sensorAsyncResp->asyncResp->res
210 .jsonValue["PowerControl"];
211
212 // Put multiple "sensors" into a single PowerControl, 0,
213 // so only create the first one
214 if (tempArray.empty())
215 {
216 // Mandatory properties odata.id and MemberId
217 // A warning without a odata.type
Ed Tanous14766872022-03-15 10:44:42 -0700218 nlohmann::json::object_t powerControl;
219 powerControl["@odata.type"] =
220 "#Power.v1_0_0.PowerControl";
221 powerControl["@odata.id"] =
222 "/redfish/v1/Chassis/" +
223 sensorAsyncResp->chassisId +
224 "/Power#/PowerControl/0";
225 powerControl["Name"] = "Chassis Power Control";
226 powerControl["MemberId"] = "0";
227 tempArray.push_back(std::move(powerControl));
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700228 }
229
230 nlohmann::json& sensorJson = tempArray.back();
231 bool enabled = false;
232 double powerCap = 0.0;
233 int64_t scale = 0;
234
Ed Tanous168e20c2021-12-13 14:39:53 -0800235 for (const std::pair<std::string,
236 dbus::utility::DbusVariantType>&
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700237 property : properties)
238 {
Ed Tanous55f79e62022-01-25 11:26:16 -0800239 if (property.first == "Scale")
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700240 {
241 const int64_t* i =
242 std::get_if<int64_t>(&property.second);
243
Ed Tanouse662eae2022-01-25 10:39:19 -0800244 if (i != nullptr)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700245 {
246 scale = *i;
247 }
248 }
Ed Tanous55f79e62022-01-25 11:26:16 -0800249 else if (property.first == "PowerCap")
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700250 {
251 const double* d =
252 std::get_if<double>(&property.second);
253 const int64_t* i =
254 std::get_if<int64_t>(&property.second);
255 const uint32_t* u =
256 std::get_if<uint32_t>(&property.second);
257
Ed Tanouse662eae2022-01-25 10:39:19 -0800258 if (d != nullptr)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700259 {
260 powerCap = *d;
261 }
Ed Tanouse662eae2022-01-25 10:39:19 -0800262 else if (i != nullptr)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700263 {
264 powerCap = static_cast<double>(*i);
265 }
Ed Tanouse662eae2022-01-25 10:39:19 -0800266 else if (u != nullptr)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700267 {
268 powerCap = *u;
269 }
270 }
Ed Tanous55f79e62022-01-25 11:26:16 -0800271 else if (property.first == "PowerCapEnable")
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700272 {
273 const bool* b =
274 std::get_if<bool>(&property.second);
275
Ed Tanouse662eae2022-01-25 10:39:19 -0800276 if (b != nullptr)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700277 {
278 enabled = *b;
279 }
280 }
281 }
282
283 nlohmann::json& value =
284 sensorJson["PowerLimit"]["LimitInWatts"];
285
286 // LimitException is Mandatory attribute as per OCP
287 // Baseline Profile – v1.0.0, so currently making it
288 // "NoAction" as default value to make it OCP Compliant.
289 sensorJson["PowerLimit"]["LimitException"] = "NoAction";
290
291 if (enabled)
292 {
293 // Redfish specification indicates PowerLimit should
294 // be null if the limit is not enabled.
295 value = powerCap * std::pow(10, scale);
296 }
297 };
298
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700299 crow::connections::systemBus->async_method_call(
Ed Tanous168e20c2021-12-13 14:39:53 -0800300 std::move(valueHandler), "xyz.openbmc_project.Settings",
301 "/xyz/openbmc_project/control/host0/power_cap",
302 "org.freedesktop.DBus.Properties", "GetAll",
303 "xyz.openbmc_project.Control.Power.Cap");
304 };
305
306 crow::connections::systemBus->async_method_call(
307 std::move(chassisHandler), "xyz.openbmc_project.ObjectMapper",
308 "/xyz/openbmc_project/object_mapper",
309 "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths",
310 "/xyz/openbmc_project/inventory", 0,
311 std::array<const char*, 2>{
312 "xyz.openbmc_project.Inventory.Item.Board",
313 "xyz.openbmc_project.Inventory.Item.Chassis"});
314 });
Eddie James028f7eb2019-05-17 21:24:36 +0000315
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700316 BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/Power/")
Ed Tanoused398212021-06-09 17:05:54 -0700317 .privileges(redfish::privileges::patchPower)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700318 .methods(boost::beast::http::verb::patch)(
Ed Tanous45ca1b82022-03-25 13:07:27 -0700319 [&app](const crow::Request& req,
320 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
321 const std::string& chassisName) {
322 if (!redfish::setUpRedfishRoute(app, req, asyncResp->res))
323 {
324 return;
325 }
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700326 auto sensorAsyncResp = std::make_shared<SensorsAsyncResp>(
Ed Tanous02da7c52022-02-27 00:09:02 -0800327 asyncResp, chassisName, sensors::dbus::powerPaths,
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700328 sensors::node::power);
Carol Wang4bb3dc32019-10-17 18:15:02 +0800329
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700330 std::optional<std::vector<nlohmann::json>> voltageCollections;
331 std::optional<std::vector<nlohmann::json>> powerCtlCollections;
zhanghch058d1b46d2021-04-01 11:18:24 +0800332
Willy Tu15ed6782021-12-14 11:03:16 -0800333 if (!json_util::readJsonPatch(
334 req, sensorAsyncResp->asyncResp->res, "PowerControl",
335 powerCtlCollections, "Voltages", voltageCollections))
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700336 {
337 return;
338 }
Carol Wang4bb3dc32019-10-17 18:15:02 +0800339
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700340 if (powerCtlCollections)
341 {
342 setPowerCapOverride(sensorAsyncResp, *powerCtlCollections);
343 }
344 if (voltageCollections)
345 {
346 std::unordered_map<std::string, std::vector<nlohmann::json>>
347 allCollections;
348 allCollections.emplace("Voltages",
349 *std::move(voltageCollections));
Bruce Lee80ac4022021-06-04 15:41:39 +0800350 setSensorsOverride(sensorAsyncResp, allCollections);
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700351 }
352 });
353}
Ed Tanous2474adf2018-09-05 16:31:16 -0700354
355} // namespace redfish