| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 1 | #include <ext_interface.hpp> |
| Patrick Venture | f78d904 | 2018-11-01 15:39:53 -0700 | [diff] [blame] | 2 | #include <phosphor-logging/log.hpp> |
| 3 | #include <sdbusplus/server.hpp> |
| Brad Bishop | 5e5d445 | 2020-10-27 19:46:13 -0400 | [diff] [blame] | 4 | |
| Patrick Venture | f78d904 | 2018-11-01 15:39:53 -0700 | [diff] [blame] | 5 | #include <string> |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 6 | |
| 7 | // Mapper |
| 8 | constexpr auto MAPPER_BUSNAME = "xyz.openbmc_project.ObjectMapper"; |
| 9 | constexpr auto MAPPER_PATH = "/xyz/openbmc_project/object_mapper"; |
| 10 | constexpr auto MAPPER_INTERFACE = "xyz.openbmc_project.ObjectMapper"; |
| 11 | |
| 12 | // Reboot count |
| Andrew Geissler | bc7cdf4 | 2017-08-07 14:55:42 -0500 | [diff] [blame] | 13 | constexpr auto REBOOTCOUNTER_PATH("/xyz/openbmc_project/state/host0"); |
| Patrick Williams | 1bcde49 | 2025-02-01 08:22:16 -0500 | [diff] [blame] | 14 | constexpr auto REBOOTCOUNTER_INTERFACE( |
| 15 | "xyz.openbmc_project.Control.Boot.RebootAttempts"); |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 16 | |
| 17 | using namespace phosphor::logging; |
| 18 | |
| 19 | /** |
| 20 | * @brief Get DBUS service for input interface via mapper call |
| 21 | * |
| 22 | * This is an internal function to be used only by functions within this |
| 23 | * file. |
| 24 | * |
| 25 | * @param[in] bus - DBUS Bus Object |
| 26 | * @param[in] intf - DBUS Interface |
| 27 | * @param[in] path - DBUS Object Path |
| 28 | * |
| 29 | * @return distinct dbus name for input interface/path |
| 30 | **/ |
| Patrick Williams | aaea686 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 31 | std::string getService(sdbusplus::bus_t& bus, const std::string& intf, |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 32 | const std::string& path) |
| 33 | { |
| Patrick Venture | f78d904 | 2018-11-01 15:39:53 -0700 | [diff] [blame] | 34 | auto mapper = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, |
| 35 | MAPPER_INTERFACE, "GetObject"); |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 36 | |
| 37 | mapper.append(path); |
| 38 | mapper.append(std::vector<std::string>({intf})); |
| 39 | |
| 40 | auto mapperResponseMsg = bus.call(mapper); |
| 41 | |
| Patrick Williams | 0c5fafd | 2025-11-05 00:07:02 -0500 | [diff] [blame^] | 42 | auto mapperResponse = |
| 43 | mapperResponseMsg |
| 44 | .unpack<std::map<std::string, std::vector<std::string>>>(); |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 45 | |
| 46 | if (mapperResponse.empty()) |
| 47 | { |
| 48 | // TODO openbmc/openbmc#1712 - Handle empty mapper resp. consistently |
| 49 | throw std::runtime_error("ERROR in reading the mapper response"); |
| 50 | } |
| 51 | |
| 52 | return mapperResponse.begin()->first; |
| 53 | } |
| 54 | |
| Andrew Geissler | d8dd9b2 | 2017-08-19 13:44:44 -0500 | [diff] [blame] | 55 | uint32_t getBootCount() |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 56 | { |
| 57 | auto bus = sdbusplus::bus::new_default(); |
| 58 | |
| Patrick Williams | 1e43be0 | 2024-08-16 15:20:32 -0400 | [diff] [blame] | 59 | auto rebootSvc = |
| 60 | getService(bus, REBOOTCOUNTER_INTERFACE, REBOOTCOUNTER_PATH); |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 61 | |
| Patrick Venture | f78d904 | 2018-11-01 15:39:53 -0700 | [diff] [blame] | 62 | auto method = bus.new_method_call(rebootSvc.c_str(), REBOOTCOUNTER_PATH, |
| 63 | "org.freedesktop.DBus.Properties", "Get"); |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 64 | |
| Andrew Geissler | bc7cdf4 | 2017-08-07 14:55:42 -0500 | [diff] [blame] | 65 | method.append(REBOOTCOUNTER_INTERFACE, "AttemptsLeft"); |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 66 | auto reply = bus.call(method); |
| Patrick Williams | 2bf01cc | 2025-11-04 22:23:25 -0500 | [diff] [blame] | 67 | |
| Patrick Williams | 0c5fafd | 2025-11-05 00:07:02 -0500 | [diff] [blame^] | 68 | auto rebootCount = reply.unpack<std::variant<uint32_t>>(); |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 69 | |
| Patrick Williams | 72aeb92 | 2020-05-13 11:32:41 -0500 | [diff] [blame] | 70 | return std::get<uint32_t>(rebootCount); |
| Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 71 | } |