Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 1 | #pragma once |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 2 | #include "app.hpp" |
| 3 | #include "async_resp.hpp" |
| 4 | #include "dbus_singleton.hpp" |
| 5 | #include "openbmc_dbus_rest.hpp" |
| 6 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 7 | #include <boost/container/flat_map.hpp> |
Ed Tanous | 9b243a4 | 2018-08-03 14:33:10 -0700 | [diff] [blame] | 8 | #include <boost/container/flat_set.hpp> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 9 | #include <sdbusplus/bus/match.hpp> |
William A. Kennington III | 0a63b1c | 2018-10-18 13:37:19 -0700 | [diff] [blame] | 10 | #include <sdbusplus/message/types.hpp> |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 11 | #include <websocket.hpp> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 12 | |
Ed Tanous | abf2add | 2019-01-22 16:40:12 -0800 | [diff] [blame] | 13 | #include <variant> |
Ed Tanous | 9b243a4 | 2018-08-03 14:33:10 -0700 | [diff] [blame] | 14 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 15 | namespace crow |
| 16 | { |
| 17 | namespace dbus_monitor |
| 18 | { |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 19 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 20 | struct DbusWebsocketSession |
| 21 | { |
Patrick Williams | 59d494e | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 22 | std::vector<std::unique_ptr<sdbusplus::bus::match_t>> matches; |
Ed Tanous | 24b2fe8 | 2022-01-06 12:45:54 -0800 | [diff] [blame] | 23 | boost::container::flat_set<std::string, std::less<>, |
| 24 | std::vector<std::string>> |
| 25 | interfaces; |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 26 | }; |
| 27 | |
Ed Tanous | cf9e417 | 2022-12-21 09:30:16 -0800 | [diff] [blame] | 28 | using SessionMap = boost::container::flat_map<crow::websocket::Connection*, |
| 29 | DbusWebsocketSession>; |
| 30 | |
| 31 | // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) |
| 32 | static SessionMap sessions; |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 33 | |
Ed Tanous | 9b243a4 | 2018-08-03 14:33:10 -0700 | [diff] [blame] | 34 | inline int onPropertyUpdate(sd_bus_message* m, void* userdata, |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 35 | sd_bus_error* retError) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 36 | { |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 37 | if (retError == nullptr || (sd_bus_error_is_set(retError) != 0)) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 38 | { |
| 39 | BMCWEB_LOG_ERROR << "Got sdbus error on match"; |
| 40 | return 0; |
Ed Tanous | 9b243a4 | 2018-08-03 14:33:10 -0700 | [diff] [blame] | 41 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 42 | crow::websocket::Connection* connection = |
| 43 | static_cast<crow::websocket::Connection*>(userdata); |
| 44 | auto thisSession = sessions.find(connection); |
| 45 | if (thisSession == sessions.end()) |
| 46 | { |
| 47 | BMCWEB_LOG_ERROR << "Couldn't find dbus connection " << connection; |
| 48 | return 0; |
| 49 | } |
Patrick Williams | 59d494e | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 50 | sdbusplus::message_t message(m); |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 51 | nlohmann::json json; |
| 52 | json["event"] = message.get_member(); |
| 53 | json["path"] = message.get_path(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 54 | if (strcmp(message.get_member(), "PropertiesChanged") == 0) |
| 55 | { |
Matt Spinler | 715748a | 2019-01-30 13:22:28 -0600 | [diff] [blame] | 56 | nlohmann::json data; |
| 57 | int r = openbmc_mapper::convertDBusToJSON("sa{sv}as", message, data); |
| 58 | if (r < 0) |
| 59 | { |
| 60 | BMCWEB_LOG_ERROR << "convertDBusToJSON failed with " << r; |
| 61 | return 0; |
| 62 | } |
| 63 | if (!data.is_array()) |
| 64 | { |
| 65 | BMCWEB_LOG_ERROR << "No data in PropertiesChanged signal"; |
| 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | // data is type sa{sv}as and is an array[3] of string, object, array |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 70 | json["interface"] = data[0]; |
| 71 | json["properties"] = data[1]; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 72 | } |
| 73 | else if (strcmp(message.get_member(), "InterfacesAdded") == 0) |
| 74 | { |
Matt Spinler | 715748a | 2019-01-30 13:22:28 -0600 | [diff] [blame] | 75 | nlohmann::json data; |
| 76 | int r = openbmc_mapper::convertDBusToJSON("oa{sa{sv}}", message, data); |
| 77 | if (r < 0) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 78 | { |
Matt Spinler | 715748a | 2019-01-30 13:22:28 -0600 | [diff] [blame] | 79 | BMCWEB_LOG_ERROR << "convertDBusToJSON failed with " << r; |
| 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | if (!data.is_array()) |
| 84 | { |
| 85 | BMCWEB_LOG_ERROR << "No data in InterfacesAdded signal"; |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | // data is type oa{sa{sv}} which is an array[2] of string, object |
Patrick Williams | 62bafc0 | 2022-09-08 17:35:35 -0500 | [diff] [blame] | 90 | for (const auto& entry : data[1].items()) |
Matt Spinler | 715748a | 2019-01-30 13:22:28 -0600 | [diff] [blame] | 91 | { |
| 92 | auto it = thisSession->second.interfaces.find(entry.key()); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 93 | if (it != thisSession->second.interfaces.end()) |
| 94 | { |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 95 | json["interfaces"][entry.key()] = entry.value(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 96 | } |
| 97 | } |
| 98 | } |
| 99 | else |
| 100 | { |
| 101 | BMCWEB_LOG_CRITICAL << "message " << message.get_member() |
| 102 | << " was unexpected"; |
| 103 | return 0; |
| 104 | } |
Ed Tanous | 9b243a4 | 2018-08-03 14:33:10 -0700 | [diff] [blame] | 105 | |
Ed Tanous | 71f52d9 | 2021-02-19 08:51:17 -0800 | [diff] [blame] | 106 | connection->sendText( |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 107 | json.dump(2, ' ', true, nlohmann::json::error_handler_t::replace)); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 108 | return 0; |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 109 | } |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 110 | |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 111 | inline void requestRoutes(App& app) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 112 | { |
| 113 | BMCWEB_ROUTE(app, "/subscribe") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 114 | .privileges({{"Login"}}) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 115 | .websocket() |
zhanghch05 | 7772638 | 2021-10-21 14:07:57 +0800 | [diff] [blame] | 116 | .onopen([&](crow::websocket::Connection& conn) { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 117 | BMCWEB_LOG_DEBUG << "Connection " << &conn << " opened"; |
Ed Tanous | 24b2fe8 | 2022-01-06 12:45:54 -0800 | [diff] [blame] | 118 | sessions.try_emplace(&conn); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 119 | }) |
Ed Tanous | cb13a39 | 2020-07-25 19:02:03 +0000 | [diff] [blame] | 120 | .onclose([&](crow::websocket::Connection& conn, const std::string&) { |
| 121 | sessions.erase(&conn); |
| 122 | }) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 123 | .onmessage( |
| 124 | [&](crow::websocket::Connection& conn, const std::string& data, |
| 125 | bool) { |
| 126 | const auto sessionPair = sessions.find(&conn); |
| 127 | if (sessionPair == sessions.end()) |
| 128 | { |
| 129 | conn.close("Internal error"); |
| 130 | } |
| 131 | DbusWebsocketSession& thisSession = sessionPair->second; |
| 132 | BMCWEB_LOG_DEBUG << "Connection " << &conn << " received " << data; |
| 133 | nlohmann::json j = nlohmann::json::parse(data, nullptr, false); |
| 134 | if (j.is_discarded()) |
| 135 | { |
| 136 | BMCWEB_LOG_ERROR << "Unable to parse json data for monitor"; |
| 137 | conn.close("Unable to parse json request"); |
| 138 | return; |
| 139 | } |
| 140 | nlohmann::json::iterator interfaces = j.find("interfaces"); |
| 141 | if (interfaces != j.end()) |
| 142 | { |
| 143 | thisSession.interfaces.reserve(interfaces->size()); |
| 144 | for (auto& interface : *interfaces) |
Ed Tanous | 24b2fe8 | 2022-01-06 12:45:54 -0800 | [diff] [blame] | 145 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 146 | const std::string* str = |
| 147 | interface.get_ptr<const std::string*>(); |
| 148 | if (str != nullptr) |
| 149 | { |
| 150 | thisSession.interfaces.insert(*str); |
| 151 | } |
Ed Tanous | 24b2fe8 | 2022-01-06 12:45:54 -0800 | [diff] [blame] | 152 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | nlohmann::json::iterator paths = j.find("paths"); |
| 156 | if (paths == j.end()) |
| 157 | { |
| 158 | BMCWEB_LOG_ERROR << "Unable to find paths in json data"; |
| 159 | conn.close("Unable to find paths in json data"); |
| 160 | return; |
| 161 | } |
| 162 | |
| 163 | size_t interfaceCount = thisSession.interfaces.size(); |
| 164 | if (interfaceCount == 0) |
| 165 | { |
| 166 | interfaceCount = 1; |
| 167 | } |
| 168 | // Reserve our matches upfront. For each path there is 1 for |
| 169 | // interfacesAdded, and InterfaceCount number for |
| 170 | // PropertiesChanged |
| 171 | thisSession.matches.reserve(thisSession.matches.size() + |
| 172 | paths->size() * (1U + interfaceCount)); |
Ed Tanous | f8fe53e | 2022-06-30 15:55:45 -0700 | [diff] [blame] | 173 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 174 | // These regexes derived on the rules here: |
| 175 | // https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names |
| 176 | std::regex validPath("^/([A-Za-z0-9_]+/?)*$"); |
| 177 | std::regex validInterface( |
| 178 | "^[A-Za-z_][A-Za-z0-9_]*(\\.[A-Za-z_][A-Za-z0-9_]*)+$"); |
| 179 | |
| 180 | for (const auto& thisPath : *paths) |
| 181 | { |
| 182 | const std::string* thisPathString = |
| 183 | thisPath.get_ptr<const std::string*>(); |
| 184 | if (thisPathString == nullptr) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 185 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 186 | BMCWEB_LOG_ERROR << "subscribe path isn't a string?"; |
| 187 | conn.close(); |
Ed Tanous | 9b243a4 | 2018-08-03 14:33:10 -0700 | [diff] [blame] | 188 | return; |
Ed Tanous | 9b243a4 | 2018-08-03 14:33:10 -0700 | [diff] [blame] | 189 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 190 | if (!std::regex_match(*thisPathString, validPath)) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 191 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 192 | BMCWEB_LOG_ERROR << "Invalid path name " << *thisPathString; |
| 193 | conn.close(); |
P Dheeraj Srujan Kumar | 418b934 | 2021-07-13 03:36:20 +0530 | [diff] [blame] | 194 | return; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 195 | } |
Ed Tanous | f8fe53e | 2022-06-30 15:55:45 -0700 | [diff] [blame] | 196 | std::string propertiesMatchString = |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 197 | ("type='signal'," |
| 198 | "interface='org.freedesktop.DBus.Properties'," |
| 199 | "path_namespace='" + |
| 200 | *thisPathString + |
| 201 | "'," |
| 202 | "member='PropertiesChanged'"); |
| 203 | // If interfaces weren't specified, add a single match for all |
| 204 | // interfaces |
| 205 | if (thisSession.interfaces.empty()) |
P Dheeraj Srujan Kumar | 418b934 | 2021-07-13 03:36:20 +0530 | [diff] [blame] | 206 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 207 | BMCWEB_LOG_DEBUG << "Creating match " << propertiesMatchString; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 208 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 209 | thisSession.matches.emplace_back( |
Patrick Williams | 59d494e | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 210 | std::make_unique<sdbusplus::bus::match_t>( |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 211 | *crow::connections::systemBus, propertiesMatchString, |
Ed Tanous | 2c70f80 | 2020-09-28 14:29:23 -0700 | [diff] [blame] | 212 | onPropertyUpdate, &conn)); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 213 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 214 | else |
| 215 | { |
| 216 | // If interfaces were specified, add a match for each |
| 217 | // interface |
| 218 | for (const std::string& interface : thisSession.interfaces) |
| 219 | { |
| 220 | if (!std::regex_match(interface, validInterface)) |
| 221 | { |
| 222 | BMCWEB_LOG_ERROR << "Invalid interface name " |
| 223 | << interface; |
| 224 | conn.close(); |
| 225 | return; |
| 226 | } |
| 227 | std::string ifaceMatchString = propertiesMatchString; |
| 228 | ifaceMatchString += ",arg0='"; |
| 229 | ifaceMatchString += interface; |
| 230 | ifaceMatchString += "'"; |
| 231 | BMCWEB_LOG_DEBUG << "Creating match " << ifaceMatchString; |
| 232 | thisSession.matches.emplace_back( |
Patrick Williams | 59d494e | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 233 | std::make_unique<sdbusplus::bus::match_t>( |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 234 | *crow::connections::systemBus, ifaceMatchString, |
| 235 | onPropertyUpdate, &conn)); |
| 236 | } |
| 237 | } |
Ed Tanous | f8fe53e | 2022-06-30 15:55:45 -0700 | [diff] [blame] | 238 | std::string objectManagerMatchString = |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 239 | ("type='signal'," |
| 240 | "interface='org.freedesktop.DBus.ObjectManager'," |
| 241 | "path_namespace='" + |
| 242 | *thisPathString + |
| 243 | "'," |
| 244 | "member='InterfacesAdded'"); |
| 245 | BMCWEB_LOG_DEBUG << "Creating match " << objectManagerMatchString; |
| 246 | thisSession.matches.emplace_back( |
Patrick Williams | 59d494e | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 247 | std::make_unique<sdbusplus::bus::match_t>( |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 248 | *crow::connections::systemBus, objectManagerMatchString, |
| 249 | onPropertyUpdate, &conn)); |
| 250 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 251 | }); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 252 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 253 | } // namespace dbus_monitor |
| 254 | } // namespace crow |