1 #include <ext_interface.hpp>
2 #include <phosphor-logging/log.hpp>
3 #include <sdbusplus/server.hpp>
4
5 #include <string>
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
13 constexpr auto REBOOTCOUNTER_PATH("/xyz/openbmc_project/state/host0");
14 constexpr auto
15 REBOOTCOUNTER_INTERFACE("xyz.openbmc_project.Control.Boot.RebootAttempts");
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 **/
getService(sdbusplus::bus_t & bus,const std::string & intf,const std::string & path)31 std::string getService(sdbusplus::bus_t& bus, const std::string& intf,
32 const std::string& path)
33 {
34 auto mapper = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
35 MAPPER_INTERFACE, "GetObject");
36
37 mapper.append(path);
38 mapper.append(std::vector<std::string>({intf}));
39
40 auto mapperResponseMsg = bus.call(mapper);
41
42 if (mapperResponseMsg.is_method_error())
43 {
44 // TODO openbmc/openbmc#851 - Once available, throw returned error
45 throw std::runtime_error("ERROR in mapper call");
46 }
47
48 std::map<std::string, std::vector<std::string>> mapperResponse;
49 mapperResponseMsg.read(mapperResponse);
50
51 if (mapperResponse.empty())
52 {
53 // TODO openbmc/openbmc#1712 - Handle empty mapper resp. consistently
54 throw std::runtime_error("ERROR in reading the mapper response");
55 }
56
57 return mapperResponse.begin()->first;
58 }
59
getBootCount()60 uint32_t getBootCount()
61 {
62 auto bus = sdbusplus::bus::new_default();
63
64 auto rebootSvc =
65 getService(bus, REBOOTCOUNTER_INTERFACE, REBOOTCOUNTER_PATH);
66
67 auto method = bus.new_method_call(rebootSvc.c_str(), REBOOTCOUNTER_PATH,
68 "org.freedesktop.DBus.Properties", "Get");
69
70 method.append(REBOOTCOUNTER_INTERFACE, "AttemptsLeft");
71 auto reply = bus.call(method);
72 if (reply.is_method_error())
73 {
74 log<level::ERR>("Error in BOOTCOUNT getValue");
75 // TODO openbmc/openbmc#851 - Once available, throw returned error
76 throw std::runtime_error("ERROR in reading BOOTCOUNT");
77 }
78 std::variant<uint32_t> rebootCount;
79 reply.read(rebootCount);
80
81 return std::get<uint32_t>(rebootCount);
82 }
83