blob: 51fe31d3eb40efb25ea64dd62a4aaba34f180699 [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 Kobylak4e8b3352021-03-16 20:38:50 +000032using DbusVariant =
33 std::variant<uint64_t, std::string, std::vector<std::string>>;
34using DbusPropertyMap = std::map<DbusProperty, DbusVariant>;
Matt Spinler974c9162017-08-04 08:36:37 -050035/**
36 * @brief Get the service name from the mapper for the
37 * interface and path passed in.
38 *
39 * @param[in] path - the D-Bus path name
40 * @param[in] interface - the D-Bus interface name
41 * @param[in] bus - the D-Bus object
Matthew Barthd2624402020-02-03 15:35:12 -060042 * @param[in] logError - log error when no service found
Matt Spinler974c9162017-08-04 08:36:37 -050043 *
44 * @return The service name
45 */
Matt Spinlerf0f02b92018-10-25 16:12:43 -050046std::string getService(const std::string& path, const std::string& interface,
Matthew Barthd2624402020-02-03 15:35:12 -060047 sdbusplus::bus::bus& bus, bool logError = true);
Matt Spinler974c9162017-08-04 08:36:37 -050048
49/**
50 * @brief Read a D-Bus property
51 *
52 * @param[in] interface - the interface the property is on
53 * @param[in] propertName - the name of the property
54 * @param[in] path - the D-Bus path
55 * @param[in] service - the D-Bus service
56 * @param[in] bus - the D-Bus object
57 * @param[out] value - filled in with the property value
58 */
Matt Spinlerf0f02b92018-10-25 16:12:43 -050059template <typename T>
60void getProperty(const std::string& interface, const std::string& propertyName,
61 const std::string& path, const std::string& service,
62 sdbusplus::bus::bus& bus, T& value)
Matt Spinler974c9162017-08-04 08:36:37 -050063{
Patrick Williamsabe49412020-05-13 17:59:47 -050064 std::variant<T> property;
Matt Spinler974c9162017-08-04 08:36:37 -050065
Matt Spinlerf0f02b92018-10-25 16:12:43 -050066 auto method = bus.new_method_call(service.c_str(), path.c_str(),
67 PROPERTY_INTF, "Get");
Matt Spinler974c9162017-08-04 08:36:37 -050068
69 method.append(interface, propertyName);
70
71 auto reply = bus.call(method);
Matt Spinler974c9162017-08-04 08:36:37 -050072
73 reply.read(property);
Patrick Williams365d61c2020-05-13 12:23:08 -050074 value = std::get<T>(property);
Matt Spinler974c9162017-08-04 08:36:37 -050075}
76
Matt Spinler48b4a432017-08-04 11:57:37 -050077/**
Brandon Wyman0a4f5192017-12-06 20:19:08 -060078 * @brief Write a D-Bus property
79 *
80 * @param[in] interface - the interface the property is on
81 * @param[in] propertName - the name of the property
82 * @param[in] path - the D-Bus path
83 * @param[in] service - the D-Bus service
84 * @param[in] bus - the D-Bus object
85 * @param[in] value - the value to set the property to
86 */
Matt Spinlerf0f02b92018-10-25 16:12:43 -050087template <typename T>
88void setProperty(const std::string& interface, const std::string& propertyName,
89 const std::string& path, const std::string& service,
90 sdbusplus::bus::bus& bus, T& value)
Brandon Wyman0a4f5192017-12-06 20:19:08 -060091{
Patrick Williamsabe49412020-05-13 17:59:47 -050092 std::variant<T> propertyValue(value);
Brandon Wyman0a4f5192017-12-06 20:19:08 -060093
Matt Spinlerf0f02b92018-10-25 16:12:43 -050094 auto method = bus.new_method_call(service.c_str(), path.c_str(),
95 PROPERTY_INTF, "Set");
Brandon Wyman0a4f5192017-12-06 20:19:08 -060096
97 method.append(interface, propertyName, propertyValue);
98
99 auto reply = bus.call(method);
Brandon Wyman0a4f5192017-12-06 20:19:08 -0600100}
101
Adriana Kobylak4e8b3352021-03-16 20:38:50 +0000102/**
103 * @brief Get all D-Bus properties
104 *
105 * @param[in] bus - the D-Bus object
106 * @param[in] path - the D-Bus object path
107 * @param[in] interface - the D-Bus interface name
108 * @param[in] service - the D-Bus service name (optional)
109 *
110 * @return DbusPropertyMap - Map of property names and values
111 */
112DbusPropertyMap getAllProperties(sdbusplus::bus::bus& bus,
113 const std::string& path,
114 const std::string& interface,
115 const std::string& service = std::string());
116
Brandon Wymanc761b5f2020-11-05 18:30:41 -0600117/** @brief Get subtree from the object mapper.
118 *
119 * Helper function to find objects, services, and interfaces.
120 * See:
121 * https://github.com/openbmc/docs/blob/master/architecture/object-mapper.md
122 *
123 * @param[in] bus - The D-Bus object.
124 * @param[in] path - The root of the tree to search.
125 * @param[in] interface - Interface in the subtree to search for
126 * @param[in] depth - The number of path elements to descend.
127 *
128 * @return DbusSubtree - Map of object paths to a map of service names to their
129 * interfaces.
130 */
131DbusSubtree getSubTree(sdbusplus::bus::bus& bus, const std::string& path,
132 const std::string& interface, int32_t depth);
133
Brandon Wyman0a4f5192017-12-06 20:19:08 -0600134/**
Matt Spinler882ce952017-10-05 16:12:41 -0500135 * Logs an error and powers off the system.
Matt Spinler48b4a432017-08-04 11:57:37 -0500136 *
Matt Spinler882ce952017-10-05 16:12:41 -0500137 * @tparam T - error that will be logged before the power off
Matt Spinler48b4a432017-08-04 11:57:37 -0500138 * @param[in] bus - D-Bus object
139 */
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500140template <typename T>
Matt Spinler882ce952017-10-05 16:12:41 -0500141void powerOff(sdbusplus::bus::bus& bus)
142{
143 phosphor::logging::report<T>();
144
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500145 auto method = bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_ROOT,
146 SYSTEMD_INTERFACE, "StartUnit");
Matt Spinler882ce952017-10-05 16:12:41 -0500147
148 method.append(POWEROFF_TARGET);
149 method.append("replace");
150
151 bus.call_noreply(method);
152}
Matt Spinler48b4a432017-08-04 11:57:37 -0500153
Lei YU7dc31bb2019-08-30 10:07:08 +0800154/**
155 * Load json from a file
156 *
157 * @param[in] path - The path of the json file
158 *
159 * @return The nlohmann::json object
160 */
161nlohmann::json loadJSONFromFile(const char* path);
162
Lei YU40705462019-10-09 17:07:11 +0800163/**
164 * Get PmBus access type from the json config
165 *
166 * @param[in] json - The json object
167 *
168 * @return The pmbus access type
169 */
170phosphor::pmbus::Type getPMBusAccessType(const nlohmann::json& json);
171
Lei YUcfc040c2019-10-29 17:10:26 +0800172/**
173 * Check if power is on
174 *
Lei YUe8c9cd62019-11-04 14:24:41 +0800175 * @param[in] bus - D-Bus object
176 * @param[in] defaultState - The default state if the function fails to get
177 * the power state.
178 *
179 * @return true if power is on, otherwise false;
180 * defaultState if it fails to get the power state.
Lei YUcfc040c2019-10-29 17:10:26 +0800181 */
Lei YUe8c9cd62019-11-04 14:24:41 +0800182bool isPoweredOn(sdbusplus::bus::bus& bus, bool defaultState = false);
183
184/**
185 * Get all PSU inventory paths from D-Bus
186 *
187 * @param[in] bus - D-Bus object
188 *
189 * @return The list of PSU inventory paths
190 */
191std::vector<std::string> getPSUInventoryPaths(sdbusplus::bus::bus& bus);
Lei YUcfc040c2019-10-29 17:10:26 +0800192
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500193} // namespace util
194} // namespace power
Lei YUab093322019-10-09 16:43:22 +0800195} // namespace phosphor