xref: /openbmc/google-ipmi-sys/handler.cpp (revision 3f3ca035)
14f0d1de6SSteve Foreman // Copyright 2022 Google LLC
2a2056e9cSWilly Tu //
3a2056e9cSWilly Tu // Licensed under the Apache License, Version 2.0 (the "License");
4a2056e9cSWilly Tu // you may not use this file except in compliance with the License.
5a2056e9cSWilly Tu // You may obtain a copy of the License at
6a2056e9cSWilly Tu //
7a2056e9cSWilly Tu //      http://www.apache.org/licenses/LICENSE-2.0
8a2056e9cSWilly Tu //
9a2056e9cSWilly Tu // Unless required by applicable law or agreed to in writing, software
10a2056e9cSWilly Tu // distributed under the License is distributed on an "AS IS" BASIS,
11a2056e9cSWilly Tu // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12a2056e9cSWilly Tu // See the License for the specific language governing permissions and
13a2056e9cSWilly Tu // limitations under the License.
14f085d91dSPatrick Venture #include "handler.hpp"
15f085d91dSPatrick Venture 
168ec4106bSNikhil Namjoshi #include "bmc_mode_enum.hpp"
17d2037c6aSPatrick Venture #include "errors.hpp"
18c87de558SPatrick Venture #include "handler_impl.hpp"
19ab650004SPatrick Venture #include "util.hpp"
20d2037c6aSPatrick Venture 
213b1b427cSWilly Tu #include <fcntl.h>
22d2037c6aSPatrick Venture #include <ipmid/api.h>
233b1b427cSWilly Tu #include <mtd/mtd-abi.h>
243b1b427cSWilly Tu #include <mtd/mtd-user.h>
253b1b427cSWilly Tu #include <sys/ioctl.h>
263b1b427cSWilly Tu #include <unistd.h>
27d2037c6aSPatrick Venture 
28bb90d4fdSPatrick Venture #include <cinttypes>
29d2037c6aSPatrick Venture #include <cstdio>
30d2037c6aSPatrick Venture #include <filesystem>
31d2037c6aSPatrick Venture #include <fstream>
3207f85150SPatrick Venture #include <map>
3307f85150SPatrick Venture #include <nlohmann/json.hpp>
3407f85150SPatrick Venture #include <phosphor-logging/elog-errors.hpp>
35aa374120SPatrick Venture #include <phosphor-logging/log.hpp>
36aa374120SPatrick Venture #include <sdbusplus/bus.hpp>
37d2037c6aSPatrick Venture #include <sstream>
38d2037c6aSPatrick Venture #include <string>
3929f35bceSWilliam A. Kennington III #include <string_view>
40d2037c6aSPatrick Venture #include <tuple>
414f0d1de6SSteve Foreman #include <variant>
4207f85150SPatrick Venture #include <xyz/openbmc_project/Common/error.hpp>
43d2037c6aSPatrick Venture 
445e70dc8cSNikhil Namjoshi #include "bm_config.h"
455e70dc8cSNikhil Namjoshi 
46f085d91dSPatrick Venture #ifndef NCSI_IF_NAME
47f085d91dSPatrick Venture #define NCSI_IF_NAME eth0
48f085d91dSPatrick Venture #endif
49f085d91dSPatrick Venture 
50f085d91dSPatrick Venture // To deal with receiving a string without quotes.
51f085d91dSPatrick Venture #define QUOTE(name) #name
52f085d91dSPatrick Venture #define STR(macro) QUOTE(macro)
53f085d91dSPatrick Venture #define NCSI_IF_NAME_STR STR(NCSI_IF_NAME)
54f085d91dSPatrick Venture 
558d3d46a2SWilliam A. Kennington III namespace ipmi
568d3d46a2SWilliam A. Kennington III {
578d3d46a2SWilliam A. Kennington III std::uint8_t getChannelByName(const std::string& chName);
588d3d46a2SWilliam A. Kennington III }
598d3d46a2SWilliam A. Kennington III 
60f085d91dSPatrick Venture namespace google
61f085d91dSPatrick Venture {
62f085d91dSPatrick Venture namespace ipmi
63f085d91dSPatrick Venture {
64d2037c6aSPatrick Venture namespace fs = std::filesystem;
6507f85150SPatrick Venture using Json = nlohmann::json;
6607f85150SPatrick Venture using namespace phosphor::logging;
6707f85150SPatrick Venture using InternalFailure =
6807f85150SPatrick Venture     sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
69f085d91dSPatrick Venture 
705e70dc8cSNikhil Namjoshi uint8_t isBmcInBareMetalMode()
715e70dc8cSNikhil Namjoshi {
725e70dc8cSNikhil Namjoshi #if BARE_METAL
735e70dc8cSNikhil Namjoshi     return static_cast<uint8_t>(BmcMode::BM_MODE);
745e70dc8cSNikhil Namjoshi #else
75*3f3ca035SBrandon Kim     std::error_code ec;
76*3f3ca035SBrandon Kim     if (fs::exists(BM_SIGNAL_PATH, ec))
77*3f3ca035SBrandon Kim     {
78*3f3ca035SBrandon Kim         std::fprintf(stderr, "%s exists so we must be in BM mode\n",
79*3f3ca035SBrandon Kim                      BM_SIGNAL_PATH);
80*3f3ca035SBrandon Kim         return static_cast<uint8_t>(BmcMode::BM_MODE);
81*3f3ca035SBrandon Kim     }
82*3f3ca035SBrandon Kim 
83*3f3ca035SBrandon Kim     std::fprintf(stderr, "Unable to find %s so we must not be in BM mode\n",
84*3f3ca035SBrandon Kim                  BM_SIGNAL_PATH);
855e70dc8cSNikhil Namjoshi     return static_cast<uint8_t>(BmcMode::NON_BM_MODE);
865e70dc8cSNikhil Namjoshi #endif
875e70dc8cSNikhil Namjoshi }
885e70dc8cSNikhil Namjoshi 
895e70dc8cSNikhil Namjoshi uint8_t Handler::getBmcMode()
905e70dc8cSNikhil Namjoshi {
915e70dc8cSNikhil Namjoshi     // BM_CLEANING_MODE is not implemented yet
925e70dc8cSNikhil Namjoshi     return isBmcInBareMetalMode();
935e70dc8cSNikhil Namjoshi }
945e70dc8cSNikhil Namjoshi 
95b69209b4SWilliam A. Kennington III std::tuple<std::uint8_t, std::string>
96b69209b4SWilliam A. Kennington III     Handler::getEthDetails(std::string intf) const
97f085d91dSPatrick Venture {
98b69209b4SWilliam A. Kennington III     if (intf.empty())
99b69209b4SWilliam A. Kennington III     {
100b69209b4SWilliam A. Kennington III         intf = NCSI_IF_NAME_STR;
101b69209b4SWilliam A. Kennington III     }
102b69209b4SWilliam A. Kennington III     return std::make_tuple(::ipmi::getChannelByName(intf), std::move(intf));
103f085d91dSPatrick Venture }
104f085d91dSPatrick Venture 
105d2037c6aSPatrick Venture std::int64_t Handler::getRxPackets(const std::string& name) const
106d2037c6aSPatrick Venture {
107d2037c6aSPatrick Venture     std::ostringstream opath;
108d2037c6aSPatrick Venture     opath << "/sys/class/net/" << name << "/statistics/rx_packets";
109d2037c6aSPatrick Venture     std::string path = opath.str();
110d2037c6aSPatrick Venture 
111d2037c6aSPatrick Venture     // Minor sanity & security check (of course, I'm less certain if unicode
112d2037c6aSPatrick Venture     // comes into play here.
113d2037c6aSPatrick Venture     //
114d2037c6aSPatrick Venture     // Basically you can't easily inject ../ or /../ into the path below.
115d2037c6aSPatrick Venture     if (name.find("/") != std::string::npos)
116d2037c6aSPatrick Venture     {
117d2037c6aSPatrick Venture         std::fprintf(stderr, "Invalid or illegal name: '%s'\n", name.c_str());
118e5a06675SMichael Shen         throw IpmiException(::ipmi::ccInvalidFieldRequest);
119d2037c6aSPatrick Venture     }
120d2037c6aSPatrick Venture 
121d2037c6aSPatrick Venture     std::error_code ec;
122d2037c6aSPatrick Venture     if (!fs::exists(path, ec))
123d2037c6aSPatrick Venture     {
124d2037c6aSPatrick Venture         std::fprintf(stderr, "Path: '%s' doesn't exist.\n", path.c_str());
125e5a06675SMichael Shen         throw IpmiException(::ipmi::ccInvalidFieldRequest);
126d2037c6aSPatrick Venture     }
127d2037c6aSPatrick Venture     // We're uninterested in the state of ec.
128d2037c6aSPatrick Venture 
129d2037c6aSPatrick Venture     int64_t count = 0;
130d2037c6aSPatrick Venture     std::ifstream ifs;
131d2037c6aSPatrick Venture     ifs.exceptions(std::ifstream::failbit);
132d2037c6aSPatrick Venture     try
133d2037c6aSPatrick Venture     {
134d2037c6aSPatrick Venture         ifs.open(path);
135d2037c6aSPatrick Venture         ifs >> count;
136d2037c6aSPatrick Venture     }
137d2037c6aSPatrick Venture     catch (std::ios_base::failure& fail)
138d2037c6aSPatrick Venture     {
139e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
140d2037c6aSPatrick Venture     }
141d2037c6aSPatrick Venture 
142d2037c6aSPatrick Venture     return count;
143d2037c6aSPatrick Venture }
144d2037c6aSPatrick Venture 
145bb90d4fdSPatrick Venture VersionTuple Handler::getCpldVersion(unsigned int id) const
146bb90d4fdSPatrick Venture {
147bb90d4fdSPatrick Venture     std::ostringstream opath;
148bb90d4fdSPatrick Venture     opath << "/run/cpld" << id << ".version";
149bb90d4fdSPatrick Venture     // Check for file
150bb90d4fdSPatrick Venture 
151bb90d4fdSPatrick Venture     std::error_code ec;
152bb90d4fdSPatrick Venture     if (!fs::exists(opath.str(), ec))
153bb90d4fdSPatrick Venture     {
154bb90d4fdSPatrick Venture         std::fprintf(stderr, "Path: '%s' doesn't exist.\n",
155bb90d4fdSPatrick Venture                      opath.str().c_str());
156e5a06675SMichael Shen         throw IpmiException(::ipmi::ccInvalidFieldRequest);
157bb90d4fdSPatrick Venture     }
158bb90d4fdSPatrick Venture     // We're uninterested in the state of ec.
159bb90d4fdSPatrick Venture 
160bb90d4fdSPatrick Venture     // If file exists, read.
161bb90d4fdSPatrick Venture     std::ifstream ifs;
162bb90d4fdSPatrick Venture     ifs.exceptions(std::ifstream::failbit);
163bb90d4fdSPatrick Venture     std::string value;
164bb90d4fdSPatrick Venture     try
165bb90d4fdSPatrick Venture     {
166bb90d4fdSPatrick Venture         ifs.open(opath.str());
167bb90d4fdSPatrick Venture         ifs >> value;
168bb90d4fdSPatrick Venture     }
169bb90d4fdSPatrick Venture     catch (std::ios_base::failure& fail)
170bb90d4fdSPatrick Venture     {
171e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
172bb90d4fdSPatrick Venture     }
173bb90d4fdSPatrick Venture 
174bb90d4fdSPatrick Venture     // If value parses as expected, return version.
175bb90d4fdSPatrick Venture     VersionTuple version = std::make_tuple(0, 0, 0, 0);
176bb90d4fdSPatrick Venture 
177bb90d4fdSPatrick Venture     int num_fields =
178bb90d4fdSPatrick Venture         std::sscanf(value.c_str(), "%" SCNu8 ".%" SCNu8 ".%" SCNu8 ".%" SCNu8,
179bb90d4fdSPatrick Venture                     &std::get<0>(version), &std::get<1>(version),
180bb90d4fdSPatrick Venture                     &std::get<2>(version), &std::get<3>(version));
181bb90d4fdSPatrick Venture     if (num_fields == 0)
182bb90d4fdSPatrick Venture     {
183bb90d4fdSPatrick Venture         std::fprintf(stderr, "Invalid version.\n");
184e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
185bb90d4fdSPatrick Venture     }
186bb90d4fdSPatrick Venture 
187bb90d4fdSPatrick Venture     return version;
188bb90d4fdSPatrick Venture }
189bb90d4fdSPatrick Venture 
190aa374120SPatrick Venture static constexpr auto TIME_DELAY_FILENAME = "/run/psu_timedelay";
191aa374120SPatrick Venture static constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1";
192aa374120SPatrick Venture static constexpr auto SYSTEMD_ROOT = "/org/freedesktop/systemd1";
193aa374120SPatrick Venture static constexpr auto SYSTEMD_INTERFACE = "org.freedesktop.systemd1.Manager";
194aa374120SPatrick Venture static constexpr auto PSU_HARDRESET_TARGET = "gbmc-psu-hardreset.target";
195aa374120SPatrick Venture 
196aa374120SPatrick Venture void Handler::psuResetDelay(std::uint32_t delay) const
197aa374120SPatrick Venture {
198aa374120SPatrick Venture     std::ofstream ofs;
199aa374120SPatrick Venture     ofs.open(TIME_DELAY_FILENAME, std::ofstream::out);
200aa374120SPatrick Venture     if (!ofs.good())
201aa374120SPatrick Venture     {
202aa374120SPatrick Venture         std::fprintf(stderr, "Unable to open file for output.\n");
203e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
204aa374120SPatrick Venture     }
205aa374120SPatrick Venture 
206aa374120SPatrick Venture     ofs << "PSU_HARDRESET_DELAY=" << delay << std::endl;
207aa374120SPatrick Venture     if (ofs.fail())
208aa374120SPatrick Venture     {
209aa374120SPatrick Venture         std::fprintf(stderr, "Write failed\n");
210aa374120SPatrick Venture         ofs.close();
211e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
212aa374120SPatrick Venture     }
213aa374120SPatrick Venture 
214aa374120SPatrick Venture     // Write succeeded, please continue.
215aa374120SPatrick Venture     ofs.flush();
216aa374120SPatrick Venture     ofs.close();
217aa374120SPatrick Venture 
218aa374120SPatrick Venture     auto bus = sdbusplus::bus::new_default();
219aa374120SPatrick Venture     auto method = bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_ROOT,
220aa374120SPatrick Venture                                       SYSTEMD_INTERFACE, "StartUnit");
221aa374120SPatrick Venture 
222aa374120SPatrick Venture     method.append(PSU_HARDRESET_TARGET);
223aa374120SPatrick Venture     method.append("replace");
224aa374120SPatrick Venture 
225aa374120SPatrick Venture     try
226aa374120SPatrick Venture     {
227aa374120SPatrick Venture         bus.call_noreply(method);
228aa374120SPatrick Venture     }
229aa374120SPatrick Venture     catch (const sdbusplus::exception::SdBusError& ex)
230aa374120SPatrick Venture     {
231aa374120SPatrick Venture         log<level::ERR>("Failed to call PSU hard reset");
232e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
233aa374120SPatrick Venture     }
234aa374120SPatrick Venture }
235aa374120SPatrick Venture 
236ac4a16f7SShounak Mitra static constexpr auto RESET_ON_SHUTDOWN_FILENAME = "/run/powercycle_on_s5";
237ac4a16f7SShounak Mitra 
238ac4a16f7SShounak Mitra void Handler::psuResetOnShutdown() const
239ac4a16f7SShounak Mitra {
240ac4a16f7SShounak Mitra     std::ofstream ofs;
241ac4a16f7SShounak Mitra     ofs.open(RESET_ON_SHUTDOWN_FILENAME, std::ofstream::out);
242ac4a16f7SShounak Mitra     if (!ofs.good())
243ac4a16f7SShounak Mitra     {
244ac4a16f7SShounak Mitra         std::fprintf(stderr, "Unable to open file for output.\n");
245e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
246ac4a16f7SShounak Mitra     }
247ac4a16f7SShounak Mitra     ofs.close();
248ac4a16f7SShounak Mitra }
249ac4a16f7SShounak Mitra 
2503b1b427cSWilly Tu uint32_t Handler::getFlashSize()
2513b1b427cSWilly Tu {
2523b1b427cSWilly Tu     mtd_info_t info;
2533b1b427cSWilly Tu     int fd = open("/dev/mtd0", O_RDONLY);
2543b1b427cSWilly Tu     int err = ioctl(fd, MEMGETINFO, &info);
2553b1b427cSWilly Tu     close(fd);
2563b1b427cSWilly Tu 
2573b1b427cSWilly Tu     if (err)
2583b1b427cSWilly Tu     {
259e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
2603b1b427cSWilly Tu     }
2613b1b427cSWilly Tu     return info.size;
2623b1b427cSWilly Tu }
2633b1b427cSWilly Tu 
264ab650004SPatrick Venture std::string Handler::getEntityName(std::uint8_t id, std::uint8_t instance)
26507f85150SPatrick Venture {
266ab650004SPatrick Venture     // Check if we support this Entity ID.
267ab650004SPatrick Venture     auto it = _entityIdToName.find(id);
268ab650004SPatrick Venture     if (it == _entityIdToName.end())
26907f85150SPatrick Venture     {
270ab650004SPatrick Venture         log<level::ERR>("Unknown Entity ID", entry("ENTITY_ID=%d", id));
271e5a06675SMichael Shen         throw IpmiException(::ipmi::ccInvalidFieldRequest);
27207f85150SPatrick Venture     }
27307f85150SPatrick Venture 
274ab650004SPatrick Venture     std::string entityName;
275ab650004SPatrick Venture     try
27607f85150SPatrick Venture     {
277ab650004SPatrick Venture         // Parse the JSON config file.
278ab650004SPatrick Venture         if (!_entityConfigParsed)
279ab650004SPatrick Venture         {
280ab650004SPatrick Venture             _entityConfig = parseConfig(_configFile);
281ab650004SPatrick Venture             _entityConfigParsed = true;
28207f85150SPatrick Venture         }
28307f85150SPatrick Venture 
284ab650004SPatrick Venture         // Find the "entity id:entity instance" mapping to entity name.
285ab650004SPatrick Venture         entityName = readNameFromConfig(it->second, instance, _entityConfig);
286ab650004SPatrick Venture         if (entityName.empty())
287ab650004SPatrick Venture         {
288e5a06675SMichael Shen             throw IpmiException(::ipmi::ccInvalidFieldRequest);
289ab650004SPatrick Venture         }
290ab650004SPatrick Venture     }
291ab650004SPatrick Venture     catch (InternalFailure& e)
292ab650004SPatrick Venture     {
293e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
29407f85150SPatrick Venture     }
29507f85150SPatrick Venture 
296ab650004SPatrick Venture     return entityName;
297ab650004SPatrick Venture }
298ab650004SPatrick Venture 
29929f35bceSWilliam A. Kennington III std::string Handler::getMachineName()
30029f35bceSWilliam A. Kennington III {
30129f35bceSWilliam A. Kennington III     const char* path = "/etc/os-release";
30229f35bceSWilliam A. Kennington III     std::ifstream ifs(path);
30329f35bceSWilliam A. Kennington III     if (ifs.fail())
30429f35bceSWilliam A. Kennington III     {
30529f35bceSWilliam A. Kennington III         std::fprintf(stderr, "Failed to open: %s\n", path);
306e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
30729f35bceSWilliam A. Kennington III     }
30829f35bceSWilliam A. Kennington III 
30929f35bceSWilliam A. Kennington III     std::string line;
31029f35bceSWilliam A. Kennington III     while (true)
31129f35bceSWilliam A. Kennington III     {
31229f35bceSWilliam A. Kennington III         std::getline(ifs, line);
31329f35bceSWilliam A. Kennington III         if (ifs.eof())
31429f35bceSWilliam A. Kennington III         {
31529f35bceSWilliam A. Kennington III             std::fprintf(stderr, "Failed to find OPENBMC_TARGET_MACHINE: %s\n",
31629f35bceSWilliam A. Kennington III                          path);
317e5a06675SMichael Shen             throw IpmiException(::ipmi::ccInvalidCommand);
31829f35bceSWilliam A. Kennington III         }
31929f35bceSWilliam A. Kennington III         if (ifs.fail())
32029f35bceSWilliam A. Kennington III         {
32129f35bceSWilliam A. Kennington III             std::fprintf(stderr, "Failed to read: %s\n", path);
322e5a06675SMichael Shen             throw IpmiException(::ipmi::ccUnspecifiedError);
32329f35bceSWilliam A. Kennington III         }
32429f35bceSWilliam A. Kennington III         std::string_view lineView(line);
32529f35bceSWilliam A. Kennington III         constexpr std::string_view prefix = "OPENBMC_TARGET_MACHINE=";
32629f35bceSWilliam A. Kennington III         if (lineView.substr(0, prefix.size()) != prefix)
32729f35bceSWilliam A. Kennington III         {
32829f35bceSWilliam A. Kennington III             continue;
32929f35bceSWilliam A. Kennington III         }
33029f35bceSWilliam A. Kennington III         lineView.remove_prefix(prefix.size());
33129f35bceSWilliam A. Kennington III         lineView.remove_prefix(
33229f35bceSWilliam A. Kennington III             std::min(lineView.find_first_not_of('"'), lineView.size()));
33329f35bceSWilliam A. Kennington III         lineView.remove_suffix(
33429f35bceSWilliam A. Kennington III             lineView.size() - 1 -
33529f35bceSWilliam A. Kennington III             std::min(lineView.find_last_not_of('"'), lineView.size() - 1));
33629f35bceSWilliam A. Kennington III         return std::string(lineView);
33729f35bceSWilliam A. Kennington III     }
33829f35bceSWilliam A. Kennington III }
33929f35bceSWilliam A. Kennington III 
3408cfa4c44Slinyuny static constexpr auto HOST_TIME_DELAY_FILENAME = "/run/host_poweroff_delay";
3418cfa4c44Slinyuny static constexpr auto HOST_POWEROFF_TARGET = "gbmc-host-poweroff.target";
3428cfa4c44Slinyuny 
3438cfa4c44Slinyuny void Handler::hostPowerOffDelay(std::uint32_t delay) const
3448cfa4c44Slinyuny {
3458cfa4c44Slinyuny     // Set time delay
3468cfa4c44Slinyuny     std::ofstream ofs;
3478cfa4c44Slinyuny     ofs.open(HOST_TIME_DELAY_FILENAME, std::ofstream::out);
3488cfa4c44Slinyuny     if (!ofs.good())
3498cfa4c44Slinyuny     {
3508cfa4c44Slinyuny         std::fprintf(stderr, "Unable to open file for output.\n");
351e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
3528cfa4c44Slinyuny     }
3538cfa4c44Slinyuny 
3548cfa4c44Slinyuny     ofs << "HOST_POWEROFF_DELAY=" << delay << std::endl;
3558cfa4c44Slinyuny     ofs.close();
3568cfa4c44Slinyuny     if (ofs.fail())
3578cfa4c44Slinyuny     {
3588cfa4c44Slinyuny         std::fprintf(stderr, "Write failed\n");
359e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
3608cfa4c44Slinyuny     }
3618cfa4c44Slinyuny 
3628cfa4c44Slinyuny     // Write succeeded, please continue.
3638cfa4c44Slinyuny     auto bus = sdbusplus::bus::new_default();
3648cfa4c44Slinyuny     auto method = bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_ROOT,
3658cfa4c44Slinyuny                                       SYSTEMD_INTERFACE, "StartUnit");
3668cfa4c44Slinyuny 
3678cfa4c44Slinyuny     method.append(HOST_POWEROFF_TARGET);
3688cfa4c44Slinyuny     method.append("replace");
3698cfa4c44Slinyuny 
3708cfa4c44Slinyuny     try
3718cfa4c44Slinyuny     {
3728cfa4c44Slinyuny         bus.call_noreply(method);
3738cfa4c44Slinyuny     }
3748cfa4c44Slinyuny     catch (const sdbusplus::exception::SdBusError& ex)
3758cfa4c44Slinyuny     {
3768cfa4c44Slinyuny         log<level::ERR>("Failed to call Power Off",
3778cfa4c44Slinyuny                         entry("WHAT=%s", ex.what()));
378e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
3798cfa4c44Slinyuny     }
3808cfa4c44Slinyuny }
3818cfa4c44Slinyuny 
382ab650004SPatrick Venture std::string readNameFromConfig(const std::string& type, uint8_t instance,
383ab650004SPatrick Venture                                const Json& config)
38407f85150SPatrick Venture {
38507f85150SPatrick Venture     static const std::vector<Json> empty{};
38607f85150SPatrick Venture     std::vector<Json> readings = config.value(type, empty);
38707f85150SPatrick Venture     std::string name = "";
388ab650004SPatrick Venture 
38907f85150SPatrick Venture     for (const auto& j : readings)
39007f85150SPatrick Venture     {
39107f85150SPatrick Venture         uint8_t instanceNum = j.value("instance", 0);
39207f85150SPatrick Venture         // Not the instance we're interested in
39307f85150SPatrick Venture         if (instanceNum != instance)
39407f85150SPatrick Venture         {
39507f85150SPatrick Venture             continue;
39607f85150SPatrick Venture         }
39707f85150SPatrick Venture 
39807f85150SPatrick Venture         // Found the instance we're interested in
39907f85150SPatrick Venture         name = j.value("name", "");
40007f85150SPatrick Venture 
40107f85150SPatrick Venture         break;
40207f85150SPatrick Venture     }
403ab650004SPatrick Venture 
40407f85150SPatrick Venture     return name;
40507f85150SPatrick Venture }
40607f85150SPatrick Venture 
40749f23ad9SPatrick Venture void Handler::buildI2cPcieMapping()
40849f23ad9SPatrick Venture {
40949f23ad9SPatrick Venture     _pcie_i2c_map = buildPcieMap();
41049f23ad9SPatrick Venture }
41149f23ad9SPatrick Venture 
41249f23ad9SPatrick Venture size_t Handler::getI2cPcieMappingSize() const
41349f23ad9SPatrick Venture {
41449f23ad9SPatrick Venture     return _pcie_i2c_map.size();
41549f23ad9SPatrick Venture }
41649f23ad9SPatrick Venture 
41749f23ad9SPatrick Venture std::tuple<std::uint32_t, std::string>
41849f23ad9SPatrick Venture     Handler::getI2cEntry(unsigned int entry) const
41949f23ad9SPatrick Venture {
42049f23ad9SPatrick Venture     return _pcie_i2c_map[entry];
42149f23ad9SPatrick Venture }
42249f23ad9SPatrick Venture 
4234f0d1de6SSteve Foreman namespace
4244f0d1de6SSteve Foreman {
4254f0d1de6SSteve Foreman 
4264f0d1de6SSteve Foreman static constexpr std::string_view ACCEL_OOB_ROOT = "/com/google/customAccel/";
4274f0d1de6SSteve Foreman static constexpr char ACCEL_OOB_SERVICE[] = "com.google.custom_accel";
4284f0d1de6SSteve Foreman static constexpr char ACCEL_OOB_INTERFACE[] = "com.google.custom_accel.BAR";
4294f0d1de6SSteve Foreman 
4304f0d1de6SSteve Foreman // C type for "a{oa{sa{sv}}}" from DBus.ObjectManager::GetManagedObjects()
4314f0d1de6SSteve Foreman using AnyType = std::variant<std::string, uint8_t, uint32_t, uint64_t>;
4324f0d1de6SSteve Foreman using AnyTypeList = std::vector<std::pair<std::string, AnyType>>;
4334f0d1de6SSteve Foreman using NamedArrayOfAnyTypeLists =
4344f0d1de6SSteve Foreman     std::vector<std::pair<std::string, AnyTypeList>>;
4354f0d1de6SSteve Foreman using ArrayOfObjectPathsAndTieredAnyTypeLists = std::vector<
4364f0d1de6SSteve Foreman     std::pair<sdbusplus::message::object_path, NamedArrayOfAnyTypeLists>>;
4374f0d1de6SSteve Foreman 
4384f0d1de6SSteve Foreman } // namespace
4394f0d1de6SSteve Foreman 
4400e928ac6SMichael Shen sdbusplus::bus::bus Handler::getDbus() const
4414f0d1de6SSteve Foreman {
4424f0d1de6SSteve Foreman     return sdbusplus::bus::new_default();
4434f0d1de6SSteve Foreman }
4444f0d1de6SSteve Foreman 
4454f0d1de6SSteve Foreman uint32_t Handler::accelOobDeviceCount() const
4464f0d1de6SSteve Foreman {
4474f0d1de6SSteve Foreman     ArrayOfObjectPathsAndTieredAnyTypeLists data;
4484f0d1de6SSteve Foreman 
4494f0d1de6SSteve Foreman     try
4504f0d1de6SSteve Foreman     {
4510e928ac6SMichael Shen         auto bus = getDbus();
4524f0d1de6SSteve Foreman         auto method = bus.new_method_call(ACCEL_OOB_SERVICE, "/",
4534f0d1de6SSteve Foreman                                           "org.freedesktop.DBus.ObjectManager",
4544f0d1de6SSteve Foreman                                           "GetManagedObjects");
4554f0d1de6SSteve Foreman         bus.call(method).read(data);
4564f0d1de6SSteve Foreman     }
4574f0d1de6SSteve Foreman     catch (const sdbusplus::exception::SdBusError& ex)
4584f0d1de6SSteve Foreman     {
4594f0d1de6SSteve Foreman         log<level::ERR>(
4604f0d1de6SSteve Foreman             "Failed to call GetManagedObjects on com.google.custom_accel",
4614f0d1de6SSteve Foreman             entry("WHAT=%s", ex.what()));
462e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
4634f0d1de6SSteve Foreman     }
4644f0d1de6SSteve Foreman 
4654f0d1de6SSteve Foreman     return data.size();
4664f0d1de6SSteve Foreman }
4674f0d1de6SSteve Foreman 
4684f0d1de6SSteve Foreman std::string Handler::accelOobDeviceName(size_t index) const
4694f0d1de6SSteve Foreman {
4704f0d1de6SSteve Foreman     ArrayOfObjectPathsAndTieredAnyTypeLists data;
4714f0d1de6SSteve Foreman 
4724f0d1de6SSteve Foreman     try
4734f0d1de6SSteve Foreman     {
4740e928ac6SMichael Shen         auto bus = getDbus();
4754f0d1de6SSteve Foreman         auto method = bus.new_method_call(ACCEL_OOB_SERVICE, "/",
4764f0d1de6SSteve Foreman                                           "org.freedesktop.DBus.ObjectManager",
4774f0d1de6SSteve Foreman                                           "GetManagedObjects");
4784f0d1de6SSteve Foreman         bus.call(method).read(data);
4794f0d1de6SSteve Foreman     }
4804f0d1de6SSteve Foreman     catch (const sdbusplus::exception::SdBusError& ex)
4814f0d1de6SSteve Foreman     {
4824f0d1de6SSteve Foreman         log<level::ERR>(
4834f0d1de6SSteve Foreman             "Failed to call GetManagedObjects on com.google.custom_accel",
4844f0d1de6SSteve Foreman             entry("WHAT=%s", ex.what()));
485e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
4864f0d1de6SSteve Foreman     }
4874f0d1de6SSteve Foreman 
4884f0d1de6SSteve Foreman     if (index >= data.size())
4894f0d1de6SSteve Foreman     {
4904f0d1de6SSteve Foreman         log<level::WARNING>(
4914f0d1de6SSteve Foreman             "Requested index is larger than the number of entries.",
4924f0d1de6SSteve Foreman             entry("INDEX=%zu", index), entry("NUM_NAMES=%zu", data.size()));
493e5a06675SMichael Shen         throw IpmiException(::ipmi::ccParmOutOfRange);
4944f0d1de6SSteve Foreman     }
4954f0d1de6SSteve Foreman 
4964f0d1de6SSteve Foreman     std::string_view name(data[index].first.str);
4974f0d1de6SSteve Foreman     if (!name.starts_with(ACCEL_OOB_ROOT))
4984f0d1de6SSteve Foreman     {
499e5a06675SMichael Shen         throw IpmiException(::ipmi::ccInvalidCommand);
5004f0d1de6SSteve Foreman     }
5014f0d1de6SSteve Foreman     name.remove_prefix(ACCEL_OOB_ROOT.length());
5024f0d1de6SSteve Foreman     return std::string(name);
5034f0d1de6SSteve Foreman }
5044f0d1de6SSteve Foreman 
5054f0d1de6SSteve Foreman uint64_t Handler::accelOobRead(std::string_view name, uint64_t address,
5064f0d1de6SSteve Foreman                                uint8_t num_bytes) const
5074f0d1de6SSteve Foreman {
5084f0d1de6SSteve Foreman     static constexpr char ACCEL_OOB_METHOD[] = "Read";
5094f0d1de6SSteve Foreman 
5104f0d1de6SSteve Foreman     std::string object_name(ACCEL_OOB_ROOT);
5114f0d1de6SSteve Foreman     object_name.append(name);
5124f0d1de6SSteve Foreman 
5130e928ac6SMichael Shen     auto bus = getDbus();
5144f0d1de6SSteve Foreman     auto method = bus.new_method_call(ACCEL_OOB_SERVICE, object_name.c_str(),
5154f0d1de6SSteve Foreman                                       ACCEL_OOB_INTERFACE, ACCEL_OOB_METHOD);
5164f0d1de6SSteve Foreman     method.append(address, static_cast<uint64_t>(num_bytes));
5174f0d1de6SSteve Foreman 
5184f0d1de6SSteve Foreman     std::vector<uint8_t> bytes;
5194f0d1de6SSteve Foreman 
5204f0d1de6SSteve Foreman     try
5214f0d1de6SSteve Foreman     {
5224f0d1de6SSteve Foreman         bus.call(method).read(bytes);
5234f0d1de6SSteve Foreman     }
5244f0d1de6SSteve Foreman     catch (const sdbusplus::exception::SdBusError& ex)
5254f0d1de6SSteve Foreman     {
5264f0d1de6SSteve Foreman         log<level::ERR>("Failed to call Read on com.google.custom_accel",
5274f0d1de6SSteve Foreman                         entry("WHAT=%s", ex.what()),
5284f0d1de6SSteve Foreman                         entry("DBUS_SERVICE=%s", ACCEL_OOB_SERVICE),
5294f0d1de6SSteve Foreman                         entry("DBUS_OBJECT=%s", object_name.c_str()),
5304f0d1de6SSteve Foreman                         entry("DBUS_INTERFACE=%s", ACCEL_OOB_INTERFACE),
5314f0d1de6SSteve Foreman                         entry("DBUS_METHOD=%s", ACCEL_OOB_METHOD),
5324f0d1de6SSteve Foreman                         entry("DBUS_ARG_ADDRESS=%016llx", address),
5334f0d1de6SSteve Foreman                         entry("DBUS_ARG_NUM_BYTES=%zu", (size_t)num_bytes));
534e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
5354f0d1de6SSteve Foreman     }
5364f0d1de6SSteve Foreman 
5374f0d1de6SSteve Foreman     if (bytes.size() < num_bytes)
5384f0d1de6SSteve Foreman     {
5394f0d1de6SSteve Foreman         log<level::ERR>(
5404f0d1de6SSteve Foreman             "Call to Read on com.google.custom_accel didn't return the expected"
5414f0d1de6SSteve Foreman             " number of bytes.",
5424f0d1de6SSteve Foreman             entry("DBUS_SERVICE=%s", ACCEL_OOB_SERVICE),
5434f0d1de6SSteve Foreman             entry("DBUS_OBJECT=%s", object_name.c_str()),
5444f0d1de6SSteve Foreman             entry("DBUS_INTERFACE=%s", ACCEL_OOB_INTERFACE),
5454f0d1de6SSteve Foreman             entry("DBUS_METHOD=%s", ACCEL_OOB_METHOD),
5464f0d1de6SSteve Foreman             entry("DBUS_ARG_ADDRESS=%016llx", address),
5474f0d1de6SSteve Foreman             entry("DBUS_ARG_NUM_BYTES=%zu", (size_t)num_bytes),
5484f0d1de6SSteve Foreman             entry("DBUS_RETURN_SIZE=%zu", bytes.size()));
549e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
5504f0d1de6SSteve Foreman     }
5514f0d1de6SSteve Foreman 
5524f0d1de6SSteve Foreman     if (bytes.size() > sizeof(uint64_t))
5534f0d1de6SSteve Foreman     {
5544f0d1de6SSteve Foreman         log<level::ERR>(
5554f0d1de6SSteve Foreman             "Call to Read on com.google.custom_accel returned more than 8B.",
5564f0d1de6SSteve Foreman             entry("DBUS_SERVICE=%s", ACCEL_OOB_SERVICE),
5574f0d1de6SSteve Foreman             entry("DBUS_OBJECT=%s", object_name.c_str()),
5584f0d1de6SSteve Foreman             entry("DBUS_INTERFACE=%s", ACCEL_OOB_INTERFACE),
5594f0d1de6SSteve Foreman             entry("DBUS_METHOD=%s", ACCEL_OOB_METHOD),
5604f0d1de6SSteve Foreman             entry("DBUS_ARG_ADDRESS=%016llx", address),
5614f0d1de6SSteve Foreman             entry("DBUS_ARG_NUM_BYTES=%zu", (size_t)num_bytes),
5624f0d1de6SSteve Foreman             entry("DBUS_RETURN_SIZE=%zu", bytes.size()));
563e5a06675SMichael Shen         throw IpmiException(::ipmi::ccReqDataTruncated);
5644f0d1de6SSteve Foreman     }
5654f0d1de6SSteve Foreman 
5664f0d1de6SSteve Foreman     uint64_t data = 0;
5674f0d1de6SSteve Foreman     for (size_t i = 0; i < num_bytes; ++i)
5684f0d1de6SSteve Foreman     {
5694f0d1de6SSteve Foreman         data = (data << 8) | bytes[i];
5704f0d1de6SSteve Foreman     }
5714f0d1de6SSteve Foreman 
5724f0d1de6SSteve Foreman     return data;
5734f0d1de6SSteve Foreman }
5744f0d1de6SSteve Foreman 
5754f0d1de6SSteve Foreman void Handler::accelOobWrite(std::string_view name, uint64_t address,
5764f0d1de6SSteve Foreman                             uint8_t num_bytes, uint64_t data) const
5774f0d1de6SSteve Foreman {
5784f0d1de6SSteve Foreman     static constexpr std::string_view ACCEL_OOB_METHOD = "Write";
5794f0d1de6SSteve Foreman 
5804f0d1de6SSteve Foreman     std::string object_name(ACCEL_OOB_ROOT);
5814f0d1de6SSteve Foreman     object_name.append(name);
5824f0d1de6SSteve Foreman 
5834f0d1de6SSteve Foreman     if (num_bytes > sizeof(data))
5844f0d1de6SSteve Foreman     {
5854f0d1de6SSteve Foreman         log<level::ERR>(
5864f0d1de6SSteve Foreman             "Call to Write on com.google.custom_accel requested more than 8B.",
5874f0d1de6SSteve Foreman             entry("DBUS_SERVICE=%s", ACCEL_OOB_SERVICE),
5884f0d1de6SSteve Foreman             entry("DBUS_OBJECT=%s", object_name.c_str()),
5894f0d1de6SSteve Foreman             entry("DBUS_INTERFACE=%s", ACCEL_OOB_INTERFACE),
5904f0d1de6SSteve Foreman             entry("DBUS_METHOD=%s", ACCEL_OOB_METHOD.data()),
5914f0d1de6SSteve Foreman             entry("DBUS_ARG_ADDRESS=%016llx", address),
5924f0d1de6SSteve Foreman             entry("DBUS_ARG_NUM_BYTES=%zu", (size_t)num_bytes),
5934f0d1de6SSteve Foreman             entry("DBUS_ARG_DATA=%016llx", data));
594e5a06675SMichael Shen         throw IpmiException(::ipmi::ccParmOutOfRange);
5954f0d1de6SSteve Foreman     }
5964f0d1de6SSteve Foreman 
5974f0d1de6SSteve Foreman     std::vector<uint8_t> bytes;
5984f0d1de6SSteve Foreman     bytes.reserve(num_bytes);
5994f0d1de6SSteve Foreman     for (size_t i = 0; i < num_bytes; ++i)
6004f0d1de6SSteve Foreman     {
6014f0d1de6SSteve Foreman         bytes.emplace_back(data & 0xff);
6024f0d1de6SSteve Foreman         data >>= 8;
6034f0d1de6SSteve Foreman     }
6044f0d1de6SSteve Foreman 
6054f0d1de6SSteve Foreman     try
6064f0d1de6SSteve Foreman     {
6070e928ac6SMichael Shen         auto bus = getDbus();
6084f0d1de6SSteve Foreman         auto method =
6094f0d1de6SSteve Foreman             bus.new_method_call(ACCEL_OOB_SERVICE, object_name.c_str(),
6104f0d1de6SSteve Foreman                                 ACCEL_OOB_INTERFACE, ACCEL_OOB_METHOD.data());
6114f0d1de6SSteve Foreman         method.append(address, bytes);
6124f0d1de6SSteve Foreman         bus.call_noreply(method);
6134f0d1de6SSteve Foreman     }
6144f0d1de6SSteve Foreman     catch (const sdbusplus::exception::SdBusError& ex)
6154f0d1de6SSteve Foreman     {
6164f0d1de6SSteve Foreman         log<level::ERR>("Failed to call Write on com.google.custom_accel",
6174f0d1de6SSteve Foreman                         entry("WHAT=%s", ex.what()),
6184f0d1de6SSteve Foreman                         entry("DBUS_SERVICE=%s", ACCEL_OOB_SERVICE),
6194f0d1de6SSteve Foreman                         entry("DBUS_OBJECT=%s", object_name.c_str()),
6204f0d1de6SSteve Foreman                         entry("DBUS_INTERFACE=%s", ACCEL_OOB_INTERFACE),
6214f0d1de6SSteve Foreman                         entry("DBUS_METHOD=%s", ACCEL_OOB_METHOD.data()),
6224f0d1de6SSteve Foreman                         entry("DBUS_ARG_ADDRESS=%016llx", address),
6234f0d1de6SSteve Foreman                         entry("DBUS_ARG_NUM_BYTES=%zu", (size_t)num_bytes),
6244f0d1de6SSteve Foreman                         entry("DBUS_ARG_DATA=%016llx", data));
625e5a06675SMichael Shen         throw IpmiException(::ipmi::ccUnspecifiedError);
6264f0d1de6SSteve Foreman     }
6274f0d1de6SSteve Foreman }
6284f0d1de6SSteve Foreman 
6296c71b0f9SWilly Tu std::vector<uint8_t> Handler::pcieBifurcation(uint8_t index)
6306c71b0f9SWilly Tu {
6316c71b0f9SWilly Tu     return bifurcationHelper.get().getBifurcation(index).value_or(
6326c71b0f9SWilly Tu         std::vector<uint8_t>{});
6336c71b0f9SWilly Tu }
6346c71b0f9SWilly Tu 
635f085d91dSPatrick Venture } // namespace ipmi
636f085d91dSPatrick Venture } // namespace google
637