Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 1 | #pragma once |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 2 | |
Kun Yi | 5dcf41e | 2019-03-05 14:02:51 -0800 | [diff] [blame] | 3 | #include <chrono> |
Yong Li | 7dc4ac0 | 2019-08-23 17:44:32 +0800 | [diff] [blame] | 4 | #include <ipmid/api-types.hpp> |
Vernon Mauery | 3325024 | 2019-03-12 16:49:26 -0700 | [diff] [blame] | 5 | #include <ipmid/types.hpp> |
Vernon Mauery | 5401250 | 2018-11-07 10:17:31 -0800 | [diff] [blame] | 6 | #include <optional> |
William A. Kennington III | e47fdfb | 2018-03-15 17:09:28 -0700 | [diff] [blame] | 7 | #include <sdbusplus/server.hpp> |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 8 | |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 9 | namespace ipmi |
| 10 | { |
| 11 | |
Kun Yi | 5dcf41e | 2019-03-05 14:02:51 -0800 | [diff] [blame] | 12 | using namespace std::literals::chrono_literals; |
| 13 | |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 14 | constexpr auto MAPPER_BUS_NAME = "xyz.openbmc_project.ObjectMapper"; |
| 15 | constexpr auto MAPPER_OBJ = "/xyz/openbmc_project/object_mapper"; |
| 16 | constexpr auto MAPPER_INTF = "xyz.openbmc_project.ObjectMapper"; |
| 17 | |
| 18 | constexpr auto ROOT = "/"; |
| 19 | constexpr auto HOST_MATCH = "host0"; |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 20 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 21 | constexpr auto PROP_INTF = "org.freedesktop.DBus.Properties"; |
| 22 | constexpr auto DELETE_INTERFACE = "xyz.openbmc_project.Object.Delete"; |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 23 | |
| 24 | constexpr auto METHOD_GET = "Get"; |
| 25 | constexpr auto METHOD_GET_ALL = "GetAll"; |
| 26 | constexpr auto METHOD_SET = "Set"; |
| 27 | |
Kun Yi | 5dcf41e | 2019-03-05 14:02:51 -0800 | [diff] [blame] | 28 | /* Use a value of 5s which aligns with BT/KCS bridged timeouts, rather |
| 29 | * than the default 25s D-Bus timeout. */ |
| 30 | constexpr std::chrono::microseconds IPMI_DBUS_TIMEOUT = 5s; |
| 31 | |
William A. Kennington III | e47fdfb | 2018-03-15 17:09:28 -0700 | [diff] [blame] | 32 | /** @class ServiceCache |
| 33 | * @brief Caches lookups of service names from the object mapper. |
| 34 | * @details Most ipmi commands need to talk to other dbus daemons to perform |
| 35 | * their intended actions on the BMC. This usually means they will |
| 36 | * first look up the service name providing the interface they |
| 37 | * require. This class reduces the number of such calls by caching |
| 38 | * the lookup for a specific service. |
| 39 | */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 40 | class ServiceCache |
| 41 | { |
| 42 | public: |
| 43 | /** @brief Creates a new service cache for the given interface |
| 44 | * and path. |
| 45 | * |
| 46 | * @param[in] intf - The interface used for each lookup |
| 47 | * @param[in] path - The path used for each lookup |
| 48 | */ |
| 49 | ServiceCache(const std::string& intf, const std::string& path); |
| 50 | ServiceCache(std::string&& intf, std::string&& path); |
William A. Kennington III | e47fdfb | 2018-03-15 17:09:28 -0700 | [diff] [blame] | 51 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 52 | /** @brief Gets the service name from the cache or does in a |
| 53 | * lookup when invalid. |
| 54 | * |
| 55 | * @param[in] bus - The bus associated with and used for looking |
| 56 | * up the service. |
| 57 | */ |
| 58 | const std::string& getService(sdbusplus::bus::bus& bus); |
William A. Kennington III | e47fdfb | 2018-03-15 17:09:28 -0700 | [diff] [blame] | 59 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 60 | /** @brief Invalidates the current service name */ |
| 61 | void invalidate(); |
William A. Kennington III | e47fdfb | 2018-03-15 17:09:28 -0700 | [diff] [blame] | 62 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 63 | /** @brief A wrapper around sdbusplus bus.new_method_call |
| 64 | * |
| 65 | * @param[in] bus - The bus used for calling the method |
| 66 | * @param[in] intf - The interface containing the method |
| 67 | * @param[in] method - The method name |
| 68 | * @return The message containing the method call. |
| 69 | */ |
| 70 | sdbusplus::message::message newMethodCall(sdbusplus::bus::bus& bus, |
| 71 | const char* intf, |
| 72 | const char* method); |
William A. Kennington III | 82c173a | 2018-05-11 16:10:12 -0700 | [diff] [blame] | 73 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 74 | /** @brief Check to see if the current cache is valid |
| 75 | * |
| 76 | * @param[in] bus - The bus used for the service lookup |
| 77 | * @return True if the cache is valid false otherwise. |
| 78 | */ |
| 79 | bool isValid(sdbusplus::bus::bus& bus) const; |
| 80 | |
| 81 | private: |
| 82 | /** @brief DBUS interface provided by the service */ |
| 83 | const std::string intf; |
| 84 | /** @brief DBUS path provided by the service */ |
| 85 | const std::string path; |
| 86 | /** @brief The name of the service if valid */ |
Vernon Mauery | 5401250 | 2018-11-07 10:17:31 -0800 | [diff] [blame] | 87 | std::optional<std::string> cachedService; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 88 | /** @brief The name of the bus used in the service lookup */ |
Vernon Mauery | 5401250 | 2018-11-07 10:17:31 -0800 | [diff] [blame] | 89 | std::optional<std::string> cachedBusName; |
William A. Kennington III | e47fdfb | 2018-03-15 17:09:28 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 92 | /** |
| 93 | * @brief Get the DBUS Service name for the input dbus path |
| 94 | * |
| 95 | * @param[in] bus - DBUS Bus Object |
| 96 | * @param[in] intf - DBUS Interface |
| 97 | * @param[in] path - DBUS Object Path |
| 98 | * |
| 99 | */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 100 | std::string getService(sdbusplus::bus::bus& bus, const std::string& intf, |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 101 | const std::string& path); |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 102 | |
| 103 | /** @brief Gets the dbus object info implementing the given interface |
| 104 | * from the given subtree. |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 105 | * @param[in] bus - DBUS Bus Object. |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 106 | * @param[in] interface - Dbus interface. |
| 107 | * @param[in] subtreePath - subtree from where the search should start. |
| 108 | * @param[in] match - identifier for object. |
| 109 | * @return On success returns the object having objectpath and servicename. |
| 110 | */ |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 111 | DbusObjectInfo getDbusObject(sdbusplus::bus::bus& bus, |
| 112 | const std::string& interface, |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 113 | const std::string& subtreePath = ROOT, |
| 114 | const std::string& match = {}); |
| 115 | |
| 116 | /** @brief Gets the value associated with the given object |
| 117 | * and the interface. |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 118 | * @param[in] bus - DBUS Bus Object. |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 119 | * @param[in] service - Dbus service name. |
| 120 | * @param[in] objPath - Dbus object path. |
| 121 | * @param[in] interface - Dbus interface. |
| 122 | * @param[in] property - name of the property. |
| 123 | * @return On success returns the value of the property. |
| 124 | */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 125 | Value getDbusProperty(sdbusplus::bus::bus& bus, const std::string& service, |
| 126 | const std::string& objPath, const std::string& interface, |
Kun Yi | 5dcf41e | 2019-03-05 14:02:51 -0800 | [diff] [blame] | 127 | const std::string& property, |
| 128 | std::chrono::microseconds timeout = IPMI_DBUS_TIMEOUT); |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 129 | |
| 130 | /** @brief Gets all the properties associated with the given object |
| 131 | * and the interface. |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 132 | * @param[in] bus - DBUS Bus Object. |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 133 | * @param[in] service - Dbus service name. |
| 134 | * @param[in] objPath - Dbus object path. |
| 135 | * @param[in] interface - Dbus interface. |
| 136 | * @return On success returns the map of name value pair. |
| 137 | */ |
Kun Yi | 5dcf41e | 2019-03-05 14:02:51 -0800 | [diff] [blame] | 138 | PropertyMap |
| 139 | getAllDbusProperties(sdbusplus::bus::bus& bus, const std::string& service, |
| 140 | const std::string& objPath, |
| 141 | const std::string& interface, |
| 142 | std::chrono::microseconds timeout = IPMI_DBUS_TIMEOUT); |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 143 | |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 144 | /** @brief Gets all managed objects associated with the given object |
| 145 | * path and service. |
| 146 | * @param[in] bus - D-Bus Bus Object. |
| 147 | * @param[in] service - D-Bus service name. |
| 148 | * @param[in] objPath - D-Bus object path. |
| 149 | * @return On success returns the map of name value pair. |
| 150 | */ |
| 151 | ObjectValueTree getManagedObjects(sdbusplus::bus::bus& bus, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 152 | const std::string& service, |
| 153 | const std::string& objPath); |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 154 | |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 155 | /** @brief Sets the property value of the given object. |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 156 | * @param[in] bus - DBUS Bus Object. |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 157 | * @param[in] service - Dbus service name. |
| 158 | * @param[in] objPath - Dbus object path. |
| 159 | * @param[in] interface - Dbus interface. |
| 160 | * @param[in] property - name of the property. |
| 161 | * @param[in] value - value which needs to be set. |
| 162 | */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 163 | void setDbusProperty(sdbusplus::bus::bus& bus, const std::string& service, |
| 164 | const std::string& objPath, const std::string& interface, |
Kun Yi | 5dcf41e | 2019-03-05 14:02:51 -0800 | [diff] [blame] | 165 | const std::string& property, const Value& value, |
| 166 | std::chrono::microseconds timeout = IPMI_DBUS_TIMEOUT); |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 167 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 168 | /** @brief Gets all the dbus objects from the given service root |
| 169 | * which matches the object identifier. |
| 170 | * @param[in] bus - DBUS Bus Object. |
| 171 | * @param[in] serviceRoot - Service root path. |
| 172 | * @param[in] interface - Dbus interface. |
| 173 | * @param[in] match - Identifier for a path. |
| 174 | * @returns map of object path and service info. |
| 175 | */ |
| 176 | ObjectTree getAllDbusObjects(sdbusplus::bus::bus& bus, |
| 177 | const std::string& serviceRoot, |
| 178 | const std::string& interface, |
Vernon Mauery | 6f2c8cd | 2018-07-28 06:40:39 -0700 | [diff] [blame] | 179 | const std::string& match = {}); |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 180 | |
| 181 | /** @brief Deletes all the dbus objects from the given service root |
| 182 | which matches the object identifier. |
| 183 | * @param[in] bus - DBUS Bus Object. |
| 184 | * @param[in] serviceRoot - Service root path. |
| 185 | * @param[in] interface - Dbus interface. |
| 186 | * @param[in] match - Identifier for object. |
| 187 | */ |
| 188 | void deleteAllDbusObjects(sdbusplus::bus::bus& bus, |
| 189 | const std::string& serviceRoot, |
| 190 | const std::string& interface, |
| 191 | const std::string& match = {}); |
| 192 | |
Ratan Gupta | cc6cdbf | 2017-09-01 23:06:25 +0530 | [diff] [blame] | 193 | /** @brief Gets the ancestor objects of the given object |
| 194 | which implements the given interface. |
| 195 | * @param[in] bus - Dbus bus object. |
| 196 | * @param[in] path - Child Dbus object path. |
| 197 | * @param[in] interfaces - Dbus interface list. |
| 198 | * @return map of object path and service info. |
| 199 | */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 200 | ObjectTree getAllAncestors(sdbusplus::bus::bus& bus, const std::string& path, |
Ratan Gupta | cc6cdbf | 2017-09-01 23:06:25 +0530 | [diff] [blame] | 201 | InterfaceList&& interfaces); |
| 202 | |
James Feist | 1e12112 | 2018-07-31 11:44:09 -0700 | [diff] [blame] | 203 | /** @struct VariantToDoubleVisitor |
| 204 | * @brief Visitor to convert variants to doubles |
| 205 | * @details Performs a static cast on the underlying type |
| 206 | */ |
| 207 | struct VariantToDoubleVisitor |
| 208 | { |
| 209 | template <typename T> |
| 210 | std::enable_if_t<std::is_arithmetic<T>::value, double> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 211 | operator()(const T& t) const |
James Feist | 1e12112 | 2018-07-31 11:44:09 -0700 | [diff] [blame] | 212 | { |
| 213 | return static_cast<double>(t); |
| 214 | } |
| 215 | |
| 216 | template <typename T> |
| 217 | std::enable_if_t<!std::is_arithmetic<T>::value, double> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 218 | operator()(const T& t) const |
James Feist | 1e12112 | 2018-07-31 11:44:09 -0700 | [diff] [blame] | 219 | { |
| 220 | throw std::invalid_argument("Cannot translate type to double"); |
| 221 | } |
| 222 | }; |
| 223 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 224 | namespace method_no_args |
| 225 | { |
| 226 | |
| 227 | /** @brief Calls the Dbus method which waits for response. |
| 228 | * @param[in] bus - DBUS Bus Object. |
| 229 | * @param[in] service - Dbus service name. |
| 230 | * @param[in] objPath - Dbus object path. |
| 231 | * @param[in] interface - Dbus interface. |
| 232 | * @param[in] method - Dbus method. |
| 233 | */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 234 | void callDbusMethod(sdbusplus::bus::bus& bus, const std::string& service, |
| 235 | const std::string& objPath, const std::string& interface, |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 236 | const std::string& method); |
| 237 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 238 | } // namespace method_no_args |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 239 | |
Yong Li | 7dc4ac0 | 2019-08-23 17:44:32 +0800 | [diff] [blame] | 240 | /** @brief Perform the low-level i2c bus write-read. |
| 241 | * @param[in] i2cBus - i2c bus device node name, such as /dev/i2c-2. |
| 242 | * @param[in] slaveAddr - i2c device slave address. |
| 243 | * @param[in] writeData - The data written to i2c device. |
| 244 | * @param[out] readBuf - Data read from the i2c device. |
| 245 | */ |
| 246 | ipmi::Cc i2cWriteRead(std::string i2cBus, const uint8_t slaveAddr, |
| 247 | std::vector<uint8_t> writeData, |
| 248 | std::vector<uint8_t>& readBuf); |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 249 | } // namespace ipmi |