summaryrefslogtreecommitdiff
path: root/redfish-core/lib/power.hpp
blob: d7fb7dd9be508487e51f4f8f92550c71ee15d430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*
// Copyright (c) 2018 Intel Corporation
// Copyright (c) 2018 Ampere Computing LLC
/
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
*/
#pragma once

#include "sensors.hpp"

#include <app.hpp>
#include <registries/privilege_registry.hpp>

namespace redfish
{
inline void setPowerCapOverride(
    const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
    std::vector<nlohmann::json>& powerControlCollections)
{
    auto getChassisPath = [sensorsAsyncResp, powerControlCollections](
                              const std::optional<std::string>&
                                  chassisPath) mutable {
        if (!chassisPath)
        {
            BMCWEB_LOG_ERROR << "Don't find valid chassis path ";
            messages::resourceNotFound(sensorsAsyncResp->asyncResp->res,
                                       "Chassis", sensorsAsyncResp->chassisId);
            return;
        }

        if (powerControlCollections.size() != 1)
        {
            BMCWEB_LOG_ERROR << "Don't support multiple hosts at present ";
            messages::resourceNotFound(sensorsAsyncResp->asyncResp->res,
                                       "Power", "PowerControl");
            return;
        }

        auto& item = powerControlCollections[0];

        std::optional<nlohmann::json> powerLimit;
        if (!json_util::readJson(item, sensorsAsyncResp->asyncResp->res,
                                 "PowerLimit", powerLimit))
        {
            return;
        }
        if (!powerLimit)
        {
            return;
        }
        std::optional<uint32_t> value;
        if (!json_util::readJson(*powerLimit, sensorsAsyncResp->asyncResp->res,
                                 "LimitInWatts", value))
        {
            return;
        }
        if (!value)
        {
            return;
        }
        auto valueHandler = [value, sensorsAsyncResp](
                                const boost::system::error_code ec,
                                const SensorVariant& powerCapEnable) {
            if (ec)
            {
                messages::internalError(sensorsAsyncResp->asyncResp->res);
                BMCWEB_LOG_ERROR << "powerCapEnable Get handler: Dbus error "
                                 << ec;
                return;
            }
            // Check PowerCapEnable
            const bool* b = std::get_if<bool>(&powerCapEnable);
            if (b == nullptr)
            {
                messages::internalError(sensorsAsyncResp->asyncResp->res);
                BMCWEB_LOG_ERROR << "Fail to get PowerCapEnable status ";
                return;
            }
            if (!(*b))
            {
                messages::actionNotSupported(
                    sensorsAsyncResp->asyncResp->res,
                    "Setting LimitInWatts when PowerLimit feature is disabled");
                BMCWEB_LOG_ERROR << "PowerLimit feature is disabled ";
                return;
            }

            crow::connections::systemBus->async_method_call(
                [sensorsAsyncResp](const boost::system::error_code ec2) {
                    if (ec2)
                    {
                        BMCWEB_LOG_DEBUG << "Power Limit Set: Dbus error: "
                                         << ec2;
                        messages::internalError(
                            sensorsAsyncResp->asyncResp->res);
                        return;
                    }
                    sensorsAsyncResp->asyncResp->res.result(
                        boost::beast::http::status::no_content);
                },
                "xyz.openbmc_project.Settings",
                "/xyz/openbmc_project/control/host0/power_cap",
                "org.freedesktop.DBus.Properties", "Set",
                "xyz.openbmc_project.Control.Power.Cap", "PowerCap",
                std::variant<uint32_t>(*value));
        };
        crow::connections::systemBus->async_method_call(
            std::move(valueHandler), "xyz.openbmc_project.Settings",
            "/xyz/openbmc_project/control/host0/power_cap",
            "org.freedesktop.DBus.Properties", "Get",
            "xyz.openbmc_project.Control.Power.Cap", "PowerCapEnable");
    };
    getValidChassisPath(sensorsAsyncResp, std::move(getChassisPath));
}
inline void requestRoutesPower(App& app)
{

    BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/Power/")
        .privileges(redfish::privileges::getPower)
        .methods(boost::beast::http::verb::get)(
            [](const crow::Request&,
               const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
               const std::string& chassisName) {
                asyncResp->res.jsonValue["PowerControl"] =
                    nlohmann::json::array();

                auto sensorAsyncResp = std::make_shared<SensorsAsyncResp>(
                    asyncResp, chassisName,
                    sensors::dbus::paths.at(sensors::node::power),
                    sensors::node::power);

                getChassisData(sensorAsyncResp);

                // This callback verifies that the power limit is only provided
                // for the chassis that implements the Chassis inventory item.
                // This prevents things like power supplies providing the
                // chassis power limit
                auto chassisHandler = [sensorAsyncResp](
                                          const boost::system::error_code e,
                                          const std::vector<std::string>&
                                              chassisPaths) {
                    if (e)
                    {
                        BMCWEB_LOG_ERROR
                            << "Power Limit GetSubTreePaths handler Dbus error "
                            << e;
                        return;
                    }

                    bool found = false;
                    for (const std::string& chassis : chassisPaths)
                    {
                        size_t len = std::string::npos;
                        size_t lastPos = chassis.rfind('/');
                        if (lastPos == std::string::npos)
                        {
                            continue;
                        }

                        if (lastPos == chassis.size() - 1)
                        {
                            size_t end = lastPos;
                            lastPos = chassis.rfind('/', lastPos - 1);
                            if (lastPos == std::string::npos)
                            {
                                continue;
                            }

                            len = end - (lastPos + 1);
                        }

                        std::string interfaceChassisName =
                            chassis.substr(lastPos + 1, len);
                        if (!interfaceChassisName.compare(
                                sensorAsyncResp->chassisId))
                        {
                            found = true;
                            break;
                        }
                    }

                    if (!found)
                    {
                        BMCWEB_LOG_DEBUG << "Power Limit not present for "
                                         << sensorAsyncResp->chassisId;
                        return;
                    }

                    auto valueHandler = [sensorAsyncResp](
                                            const boost::system::error_code ec,
                                            const std::vector<std::pair<
                                                std::string, SensorVariant>>&
                                                properties) {
                        if (ec)
                        {
                            messages::internalError(
                                sensorAsyncResp->asyncResp->res);
                            BMCWEB_LOG_ERROR
                                << "Power Limit GetAll handler: Dbus error "
                                << ec;
                            return;
                        }

                        nlohmann::json& tempArray =
                            sensorAsyncResp->asyncResp->res
                                .jsonValue["PowerControl"];

                        // Put multiple "sensors" into a single PowerControl, 0,
                        // so only create the first one
                        if (tempArray.empty())
                        {
                            // Mandatory properties odata.id and MemberId
                            // A warning without a odata.type
                            tempArray.push_back(
                                {{"@odata.type", "#Power.v1_0_0.PowerControl"},
                                 {"@odata.id", "/redfish/v1/Chassis/" +
                                                   sensorAsyncResp->chassisId +
                                                   "/Power#/PowerControl/0"},
                                 {"Name", "Chassis Power Control"},
                                 {"MemberId", "0"}});
                        }

                        nlohmann::json& sensorJson = tempArray.back();
                        bool enabled = false;
                        double powerCap = 0.0;
                        int64_t scale = 0;

                        for (const std::pair<std::string, SensorVariant>&
                                 property : properties)
                        {
                            if (!property.first.compare("Scale"))
                            {
                                const int64_t* i =
                                    std::get_if<int64_t>(&property.second);

                                if (i)
                                {
                                    scale = *i;
                                }
                            }
                            else if (!property.first.compare("PowerCap"))
                            {
                                const double* d =
                                    std::get_if<double>(&property.second);
                                const int64_t* i =
                                    std::get_if<int64_t>(&property.second);
                                const uint32_t* u =
                                    std::get_if<uint32_t>(&property.second);

                                if (d)
                                {
                                    powerCap = *d;
                                }
                                else if (i)
                                {
                                    powerCap = static_cast<double>(*i);
                                }
                                else if (u)
                                {
                                    powerCap = *u;
                                }
                            }
                            else if (!property.first.compare("PowerCapEnable"))
                            {
                                const bool* b =
                                    std::get_if<bool>(&property.second);

                                if (b)
                                {
                                    enabled = *b;
                                }
                            }
                        }

                        nlohmann::json& value =
                            sensorJson["PowerLimit"]["LimitInWatts"];

                        // LimitException is Mandatory attribute as per OCP
                        // Baseline Profile – v1.0.0, so currently making it
                        // "NoAction" as default value to make it OCP Compliant.
                        sensorJson["PowerLimit"]["LimitException"] = "NoAction";

                        if (enabled)
                        {
                            // Redfish specification indicates PowerLimit should
                            // be null if the limit is not enabled.
                            value = powerCap * std::pow(10, scale);
                        }
                    };

                    crow::connections::systemBus->async_method_call(
                        std::move(valueHandler), "xyz.openbmc_project.Settings",
                        "/xyz/openbmc_project/control/host0/power_cap",
                        "org.freedesktop.DBus.Properties", "GetAll",
                        "xyz.openbmc_project.Control.Power.Cap");
                };

                crow::connections::systemBus->async_method_call(
                    std::move(chassisHandler),
                    "xyz.openbmc_project.ObjectMapper",
                    "/xyz/openbmc_project/object_mapper",
                    "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths",
                    "/xyz/openbmc_project/inventory", 0,
                    std::array<const char*, 2>{
                        "xyz.openbmc_project.Inventory.Item.Board",
                        "xyz.openbmc_project.Inventory.Item.Chassis"});
            });

    BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/Power/")
        .privileges(redfish::privileges::patchPower)
        .methods(boost::beast::http::verb::patch)(
            [](const crow::Request& req,
               const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
               const std::string& chassisName) {
                auto sensorAsyncResp = std::make_shared<SensorsAsyncResp>(
                    asyncResp, chassisName,
                    sensors::dbus::paths.at(sensors::node::power),
                    sensors::node::power);

                std::optional<std::vector<nlohmann::json>> voltageCollections;
                std::optional<std::vector<nlohmann::json>> powerCtlCollections;

                if (!json_util::readJson(req, sensorAsyncResp->asyncResp->res,
                                         "PowerControl", powerCtlCollections,
                                         "Voltages", voltageCollections))
                {
                    return;
                }

                if (powerCtlCollections)
                {
                    setPowerCapOverride(sensorAsyncResp, *powerCtlCollections);
                }
                if (voltageCollections)
                {
                    std::unordered_map<std::string, std::vector<nlohmann::json>>
                        allCollections;
                    allCollections.emplace("Voltages",
                                           *std::move(voltageCollections));
                    setSensorsOverride(sensorAsyncResp, allCollections);
                }
            });
}

} // namespace redfish