Lines Matching +full:current +full:- +full:boost +full:- +full:limit

1 // SPDX-License-Identifier: Apache-2.0
2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3 // SPDX-FileCopyrightText: Copyright 2018 Intel Corporation
30 #include <systemd/sd-bus.h>
32 #include <boost/beast/http/status.hpp>
33 #include <boost/beast/http/verb.hpp>
34 #include <boost/system/error_code.hpp>
35 #include <boost/url/format.hpp>
36 #include <boost/url/url.hpp>
81 * @param[in] asyncResp - Shared pointer for completing asynchronous calls
93 // Create the D-Bus variant for D-Bus call.
97 [asyncResp](const boost::system::error_code& ec) {
101 BMCWEB_LOG_DEBUG("[Set] Bad D-Bus request error: {}", ec);
102 messages::internalError(asyncResp->res);
106 messages::success(asyncResp->res);
120 // Create the D-Bus variant for D-Bus call.
124 [asyncResp](const boost::system::error_code& ec) {
128 BMCWEB_LOG_DEBUG("[Set] Bad D-Bus request error: {}", ec);
129 messages::internalError(asyncResp->res);
133 messages::success(asyncResp->res);
145 * Analyzes POST body before sending Reset (Reboot) request data to D-Bus.
151 .methods(boost::beast::http::verb::post)(
161 messages::resourceNotFound(asyncResp->res, "Manager",
170 if (!json_util::readJsonAction(req, asyncResp->res, "ResetType",
190 messages::actionParameterNotSupported(asyncResp->res, resetType,
209 * BMC code updater factory reset wipes the whole BMC read-write
219 boost::beast::http::verb::
231 messages::resourceNotFound(asyncResp->res, "Manager",
242 req, asyncResp->res, //
250 asyncResp->res, "ResetToDefaults", "ResetType");
266 messages::actionParameterNotSupported(asyncResp->res,
271 crow::connections::systemBus->async_method_call(
272 [asyncResp](const boost::system::error_code& ec) {
276 messages::internalError(asyncResp->res);
300 .methods(boost::beast::http::verb::get)(
311 messages::resourceNotFound(asyncResp->res, "Manager",
316 asyncResp->res.jsonValue["@odata.type"] =
318 asyncResp->res.jsonValue["@odata.id"] = boost::urls::format(
321 asyncResp->res.jsonValue["Name"] = "Reset Action Info";
322 asyncResp->res.jsonValue["Id"] = "ResetActionInfo";
336 asyncResp->res.jsonValue["Parameters"] = std::move(parameters);
344 * @param[in] connectionName - service name
345 * @param[in] path - object path
357 [asyncResp](const boost::system::error_code& ec,
363 messages::internalError(asyncResp->res);
367 asyncResp->res
381 [asyncResp](const boost::system::error_code& ec,
385 BMCWEB_LOG_DEBUG("D-BUS response error {}", ec);
390 // https://github.com/openbmc/phosphor-dbus-interfaces/blob/7f9a128eb9296e926422ddc312c148b625890bb6/xyz/openbmc_project/State/BMC.interface.yaml#L19
394 asyncResp->res.jsonValue["LastResetTime"] =
402 * @param[i,o] asyncResp - Async response object
403 * @param[i] runningFirmwareTarget - Image to make the running image
415 messages::propertyValueNotInList(asyncResp->res, runningFirmwareTarget,
423 messages::propertyValueNotInList(asyncResp->res, runningFirmwareTarget,
435 const boost::system::error_code& ec,
439 BMCWEB_LOG_DEBUG("D-Bus response error getting objects.");
440 messages::internalError(asyncResp->res);
447 messages::internalError(asyncResp->res);
479 asyncResp->res, runningFirmwareTarget, "@odata.id");
495 [asyncResp](const boost::system::error_code& ec2) {
498 BMCWEB_LOG_DEBUG("D-Bus response error setting.");
499 messages::internalError(asyncResp->res);
509 const boost::system::error_code& ec, const sdbusplus::message_t& msg)
518 std::string_view errorName(dbusError->name);
524 asyncResp->res, "DateTime",
529 messages::internalError(asyncResp->res);
532 asyncResp->res.result(boost::beast::http::status::no_content);
544 messages::propertyValueFormatError(asyncResp->res, datetime,
551 crow::connections::systemBus->async_method_call(
552 [asyncResp](const boost::system::error_code& ec,
557 "org.freedesktop.timedate1", "SetTime", us->count(), relative,
566 "/org/freedesktop/systemd1/unit/obmc-bmc-service-quiesce@0.target",
568 [asyncResp](const boost::system::error_code& ec,
574 asyncResp->res.jsonValue["Status"]["Health"] =
576 asyncResp->res.jsonValue["Status"]["State"] =
581 asyncResp->res.jsonValue["Status"]["Health"] = resource::Health::OK;
582 asyncResp->res.jsonValue["Status"]["State"] =
594 boost::beast::http::verb::
606 messages::resourceNotFound(asyncResp->res, "Manager",
611 asyncResp->res.jsonValue["@odata.id"] = boost::urls::format(
613 asyncResp->res.jsonValue["@odata.type"] =
615 asyncResp->res.jsonValue["Id"] = BMCWEB_REDFISH_MANAGER_URI_NAME;
616 asyncResp->res.jsonValue["Name"] = "OpenBmc Manager";
617 asyncResp->res.jsonValue["Description"] =
619 asyncResp->res.jsonValue["PowerState"] = resource::PowerState::On;
621 asyncResp->res.jsonValue["ManagerType"] = manager::ManagerType::BMC;
622 asyncResp->res.jsonValue["UUID"] = systemd_utils::getUuid();
623 asyncResp->res.jsonValue["ServiceEntryPointUUID"] = uuid;
624 asyncResp->res.jsonValue["Model"] =
627 asyncResp->res.jsonValue["LogServices"]["@odata.id"] =
628 boost::urls::format("/redfish/v1/Managers/{}/LogServices",
630 asyncResp->res.jsonValue["NetworkProtocol"]["@odata.id"] =
631 boost::urls::format("/redfish/v1/Managers/{}/NetworkProtocol",
633 asyncResp->res.jsonValue["EthernetInterfaces"]["@odata.id"] =
634 boost::urls::format(
640 asyncResp->res.jsonValue["VirtualMedia"]["@odata.id"] =
641 boost::urls::format("/redfish/v1/Managers/{}/VirtualMedia",
648 asyncResp->res.jsonValue["Actions"]["#Manager.Reset"];
649 managerReset["target"] = boost::urls::format(
653 boost::urls::format("/redfish/v1/Managers/{}/ResetActionInfo",
660 asyncResp->res.jsonValue["Actions"]["#Manager.ResetToDefaults"];
661 resetToDefaults["target"] = boost::urls::format(
670 asyncResp->res.jsonValue["DateTime"] = redfishDateTimeOffset.first;
671 asyncResp->res.jsonValue["DateTimeLocalOffset"] =
677 asyncResp->res.jsonValue["GraphicalConsole"]["ServiceEnabled"] =
679 asyncResp->res
681 asyncResp->res
687 asyncResp->res
696 asyncResp->res.jsonValue["Links"]["ManagerForServers"] =
707 asyncResp->res.jsonValue["ManagerDiagnosticData"];
708 managerDiagnosticData["@odata.id"] = boost::urls::format(
715 aRsp->res.jsonValue["Links"]["ManagerForChassis@odata.count"] =
719 boost::urls::url chassiUrl =
720 boost::urls::format("/redfish/v1/Chassis/{}", chassisId);
723 aRsp->res.jsonValue["Links"]["ManagerForChassis"] =
725 aRsp->res.jsonValue["Links"]["ManagerInChassis"]["@odata.id"] =
732 [asyncResp](const boost::system::error_code& ec, double val) {
736 messages::internalError(asyncResp->res);
741 asyncResp->res.jsonValue["Status"]["Health"] =
743 asyncResp->res.jsonValue["Status"]["State"] =
755 const boost::system::error_code& ec,
760 "D-Bus response error on GetSubTree {}", ec);
765 BMCWEB_LOG_DEBUG("Can't find bmc D-Bus object!");
768 // Assume only 1 bmc D-Bus object
772 BMCWEB_LOG_DEBUG("Found more than 1 bmc D-Bus object!");
773 messages::internalError(asyncResp->res);
780 BMCWEB_LOG_DEBUG("Error getting bmc D-Bus object!");
781 messages::internalError(asyncResp->res);
800 const boost::system::error_code& ec2,
828 messages::internalError(asyncResp->res);
834 asyncResp->res.jsonValue["PartNumber"] =
840 asyncResp->res
847 asyncResp->res
854 asyncResp->res.jsonValue["Model"] =
860 asyncResp->res
880 .methods(boost::beast::http::verb::patch)(
891 messages::resourceNotFound(asyncResp->res, "Manager",
905 req, asyncResp->res, //
952 pid->run();
956 messages::propertyUnknown(asyncResp->res, "Oem");
978 .methods(boost::beast::http::verb::get)(
987 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Managers";
988 asyncResp->res.jsonValue["@odata.type"] =
990 asyncResp->res.jsonValue["Name"] = "Manager Collection";
991 asyncResp->res.jsonValue["Members@odata.count"] = 1;
994 bmc["@odata.id"] = boost::urls::format(
996 asyncResp->res.jsonValue["Members"] = std::move(members);