James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 Intel Corporation |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | */ |
| 16 | #pragma once |
| 17 | |
Nan Zhou | 80d37e7 | 2022-06-21 17:46:14 +0000 | [diff] [blame] | 18 | #include "dbus_singleton.hpp" |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 19 | #include "logging.hpp" |
Nan Zhou | 80d37e7 | 2022-06-21 17:46:14 +0000 | [diff] [blame] | 20 | |
Nan Zhou | d5c80ad | 2022-07-11 01:16:31 +0000 | [diff] [blame] | 21 | #include <boost/system/error_code.hpp> // IWYU pragma: keep |
George Liu | a4eb761 | 2023-02-11 15:49:46 +0800 | [diff] [blame] | 22 | #include <sdbusplus/asio/property.hpp> |
Nan Zhou | d5c80ad | 2022-07-11 01:16:31 +0000 | [diff] [blame] | 23 | #include <sdbusplus/message/native_types.hpp> |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 24 | |
Nan Zhou | 80d37e7 | 2022-06-21 17:46:14 +0000 | [diff] [blame] | 25 | #include <array> |
Nan Zhou | d5c80ad | 2022-07-11 01:16:31 +0000 | [diff] [blame] | 26 | #include <cstddef> |
| 27 | #include <cstdint> |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 28 | #include <filesystem> |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 29 | #include <functional> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 30 | #include <regex> |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 31 | #include <span> |
Nan Zhou | d5c80ad | 2022-07-11 01:16:31 +0000 | [diff] [blame] | 32 | #include <sstream> |
Nan Zhou | 80d37e7 | 2022-06-21 17:46:14 +0000 | [diff] [blame] | 33 | #include <string> |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 34 | #include <string_view> |
Nan Zhou | 80d37e7 | 2022-06-21 17:46:14 +0000 | [diff] [blame] | 35 | #include <tuple> |
Nan Zhou | d5c80ad | 2022-07-11 01:16:31 +0000 | [diff] [blame] | 36 | #include <utility> |
Ed Tanous | 4068129 | 2022-02-22 10:11:43 -0800 | [diff] [blame] | 37 | #include <variant> |
Nan Zhou | 80d37e7 | 2022-06-21 17:46:14 +0000 | [diff] [blame] | 38 | #include <vector> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 39 | |
Nan Zhou | d5c80ad | 2022-07-11 01:16:31 +0000 | [diff] [blame] | 40 | // IWYU pragma: no_include <stddef.h> |
| 41 | // IWYU pragma: no_include <stdint.h> |
| 42 | // IWYU pragma: no_include <boost/system/detail/error_code.hpp> |
| 43 | |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 44 | namespace dbus |
| 45 | { |
| 46 | |
| 47 | namespace utility |
| 48 | { |
| 49 | |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 50 | // clang-format off |
Ed Tanous | 4068129 | 2022-02-22 10:11:43 -0800 | [diff] [blame] | 51 | using DbusVariantType = std::variant< |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 52 | std::vector<std::tuple<std::string, std::string, std::string>>, |
| 53 | std::vector<std::string>, |
| 54 | std::vector<double>, |
| 55 | std::string, |
| 56 | int64_t, |
| 57 | uint64_t, |
| 58 | double, |
| 59 | int32_t, |
| 60 | uint32_t, |
| 61 | int16_t, |
| 62 | uint16_t, |
| 63 | uint8_t, |
| 64 | bool, |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 65 | sdbusplus::message::unix_fd, |
| 66 | std::vector<uint32_t>, |
| 67 | std::vector<uint16_t>, |
| 68 | sdbusplus::message::object_path, |
Krzysztof Grobelny | 479e899 | 2021-06-17 13:37:57 +0000 | [diff] [blame] | 69 | std::tuple<uint64_t, std::vector<std::tuple<std::string, double, uint64_t>>>, |
Szymon Dompke | f19ab44 | 2022-03-07 14:28:06 +0100 | [diff] [blame] | 70 | std::vector<sdbusplus::message::object_path>, |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 71 | std::vector<std::tuple<std::string, std::string>>, |
| 72 | std::vector<std::tuple<uint32_t, std::vector<uint32_t>>>, |
| 73 | std::vector<std::tuple<uint32_t, size_t>>, |
Krzysztof Grobelny | 479e899 | 2021-06-17 13:37:57 +0000 | [diff] [blame] | 74 | std::vector<std::tuple< |
| 75 | std::vector<std::tuple<sdbusplus::message::object_path, std::string>>, |
| 76 | std::string, std::string, uint64_t>> |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 77 | >; |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 78 | |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 79 | // clang-format on |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 80 | using DBusPropertiesMap = std::vector<std::pair<std::string, DbusVariantType>>; |
Michael Shen | 80f79a4 | 2023-08-24 13:41:53 +0000 | [diff] [blame] | 81 | using DBusInterfacesMap = |
| 82 | std::vector<std::pair<std::string, DBusPropertiesMap>>; |
Zbigniew Kurzynski | 755a33c | 2020-02-28 14:06:37 +0100 | [diff] [blame] | 83 | using ManagedObjectType = |
Michael Shen | 80f79a4 | 2023-08-24 13:41:53 +0000 | [diff] [blame] | 84 | std::vector<std::pair<sdbusplus::message::object_path, DBusInterfacesMap>>; |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 85 | |
Shantappa Teekappanavar | 5df6eda | 2022-01-18 12:29:28 -0600 | [diff] [blame] | 86 | // Map of service name to list of interfaces |
| 87 | using MapperServiceMap = |
| 88 | std::vector<std::pair<std::string, std::vector<std::string>>>; |
| 89 | |
| 90 | // Map of object paths to MapperServiceMaps |
| 91 | using MapperGetSubTreeResponse = |
| 92 | std::vector<std::pair<std::string, MapperServiceMap>>; |
| 93 | |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 94 | using MapperGetObject = |
| 95 | std::vector<std::pair<std::string, std::vector<std::string>>>; |
| 96 | |
| 97 | using MapperGetAncestorsResponse = std::vector< |
| 98 | std::pair<std::string, |
| 99 | std::vector<std::pair<std::string, std::vector<std::string>>>>>; |
| 100 | |
| 101 | using MapperGetSubTreePathsResponse = std::vector<std::string>; |
| 102 | |
George Liu | a4eb761 | 2023-02-11 15:49:46 +0800 | [diff] [blame] | 103 | using MapperEndPoints = std::vector<std::string>; |
| 104 | |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 105 | inline void escapePathForDbus(std::string& path) |
| 106 | { |
Ed Tanous | 4b24274 | 2023-05-11 09:51:51 -0700 | [diff] [blame] | 107 | const static std::regex reg("[^A-Za-z0-9_/]"); |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 108 | std::regex_replace(path.begin(), path.begin(), path.end(), reg, "_"); |
| 109 | } |
| 110 | |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 111 | inline void logError(const boost::system::error_code& ec) |
| 112 | { |
| 113 | if (ec) |
| 114 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 115 | BMCWEB_LOG_ERROR("DBus error: {}, cannot call method", ec); |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 116 | } |
| 117 | } |
| 118 | |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 119 | // gets the string N strings deep into a path |
| 120 | // i.e. /0th/1st/2nd/3rd |
| 121 | inline bool getNthStringFromPath(const std::string& path, int index, |
| 122 | std::string& result) |
| 123 | { |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 124 | if (index < 0) |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 125 | { |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 126 | return false; |
| 127 | } |
| 128 | |
| 129 | std::filesystem::path p1(path); |
| 130 | int count = -1; |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 131 | for (const auto& element : p1) |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 132 | { |
| 133 | if (element.has_filename()) |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 134 | { |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 135 | ++count; |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 136 | if (count == index) |
| 137 | { |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 138 | result = element.stem().string(); |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 139 | break; |
| 140 | } |
| 141 | } |
| 142 | } |
Ed Tanous | dcf2ebc | 2022-01-25 10:07:45 -0800 | [diff] [blame] | 143 | return count >= index; |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Ratan Gupta | 22c3371 | 2019-05-03 21:50:28 +0530 | [diff] [blame] | 146 | template <typename Callback> |
| 147 | inline void checkDbusPathExists(const std::string& path, Callback&& callback) |
| 148 | { |
Ratan Gupta | 22c3371 | 2019-05-03 21:50:28 +0530 | [diff] [blame] | 149 | crow::connections::systemBus->async_method_call( |
Ed Tanous | f94c4ec | 2022-01-06 12:44:41 -0800 | [diff] [blame] | 150 | [callback{std::forward<Callback>(callback)}]( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 151 | const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 152 | const dbus::utility::MapperGetObject& objectNames) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 153 | callback(!ec && !objectNames.empty()); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 154 | }, |
Ratan Gupta | 22c3371 | 2019-05-03 21:50:28 +0530 | [diff] [blame] | 155 | "xyz.openbmc_project.ObjectMapper", |
| 156 | "/xyz/openbmc_project/object_mapper", |
| 157 | "xyz.openbmc_project.ObjectMapper", "GetObject", path, |
| 158 | std::array<std::string, 0>()); |
| 159 | } |
| 160 | |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 161 | inline void |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 162 | getSubTree(const std::string& path, int32_t depth, |
| 163 | std::span<const std::string_view> interfaces, |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 164 | std::function<void(const boost::system::error_code&, |
| 165 | const MapperGetSubTreeResponse&)>&& callback) |
| 166 | { |
| 167 | crow::connections::systemBus->async_method_call( |
| 168 | [callback{std::move(callback)}]( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 169 | const boost::system::error_code& ec, |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 170 | const MapperGetSubTreeResponse& subtree) { callback(ec, subtree); }, |
| 171 | "xyz.openbmc_project.ObjectMapper", |
| 172 | "/xyz/openbmc_project/object_mapper", |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 173 | "xyz.openbmc_project.ObjectMapper", "GetSubTree", path, depth, |
| 174 | interfaces); |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | inline void getSubTreePaths( |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 178 | const std::string& path, int32_t depth, |
| 179 | std::span<const std::string_view> interfaces, |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 180 | std::function<void(const boost::system::error_code&, |
| 181 | const MapperGetSubTreePathsResponse&)>&& callback) |
| 182 | { |
| 183 | crow::connections::systemBus->async_method_call( |
| 184 | [callback{std::move(callback)}]( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 185 | const boost::system::error_code& ec, |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 186 | const MapperGetSubTreePathsResponse& subtreePaths) { |
| 187 | callback(ec, subtreePaths); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 188 | }, |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 189 | "xyz.openbmc_project.ObjectMapper", |
| 190 | "/xyz/openbmc_project/object_mapper", |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 191 | "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths", path, depth, |
George Liu | 2138483 | 2022-11-09 11:21:15 +0800 | [diff] [blame] | 192 | interfaces); |
| 193 | } |
| 194 | |
Willy Tu | 8d01836 | 2023-04-14 09:14:16 -0700 | [diff] [blame] | 195 | inline void getAssociatedSubTree( |
| 196 | const sdbusplus::message::object_path& associatedPath, |
| 197 | const sdbusplus::message::object_path& path, int32_t depth, |
| 198 | std::span<const std::string_view> interfaces, |
| 199 | std::function<void(const boost::system::error_code&, |
| 200 | const MapperGetSubTreeResponse&)>&& callback) |
| 201 | { |
| 202 | crow::connections::systemBus->async_method_call( |
| 203 | [callback{std::move(callback)}]( |
| 204 | const boost::system::error_code& ec, |
| 205 | const MapperGetSubTreeResponse& subtree) { callback(ec, subtree); }, |
| 206 | "xyz.openbmc_project.ObjectMapper", |
| 207 | "/xyz/openbmc_project/object_mapper", |
| 208 | "xyz.openbmc_project.ObjectMapper", "GetAssociatedSubTree", |
| 209 | associatedPath, path, depth, interfaces); |
| 210 | } |
| 211 | |
| 212 | inline void getAssociatedSubTreePaths( |
| 213 | const sdbusplus::message::object_path& associatedPath, |
| 214 | const sdbusplus::message::object_path& path, int32_t depth, |
| 215 | std::span<const std::string_view> interfaces, |
| 216 | std::function<void(const boost::system::error_code&, |
| 217 | const MapperGetSubTreePathsResponse&)>&& callback) |
| 218 | { |
| 219 | crow::connections::systemBus->async_method_call( |
| 220 | [callback{std::move(callback)}]( |
| 221 | const boost::system::error_code& ec, |
| 222 | const MapperGetSubTreePathsResponse& subtreePaths) { |
| 223 | callback(ec, subtreePaths); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 224 | }, |
Willy Tu | 8d01836 | 2023-04-14 09:14:16 -0700 | [diff] [blame] | 225 | "xyz.openbmc_project.ObjectMapper", |
| 226 | "/xyz/openbmc_project/object_mapper", |
| 227 | "xyz.openbmc_project.ObjectMapper", "GetAssociatedSubTreePaths", |
| 228 | associatedPath, path, depth, interfaces); |
| 229 | } |
| 230 | |
George Liu | 2b73119 | 2023-01-11 16:27:13 +0800 | [diff] [blame] | 231 | inline void |
| 232 | getDbusObject(const std::string& path, |
| 233 | std::span<const std::string_view> interfaces, |
| 234 | std::function<void(const boost::system::error_code&, |
| 235 | const MapperGetObject&)>&& callback) |
| 236 | { |
| 237 | crow::connections::systemBus->async_method_call( |
| 238 | [callback{std::move(callback)}](const boost::system::error_code& ec, |
| 239 | const MapperGetObject& object) { |
| 240 | callback(ec, object); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 241 | }, |
George Liu | 2b73119 | 2023-01-11 16:27:13 +0800 | [diff] [blame] | 242 | "xyz.openbmc_project.ObjectMapper", |
| 243 | "/xyz/openbmc_project/object_mapper", |
| 244 | "xyz.openbmc_project.ObjectMapper", "GetObject", path, interfaces); |
| 245 | } |
| 246 | |
George Liu | a4eb761 | 2023-02-11 15:49:46 +0800 | [diff] [blame] | 247 | inline void getAssociationEndPoints( |
| 248 | const std::string& path, |
| 249 | std::function<void(const boost::system::error_code&, |
| 250 | const MapperEndPoints&)>&& callback) |
| 251 | { |
| 252 | sdbusplus::asio::getProperty<MapperEndPoints>( |
| 253 | *crow::connections::systemBus, "xyz.openbmc_project.ObjectMapper", path, |
| 254 | "xyz.openbmc_project.Association", "endpoints", std::move(callback)); |
| 255 | } |
| 256 | |
George Liu | f5892d0 | 2023-03-01 10:37:08 +0800 | [diff] [blame] | 257 | inline void |
| 258 | getManagedObjects(const std::string& service, |
| 259 | const sdbusplus::message::object_path& path, |
| 260 | std::function<void(const boost::system::error_code&, |
| 261 | const ManagedObjectType&)>&& callback) |
| 262 | { |
| 263 | crow::connections::systemBus->async_method_call( |
| 264 | [callback{std::move(callback)}](const boost::system::error_code& ec, |
| 265 | const ManagedObjectType& objects) { |
| 266 | callback(ec, objects); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 267 | }, |
George Liu | f5892d0 | 2023-03-01 10:37:08 +0800 | [diff] [blame] | 268 | service, path, "org.freedesktop.DBus.ObjectManager", |
| 269 | "GetManagedObjects"); |
| 270 | } |
| 271 | |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 272 | } // namespace utility |
| 273 | } // namespace dbus |