blob: 941c90924be1843dd0049cbd96f4e410792832cc [file] [log] [blame]
Matt Spinler974c9162017-08-04 08:36:37 -05001#pragma once
2
Lei YU40705462019-10-09 17:07:11 +08003#include "pmbus.hpp"
4
Lei YU7dc31bb2019-08-30 10:07:08 +08005#include <nlohmann/json.hpp>
Matt Spinler882ce952017-10-05 16:12:41 -05006#include <phosphor-logging/elog.hpp>
Matt Spinlerf0f02b92018-10-25 16:12:43 -05007#include <phosphor-logging/log.hpp>
Matt Spinler974c9162017-08-04 08:36:37 -05008#include <sdbusplus/bus.hpp>
Brandon Wymand1bc4ce2019-12-13 14:20:34 -06009
Matt Spinler974c9162017-08-04 08:36:37 -050010#include <string>
11
Lei YUab093322019-10-09 16:43:22 +080012namespace phosphor
Matt Spinler974c9162017-08-04 08:36:37 -050013{
14namespace power
15{
16namespace util
17{
18
Matt Spinlerf0f02b92018-10-25 16:12:43 -050019constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1";
20constexpr auto SYSTEMD_ROOT = "/org/freedesktop/systemd1";
Matt Spinler882ce952017-10-05 16:12:41 -050021constexpr auto SYSTEMD_INTERFACE = "org.freedesktop.systemd1.Manager";
Matt Spinlerf0f02b92018-10-25 16:12:43 -050022constexpr auto POWEROFF_TARGET = "obmc-chassis-hard-poweroff@0.target";
Matt Spinler974c9162017-08-04 08:36:37 -050023constexpr auto PROPERTY_INTF = "org.freedesktop.DBus.Properties";
24
Brandon Wymanc761b5f2020-11-05 18:30:41 -060025using DbusPath = std::string;
Adriana Kobylak4e8b3352021-03-16 20:38:50 +000026using DbusProperty = std::string;
Brandon Wymanc761b5f2020-11-05 18:30:41 -060027using DbusService = std::string;
28using DbusInterface = std::string;
29using DbusInterfaceList = std::vector<DbusInterface>;
30using DbusSubtree =
31 std::map<DbusPath, std::map<DbusService, DbusInterfaceList>>;
Adriana Kobylakd3a70d92021-06-04 16:24:45 +000032using DbusVariant = std::variant<uint64_t, std::string, std::vector<uint64_t>>;
Adriana Kobylak4e8b3352021-03-16 20:38:50 +000033using DbusPropertyMap = std::map<DbusProperty, DbusVariant>;
Matt Spinler974c9162017-08-04 08:36:37 -050034/**
35 * @brief Get the service name from the mapper for the
36 * interface and path passed in.
37 *
38 * @param[in] path - the D-Bus path name
39 * @param[in] interface - the D-Bus interface name
40 * @param[in] bus - the D-Bus object
Matthew Barthd2624402020-02-03 15:35:12 -060041 * @param[in] logError - log error when no service found
Matt Spinler974c9162017-08-04 08:36:37 -050042 *
43 * @return The service name
44 */
Matt Spinlerf0f02b92018-10-25 16:12:43 -050045std::string getService(const std::string& path, const std::string& interface,
Matthew Barthd2624402020-02-03 15:35:12 -060046 sdbusplus::bus::bus& bus, bool logError = true);
Matt Spinler974c9162017-08-04 08:36:37 -050047
48/**
49 * @brief Read a D-Bus property
50 *
51 * @param[in] interface - the interface the property is on
52 * @param[in] propertName - the name of the property
53 * @param[in] path - the D-Bus path
54 * @param[in] service - the D-Bus service
55 * @param[in] bus - the D-Bus object
56 * @param[out] value - filled in with the property value
57 */
Matt Spinlerf0f02b92018-10-25 16:12:43 -050058template <typename T>
59void getProperty(const std::string& interface, const std::string& propertyName,
60 const std::string& path, const std::string& service,
61 sdbusplus::bus::bus& bus, T& value)
Matt Spinler974c9162017-08-04 08:36:37 -050062{
Patrick Williamsabe49412020-05-13 17:59:47 -050063 std::variant<T> property;
Matt Spinler974c9162017-08-04 08:36:37 -050064
Matt Spinlerf0f02b92018-10-25 16:12:43 -050065 auto method = bus.new_method_call(service.c_str(), path.c_str(),
66 PROPERTY_INTF, "Get");
Matt Spinler974c9162017-08-04 08:36:37 -050067
68 method.append(interface, propertyName);
69
70 auto reply = bus.call(method);
Matt Spinler974c9162017-08-04 08:36:37 -050071
72 reply.read(property);
Patrick Williams365d61c2020-05-13 12:23:08 -050073 value = std::get<T>(property);
Matt Spinler974c9162017-08-04 08:36:37 -050074}
75
Matt Spinler48b4a432017-08-04 11:57:37 -050076/**
Brandon Wyman0a4f5192017-12-06 20:19:08 -060077 * @brief Write a D-Bus property
78 *
79 * @param[in] interface - the interface the property is on
80 * @param[in] propertName - the name of the property
81 * @param[in] path - the D-Bus path
82 * @param[in] service - the D-Bus service
83 * @param[in] bus - the D-Bus object
84 * @param[in] value - the value to set the property to
85 */
Matt Spinlerf0f02b92018-10-25 16:12:43 -050086template <typename T>
87void setProperty(const std::string& interface, const std::string& propertyName,
88 const std::string& path, const std::string& service,
89 sdbusplus::bus::bus& bus, T& value)
Brandon Wyman0a4f5192017-12-06 20:19:08 -060090{
Patrick Williamsabe49412020-05-13 17:59:47 -050091 std::variant<T> propertyValue(value);
Brandon Wyman0a4f5192017-12-06 20:19:08 -060092
Matt Spinlerf0f02b92018-10-25 16:12:43 -050093 auto method = bus.new_method_call(service.c_str(), path.c_str(),
94 PROPERTY_INTF, "Set");
Brandon Wyman0a4f5192017-12-06 20:19:08 -060095
96 method.append(interface, propertyName, propertyValue);
97
98 auto reply = bus.call(method);
Brandon Wyman0a4f5192017-12-06 20:19:08 -060099}
100
Adriana Kobylak4e8b3352021-03-16 20:38:50 +0000101/**
102 * @brief Get all D-Bus properties
103 *
104 * @param[in] bus - the D-Bus object
105 * @param[in] path - the D-Bus object path
106 * @param[in] interface - the D-Bus interface name
107 * @param[in] service - the D-Bus service name (optional)
108 *
109 * @return DbusPropertyMap - Map of property names and values
110 */
111DbusPropertyMap getAllProperties(sdbusplus::bus::bus& bus,
112 const std::string& path,
113 const std::string& interface,
114 const std::string& service = std::string());
115
Brandon Wymanc761b5f2020-11-05 18:30:41 -0600116/** @brief Get subtree from the object mapper.
117 *
118 * Helper function to find objects, services, and interfaces.
119 * See:
120 * https://github.com/openbmc/docs/blob/master/architecture/object-mapper.md
121 *
122 * @param[in] bus - The D-Bus object.
123 * @param[in] path - The root of the tree to search.
124 * @param[in] interface - Interface in the subtree to search for
125 * @param[in] depth - The number of path elements to descend.
126 *
127 * @return DbusSubtree - Map of object paths to a map of service names to their
128 * interfaces.
129 */
130DbusSubtree getSubTree(sdbusplus::bus::bus& bus, const std::string& path,
131 const std::string& interface, int32_t depth);
132
Brandon Wyman0a4f5192017-12-06 20:19:08 -0600133/**
Matt Spinler882ce952017-10-05 16:12:41 -0500134 * Logs an error and powers off the system.
Matt Spinler48b4a432017-08-04 11:57:37 -0500135 *
Matt Spinler882ce952017-10-05 16:12:41 -0500136 * @tparam T - error that will be logged before the power off
Matt Spinler48b4a432017-08-04 11:57:37 -0500137 * @param[in] bus - D-Bus object
138 */
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500139template <typename T>
Matt Spinler882ce952017-10-05 16:12:41 -0500140void powerOff(sdbusplus::bus::bus& bus)
141{
142 phosphor::logging::report<T>();
143
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500144 auto method = bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_ROOT,
145 SYSTEMD_INTERFACE, "StartUnit");
Matt Spinler882ce952017-10-05 16:12:41 -0500146
147 method.append(POWEROFF_TARGET);
148 method.append("replace");
149
150 bus.call_noreply(method);
151}
Matt Spinler48b4a432017-08-04 11:57:37 -0500152
Lei YU7dc31bb2019-08-30 10:07:08 +0800153/**
154 * Load json from a file
155 *
156 * @param[in] path - The path of the json file
157 *
158 * @return The nlohmann::json object
159 */
160nlohmann::json loadJSONFromFile(const char* path);
161
Lei YU40705462019-10-09 17:07:11 +0800162/**
163 * Get PmBus access type from the json config
164 *
165 * @param[in] json - The json object
166 *
167 * @return The pmbus access type
168 */
169phosphor::pmbus::Type getPMBusAccessType(const nlohmann::json& json);
170
Lei YUcfc040c2019-10-29 17:10:26 +0800171/**
172 * Check if power is on
173 *
Lei YUe8c9cd62019-11-04 14:24:41 +0800174 * @param[in] bus - D-Bus object
175 * @param[in] defaultState - The default state if the function fails to get
176 * the power state.
177 *
178 * @return true if power is on, otherwise false;
179 * defaultState if it fails to get the power state.
Lei YUcfc040c2019-10-29 17:10:26 +0800180 */
Lei YUe8c9cd62019-11-04 14:24:41 +0800181bool isPoweredOn(sdbusplus::bus::bus& bus, bool defaultState = false);
182
183/**
184 * Get all PSU inventory paths from D-Bus
185 *
186 * @param[in] bus - D-Bus object
187 *
188 * @return The list of PSU inventory paths
189 */
190std::vector<std::string> getPSUInventoryPaths(sdbusplus::bus::bus& bus);
Lei YUcfc040c2019-10-29 17:10:26 +0800191
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500192} // namespace util
193} // namespace power
Lei YUab093322019-10-09 16:43:22 +0800194} // namespace phosphor