Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2019 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 |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 17 | #include <app.hpp> |
Ed Tanous | d43cd0c | 2020-09-30 20:46:53 -0700 | [diff] [blame] | 18 | #include <boost/asio/buffer.hpp> |
| 19 | #include <boost/asio/local/stream_protocol.hpp> |
| 20 | #include <boost/asio/write.hpp> |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 21 | #include <boost/beast/core/buffers_to_string.hpp> |
| 22 | #include <boost/beast/core/multi_buffer.hpp> |
| 23 | #include <boost/container/flat_map.hpp> |
| 24 | #include <dbus_utility.hpp> |
Przemyslaw Czarnowski | 250b0eb | 2020-02-24 10:23:56 +0100 | [diff] [blame] | 25 | #include <privileges.hpp> |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 26 | #include <websocket.hpp> |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 27 | |
| 28 | namespace crow |
| 29 | { |
| 30 | |
| 31 | namespace nbd_proxy |
| 32 | { |
| 33 | |
| 34 | using boost::asio::local::stream_protocol; |
| 35 | |
| 36 | static constexpr auto nbdBufferSize = 131088; |
Przemyslaw Czarnowski | 250b0eb | 2020-02-24 10:23:56 +0100 | [diff] [blame] | 37 | static const char* requiredPrivilegeString = "ConfigureManager"; |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 38 | |
| 39 | struct NbdProxyServer : std::enable_shared_from_this<NbdProxyServer> |
| 40 | { |
| 41 | NbdProxyServer(crow::websocket::Connection& connIn, |
| 42 | const std::string& socketIdIn, |
| 43 | const std::string& endpointIdIn, const std::string& pathIn) : |
| 44 | socketId(socketIdIn), |
| 45 | endpointId(endpointIdIn), path(pathIn), |
Ed Tanous | 2c70f80 | 2020-09-28 14:29:23 -0700 | [diff] [blame] | 46 | acceptor(connIn.getIoContext(), stream_protocol::endpoint(socketId)), |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 47 | connection(connIn) |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 48 | {} |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 49 | |
Ed Tanous | 08e9fa9 | 2022-02-16 16:18:08 -0800 | [diff] [blame] | 50 | NbdProxyServer(const NbdProxyServer&) = delete; |
| 51 | NbdProxyServer(NbdProxyServer&&) = delete; |
| 52 | NbdProxyServer& operator=(const NbdProxyServer&) = delete; |
| 53 | NbdProxyServer& operator=(NbdProxyServer&&) = delete; |
| 54 | |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 55 | ~NbdProxyServer() |
| 56 | { |
| 57 | BMCWEB_LOG_DEBUG << "NbdProxyServer destructor"; |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | std::string getEndpointId() const |
| 61 | { |
| 62 | return endpointId; |
| 63 | } |
| 64 | |
| 65 | void run() |
| 66 | { |
| 67 | acceptor.async_accept( |
| 68 | [this, self(shared_from_this())](boost::system::error_code ec, |
| 69 | stream_protocol::socket socket) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 70 | if (ec) |
| 71 | { |
| 72 | BMCWEB_LOG_ERROR << "UNIX socket: async_accept error = " |
| 73 | << ec.message(); |
| 74 | return; |
| 75 | } |
| 76 | if (peerSocket) |
| 77 | { |
| 78 | // Something is wrong - socket shouldn't be acquired at this |
| 79 | // point |
| 80 | BMCWEB_LOG_ERROR |
| 81 | << "Failed to open connection - socket already used"; |
| 82 | return; |
| 83 | } |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 84 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 85 | BMCWEB_LOG_DEBUG << "Connection opened"; |
| 86 | peerSocket = std::move(socket); |
| 87 | doRead(); |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 88 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 89 | // Trigger Write if any data was sent from server |
| 90 | // Initially this is negotiation chunk |
| 91 | doWrite(); |
| 92 | }); |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 93 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 94 | auto mountHandler = |
| 95 | [this, self(shared_from_this())](const boost::system::error_code ec, |
| 96 | const bool) { |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 97 | if (ec) |
| 98 | { |
Iwona Winiarska | 123e823 | 2019-11-29 12:34:33 +0100 | [diff] [blame] | 99 | BMCWEB_LOG_ERROR << "DBus error: cannot call mount method = " |
| 100 | << ec.message(); |
Wludzik, Jozef | f6a0d63 | 2020-07-16 15:16:02 +0200 | [diff] [blame] | 101 | connection.close("Failed to mount media"); |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 102 | return; |
| 103 | } |
| 104 | }; |
| 105 | |
| 106 | crow::connections::systemBus->async_method_call( |
| 107 | std::move(mountHandler), "xyz.openbmc_project.VirtualMedia", path, |
| 108 | "xyz.openbmc_project.VirtualMedia.Proxy", "Mount"); |
| 109 | } |
| 110 | |
| 111 | void send(const std::string_view data) |
| 112 | { |
| 113 | boost::asio::buffer_copy(ws2uxBuf.prepare(data.size()), |
| 114 | boost::asio::buffer(data)); |
| 115 | ws2uxBuf.commit(data.size()); |
| 116 | doWrite(); |
| 117 | } |
| 118 | |
| 119 | void close() |
| 120 | { |
Iwona Winiarska | 123e823 | 2019-11-29 12:34:33 +0100 | [diff] [blame] | 121 | acceptor.close(); |
| 122 | if (peerSocket) |
| 123 | { |
| 124 | BMCWEB_LOG_DEBUG << "peerSocket->close()"; |
| 125 | peerSocket->close(); |
| 126 | peerSocket.reset(); |
| 127 | BMCWEB_LOG_DEBUG << "std::remove(" << socketId << ")"; |
| 128 | std::remove(socketId.c_str()); |
| 129 | } |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 130 | // The reference to session should exists until unmount is |
| 131 | // called |
| 132 | auto unmountHandler = [](const boost::system::error_code ec) { |
| 133 | if (ec) |
| 134 | { |
| 135 | BMCWEB_LOG_ERROR << "DBus error: " << ec |
| 136 | << ", cannot call unmount method"; |
| 137 | return; |
| 138 | } |
| 139 | }; |
| 140 | |
| 141 | crow::connections::systemBus->async_method_call( |
| 142 | std::move(unmountHandler), "xyz.openbmc_project.VirtualMedia", path, |
| 143 | "xyz.openbmc_project.VirtualMedia.Proxy", "Unmount"); |
| 144 | } |
| 145 | |
| 146 | private: |
| 147 | void doRead() |
| 148 | { |
| 149 | if (!peerSocket) |
| 150 | { |
| 151 | BMCWEB_LOG_DEBUG << "UNIX socket isn't created yet"; |
| 152 | // Skip if UNIX socket is not created yet. |
| 153 | return; |
| 154 | } |
| 155 | |
| 156 | // Trigger async read |
| 157 | peerSocket->async_read_some( |
| 158 | ux2wsBuf.prepare(nbdBufferSize), |
| 159 | [this, self(shared_from_this())](boost::system::error_code ec, |
| 160 | std::size_t bytesRead) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 161 | if (ec) |
| 162 | { |
| 163 | BMCWEB_LOG_ERROR << "UNIX socket: async_read_some error = " |
| 164 | << ec.message(); |
| 165 | // UNIX socket has been closed by peer, best we can do is to |
| 166 | // break all connections |
| 167 | close(); |
| 168 | return; |
| 169 | } |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 170 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 171 | // Fetch data from UNIX socket |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 172 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 173 | ux2wsBuf.commit(bytesRead); |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 174 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 175 | // Paste it to WebSocket as binary |
| 176 | connection.sendBinary( |
| 177 | boost::beast::buffers_to_string(ux2wsBuf.data())); |
| 178 | ux2wsBuf.consume(bytesRead); |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 179 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 180 | // Allow further reads |
| 181 | doRead(); |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 182 | }); |
| 183 | } |
| 184 | |
| 185 | void doWrite() |
| 186 | { |
| 187 | if (!peerSocket) |
| 188 | { |
| 189 | BMCWEB_LOG_DEBUG << "UNIX socket isn't created yet"; |
| 190 | // Skip if UNIX socket is not created yet. Collect data, and wait |
| 191 | // for nbd-client connection |
| 192 | return; |
| 193 | } |
| 194 | |
| 195 | if (uxWriteInProgress) |
| 196 | { |
| 197 | BMCWEB_LOG_ERROR << "Write in progress"; |
| 198 | return; |
| 199 | } |
| 200 | |
Jason M. Bills | 9c0b4e5 | 2022-02-14 07:23:30 -0800 | [diff] [blame] | 201 | if (ws2uxBuf.size() == 0) |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 202 | { |
| 203 | BMCWEB_LOG_ERROR << "No data to write to UNIX socket"; |
| 204 | return; |
| 205 | } |
| 206 | |
| 207 | uxWriteInProgress = true; |
| 208 | boost::asio::async_write( |
| 209 | *peerSocket, ws2uxBuf.data(), |
| 210 | [this, self(shared_from_this())](boost::system::error_code ec, |
| 211 | std::size_t bytesWritten) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 212 | ws2uxBuf.consume(bytesWritten); |
| 213 | uxWriteInProgress = false; |
| 214 | if (ec) |
| 215 | { |
| 216 | BMCWEB_LOG_ERROR << "UNIX: async_write error = " |
| 217 | << ec.message(); |
| 218 | return; |
| 219 | } |
| 220 | // Retrigger doWrite if there is something in buffer |
| 221 | if (ws2uxBuf.size() > 0) |
| 222 | { |
| 223 | doWrite(); |
| 224 | } |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 225 | }); |
| 226 | } |
| 227 | |
| 228 | // Keeps UNIX socket endpoint file path |
| 229 | const std::string socketId; |
| 230 | const std::string endpointId; |
| 231 | const std::string path; |
| 232 | |
| 233 | bool uxWriteInProgress = false; |
| 234 | |
| 235 | // UNIX => WebSocket buffer |
| 236 | boost::beast::multi_buffer ux2wsBuf; |
| 237 | |
| 238 | // WebSocket <= UNIX buffer |
| 239 | boost::beast::multi_buffer ws2uxBuf; |
| 240 | |
| 241 | // Default acceptor for UNIX socket |
| 242 | stream_protocol::acceptor acceptor; |
| 243 | |
| 244 | // The socket used to communicate with the client. |
| 245 | std::optional<stream_protocol::socket> peerSocket; |
| 246 | |
| 247 | crow::websocket::Connection& connection; |
| 248 | }; |
| 249 | |
| 250 | static boost::container::flat_map<crow::websocket::Connection*, |
| 251 | std::shared_ptr<NbdProxyServer>> |
| 252 | sessions; |
| 253 | |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 254 | inline void requestRoutes(App& app) |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 255 | { |
| 256 | BMCWEB_ROUTE(app, "/nbd/<str>") |
| 257 | .websocket() |
zhanghch05 | 7772638 | 2021-10-21 14:07:57 +0800 | [diff] [blame] | 258 | .onopen([](crow::websocket::Connection& conn) { |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 259 | BMCWEB_LOG_DEBUG << "nbd-proxy.onopen(" << &conn << ")"; |
| 260 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 261 | auto getUserInfoHandler = |
| 262 | [&conn](const boost::system::error_code ec, |
| 263 | const dbus::utility::DBusPropertiesMap& userInfo) { |
| 264 | if (ec) |
| 265 | { |
| 266 | BMCWEB_LOG_ERROR << "GetUserInfo failed..."; |
| 267 | conn.close("Failed to get user information"); |
| 268 | return; |
| 269 | } |
| 270 | |
| 271 | const std::string* userRolePtr = nullptr; |
| 272 | auto userInfoIter = std::find_if(userInfo.begin(), userInfo.end(), |
| 273 | [](const auto& p) { |
| 274 | return p.first == "UserPrivilege"; |
| 275 | }); |
| 276 | if (userInfoIter != userInfo.end()) |
| 277 | { |
| 278 | userRolePtr = std::get_if<std::string>(&userInfoIter->second); |
| 279 | } |
| 280 | |
| 281 | std::string userRole{}; |
| 282 | if (userRolePtr != nullptr) |
| 283 | { |
| 284 | userRole = *userRolePtr; |
| 285 | BMCWEB_LOG_DEBUG << "userName = " << conn.getUserName() |
| 286 | << " userRole = " << *userRolePtr; |
| 287 | } |
| 288 | |
| 289 | // Get the user privileges from the role |
| 290 | ::redfish::Privileges userPrivileges = |
| 291 | ::redfish::getUserPrivileges(userRole); |
| 292 | |
| 293 | const ::redfish::Privileges requiredPrivileges{ |
| 294 | requiredPrivilegeString}; |
| 295 | |
| 296 | if (!userPrivileges.isSupersetOf(requiredPrivileges)) |
| 297 | { |
| 298 | BMCWEB_LOG_DEBUG << "User " << conn.getUserName() |
| 299 | << " not authorized for nbd connection"; |
| 300 | conn.close("Unathourized access"); |
| 301 | return; |
| 302 | } |
| 303 | |
| 304 | auto openHandler = |
Ed Tanous | e3009e4 | 2022-02-16 15:42:37 -0800 | [diff] [blame^] | 305 | [&conn](const boost::system::error_code ec2, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 306 | const dbus::utility::ManagedObjectType& objects) { |
| 307 | const std::string* socketValue = nullptr; |
| 308 | const std::string* endpointValue = nullptr; |
| 309 | const std::string* endpointObjectPath = nullptr; |
| 310 | |
Ed Tanous | e3009e4 | 2022-02-16 15:42:37 -0800 | [diff] [blame^] | 311 | if (ec2) |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 312 | { |
Ed Tanous | e3009e4 | 2022-02-16 15:42:37 -0800 | [diff] [blame^] | 313 | BMCWEB_LOG_ERROR << "DBus error: " << ec2.message(); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 314 | conn.close("Failed to create mount point"); |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 315 | return; |
| 316 | } |
Przemyslaw Czarnowski | 250b0eb | 2020-02-24 10:23:56 +0100 | [diff] [blame] | 317 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 318 | for (const auto& [objectPath, interfaces] : objects) |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 319 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 320 | for (const auto& [interface, properties] : interfaces) |
| 321 | { |
| 322 | if (interface != |
| 323 | "xyz.openbmc_project.VirtualMedia.MountPoint") |
| 324 | { |
| 325 | continue; |
| 326 | } |
| 327 | |
| 328 | for (const auto& [name, value] : properties) |
| 329 | { |
| 330 | if (name == "EndpointId") |
| 331 | { |
| 332 | endpointValue = |
| 333 | std::get_if<std::string>(&value); |
| 334 | |
| 335 | if (endpointValue == nullptr) |
| 336 | { |
| 337 | BMCWEB_LOG_ERROR |
| 338 | << "EndpointId property value is null"; |
| 339 | } |
| 340 | } |
| 341 | if (name == "Socket") |
| 342 | { |
| 343 | socketValue = std::get_if<std::string>(&value); |
| 344 | if (socketValue == nullptr) |
| 345 | { |
| 346 | BMCWEB_LOG_ERROR |
| 347 | << "Socket property value is null"; |
| 348 | } |
| 349 | } |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | if ((endpointValue != nullptr) && |
| 354 | (socketValue != nullptr) && |
| 355 | *endpointValue == conn.req.target()) |
| 356 | { |
| 357 | endpointObjectPath = &objectPath.str; |
| 358 | break; |
| 359 | } |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 360 | } |
Przemyslaw Czarnowski | 250b0eb | 2020-02-24 10:23:56 +0100 | [diff] [blame] | 361 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 362 | if (objects.empty() || endpointObjectPath == nullptr) |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 363 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 364 | BMCWEB_LOG_ERROR << "Cannot find requested EndpointId"; |
| 365 | conn.close("Failed to match EndpointId"); |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 366 | return; |
| 367 | } |
Wludzik, Jozef | f6a0d63 | 2020-07-16 15:16:02 +0200 | [diff] [blame] | 368 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 369 | for (const auto& session : sessions) |
| 370 | { |
| 371 | if (session.second->getEndpointId() == conn.req.target()) |
Jason M. Bills | 613ea98 | 2022-02-16 14:24:30 -0800 | [diff] [blame] | 372 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 373 | BMCWEB_LOG_ERROR |
| 374 | << "Cannot open new connection - socket is in use"; |
| 375 | conn.close("Slot is in use"); |
Jason M. Bills | 613ea98 | 2022-02-16 14:24:30 -0800 | [diff] [blame] | 376 | return; |
| 377 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 378 | } |
Jason M. Bills | 613ea98 | 2022-02-16 14:24:30 -0800 | [diff] [blame] | 379 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 380 | // If the socket file exists (i.e. after bmcweb crash), |
| 381 | // we cannot reuse it. |
| 382 | std::remove((*socketValue).c_str()); |
Przemyslaw Czarnowski | 250b0eb | 2020-02-24 10:23:56 +0100 | [diff] [blame] | 383 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 384 | sessions[&conn] = std::make_shared<NbdProxyServer>( |
| 385 | conn, *socketValue, *endpointValue, *endpointObjectPath); |
Wludzik, Jozef | f6a0d63 | 2020-07-16 15:16:02 +0200 | [diff] [blame] | 386 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 387 | sessions[&conn]->run(); |
| 388 | }; |
| 389 | crow::connections::systemBus->async_method_call( |
| 390 | std::move(openHandler), "xyz.openbmc_project.VirtualMedia", |
| 391 | "/xyz/openbmc_project/VirtualMedia", |
| 392 | "org.freedesktop.DBus.ObjectManager", "GetManagedObjects"); |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 393 | }; |
Przemyslaw Czarnowski | 250b0eb | 2020-02-24 10:23:56 +0100 | [diff] [blame] | 394 | |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 395 | crow::connections::systemBus->async_method_call( |
Przemyslaw Czarnowski | 250b0eb | 2020-02-24 10:23:56 +0100 | [diff] [blame] | 396 | std::move(getUserInfoHandler), |
| 397 | "xyz.openbmc_project.User.Manager", "/xyz/openbmc_project/user", |
| 398 | "xyz.openbmc_project.User.Manager", "GetUserInfo", |
| 399 | conn.getUserName()); |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 400 | }) |
| 401 | .onclose( |
| 402 | [](crow::websocket::Connection& conn, const std::string& reason) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 403 | BMCWEB_LOG_DEBUG << "nbd-proxy.onclose(reason = '" << reason << "')"; |
| 404 | auto session = sessions.find(&conn); |
| 405 | if (session == sessions.end()) |
| 406 | { |
| 407 | BMCWEB_LOG_DEBUG << "No session to close"; |
| 408 | return; |
| 409 | } |
| 410 | session->second->close(); |
| 411 | // Remove reference to session in global map |
| 412 | sessions.erase(session); |
| 413 | }) |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 414 | .onmessage([](crow::websocket::Connection& conn, |
Vikram Bodireddy | f5b16f0 | 2020-08-26 14:54:51 +0530 | [diff] [blame] | 415 | const std::string& data, bool) { |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 416 | BMCWEB_LOG_DEBUG << "nbd-proxy.onmessage(len = " << data.length() |
| 417 | << ")"; |
| 418 | // Acquire proxy from sessions |
| 419 | auto session = sessions.find(&conn); |
| 420 | if (session != sessions.end()) |
| 421 | { |
| 422 | if (session->second) |
| 423 | { |
| 424 | session->second->send(data); |
| 425 | return; |
| 426 | } |
| 427 | } |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 428 | }); |
| 429 | } |
| 430 | } // namespace nbd_proxy |
| 431 | } // namespace crow |